FF 中的 jQuery .appendTo() 使用会破坏格式

发布于 2024-12-04 11:06:53 字数 2514 浏览 3 评论 0 原文

我正在为我的网站制作一个简单的购物车。在商品描述页面上,单击“添加到购物车”按钮后,该商品将显示在购物车中商品列表的底部。它在 Chrome 和 IE9 中完美运行,但 Firefox(本例中为 v6)破坏了良好的格式。 appendTo 能够显示所有信息,但在 Firefox 中,购物车中的所有项目(位于 HTML 表格中)都会丢失格式。表中的文本和图片会四处移动(对于所有项目,而不仅仅是新项目)。

 $.post(
        'handlers/addToCart.php',
        {cartItem:"<?php echo $itemID; ?>"},
        function(data){             
            if(data.num > 0){$('#empty').hide();}
            //append new to item to bottom to cart
            $(data.insert).hide().appendTo('#contents').show(1200);
        },
        "json"
        );

这是被回显并附加到表中的 html:

       <tr>
            <td>
            </td>
            <td>
                <a href=\"http://www.mysite.com/spotlight.php?itemNo=$cID\">
                    <img src=\"$cthumb\" width=\"40\" height=\"35\" />
                </a>
            </td>
            <td>
                <a href=\"http://www.mysite.com/spotlight.php?itemNo=$cID\">$cname</a>
            </td>
        </tr>
        <tr>
                <td>
                    <img src=\"img/delete_x.gif\" width=\"20\" height=\"20\" id=\"$cID\" alt=\"$cfname\" class=\"delx\" onclick=\"delCartItem(id,alt)\" />
                </td>
                <td colspan=\"2\" class=\"cartPrice\">
                    \$$cprice
                </td>
        </tr>
        <tr><td colspan=\"3\"><hr /></td></tr>

这是已经有 1 件商品的购物车:

<table id="contents">
    <tr><td colspan="3"><hr /></td></tr>
    <tr>
        <td>
        </td>
        <td>
            <a href="http://www.mysite.com/spotlight.php?itemNo=981">
                <img src="thumb/pro.png" width="40" height="35" />
            </a>
        </td>
        <td>
            <a href="http://www.mysite.com/spotlight.php?itemNo=981">Product ABC</a>
        </td>
    </tr>
    <tr>
            <td>
                <img src="img/delete_x.gif" width="20" height="20" id="981" alt="ABC" class="delx" onclick="delCartItem(id,alt)" />
            </td>
            <td colspan="2" class="cartPrice">
                $40.00
            </td>

    </tr>
    <tr><td colspan="3"><hr /></td></tr>
</table>

I'm making a simple shopping cart for my site. On an item's description page, after clicking the 'add to cart' button, the item appears at the bottom of your list of items in your shopping cart. It works perfectly in Chrome and IE9 but Firefox (v6 in this case) breaks the nice formatting. The appendTo is able to make all the information appear, but in Firefox all the items in the cart (which are in an HTML table) lose there formatting. The text and pictures in the table move around (for all the items. not just the new one).

 $.post(
        'handlers/addToCart.php',
        {cartItem:"<?php echo $itemID; ?>"},
        function(data){             
            if(data.num > 0){$('#empty').hide();}
            //append new to item to bottom to cart
            $(data.insert).hide().appendTo('#contents').show(1200);
        },
        "json"
        );

this is the html that gets echoed to be appended to the table:

       <tr>
            <td>
            </td>
            <td>
                <a href=\"http://www.mysite.com/spotlight.php?itemNo=$cID\">
                    <img src=\"$cthumb\" width=\"40\" height=\"35\" />
                </a>
            </td>
            <td>
                <a href=\"http://www.mysite.com/spotlight.php?itemNo=$cID\">$cname</a>
            </td>
        </tr>
        <tr>
                <td>
                    <img src=\"img/delete_x.gif\" width=\"20\" height=\"20\" id=\"$cID\" alt=\"$cfname\" class=\"delx\" onclick=\"delCartItem(id,alt)\" />
                </td>
                <td colspan=\"2\" class=\"cartPrice\">
                    \$cprice
                </td>
        </tr>
        <tr><td colspan=\"3\"><hr /></td></tr>

and this is the cart with 1 item already in it:

<table id="contents">
    <tr><td colspan="3"><hr /></td></tr>
    <tr>
        <td>
        </td>
        <td>
            <a href="http://www.mysite.com/spotlight.php?itemNo=981">
                <img src="thumb/pro.png" width="40" height="35" />
            </a>
        </td>
        <td>
            <a href="http://www.mysite.com/spotlight.php?itemNo=981">Product ABC</a>
        </td>
    </tr>
    <tr>
            <td>
                <img src="img/delete_x.gif" width="20" height="20" id="981" alt="ABC" class="delx" onclick="delCartItem(id,alt)" />
            </td>
            <td colspan="2" class="cartPrice">
                $40.00
            </td>

    </tr>
    <tr><td colspan="3"><hr /></td></tr>
</table>

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

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

发布评论

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

评论(1

余厌 2024-12-11 11:06:53

尝试 $('#contents').append(data.insert)

Try $('#contents').append(data.insert)

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