我是靠谱客的博主 忐忑哈密瓜,最近开发中收集的这篇文章主要介绍如何将其他页面都引用的js提取到公共的一个js,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

举例如下

// 通用js和css
(function (){
var strFullPath=window.document.location.href;
var strPath=window.document.location.pathname;
var pos=strFullPath.indexOf(strPath);
var prePath=strFullPath.substring(0,pos);
var postPath=strPath.substring(0,strPath.substr(1).indexOf('/')+1);
var appRootPath = prePath+postPath;
var jsHeader = "<script type='text/javascript' src='" + appRootPath + "/";
var jsFooter = "'></script>";
document.write(jsHeader + "common/js/jquery-1.12.3.js" + jsFooter);
document.write(jsHeader + "common/js/common.js" + jsFooter);
document.write(jsHeader + "layui/src/layui.js" + jsFooter);
document.write(jsHeader + "layui/src/layui-xtree.js" + jsFooter);
document.write(jsHeader + "common/js/page_util.js" + jsFooter);
document.write(jsHeader + "common/js/date_util.js" + jsFooter);
document.write(jsHeader + "common/js/dateConvert.js" + jsFooter);
var cssHeader = "<link rel='stylesheet' type='text/css' href='" + appRootPath + "/";
var cssFooter = "'></link>";
document.write(cssHeader + "layui/src/css/layui_1366.css" + cssFooter);
document.write(cssHeader + "common/js/common.css" + cssFooter);
})();

2.其他页面用这个js就还可以了

最后

以上就是忐忑哈密瓜为你收集整理的如何将其他页面都引用的js提取到公共的一个js的全部内容,希望文章能够帮你解决如何将其他页面都引用的js提取到公共的一个js所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(82)

评论列表共有 0 条评论

立即
投稿
返回
顶部