我试图让bootstrap-confirmation.js用于删除对话框。
我遇到的问题是我无法将href复制到ok按钮。它总是只是把#"#"作为href。
这是我的代码:
std::complex<std::vector<short>>
您还可以在此处看到它:https://jsfiddle.net/philsherwood/1sj4ao7e/11/
我错过了什么?
答案 0 :(得分:0)
Js代码: -
$('[data-toggle=confirmation]').confirmation({
rootSelector: '[data-toggle=confirmation]',
onConfirm: function() {
alert("I am Confirmed!!!");
$('[data-toggle=confirmation]').confirmation('hide');
},
popout: true
});
标记代码: -
<a href="https://google.com" target="_blank" data-toggle="confirmation" data-title="Delete?" class="btn btn-primary">Delete</a>
希望这有帮助!!!