JQuery 按数字显示表格

发布于 2024-10-22 05:25:06 字数 253 浏览 0 评论 0原文

我有 8 个表,除编号外均具有相同的名称。

Example:
table_1
table_2
table_3
.
.
table_8

如何根据数字为 1 到 8 的变量隐藏表格。

示例:

$("#table_number").show();

我希望该数字成为我指定的变量。

是否有可能是我想做的事情或者太复杂而无法做的事情?

I have 8 tables all with the same name with exception of a number.

Example:
table_1
table_2
table_3
.
.
table_8

How can I hide the table according to a variable with a number 1 trough 8.

Example:

$("#table_number").show();

I would like that number to be a variable which I specify.

Is it possible what I want to do or too complex to do ?

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

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

发布评论

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

评论(1

濫情▎り 2024-10-29 05:25:06

您可以使用变量中的数字构造一个字符串。

var identifier = "#table_"+num;
$(identifier).hide();

其中变量 num 是要隐藏的表的编号。

You can construct a string with the number in a variable.

var identifier = "#table_"+num;
$(identifier).hide();

Where the variable num is the number of the table you want to hide.

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