一直不是很记得jquery中怎么设置自增值,比如当点击按钮时 div在当前宽度基础上增加宽度100px,可以这样写:
$('button.test').click(function(){ $('div.test').animate( { width:"+=100px", height:"+=100px"}, 'normal'); // ~~ +=100px,单位px可以省略
本文共 188 字,大约阅读时间需要 1 分钟。
一直不是很记得jquery中怎么设置自增值,比如当点击按钮时 div在当前宽度基础上增加宽度100px,可以这样写:
$('button.test').click(function(){ $('div.test').animate( { width:"+=100px", height:"+=100px"}, 'normal'); // ~~ +=100px,单位px可以省略
转载地址:http://dehfa.baihongyu.com/