当前位置: 代码迷 >> Web前端 >> ie6 上隐藏 select
  详细解决方案

ie6 上隐藏 select

热度:35   发布时间:2012-10-06 17:34:01.0
ie6 下隐藏 select

?

---------------------------------------------


$(document).ready(function(){

?? ? $(".stripe tr").mouseover(function(){

?? ? $(this).addClass("over");}).mouseout(function(){?

?? ? $(this).removeClass("over");}); // 此方法对tr样式切换可能刷新 //?document 可以 ie6 下隐藏||显示 select

?});



<style>

tr.over td {}

</style>


---------------------------------------------


<tr style="display: none;">

?? <td>

<select>

???<option>--a--</option>

???<option>--b--</option>

</select>

??<td>

<tr>


?

  相关解决方案