我想在刪除一些數據之前進行確認,所以我如何使它使用jQuery?確認框使用jquery
2
A
回答
19
$('#deleteBtn').click(function() {
if(confirm("Are you sure?")) {
//delete here
}
});
4
一種可能性是使用javascript confirm
函數。
$(function() {
$('#someLink').click(function() {
return confirm('Are you sure you want to delete this item?');
});
});
0
要進行對話,使用jQueryUI dialog。它包括模態&非模態對話框,以及良好的視覺效果和強大的日期選擇器。還有一些插件可用於擴展jQueryUI。
下面是一個例子
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" type="text/css" href="css/dot-luv/jquery-ui-1.8.6.custom.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script src="js/jquery-ui-1.8.6.custom.min.js"></script>
<script>
var setupKiller = function() {
// Here's the text of the dialog box
var dialog = $("<div style='display: none'><p>Are you sure?</p></div>").appendTo("body");
// This is the button on the form
var button = $("<span>Kill</span>").appendTo("#killer").click(function() {
var form = $("#killer")
// The form button was pressed - open the dialog
$(dialog).dialog(
{
title: "Confirm",
modal: true,
buttons: {
"Delete em": function() {
// This will invoke the form's action - putatively deleting the resources on the server
$(form).submit();
$(this).dialog("close");
},
"Cancel": function() {
// Don't invoke the action, just close the dialog
$(this).dialog("close");
}
}
});
return false;
});
// Use jQuery UI styling for our button
$(button).button();
}
</script>
</head>
<body onload="setupKiller();">
<form id='killer' method='POST'>
<p>Some Text</p>
</form>
</body>
</html>
的
相關問題
- 1. 確認框jquery
- 2. jQuery確認框
- 3. jquery確認框
- 4. 如何使用jQuery模態確認框
- 5. 如何使用jQuery確認框代替瀏覽器默認確認?
- 6. JQuery確認對話框
- 7. jquery ui對話框確認
- 8. JQuery的確認對話框
- 9. jQuery UI對話框確認
- 10. 全球jQuery ui確認框
- 11. jquery中的確認框
- 12. 在jQuery UI中使用驗證碼對話框確認框
- 13. jQuery的確認對話框 - Yii框架
- 14. jquery對話框確認框問題
- 15. 用jquery替換javascript確認確認
- 16. jquery對話框確認,確認表單發佈
- 17. jQuery確認按鈕不在彈出確認()對話框中
- 18. 使用Javascript - 自定義確認對話框 - 更換JS確認
- 19. 模態確認框在ASP.Net中使用JQuery
- 20. 使用KnockoutJS模板綁定jQuery UI確認對話框
- 21. 使用jQuery/JavaScript來創建一個彈出確認框
- 22. 嘗試使用JavaScript,JQuery確認框...不工作
- 23. 如何使用JSF實現JQuery確認對話框
- 24. 如何使用jquery ui對話框確認gridview linkbutton?
- 25. 使用jquery對話框在提交之前進行確認
- 26. 使用JQuery確認對話框單選按鈕
- 27. 如何使用異步JQuery確認對話框作爲同步?
- 28. 是使用JQuery的模式確認框可能嗎?
- 29. 如何使用確認提醒框創建struts jquery鏈接?
- 30. 如何使用回撥jQuery的確認對話框
可能重複[是模態確認框使用jQuery可能嗎?](http://stackoverflow.com/questions/878710/is-a-modal-confirm-box-使用-jQuery的可能) – jAndy 2011-01-25 09:40:46