uniapp引用线上js 资源

方法一

var cont = document.getElementById('cont');

var newScript = document.createElement('script');

newScript.type = 'text/javascript';

newScript.src = "https://gw.alipayobjects.com/as/g/h5-lib/alipayjsapi/3.1.1/alipayjsapi.inc.min.js";

cont.appendChild(newScript);

该方法可在任意 js代码中引用

方法二

入口index.html 文件中写入script 标签

方法三

若引用js 模块化,可import 引用

你可能感兴趣的:(uniapp引用线上js 资源)