如何将这段代码转换为接受元素作为参数的函数,例如:
$('#nav-btn li')
.vel('slideUp',
{
duration: 800,
opacity: 1,
stagger: 150
});
functionName('#nav-btn li');
使用functionName( '#otherElement2');
使用functionName( '#otherElement3');
答案 0 :(得分:3)
function functionName(elId){
$(elId).vel('slideUp',
{
duration: 800,
opacity: 1,
stagger: 150
});
}
现在使用
functionName('#nav-btn li');
functionName('#otherElement2');
functionName('#otherElement3');