我想知道是否有人可以帮我解决一些代码。
我使用BootBox进行一些模态窗口,我想在确认方法中添加一些自定义HTML,但我不认为我正确地做了。
我的代码如下:
$('.next').click(function (event) {
event.preventDefault();
var href = $(this).attr('href');
bootbox.confirm({
message: "I am a testing message",
title: "Please confirm you have enrolled"
callback: function (result) {
if (result) {
location.href = href;
}
}
});
});
我得到的错误如下:
Uncaught SyntaxError: Unexpected identifier
非常感谢任何帮助。
干杯,
答案 0 :(得分:4)
这里有语法错误:
您的原始代码
title: "Please confirm you have enrolled"
callback: function (result) {
if (result) {
location.href = href;
}
}
新代码
title: "Please confirm you have enrolled",
callback: function (result) {
if (result) {
location.href = href;
}
}
请注意title
行末尾的“,”字符。