我是jquery和bootbox中的新手我想在确认的每个按钮提醒中添加一个动作,所以如果所选按钮是肯定的话我想在链接中重定向 例如
<script type="text/javascript">
$(function() {
bootbox.confirm({
message: "click yes to redirect google",
buttons: {
confirm: {
label: 'Yes',
className: 'btn-success'
$(location).attr('href',"http://www.google.com/");
},
cancel: {
label: 'No',
className: 'btn-danger'
}
},
callback: function (result) {
console.log('This was logged in the callback: ' + result);
}
});
});
</script>
我使用了$(location).attr('href',"http://www.google.com/");
但是没有用
谢谢
答案 0 :(得分:1)
文档中的示例。 http://bootboxjs.com/documentation.html#bb-confirm-dialog
bootbox.confirm({
size: "small",
message: "Are you sure?",
callback: function(result){ /* result is a boolean; true = OK, false = Cancel*/ }
})
所以你可以使用那个
callback: function(result) {
if (result === true) {
location.href = 'http://www.google.com';
}
}