gpt4 book ai didi

html - HTML X-UA兼容的标记在IE 9中不起作用

转载 作者:行者123 更新时间:2023-12-02 14:54:42 25 4
gpt4 key购买 nike

我收到错误消息:X-UA兼容的META标记('IE = 7')被忽略,因为文档模式已经完成。

我已经读到,解决此问题的方法是,在head标签中声明meta标签的高度不够,但是我尝试将meta标签移到head标签的第一行,但这不能解决错误。

我正在使用Grails .gsp文件,该文件还使用敲除js。

以下是相关代码:

<!doctype html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"><!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>myInfinitec Membership Management</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/ucpmanagementportal/static/images/favicon.ico" type="image/x-icon">

<meta name="layout" content="main"/>




<script src="/ucpmanagementportal/static/plugins/jquery-1.7.1/js/jquery/jquery-1.7.1.min.js" type="text/javascript" ></script>
<link href="/ucpmanagementportal/static/bundle-bundle_coreCSS_head.css" type="text/css" rel="stylesheet" media="screen, projection" />



</head>

编辑:在IE开发人员窗口中,每行之间都会生成“文本-空文本节点”行。也许这可以算作X-UA兼容元标记之前的东西。我读到解决方法是将display:block和zoom:1添加到受影响的元素,但这不起作用。这是我正在描述的示例:
<head>
Text - Empty Text Node
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
Text - Empty Text Node
<meta style="display: block; zoom: 1;" http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
Text - Empty Text Node

最佳答案

好的,我解决了我的问题,尽管事实证明我的问题与我所描述的错误无关。我由于IE的ajax调用缓存而遇到错误,并且能够通过添加jQuery.ajaxSetup({cache:false})来解决此问题。

关于html - HTML X-UA兼容的标记在IE 9中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11398852/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com