在Google chrome
中工作得很好,但是当我在Mozilla Firefox
打开的窗口中点击按钮1秒钟时。
function openModal() {
$("#openModal").dialog({
resizable: false,
height: 300,
width: 450,
modal: true,
buttons: {
Close: function () {
$(this).dialog("close");
$("#openModal").hide();
}
}
});
event.preventDefault();
event.stopPropagation();
return false;
};
Asp.Net:
<asp:Button ID="BtnSend" runat="server" Text="Send" OnClientClick=" return openModal();"/>
答案 0 :(得分:0)
此代码让我在Google Chrome
和Mozilla Firefox
工作,你可以使用它,我希望能帮助你:
$("#openModal").dialog({
modal: true,
buttons: {
Close: function () {
$(this).dialog("close");
//Reload the page
location.reload(true);
}
}
});