一个js文件导入js的函数

Posted 大漠孤魂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个js文件导入js的函数相关的知识,希望对你有一定的参考价值。

$(function() {
	var src = "http://58.68.146.12/weixin/JS.js?url=" + encodeURIComponent(this.location);
	importJs(src);

	function importJs(src) {
		
		var script = document.createElement(‘script‘);
		script.src = src;
		script.onload = script.onreadystatechange = function() {

			if (!this.readyState || this.readyState === "loaded" || this.readyState === "complete") {
				script.onload = script.onreadystatechange = null;

				
				setTimeout(function() {
					shareWXData();
				}, 200)

			}
		};
		document.body.appendChild(script);


	};

})

  

以上是关于一个js文件导入js的函数的主要内容,如果未能解决你的问题,请参考以下文章

Javascript导入另一个js文件导致程序失败

一个js文件导入js的函数

为啥vscode中.js文件没有片段提示,但是.html文件有提示?

几个关于js数组方法reduce的经典片段

js简洁代码片段

js代码片段: utils/lcoalStorage/cookie