我需要同时expose()2 tr元素。有可能吗?
答案 0 :(得分:3)
与任何其他jQuery函数一样。只需使用jQuery选择器:
$('#tr1, #tr2').expose();
答案 1 :(得分:1)
如果你的意思是可见,那么肯定。
<强> 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();
});
答案 2 :(得分:0)
如果这是http://flowplayer.org/tools/demos/toolbox/expose/index.html
我担心你可能无法同时使用2 tr。