我在我的JS文件中调用JCONFIRM但不起作用:
jConfirm('Title', 'Are you sure?', function(r) {
if(r)
{
alert("true");
}
else
{
alert("false");
}
});
我想念任何一个lib吗?
答案 0 :(得分:1)
我认为你的语法是正确的 您必须关注库才能工作
答案 1 :(得分:0)
这是我使用但不起作用的简单示例
更新:
idk为什么Jconfirm不起作用
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<title>Facelet Title</title>
<link rel="stylesheet" type="text/css" href="css/jquery.alerts.css" media="screen" />
<script src="js/jquery-1.9.1.js"></script>
<script src="js/jquery.alerts.js"></script>
<script>
$(document).ready(function(){
$("#btn1").click(function(){
jConfirm('Title', 'Are you sure?', function(r) {
if(r)
{
alert("true");
}
else
{
alert("false");
}
});
});
$("#btn2").click(function(){
alert("test");
});
});
</script>
</h:head>
<h:body>
<button id="btn1">Append text</button>
<button id="btn2">Append list items</button>
</h:body>
</html>
这就是我点击“附加文字”时得到的结果
仍然无法正常工作
更新2 :我添加了Jquery 1.6.1,它的功能就是我得到的:
为什么我有这个A OK A ???
更新3:修复了问题我在jquery.alerts.js中更改了这个:
okButton: ' OK ',
cancelButton: ' Cancel ',
到此:
okButton:'好', cancelButton:'取消',