我需要同时 暴露() 2 个 tr 元素。有可能吗?
I need to expose() 2 tr elements at the same time. Is it possible somehow?
与任何其他 jQuery 函数一样。只需使用 jQuery 选择器:
$('#tr1, #tr2').expose();
As with any other jQuery function. Just use jQuery selectors:
如果你的意思是让可见,那么当然。
CSS:
tr { display: none; }
HTML:
<span class="exposeNow">EXPOSE</span> <table> <tr class="exposeMe"> <td>Some stuff</td> <td>in here too</td> </tr> <tr class="exposeMe"> <td>Some stuff</td> <td>in here too</td> </tr> <tr> <td>This one won't</td> <td>get shown on click</td> </tr> <tr> <td>This one won't</td> <td>get shown on click</td> </tr> </table>
jQuery:
$("span.exposeNow").click(function(){ $("tr.exposeMe").show(); });
If you mean make visible, then sure.
CSS:
HTML:
jQuery:
如果这是关于 http://flowplayer.org/tools/demos/toolbox/expose /index.html
恐怕您可能无法同时使用 2 个 tr 来完成此操作。
If this is about http://flowplayer.org/tools/demos/toolbox/expose/index.html
I'm afraid you might not be able to do it with 2 tr's at the same time.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(3)
与任何其他 jQuery 函数一样。只需使用 jQuery 选择器:
As with any other jQuery function. Just use jQuery selectors:
如果你的意思是让可见,那么当然。
CSS:
HTML:
jQuery:
If you mean make visible, then sure.
CSS:
HTML:
jQuery:
如果这是关于 http://flowplayer.org/tools/demos/toolbox/expose /index.html
恐怕您可能无法同时使用 2 个 tr 来完成此操作。
If this is about http://flowplayer.org/tools/demos/toolbox/expose/index.html
I'm afraid you might not be able to do it with 2 tr's at the same time.