本文介绍了JQuery对话框没有第二次打开的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 这是我打开jquery对话框的代码。它第一次工作,但不是第二次:(帮助请 function LoadGridView(id,row){ var dlg = jQuery(' #Main_ProductEdit')。load(' ProductEdit.aspx'); dlg.dialog({autoOpen: false ,modal: true ,显示:' slide',关闭:' slide',width: 400 ,height: 160 ,按钮:{ 取消: function (){dlg.dialog( close);}} }); alert(' opening'); dlg.dialog( open); } 解决方案 hi, this is my code to open a jquery dialog. it works first time but not second time :( help plsfunction LoadGridView(id, row) { var dlg = jQuery('#Main_ProductEdit').load('ProductEdit.aspx'); dlg.dialog({ autoOpen: false, modal: true, show: 'slide', close: 'slide', width: 400, height: 160, buttons: { "cancel": function () { dlg.dialog("close");} } }); alert('opening'); dlg.dialog("open"); } 解决方案 这篇关于JQuery对话框没有第二次打开的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-19 06:38