我是jQuery的新手。我认为jQuery可以操纵代码添加的元素是合理的,但我发现它现在还不能。
$(function(){
$("#addVideo").click(function(){
$("#publisher").append("<div id='choseType'><input type='button' value='video'> <input value='music' type='button'> <input type='button' value='X'></div>");
})
$("#choseType input:eq(0)").click(function(){
$(this).addClass("selected");
})
})
是jquery的限制还是我的代码的错?似乎我将第二个click()
函数放入第一个函数中它将正确运行,但它只运行一次(如果我删除附加的#choseType
并再次附加它,则第二次点击赢了&#39;工作。)。然后我如何操纵代码添加元素?谢谢!
答案 0 :(得分:4)
将事件委托给非动态元素:
$(document).on('click', "#choseType input:eq(0)", function(){
$(this).addClass("selected");
});
ID是独一无二的!
答案 1 :(得分:2)
$(function(){
$("#addVideo").click(function(){
//create new content, and append to publisher
//also, reference the new content
var newContent = $("<div><input type='button' value='video'> <input value='music' type='button'> <input type='button' value='X'></div>").appendTo('#publisher');
//then add a handler to input in the context of the new content
$("input:eq(0)", newContent).click(function(){
$(this).addClass("selected");
});
})
})