我正在通過jQuery的html()
函數添加新元素。然後我想要處理它。是否有可能以你在這裏看到的方式做到這一點?處理innerHTML或html()後的元素。 Javascript
$("#renamePlaylist").click(function(){
var aa = '<input type="text" name="plst_name" value="'+$("#playlist_header").find("span").text()+'" size="'+Math.round($("#playlist_header").find("span").text().length/2)+'">'+
'<input id="renameCurrent" type="image" name="+" value="submit" alt="+">';
$("#playlist_header").find('span').html(aa);
});
$("#renameCurrent").click(function(){
alert('hello')
});
你試過了嗎? – 2010-09-03 17:24:44
是的:)不工作...... :( – Pol 2010-09-03 17:52:07