数据表分页字符“<<”和“<”在 IE 和 Safari 中无法正确显示

发布于 2024-09-01 15:45:26 字数 690 浏览 6 评论 0 原文

我正在使用 DataTables jQuery 插件,但在 IE 和 Safari(Firefox 和 Opera 工作)中正确显示第一个和上一个分页链接时遇到问题。

“<<”和“<”显示为“<”和 ””。

$(document).ready(function () {
     oTable = $('#fileList').dataTable({
            "bJQueryUI": true,
            "sPaginationType": "full_numbers",
            "oLanguage": 
            {
                "sSearch": "Search all columns:",
                "oPaginate": 
                {
                    "sNext": '>',
                    "sLast": '>>',
                    "sFirst": '<<',
                    "sPrevious": '<'
                }
            }
});

我试图逃避 '\<\<'无济于事。

有什么想法吗?

I'm using the DataTables jQuery plugin and am having issues with the First and Previous pagination links displaying correctly in IE and Safari (Firefox and Opera work).

"<<" and "<" display as "<" and "".

$(document).ready(function () {
     oTable = $('#fileList').dataTable({
            "bJQueryUI": true,
            "sPaginationType": "full_numbers",
            "oLanguage": 
            {
                "sSearch": "Search all columns:",
                "oPaginate": 
                {
                    "sNext": '>',
                    "sLast": '>>',
                    "sFirst": '<<',
                    "sPrevious": '<'
                }
            }
});

I have attempted to escape '\<\<' to no avail.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

人疚 2024-09-08 15:45:27

使用字符实体引用 <& ;gt; 分别表示 <>

您可能还想了解用于显示 &&

Use the character entity references < and > for < and >respectively.

You might also want to know about & too which is used to display &.

秋心╮凉 2024-09-08 15:45:27

这些是在您的情况下使用的正确字符实体。

对于<和> 使用 <>

对于 << 和>>使用 «»

These are the correct character entities to use in your case.

For < and > use < and >

For << and >> use « and »

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文