如何最好地设置表格中的文本对齐方式

发布于 2024-09-01 13:31:44 字数 319 浏览 6 评论 0原文

有谁知道 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 技术交流群。

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

发布评论

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

评论(2

给我一枪 2024-09-08 13:31:45

您可以使用过滤功能:

$("td").filter(function(){return /^[0-9.%$()]+$/.test($(this).text())}).addClass("left");

You can use the filter function:

$("td").filter(function(){return /^[0-9.%$()]+$/.test($(this).text())}).addClass("left");
春庭雪 2024-09-08 13:31:45
  $(function(){
    $("table td").each(function(){
      if($(this).text().match(/^[0-9.%$()]+$/)){
        $(this).addClass("right");
      } else {
        $(this).addClass("left");
      }
    });
  });
  $(function(){
    $("table td").each(function(){
      if($(this).text().match(/^[0-9.%$()]+$/)){
        $(this).addClass("right");
      } else {
        $(this).addClass("left");
      }
    });
  });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文