在我的asp網絡應用程序中,我正在通過即興jQuery製作對話框。 在我單擊提交按鈕的第3次嘗試中,該頁面在觸發onclick事件後效果良好,但在下次嘗試時頁面始終顯示Internet Explorer無法顯示該網頁。也許我在執行jQuery的一個問題..使用Jquery後,Internet Explorer無法顯示網頁?
<asp:Content ID="Content1" ContentPlaceHolderID="head"
runat="server">
<script type="text/javascript" language="javascript">
//Update PartNumber
function confirmSubmitUpdatePartNumber() {
$.prompt('Are you sure you want to Update this PartNumber?'
, {
buttons: { Ok: true, Cancel: false }
, callback: confirmSubmitResultUpdatePartNumber
}
);
return false;
}
function confirmSubmitResultUpdatePartNumber(v, m, f) {
if (v) //post back if the user clicked OK
$('#ctl00_mainContentPlaceholder_btnPartNumber').click();
}
</script>
</asp:Content>
<asp:Content ID="detailContent" ContentPlaceHolderID="mainContentPlaceholder"
runat="server">
<input type="button" onclick="return confirmSubmitUpdatePartNumber();" value="Update PartNumber Location" />
<asp:Button ID="btnPartNumber" runat="server" Style="display: none;"
onclick="btnPartNumber_Click"/>
</div>
-1爲非建設性語言抨擊。如果清理它,請留下@註釋,我將刪除downvote。 – Davy8
@ Davy8它很乾淨!謝謝。 – thugsb