当关闭Thickbox(通过单击十字)时,我通过将其挂接到tb_unload
行动然而,由于某种原因,该行动被要求两次,我不知道为什么。有没有办法阻止functino多次运行?或者更好的是,找出是什么导致该操作被调用两次?谢谢
jQuery(document).ready(function($){
$(window).bind(\'tb_unload\', function(){
/** Set the params for passing to the AJAX function */
data = {
security: $(\'input#_wpnonce\', \'#dd-options-edit-footer-page\').val(),
action: \'update-footer-images\',
};
$.post(\'admin-ajax.php\', data, function(response){
alert(response);
/** Place the image src in the hidden image, and then show the image */
$(\'#image-preview\', \'#dd-optinos-footer-page\').html(response);
});
});
});