gpt4 book ai didi

Jquery 确认不起作用

转载 作者:行者123 更新时间:2023-12-01 03:09:27 25 4
gpt4 key购买 nike

我试过这个:https://stackoverflow.com/a/12617274/4164311 。字符串“您确定吗”仅出现在我的浏览器中,当我单击该按钮时没有任何反应。

<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Dialog - Modal confirmation</title>

<link rel="stylesheet" href="jquery-ui.min.css">
<script src="external/jquery/jquery.js"></script>
<script src="jquery-ui.min.js"></script>

<script>
$("#dialog").dialog({
autoOpen: false,
modal: true,
buttons : {
"Confirm" : function() {
alert("You have confirmed!");
},
"Cancel" : function() {
$(this).dialog("close");
}
}
});

$("#callConfirm").on("click", function(e) {
e.preventDefault();
$("#dialog").dialog("open");
});
</script>
</head>
<body>
<button id="callConfirm">Confirm!</button>

<div id="dialog" title="Confirmation Required">
Are you sure about this?
</div>
</body>
</html>

屏幕截图:

enter image description here

最佳答案

尝试将您的 js 代码放入文档就绪函数中,它应该可以工作。

$(function() {
$("#dialog").dialog({
autoOpen: false,
modal: true,
buttons: {
"Confirm": function() {
alert("You have confirmed!");
},
"Cancel": function() {
$(this).dialog("close");
}
}
});

$("#callConfirm").on("click", function(e) {
e.preventDefault();
$("#dialog").dialog("open");
});
});

希望这有帮助。

编辑:此外,添加/更改 jquery 和 css 包括:

 <link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

关于Jquery 确认不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35767749/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com