Options for a script
// you can add multiple loads
awit addScript([{
src: "https://code.jquery.com/jquery-3.5.0.js"
}, {
src: "https://code.jquery.com/jquery-3.2.0.js",
async: true
}, {
src: "https://code.jquery.com/jquery-3.3.0.js",
async: true,
injectLocation: '#main div.test',
}, {
src: "https://code.jquery.com/jquery-3.4.0.js",
strategy: 'eval',
}, {
// link tag
// css autodetected
src: "https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.2/css/bootstrap-grid.min.css",
}])
将脚本注入. 脚本选项信息:
strategy
: 用于运行 JavaScript 的策略。可以是inject
、eval
或href
。默认自动检测.injectLocation
: 用于注入资源的位置的document.querySelector
参数。默认为head
.async
: 异步加载脚本src
: 脚本的来源