<table class="myCustomers">
<tbody>
<tr>
<td>
<ul id="salesCustomers">
<li title="cust 1"><a id="cust_1" >customer 1</a></li>
<li title="cust 2"></li>
</ul>
</td>
</tr>
</tbody>
当我在 IE 7 上执行以下操作时,对应于“客户 1”的 DOM 元素从容器“salesCustomers”中删除,但“salesCustomers”容器在删除元素后确实得到调整(我的意思是 IE 7 显示空白空间代替它)
$('#cust_1').remove();
它在 IE8、9、firefox、chrome 上运行良好,但在 IE 7 上不行?
更新:-
CSS部分是
table.myCustomers li {
margin: 8px;
}
table.myCustomers li a {
text-decoration: none;
}
a {
color: #000000;
margin: 3px;
}