我如何将一个js文件包含到另一个js文件中,以便坚持DRY原则并避免重复代码。
您只能在HTML页面中包含脚本文件,而不能在另一个脚本文件中包含脚本文件。也就是说,您 可以 编写JavaScript来将“包含”脚本加载到同一页面中:
var imported = document.createElement('script'); imported.src = '/path/to/imported/script'; document.head.appendChild(imported);
您的代码很有可能取决于您的“包含”脚本,但是在这种情况下,它可能会失败,因为浏览器将异步加载“导入”脚本。最好的选择是仅使用jQuery或YUI之类的第三方库,从而为您解决此问题。
// jQuery $.getScript('/path/to/imported/script.js', function() { // script is now loaded and executed. // put your dependent JS here. });