我正在我的一个项目中使用确认框,我很难在某些特定情况下获得预期,例如使用不同的js文件和所有
工作场景和Fiddle
脚本:
jquery-2.1.0.js
bootstrap.js v 2.3.2
http://ethaizone.github.io/Bootstrap-Confirmation/bootstrap-confirmation.js
<input type="button" id="clickButton" value="Log in" class="btn btn-default" />
我的Jquery
$("#clickButton").click(function(){
var x = Math.random();
$('#clickButton').confirmation('destroy')
$("#clickButton").confirmation({ title: x });
});
这里我试图在确认弹出窗口中显示一个随机数作为文本
失败的情景Fiddle
Bootstrap版本3.3.2 Jquery 2.1.3 相同的确认JS文件