我有一个html文件和两个.js文件。我将多个脚本标记放在一个html文件中,因为我使用的是backbone js。
<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脚本调用两个js文件。在上面的代码中,只调用了"validation.js“,如果我把"other.js”放在第一位,那么只会调用"other.js“。
<script src="/javascripts/other.js"></script>
<script src="/javascripts/validation.js"></script>
有谁可以帮我?
发布于 2014-05-07 08:51:28
你不能把标签放在其他标签里面。
如果您想导入您的两个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>
https://stackoverflow.com/questions/23513033
复制