我有按鈕,它是「Click me」,並且mouseover()僅適用於此按鈕問題是關於新按鈕。我不能用addClass添加CSS。我不能將css類添加到新元素
$("button#Clickme").on({
click:function(){
$("div.Div").append('<button class="Clicker" >New Button</button>');
}
});
$("button.Clicker").mouseover(function(){
$(this).addClass("button");
});
$("button.Clicker").mouseout(function() {
$(this).removeClass("button");
});
哪個版本的jQuery您使用的是使用? – rid
版本是1.11.3.min.js –
[動態創建的元素上的事件綁定?]的可能的重複?(http://stackoverflow.com/questions/203198/event-binding-on-dynamically-created-elements) – CodingIntrigue