HTML浏览器解析问题

遇到浏览器显示空白,但是查看源代码却有的的问题首先应该查看网站代码问题:

解决方法是将 <meta ....>指定代码,放在<head>的第一行试试看:

<head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
    <title>Welcome to my page!</title>

</head>
 

猜你喜欢

转载自liangthinking.iteye.com/blog/1041468