我在一本 jQuery 书中遇到了这个问题:
$(elems).mouseenter(function(e) {
$(this).css("opacity", 0.5);
}).mouseout(function(e) {
$(this).css("opacity", 1.0);
})
我删除了大部分代码以便于阅读,然后得到了这个:
$(elems).mouseenter(function(e)).mouseout(function(e))
看起来一般你可以做到这一点?:
$(elems).mouseenter(function(e)).mouseout(function(e)).mouseSOMETHING1(function(e))
另一个词使用 . 连接函数?
另外,如果我将此代码分解为:
$(elems).mouseenter(function(e) {$(this).css("opacity", 0.5);});
$(elems).mouseout(function(e) {$(this).css("opacity", 1.0);});
这是一样的吗?
谢谢,吉姆