通过jquery加载的元素,要怎样才能进行控制?
程序员文章站
2022-03-24 19:22:33
...
原html
a.php
";
jquery
$(document).ready(function(){
$(".button").bind({
click:function(){
$.get("./create.php",function(data){
$("body").append(data)
})
}
})
$("input").click(function(){
alert(123456);
})
})
新html
回复内容:
原html
a.php
";
jquery
$(document).ready(function(){
$(".button").bind({
click:function(){
$.get("./create.php",function(data){
$("body").append(data)
})
}
})
$("input").click(function(){
alert(123456);
})
})
新html
题主的问题本质地是如何控制动态插入的新节点。用 jQuery 的话,可以这么来:
$(document).on('click', 'input', function() {
alert(123456);
});
上一篇: html导航条制作的图文代码分享