我有函数bellow,我想用bootstrap模式替换它,在html中很容易做但我不知道如何在java脚本代码中执行此操作,有人可以给出任何建议吗?谢谢。
function() {
let model = this.tagModel(true);
if (!_.isEqual(this.originalModel, model)) {
let result = confirm(`Are you sure you wish to leave?`);
if (result) {
return true;
}
else {
return false;
}
}
return true;
}
答案 0 :(得分:1)
你已经解决了这个问题吗?这就是我认为你需要做的事情。
首先,您需要在Aurelia中安装Bootstrap。 janmvtrinidad对Including bootstrap css in Aurelia有一个很好的答案。
然后你需要使用它。 Here's info on the modal
将您的confirm
切换为$('#myModal').modal(options)
,其中#myModal是您的HTML中的div应该有效。