在跨 3 列的单元格上使用 slipToggle

发布于 2024-11-09 01:09:44 字数 2434 浏览 0 评论 0原文

我正在尝试创建一个表格,而当用户单击其中一行时,一个块将沿着表格的相同长度滑动。我尝试使用 div,但我想除非在单元格内部,否则表格中的任何位置都不能有 div。这是我当前的代码:

<table class="table-carrier">
        <thead>
            <tr>
                <th>
                    <%= Html.Encode(SFSys.Inst.I18n.GetText("Name")) %>
                </th>
                <th>
                    <%= Html.Encode(SFSys.Inst.I18n.GetText("Value")) %>
                </th>
                <th><!-- Data to be added later --></th>
            </tr>
        </thead>
        <% foreach (var Carrier in ViewData.Model.Carriers) {  %>
        <tbody>
            <tr>
                <td class="carrier-row" onclick="$(this)
                .closest('tbody')
                .next('.section')
                .slideToggle('fast');">
                    <%= Html.Encode(Carrier.Name) %>
                </td>
                <td>
                    <%= Html.Encode(Carrier.Value) %>
                </td>
                <td>
                    <%using(Html.BeginForm("Action", "Form")) {%>
                        <input type="hidden" name="FormKey" id="FormKey" value="<%= this.Request.Url.Query %>" />
                        <input type="submit" name="action" value="<%= Html.Encode(SFSys.Inst.I18n.GetText("Change")) %>" onclick='scriptForward = true' />
                    <%}%>
                </td>
            </tr>
            </tbody>
            <tbody class="section">
            <tr>
                <td colspan="3">
                    <div >
                        <table>
                            <tr>
                                <td>left 1</td>
                                <td>right 1</td>
                            </tr>
                            <tr>
                                <td>left 2</td>
                                <td>right 2</td>
                            </tr>
                        </table>
                    </div>
                </td>
            </tr>
            </tbody>
        <% } %>
    </table>

我能够让每个部分单独出现,但是当它这样做时,它会更改我的表格,将信息从一个单元格向下滑动,然后将其拉伸。有没有办法让信息沿着表格的长度向下滑动?

I am trying to create a table, whereas when the user clicks on one of the rows, a block will slide down the same length of the table. I tried using a div, but I guess you can't have a div anywhere in the table unless inside of a cell. Here is my current code:

<table class="table-carrier">
        <thead>
            <tr>
                <th>
                    <%= Html.Encode(SFSys.Inst.I18n.GetText("Name")) %>
                </th>
                <th>
                    <%= Html.Encode(SFSys.Inst.I18n.GetText("Value")) %>
                </th>
                <th><!-- Data to be added later --></th>
            </tr>
        </thead>
        <% foreach (var Carrier in ViewData.Model.Carriers) {  %>
        <tbody>
            <tr>
                <td class="carrier-row" onclick="$(this)
                .closest('tbody')
                .next('.section')
                .slideToggle('fast');">
                    <%= Html.Encode(Carrier.Name) %>
                </td>
                <td>
                    <%= Html.Encode(Carrier.Value) %>
                </td>
                <td>
                    <%using(Html.BeginForm("Action", "Form")) {%>
                        <input type="hidden" name="FormKey" id="FormKey" value="<%= this.Request.Url.Query %>" />
                        <input type="submit" name="action" value="<%= Html.Encode(SFSys.Inst.I18n.GetText("Change")) %>" onclick='scriptForward = true' />
                    <%}%>
                </td>
            </tr>
            </tbody>
            <tbody class="section">
            <tr>
                <td colspan="3">
                    <div >
                        <table>
                            <tr>
                                <td>left 1</td>
                                <td>right 1</td>
                            </tr>
                            <tr>
                                <td>left 2</td>
                                <td>right 2</td>
                            </tr>
                        </table>
                    </div>
                </td>
            </tr>
            </tbody>
        <% } %>
    </table>

I am able to get each section to come up on its own, but when it does this, it alters my table, slides the information down from one cell, then stretches it over. Is there a way to make the information slide down at the length of the table?

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

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

发布评论

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

评论(1

飞烟轻若梦 2024-11-16 01:09:44

尽管我无法找到合适的解决方案,但使用 jQuery Accordion 对象设法创建了我正在寻找的内容。有关详细信息,请访问 jQuery Accordion

Although I was unable to find a proper solution, using the jQuery Accordion objects managed to create what I was looking for. More information about that can be found at jQuery Accordion

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