我正在尝试将bootbox.js添加到测试页面。
目前,当我在触发引导盒的超链接中包含href标记时,无论我单击哪个确认按钮(取消或确定),都会触发href。
如何将href标记包含在bootbox js代码中,只有当用户选择OK确认选项时才会触发?我尝试了多次尝试,但无济于事。
这是带有href标签的超链接:
<a id="id_customized_details_duplicate" href="{% url customized_details_duplicate customized_detail.id %}">Duplicate</a>
这是我的bookbox js代码:
$(document).ready(function(){
$('#id_customized_details_duplicate').on('click', function(){
bootbox.confirm("Are you sure?", function(result) {
if (result) {
//include the href duplication link here?;
//showProgressAnimation();
alert('OK SELECTED');
} else {
alert('CANCEL SELECTED');
}
});
});
});
答案 0 :(得分:4)
尝试这种方式,阻止anchor tag
&amp;的默认操作在href
确认处理程序中添加具有相应bootbox
位置的窗口重定向调用(单击“确定”选项时)。
$(document).ready(function(){
$('#id_customized_details_duplicate').on('click', function(event){
event.preventDefault();
bootbox.confirm("Are you sure?", function(result) {
if (result) {
//include the href duplication link here?;
window.location = $(this).attr("href");
//showProgressAnimation();
alert('OK SELECTED');
} else {
alert('CANCEL SELECTED');
}
});
});
});
现场演示: http://jsfiddle.net/dreamweiver/9he30z4y/255/
快乐编码:)