将 HTML 头放在另一个文件中

Put HTML head in another file(将 HTML 头放在另一个文件中)
本文介绍了将 HTML 头放在另一个文件中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

有没有办法将所有 meta taglink relscript src 包含在一个文件中,然后要求该文件?

Is there a way to include all the meta tag, link rel and script src includes in one file, and then require that file?

我问的原因是因为我有 10-15 行要复制到每个文件中,并认为可能有另一种方法.

The reason I ask is because I have like 10-15 lines that i am copying into every file and figured there might be another way.

我将所有内容都放在一个文件中,并尝试了 Jquery 加载功能,但无济于事.

I put everything in one file and tried the Jquery load function, but to no avail.

谢谢

推荐答案

像这样创建一个 head.html 文件:

Create a head.html file like this:

<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Meta -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<!-- JS -->
<script type="text/javascript" src="js/lib/jquery-1.11.min.js" ></script>
<script type="text/javascript" src="js/lib/angular.min.js"></script>
<title>Your application</title>

现在在您的 HTML 页面中包含 head.html,如下所示:

Now include head.html in your HTML pages like this:

<head>
   <script type="text/javascript" src="js/lib/jquery-1.11.1.min.js" ></script>
   <script>
       $(function(){ $("head").load("head.html") });
   </script>
</head>

这篇关于将 HTML 头放在另一个文件中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

jasmine.createSpyObj with properties(jasmine.createSpyObj 与属性)
What#39;s a good way to reuse test code using Jasmine?(使用 Jasmine 重用测试代码的好方法是什么?)
Does Jasmine#39;s toThrow matcher require the argument to be wrapped in an anonymous function?(Jasmine 的 toThrow 匹配器是否需要将参数包装在匿名函数中?)
Jasmine - Spying on a method call within a constructor(Jasmine - 在构造函数中监视方法调用)
Getting requirejs to work with Jasmine(让 requirejs 与 Jasmine 一起工作)
How can I spy on a getter property using jasmine?(如何使用 jasmine 监视 getter 属性?)