jquery链式操作的正确使用方法
时间:2021-04-30 10:12:22|栏目:jquery|点击: 次
糟糕的使用方法
复制代码 代码如下:
$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);
上一篇:jquery仿京东侧边栏导航效果
栏 目:jquery
本文标题:jquery链式操作的正确使用方法
本文地址:http://www.codeinn.net/misctech/111839.html