$("#circle1").circleChart({
color:'#68c4ca',
size: 80,
value: data.capacity,
text: 0,
backgroundColor:'#9dbddf',
backgroundFix: false,
onDraw: function(el, circle) {
circle.text(Math.round(circle.value)+ "%");
}
});
<!--存放的DIV-->
<div id="circle1" style="height:80px;"></div>
<!--引入的文件-->
<script src="js/jquery.js"></script>
<script src="js/circleChart.min.js"></script>