JQUERY 工具:是否可以公开两个元素?

发布于 2024-10-30 09:52:11 字数 110 浏览 3 评论 0原文

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

I need to expose() 2 tr elements at the same time. Is it possible somehow?

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

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

发布评论

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

评论(3

信愁 2024-11-06 09:52:11

与任何其他 jQuery 函数一样。只需使用 jQuery 选择器:

$('#tr1, #tr2').expose();

As with any other jQuery function. Just use jQuery selectors:

$('#tr1, #tr2').expose();
眼藏柔 2024-11-06 09:52:11

如果你的意思是让可见,那么当然。

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:

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();
});
感悟人生的甜 2024-11-06 09:52:11

如果这是关于 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.

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