對不起,如果我的英語很差。Alertify在asp.net c#頁面
我有一個問題,我認爲這個問題是我對javascript的可憐知識,但是..我知道你可以幫我解決這個問題。
我有一個圖像按鈕的頁面,我用它來刪除數據,我需要一個確認對話框。 Alertify是可愛的,我在服務器端使用altertify警報是這樣的:
string myScript2 = "alertify.error('message.')";
ScriptManager.RegisterClientScriptBlock(Page, Page.GetType(),
Guid.NewGuid().ToString(), myScript2, true);
return;
和工作正常!
但我不明白如何使用alertify.confirm。
例如我用
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="../../js/alertify.min.js"></script>
<!-- include the core styles -->
<link rel="stylesheet" href="../../js/alertify.core.css" />
<!-- include a theme, can be included into the core instead of 2 separate files -->
<link rel="stylesheet" href="../../js/alertify.default.css" />
<script type="text/javascript">
$("#btElimina").on('click', function() {
alertify.confirm("This is a confirm dialog", function (e) {
if (e) {
alertify.success("You've clicked OK");
} else {
alertify.error("You've clicked Cancel");
}
});
return false;
});
</script>
,但沒有做......我不能使用的OnClientClick因爲alertify是無阻塞的,而不是一個模態窗口... 你能幫助我理解?不寫代碼,對我來說,瞭解並讓我活 謝謝
亨利
謝謝,現在我已經正確的代碼。現在,當我點擊的ImageButton,這個按鈕'的 '的頁面刷新,但不會做任何事。我沒有看到確認對話框。但是,謝謝你,我明白你的答案,我可以採取像cloneclick –
ecota
的迴應,請確認什麼是在HTML渲染圖像按鈕的id。我認爲這不會是btElimina。覈實。 – Ratna
是的,在這篇文章中,我寫了btElimina,因爲HTML中呈現的實名很長。並且'ctl00_ContentPlaceHolder1_btElimina' – ecota