有时候我们需要根据参数不同来引入不同的js文件,用html直接写标签满足不了我们的需求,总结几种方法,以及同步异步加载的各种需求。 一.直接加载
function test(){ alert("测试"); } var str="测试"
Insert title here
test() alert(str)