我将以下div呈现给客户端,但是在IE上,被忽略的yes是类.如果我在“开发人员工具”中查看目标元素,则“样式”面板中将完全缺少该类. shift-item-present类附加在服务器端,而check-yes类客户端附加在父行的当前属性上,也如下所示.
<td><div class="shift-item-present checked-yes" jQuery1272958392665="94"/></td>
父行:
<tr class="shift-item" id="ctl00_mainContentPlaceHolder_ctl00_shiftList_ctl01_shiftRow" present="True" shift-id="641" jQuery1272958392665="64">
该页面可以在FF中完美运行.这是CSS,它们都在同一文件中:
.shift-item-present
{
top: 2px;
left: 2px;
height: 12px;
width: 20px;
background-repeat: no-repeat;
background-position: center right;
}
.checked-yes
{
background-image: url('../Images/Icons/checked-yes-xs.png');
}
最佳答案
原文链接:https://www.f2er.com/css/530771.html