标签: jquery popup innerhtml
如何在点击jquery弹出关闭按钮时更改aspx页面中div的innerhtml?
答案 0 :(得分:1)
有了这个:
$( "#your_dialog" ).bind( "dialogbeforeclose", function(event, ui) { $("#main_page_div").html("Your new HTML"); });
希望这会有所帮助。干杯