当用户单击“x”以关闭 qtip2 模式时,我试图用 jquery 触发某些东西。
这是我的模态的 JS:
<script language="javascript" type="text/javascript">
$('.show_likes_modal').live('mouseover', function(event) {//SHOW LIKES MODAL
clearInterval(auto_refresh); auto_refresh = 0;
var itemid = $(this).attr("itemid");
var itemtype = $(this).attr("itemtype");
$(this).qtip({
id: 'likesmodal',
content: {
text: '<img src="images/loading.gif" alt="Loading..." />',
ajax: {url: 'modals/show_likes.php',type: 'GET',data: { itemid: itemid,itemtype:itemtype}},
title: { text: 'People who like this:',button: true}
},
position: {my: 'centered',at: 'centered',target: $(window)},
show: {event: 'click',solo: true,modal: true},
hide: false,
style: 'ui-tooltip-light ui-tooltip-rounded',
events: {
hide: function(event, api){
auto_refresh = setInterval(function (){$('#bottom_middle').load(thisurl + '&timer=' + new Date().getTime() + ' #bottom_middle' );}, 5000);
$(this).qtip("destroy");
}
}
});
return false;
});
</script>
如果您注意到“隐藏:函数(事件,api){”行,当用户在模式外部单击以关闭它时,这可以正常工作,但是当用户单击“x”以关闭模式时,它只是关闭模态的。当用户单击“x”时,我如何“做某事”?
谢谢。