0

我正在尝试为移动设备构建一个基本网页,在我的电脑 Chrome 浏览器上,我看到“???? ?????? ???” 希伯来文所写的每一个地方。这是我的代码:

<?php

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="he">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta http-equiv="Content-Language" content="he" />
    <meta name="GENERATOR" content="PHPEclipse 1.2.0" />
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
    <link rel="stylesheet" href="css/themes/light_blue.css" />
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile.structure-1.2.0.min.css" />
    <title>מניין</title>
</head>
<body>
    <div id="wraper" data-role="header">בדיקה בדיקה הדיקה</div>
</body>
</html>

我正在使用 Eclipse IDE 进行开发。关于如何解决这个问题的任何建议?

4

2 回答 2

2

删除; charset=UTF-8 和添加<meta charset="iso-8859-8">里面的文档<head>

于 2012-11-08T16:52:22.817 回答
0

你用什么浏览器?

在 Chrome 上效果很好

于 2012-11-08T16:53:03.550 回答