如何在 jQuery 选项卡中显示中文 html 文件
我在页面中使用ajax模式使用jQuery选项卡小部件,像
<li><a href="changelog/web.html" title="web">WEB</a></li>
changelog/web.html这样的东西已经在其标签中声明字符集为gb2312,并且可以在iframe中正常显示。但在jQuery选项卡的目标div中,web.html中的所有汉字都是不可读的代码。 我已经设置了“contentType:”text/html; charset=gb2312" 在 ajaxOptions for jQuery 选项卡中,但它仍然不起作用。
那么我现在能做什么?非常感谢
I used jQuery tabs widget in my page with ajax mode, something like
<li><a href="changelog/web.html" title="web">WEB</a></li>
changelog/web.html is already declared charset as gb2312 in its tag and it can be shown normally in iframe. But in target div of jQuery tabs, all the chinese characters in web.html are unreadable code.
I've already set "contentType: "text/html; charset=gb2312" in ajaxOptions for jQuery tab, but it still not work.
so what can I do now? Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我前几天就遇到这个问题了web.html 的编码错误。我用 utf-8 重新创建了该文件的副本,然后它运行良好。
I've got the problem some days ago. The web.html has wrong encode. I re-create a copy of the file with utf-8 then it works well.