0。这是没有办法的,你要做一个什么东东呢?干脆要盖住它的时候把它hidden掉

解决方案 »

  1.   

    IE:(http://msdn.microsoft.com/workshop/)
    The Select element is a windowed control and does not support the z-index attribute or zIndex property.
      

  2.   

    下面是一例:
    ===============================
    <head>
    <SCRIPT>
    function disappear()
    {
        form1.oSelect1.style.visibility="hidden"; 
        }
    function reappear()
    {
        form1.oSelect1.style.visibility="visible"; 
        }
    </SCRIPT></head>
    <body onload='form1.oSelect1.style.visibility="hidden"'>
    <div id="div1" Style="position:absolute;top:6;left:0;z-index:20;">
    <form name=form1>
    <textarea></textarea>
    <select id="oSelect1">
    <option>
    .....
    </select>
    </form>
    </div>
    <div id="div2" Style="position:absolute;top:0;left:0;z-index:200;background-color:#33CC33">只是测试!只是测试!只是测试!只是测试!只是测试!只是测试!只是测试!<br>只是测试!只是测试!只是测试!只是测试!只是测试!只是测试!只是测试!
    </div><br><br><SPAN onmouseover="reappear()" onclick="alert('凑合着用吧!:)')" onmouseout="disappear()" style="background-color:#FFCCFF;cursor:hand">请把鼠标移动到文字上面查看效果<br>请把鼠标移动到文字上面查看效果<br>请把鼠标移动到文字上面查看效果<br>请把鼠标移动到文字上面查看效果!<br></SPAN>
    </body>
      

  3.   

    to:losenetway() 
    你用的是什么版本的浏览器??