JQUERY工具:是否可以暴露两个元素?

时间:2011-04-04 11:52:52

标签: jquery jquery-tools

我需要同时expose()2 tr元素。有可能吗?

3 个答案:

答案 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。