Category Hierarchy

场景如下:

我有一堆<a href="X">元素,所以在重定向发生之前,我想等待一个引导模式/ jqueryui对话框(从未挖掘过,尽管我更喜欢使用引导模式)被确认或取消。我尝试过一种

$('a').on('click',function(){
   alert('!'); //this one of course happens before the redirect
   $( "#dialog-confirm" ).dialog({...}); //this one shows and is immediately redirected
});

我怎样才能满足我的需求呢?

转载请注明出处:http://www.yojatech.com/article/20230526/2025091.html