把需要引入的CSS和JS所有外部文件合并为两个文件,方便调用怎么做?

it2024-12-04  14

把需要引入的CSS和JS所有外部文件合并为两个文件,方便调用怎么做?

1.问题原因

项目开发几乎每个JSP都会引用JS和CSS,那么就会有一些常用JS或者CSS,我们不希望每个JSP文件都引用一堆文件,而是只引用公用的JS和CSS就可以了;

2.解决办法

创建commonsCss.js文件----存放  css文件路径

document.write('需要的css路径') //文件只是学习,不做其他用途 //全局css document.write(' <link href="static/Hplus/css/bootstrap.min.css" rel="stylesheet">') document.write('<link href="static/Hplus/css/bootstrap-table.min.css" rel="stylesheet">') document.write(' <link href="static/Hplus/css/font-awesome.css">') document.write(' <link href="static/Hplus/css/animate.css" rel="stylesheet">') document.write(' <link href="static/Hplus/css/style.css" rel="stylesheet">') //漂亮的弹窗口必须引入css document.write(' <link href="static/Hplus/css/plugins/sweetalert/sweetalert.css" rel="stylesheet">')

创建commonsJs.js文件----存放  Js文件路径

//全局js document.write('<script src="static/Hplus/js/jquery.min.js"></script>') document.write('<script src="static/Hplus/js/bootstrap.min.js?"></script>') document.write('<script src="static/Hplus/js/plugins/metisMenu/jquery.metisMenu.js"></script>') document.write('<script src="static/Hplus/js/plugins/slimscroll/jquery.slimscroll.min.js"></script>') document.write('<script src="static/Hplus/js/plugins/layer/layer.min.js"></script>') document.write('<script src="static/Hplus/js/bootstrap-table.min.js"></script>') document.write('<script src="static/Hplus/js/plugins/sweetalert/sweetalert.min.js"></script>')

JSP页面引用

<head> <title>宠物阁</title> <base href="<%=basePath%>"> <%--全局css--%> <script src="static/commons/css/commonsCss.js"></script> </head> <body> </body> <%--全局js--%> <script src="static/commons/js/commonsJs.js"></script>

最新回复(0)