html内引用js脚本可以传递参数?
在html引用:<scripttype="text/javascript"src="js/footer.js?type=2"></script>请问?type=2是什么意...
在html引用:
<script type="text/javascript" src="js/footer.js?type=2"> </script>
请问?type=2是什么意思?
footer.js内是怎么接受type=2呢? 谢谢! 展开
<script type="text/javascript" src="js/footer.js?type=2"> </script>
请问?type=2是什么意思?
footer.js内是怎么接受type=2呢? 谢谢! 展开
2个回答
展开全部
var js = document.getElementsByTagName("script");
for(var i=0;i<js.length;i++){
if(js[i].src.indexOf("footer.js")>=0){
var arraytemp = new Array();
arraytemp = js[i].src.split('?');
arraytemp = arraytemp[1].split('=');
alert(arraytemp[0]+"="+arraytemp[1]);
}
}
你把这个写在footer.js的脚本内 就能读出来type=2
for(var i=0;i<js.length;i++){
if(js[i].src.indexOf("footer.js")>=0){
var arraytemp = new Array();
arraytemp = js[i].src.split('?');
arraytemp = arraytemp[1].split('=');
alert(arraytemp[0]+"="+arraytemp[1]);
}
}
你把这个写在footer.js的脚本内 就能读出来type=2
展开全部
footer.js 中可以这么样接收 参数 type
// ==============================
var type = null;
(function() {
var scripts = document.scripts || document.getElementsByTagName("script");
var thisScript = scripts[scripts.length-1];
type = decodeURIComponent((thisScript.src.match(/[?&]type\=([^]+)/i)||["",""])[1]);
})();
// alert(type);
// ==============================
var type = null;
(function() {
var scripts = document.scripts || document.getElementsByTagName("script");
var thisScript = scripts[scripts.length-1];
type = decodeURIComponent((thisScript.src.match(/[?&]type\=([^]+)/i)||["",""])[1]);
})();
// alert(type);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询