これ以外のすべての要素hover
でイベントをバインドしたいのですが、次のコードを記述しました。.menu class
first element
$(".menu:not(:first-child')").hover(function () {
},
function () {
});
しかし、これは機能していません。どうしたの ?
これ以外のすべての要素hover
でイベントをバインドしたいのですが、次のコードを記述しました。.menu class
first element
$(".menu:not(:first-child')").hover(function () {
},
function () {
});
しかし、これは機能していません。どうしたの ?
$(".menu").not(":first-child")
また
$(".menu").not(":eq(0)")
このコードを使用してください:
$('.menu').not(":first")
$(".menu:not(:first)").hover(function() {
},
function () {
});