好的,假设我有这两个链接
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js"></script>
我使用这些作为我的 javascript 源
我创建了另一个名为
<script src="testing.js"></script>
但是在我的 html 中,我想显示脚本 src="testing.js" 我能够以某种方式将前两个链接放入 testing.js 文件中吗?
所以在我的html中它只会显示
<script src="testing.js"></script>
但实际上它正在运行三个脚本......