例如,我有一个这样的脚本:<script src="myjs.js?lol=asd"></script>
。
有没有让js文件中的lol
提醒它,例如,就像我们可以用PHP做的那样?像:
var lol = $_GET['lol'];
alert(lol);
答案 0 :(得分:2)
使用How may I reference the script tag that loaded the currently-executing script?中的代码获取对脚本标记的引用:
var scripts = document.getElementsByTagName('script');
var thisScriptTag = scripts[scripts.length - 1];
然后,您可以使用thisScriptTag.src
访问其src
属性并解析它以获取您要查找的变量
答案 1 :(得分:1)
你不能用javascript做到这一点。