jquery链式操作的正确使用方法_jquery
程序员文章站
2022-04-07 10:47:23
...
糟糕的使用方法
$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);
复制代码 代码如下:
$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);
上一篇: HTML的列表、表单、语义化使用方法总结
下一篇: 在微信小程序中如何实现自定义toast