我尝试解除绑定click事件,但有时会触发两次,有时会触发5次!现在有点烦了!
来自的代码 modal.asp
modal.asp
$("input[name=add_associate]").live("click",function(){ var addassociateID = $(this).attr("id") $.ajax({ type: 'POST', url: '/data/watchlist_save.asp', data: {m : 'share_watchlist_add', watchListID : <%=WatchListID%>, a : addassociateID}, async:true, success: function(data) { $(".associate_users").load("/data/sub_watch_members.asp?watchListID=<%=WatchListID%>", {cache:false},function() { $(".search_note").html(data) $(this).unbind('click').bind('click',handler); }) }, error: function(data){ $(".search_note").html(data) } }); })
更新 : 基本上我正在将以下代码.associate_users
.associate_users
<div id="associate_list"> <div class="associate_record"> <div class="left" style="padding:8px;"><img src="../imgs/nopic-m.png" style="width:30px;height:30px;" class="img_border" /></div> <div class="left" style="padding-top:15px;">5)Neil Burton</div> <div class="right" style="padding-top:10px;margin-right:5px;"><input type="button" class="btn-blue" name="add_associate" id="890" value="Add"></div> <div style="clear:both;"></div> </div> <div style="clear:both;"></div> </div>
更多信息 : 这仅在我触发事件时发生,关闭模式对话框,然后使用其他对话框重新打开watchListID
watchListID
数据结构:
我已经解决了这个问题,我正在使用
$(document).ready
在加载的ajax内容中以及…
<script src="/js/jquery-ui.js"></script>
因此,我认为它是“实时”功能的两倍!
非常感谢您的答复。