JQuery 按数字显示表格
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用变量中的数字构造一个字符串。
其中变量 num 是要隐藏的表的编号。
You can construct a string with the number in a variable.
Where the variable num is the number of the table you want to hide.