为什么intI是比较小的数的时候不管用,是稍微大点的又能实现越点字越大了
<script type="text/javascript">
$(function () {
var intI = 0;
$("div").bind("click", function () {
intI++;
$(this).css("font-size", intI + "px");
})
});
</script>
<script type="text/javascript">
$(function () {
var intI = 0;
$("div").bind("click", function () {
intI++;
$(this).css("font-size", intI + "px");
})
});
</script>
2016-03-12
举报