gpt4 book ai didi

html - 在 Firefox 中,控制台 "XML Parsing Error: mismatched tag"输入错误

转载 作者:太空狗 更新时间:2023-10-29 15:12:47 26 4
gpt4 key购买 nike

在 Firefox 中打开我的页面时出现以下错误(其他浏览器不显示此错误)。我使用的是 HTML5,如果我尝试在输入上放置结束标记,则页面验证失败。

enter image description here

<!DOCTYPE html>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge" >
<!--... more here...-->
</head>
<body>
<!--... more here...-->
<input type="text" id="wall_color_picker" onclick="startColorPicker(this)" title="Wall Color" value="#FFFFFF">
<!--... more here...-->
</body>
</html>

编辑 1:Firefox 版本是最新的(59.0.2(64 位))

编辑 2:响应 header :

Cache-Control   max-age=604800, public
Connection Keep-Alive
Content-Type text/html; charset=UTF-8
Date Tue, 24 Apr 2018 16:04:19 GMT
Keep-Alive timeout=5, max=100
Server Apache/2.4.6 (Red Hat Enterpri…penSSL/1.0.2k-fips PHP/5.6.35
Strict-Transport-Security max-age=31536000; includeSubdomains;
Transfer-Encoding chunked
X-Powered-By PHP/5.6.35

最佳答案

因为你的 <input>没有内容分期人不关标签<input></input>但在你的情况下,像这样在它的末尾关闭它 <input type="text" id="wall_color_picker" onclick="startColorPicker(this)" title="Wall Color" value="#FFFFFF"/>

请尝试以下操作,

    <!DOCTYPE html>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge" >
<!--... more here...-->
</head>
<body>
<!--... more here...-->
<input type="text" id="wall_color_picker" onclick="startColorPicker(this)" title="Wall Color" value="#FFFFFF"/>
<!--... more here...-->
</body>
</html>

希望对你有帮助

关于html - 在 Firefox 中,控制台 "XML Parsing Error: mismatched tag"输入错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47265858/

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