2

我正面临阿拉伯语数据的问题。它在IE中显示不正确,而在Chrome中显示正确。

我正在使用两个文件 'frameset.html'& 'legend.html' 。'legend.html' 有阿拉伯语内容。之前我用 div 代替了 'frameset.html' 中的框架,并且阿拉伯语数据工作正常,但在我更改后,它出现了问题。

框架集.html:

 <html>

 <head>
    <META http-equiv="Content-Type" content="text/html; charset=utf-8">
   <script src="js/jquery.js"></script>

     <script>
      $(document).ready(function(){

$("#topArb").load("Top_arb.jsp");
$("#actionBar").load("ActionBar.jsp");
$("#viewInbox").load("ViewInbox.jsp");
$("#legend").load("Legend.html");
$("#nav").load("Nav.jsp");

  });

   </script>

      </head>

      <body>
      <div id="main-container">

      <div id="topArb">
      </div>
       <div id="left-container">
   <div id="actionBar">
    </div>

     <div id="viewInbox">
  </div>
     <div id="legend">
     </div>
      </div>
      <div id="right-container">
     <div id="nav">
    </div>
   </div>
   </body>
  </HTML>

legend.html:-

     <HTML >
        <HEAD>
          <META http-equiv="Content-Type" content="text/html; charset=utf-8">


      </HEAD>

   <BODY topmargin=0>
<table align="center" style="" width="100%" height="20">
    <tr>
        <td>
            <table>
                <tr>
                    <td><IMG SRC="imgs/newH.gif" WIDTH="16"     HEIGHT="16"
                        BORDER="0" ALT=""></td>
                    <td class="SET">وثيقة عاجلة</td>
                </tr>
                <tr>
                    <td><IMG SRC="imgs/new.gif" WIDTH="16"  HEIGHT="16" BORDER="0"
                        ALT=""></td>
                    <td class="SET">وثيقة عادية</td>
                </tr>
            </table>
        </td>
        <td>
            <table>
                <tr>
                    <td><IMG SRC="imgs/BnewH.gif" WIDTH="16" HEIGHT="16"
                        BORDER="0" ALT=""></td>
                    <td class="SET">وثيقة مؤرشفة عاجلة</td>
                </tr>
                <tr>
                    <td><IMG SRC="imgs/Bnew.gif" WIDTH="16" HEIGHT="16"
                        BORDER="0" ALT=""></td>
                    <td class="SET">وثيقة مؤرشفة عادية</td>
                </tr>
            </table>
        </td>
        <td>
            <table>
                <tr>
                    <td><IMG SRC="imgs/CloseDoc.gif" WIDTH="18" HEIGHT="18"
                        BORDER="0" ALT=""></td>
                    <td class="SET">غير مقروء</td>
                </tr>
                <tr>
                    <td><IMG SRC="imgs/OpenDoc.gif" WIDTH="18" HEIGHT="18"
                        BORDER="0" ALT=""></td>
                    <td class="SET">مقروء</td>
                </tr>
            </table>
        </td>
        <td>
            <table>
                <tr>
                    <td><IMG SRC="imgs/L.gif" WIDTH="18" HEIGHT="18" BORDER="0"
                        ALT=""></td>
                    <td class="SET">رد</td>
                </tr>
                <tr>
                    <td><IMG SRC="imgs/ic_waitingreply.gif" WIDTH="18"
                        HEIGHT="18" BORDER="0" ALT=""></td>
                    <td class="SET">نسخة من الوثيقة</td>
                </tr>
            </table>
        </td>
        <td>

            <table>
                <tr>
                    <td><IMG SRC='images/ic_suspend.gif' WIDTH="18" HEIGHT="18"
                        BORDER="0" ALT=""></td>
                    <td class="SET">الأعمال المؤجلة</td>
                </tr>
                <tr>
                    <td><IMG SRC='imgs/ic_close.gif' WIDTH="18" HEIGHT="18"
                        BORDER="0" ALT=""></td>
                    <td class="SET">الأعمال المغلقة</td>
                </tr>
            </table>
        </td>

        <td><IMG SRC="imgs/Drafts.gif" WIDTH="18" HEIGHT="18" BORDER="0"
            ALT=""></td>
        <td class="SET">مسودة</td>
    </tr>
 </table>
    </BODY>

这里我的 legend.html(marked) 显示在垃圾数据而不是阿拉伯数据中 在此处输入图像描述

4

2 回答 2

1

如果文档仅在通过 AJAX 加载时损坏,请尝试ajaxSetup()

$.ajaxSetup({
  "beforeSend": function (xhr) {
    xhr.overrideMimeType("text/html; charset=UTF-8");
  }
});

$("#legend").load("Legend.html");
于 2013-08-01T11:34:29.680 回答
0

只需将文件从 legend.html 更改为 legend.jsp 即可解决我的问题

于 2013-08-13T09:29:32.267 回答