本文介绍了如何在< head>中添加任何内容通过jquery / javascript?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用CMS,可防止为< head>
元素编辑HTML源代码。
Working with CMS, which prevents editing HTML source for <head>
element.
要在< title>
标签上添加以下内容:
For example I want to add the following above the <title>
tag:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
推荐答案
您可以选择它并将其添加为正常:
You can select it and add to it as normal:
$('head').append('<link />');
这篇关于如何在< head>中添加任何内容通过jquery / javascript?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!