如何将javascript文件读取为文本文件并防止代码多次运行
index.js
version = "1.001";
alert("JS run");
... other code ...
我有使用 index.js 的 html
我尝试通过使用来读取 index.js
jQuery.get("js/index.js",function(data){
var currentVersion = data.split("\n")[0].split('"')[1];
}
我可以根据需要阅读文本,但是在我使用此代码后,警报(“JS run”)和里面的其他代码也会运行。