我在网站的多个页面上使用DataTables plugin,当找不到记录时,我需要它在每个页面上显示不同的消息。
现在我使用以下内容作为当前消息:
"oLanguage": {
"sEmptyTable": "There is no data available for the week selected."
}
是否有某种方法可以在oLanguage中放入一个检查当前页面的条件语句?类似的东西:
if (currentPage == "thisPage")
"sEmptyTable" : "There is no data on this current page"
答案 0 :(得分:2)
我不知道这个技巧是否适用于Datatables,但您可以尝试将“sEmptyTable”作为函数传递:
"oLanguage": {
"sEmptyTable": function(){ return "There is no data"; }
}
请参阅此小提琴http://jsfiddle.net/tRTkd/以获取设置按钮文字的演示。