需求:
在js中需要获取前面传过来的参数,比如当前的域名或者某种后台传递过来的值
实现方式:
此种方式通过 document.scripts 获取其 src 值,然后正则读取,没有第二种好
第二种利用属性:
<script src="demo.js" type="text/javascript" data="yourpath" id="basePathScript"> </script>
js中直接获取:
var basePath = document.getElementById('basePathScript').getAttribute('data');
优点:
定义明确通过js的 id 读取