感谢您将此解决方案放在一起。我成功加载了 jQuery,然后创建了一个引导模式并将其附加到正文中。接下来我尝试加载 bootstrap.js 并在 modal 上调用 modal('show') 方法,但无济于事。iMacros 告诉我函数 .modal 不存在。
loadScriptFromURL('http://localhost.com:7001/ybswcsstub/resources/plugins/jquery-1.10.2.min.js');
$ = window.$, JQuery = window.JQuery;
$.getScript('http://localhost.com:7001/ybswcsstub/resources/plugins/bootstrap/js/bootstrap.js');
$('body').append('<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">' +
' <div class="modal-dialog">'+
' <div class="modal-content">'+
' <div class="modal-header">'+
' <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>'+
' <h4 class="modal-title" id="myModalLabel">Modal title</h4>'+
' </div>'+
' <div class="modal-body">'+
' Some Modal'+
' </div>'+
' <div class="modal-footer">'+
' <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>'+
' <button type="button" class="btn btn-primary">Save changes</button>'+
' </div>'+
' </div>'+
' </div>'+
'</div>');
$('#myModal').modal('show');
当我运行时,我在 iMacros TypeError 中收到以下错误:$(...).modal 不是函数,第 211 行(错误代码:-991)
任何帮助将不胜感激,因为我在这一点上有点卡住了:s
编辑:当我尝试使用 loadScriptFromURL 时,我不得不使用 $.getScript 来加载 bootstrap.js(域中的 .com 是因为 stackoverflowrestriction),但出现了错误
Error: Bootstrap's JavaScript requires jQuery, line 7 (Error code: -991)
谢谢,马克。