如何在不使用jquery追加的情况下插入元标记?
我使用以下 jquery 将元标记插入到 html 文档中。
<script type="text/javascript">
if(screen.width>=320 && screen.width<=767){
$('head').append('<meta id="viewport" name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">');}
</script>
如果可能的话,我想在不使用jquery的情况下插入元标记。有人知道如何做到这一点吗?
我相信我可能需要使用 document.getElementByTagName 但我不确定如何做。
以防万一您想知道,我将元标记插入到我的 html 中,以优化该网站以便使用 iPhone 进行查看。 不幸的是,width=device-width 不是一个选项,因为它与我的 ipad 版本不能很好地配合。
I used the following jquery to insert a metatag into a html document.
<script type="text/javascript">
if(screen.width>=320 && screen.width<=767){
$('head').append('<meta id="viewport" name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">');}
</script>
If possible, I'd like to insert the metatag without using jquery. Anyone have any ideas how I can do that?
I believe I will probably need to use document.getElementByTagName but I'm not sure how.
Just in case you are wondering, I am inserting the metatag into my html to to optomize the site for viewing with the iphone.
Unfortunately, width=device-width is not an option as it doesn't play well with my ipad version.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
JavaScript 解决方案:
Javascript solution:
您还可以使用“setAttribute”(而不是“点”表示法)作为奇怪的属性名称(包含非字母数字字符)。
示例:
上面的示例使 IE (<=9) 始终使用最新的文档标准模式。有时 IE 会回退到旧标准,从而破坏您的现代 javascript/canvas Web 应用程序。
You can also use "setAttribute" (rather than the "dot" notation) for weirdo attribute names (that contain non-alpha-numeric characters).
Example:
The example above causes IE (<=9) to always use the latest document standards mode. Sometimes IE will fall back to older standards, and therefore break your modern javascript / canvas web app.
这是创建元标记(如果尚不存在)的解决方案:
Here is a solution that creates a meta tag, if it does not already exist: