我无法控制移动网站的页面,但我可以修改CSS。我的目标是隐藏一个元素,使其不会出现在我们的移动网站上。如果有办法告诉它使用最接近的<tr>
我会没事的。 如果我可以使用jQuery,我会这样做,但我不能:
$('.ex').closest('tr').attr('style', 'display:none')
<table>
....
<tr>
<td colspan="2">
<font class="colors_productname">
<span class="mapprice"></span>
</font>
</td>
</tr>
<tr> **/* I WANT TO DISPLAY:NONE HERE /***
<td colspan="2">
<span class="ex">Exclusive Price</span>
<font color="red"> </font><br>
<select>
<option value="1636">[Subtract -$282.34]</option>
</select>
</td>
</tr>
...
</table>
我相信我很接近,但它并没有隐藏选择:
option[value="1636"] {display:none}
span.ex + font + select{display:none}
答案 0 :(得分:0)
好的我明白了。由于这是使用移动css,它可能无法在所有旧手机上使用:
.ex {display: none}
span.ex + font + br + select{display:none}