我有一个html文件和两个.js文件。我在一个html文件中放了多个脚本标签,因为我使用的是骨干网。
<html>
<body>
<script type="text/x-template" id="my-template">
some html contents
<script src="/javascripts/validation.js"></script>
<script src="/javascripts/other.js"></script>
</script>
<script type="text/x-template" id="myfile-template">
some html contents
</script>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</body>
</html>
我的问题是我无法从my-template脚本调用2个js文件。在上面的代码中,只有&#34; validation.js&#34;被叫,如果我把&#34; other.js&#34;首先只有&#34; other.js&#34;被称为。
<script src="/javascripts/other.js"></script>
<script src="/javascripts/validation.js"></script>
任何人都可以帮助我吗?
答案 0 :(得分:1)
您不能将标记放在其他标记内。
如果要导入两个JS文件,请执行以下操作:
<!-- Include external JS code -->
<script src="/javascripts/validation.js"></script>
<script src="/javascripts/other.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<!-- local JS code -->
<script type="text/x-template" id="my-template">/* some local JS code */</script>
<script type="text/x-template" id="myfile-template">/* some local JS code */</script>