亲宝软件园·资讯

展开

jquery链式操作的正确使用方法

人气:0

糟糕的使用方法

复制代码 代码如下:

$second.html(value);
$second.on('click',function(){
alert('hello everybody');
});
$second.fadeIn('slow');
$second.animate({height:'120px'},500);

建议使用方法

复制代码 代码如下:

$second.html(value);
$second.on('click',function(){
alert('hello everybody');
}).fadeIn('slow').animate({height:'120px'},500);

加载全部内容

相关教程
猜你喜欢
用户评论