我有
$("#sendbid").live("click", function() {
//here will be the ajax
//after success:
$("#personaltab").empty();
})
个人标签位于原始代码中。内容是在ajax上创建的,然后当用户继续时我想用live检查并清空div
不工作 - 我已经尝试过了所有!!!
答案 0 :(得分:5)
此处缺少 jQuery 或 $ :
jQuery("#sendbid").live("click", function() {
jQuery("#personaltab").empty();
})
$("#sendbid").live("click", function() {
$("#personaltab").empty();
})
答案 1 :(得分:0)
解决: 我有一个内部因为某种原因需要通过他的身份获得ajax的div是重复的
不要问: - )