$ _GET里面的javascript文件?

时间:2012-11-27 21:41:40

标签: javascript

例如,我有一个这样的脚本:<script src="myjs.js?lol=asd"></script>

有没有让js文件中的lol提醒它,例如,就像我们可以用PHP做的那样?像:

var lol = $_GET['lol'];
alert(lol);

2 个答案:

答案 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做到这一点。