我正在为我的网站制作一个简单的购物车。在项目的说明页面上,点击“添加到购物车”按钮后,该项目会显示在购物车中商品列表的底部。它在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>
答案 0 :(得分:0)
尝试$('#contents')。append(data.insert)