如何内iMacro加载jQuery和引导(How to load jQuery and Bootst

2019-11-03 12:33发布

我能到iMacros的内成功加载jQuery的,但是我无法加载bootstrap.js。 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">&times;</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类型错误以下错误:$(...)模式是不是一个函数,线211(错误代码:-991)

任何帮助将不胜感激,因为我那种停留在这一点上:■

编辑:我不得不使用$ .getScript加载bootstrap.js(域中的.com是因为stackoverflowrestriction的),当我试图用loadScriptFromURL,我得到错误

错误:引导的JavaScript jQuery的需要,7号线(错误代码:-991)

谢谢,马克。

文章来源: How to load jQuery and Bootstrap within iMacro