数据表分页字符“<<”和“<”在 IE 和 Safari 中无法正确显示
我正在使用 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": '<'
}
}
});
我试图逃避 '\<\<'无济于事。
有什么想法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用字符实体引用
<
和& ;gt;
分别表示<
和>
。您可能还想了解用于显示
&
的&
。Use the character entity references
<
and>
for<
and>
respectively.You might also want to know about
&
too which is used to display&
.这些是在您的情况下使用的正确字符实体。
对于<和> 使用
<
和>
对于 << 和>>使用
«
和»
These are the correct character entities to use in your case.
For < and > use
<
and>
For << and >> use
«
and»