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);});
これは同じですか?
ありがとう、ジム