html?js如何公用_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 09:05:13
Original
1213 people have browsed it

我每个页面都要引入

<script src="../jquery/jquery-1.8.2.min.js"></script><script src="../jquery/jquery.mobile-1.2.0.min.js"></script><script src="../jquery/jquery-1.11.1.min.js"></script> <script src="../jquery/jquery.switchable-2.0.min.js"></script><script src="../jquery/modernizr.custom.min.js"></script><script src="../js/common.js"></script>
Copy after login
Copy after login

要怎么让每个页面共用


回复讨论(解决方案)

可以把这些代码写在一个页面中,别的页面都引用这个页面,另外建议src中不要用相对路劲,否则页面层级不同时会出错

a.js

<script src="../jquery/jquery-1.8.2.min.js"></script><script src="../jquery/jquery.mobile-1.2.0.min.js"></script><script src="../jquery/jquery-1.11.1.min.js"></script> <script src="../jquery/jquery.switchable-2.0.min.js"></script><script src="../jquery/modernizr.custom.min.js"></script><script src="../js/common.js"></script>
Copy after login
Copy after login


b.html
<html><script src="a.js"></script></html>
Copy after login


结果报错,求例子

include








这里边jquery两个版本,造成了资源浪费,后面的会覆盖前面的,所以建议的顺序是这样的:

<script src="../jquery/jquery-1.11.1.min.js"></script> <script src="../jquery/jquery.mobile-1.2.0.min.js"></script><script src="../jquery/jquery.switchable-2.0.min.js"></script><script src="../jquery/modernizr.custom.min.js"></script><script src="../js/common.js"></script>
Copy after login

然后加载的需求,如果有后端语言的话建议include,如果没有的话,就用js的,js的又分有框架或没框架的。
一般的require有个插件text,可以实现类似的功能。
http://yuankeqiang.lofter.com/post/8de51_ba101e
就是这篇文章。

现在说造型,如果对这些都不太熟悉,而且估算了解到实战的时间大于需求上线的时间,我建议手动全拷贝,或者找找其它办法,如果有时间就慢慢搞了。

没有后端语言要怎么解决??

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template