如何最好地设置表格中的文本对齐方式
有谁知道 jQuery 插件或片段可以根据内容自动对齐表格中的单元格文本?
具体来说,所有表格单元格都将右对齐,除非单元格中存在可见的非数字相关字符,否则它将左对齐。我想使用像这样的正则表达式来识别单元格中的非数字相关字符:
/[^0-9% +-()]/
是否有一种真正简单的方法来完成此操作? 我认为这样的事情:
$("td:contains('[^0-9% +-()]')").addClass("left");
可以解决问题,但我不认为“包含”可以采用正则表达式。
Does anyone know of a jQuery plugin or snippet that will auto-text-align cells in a table based on content?
Specifically, all table cells would be right justified unless there is a visible non-number related character in the cell, then it would be left justified. I'd like to use something like this regular expression to identify non-number related characters in a cell:
/[^0-9% +-()]/
Is there a real simple way to accomplish this?
I would think something like this:
$("td:contains('[^0-9% +-()]')").addClass("left");
would do the trick, but I don't think 'contains' can take a regular expression.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用过滤功能:
You can use the filter function: