jquery链式操作的正确使用方法
程序员文章站
2022-06-20 21:15:29
糟糕的使用方法
. 代码如下:
$second.html(value);
$second.on('click',function(){
alert(...
糟糕的使用方法
. 代码如下:
$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);