怎么将网页上的关闭按钮设置成灰色?  高手帮哈忙啊!

解决方案 »

  1.   

    <script> 
    window.open ('index.htm', '登陆', 'height=768px, width=1024px, top=0px, left=0px, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no,fullscreen=1') 
    </script> 
    使用弹出网页
      

  2.   

    <button id=a value=按钮 disabled />
      

  3.   

    <input id="btn" type="button" value="关闭" /><script>
      document.getElementById("btn").disabled = true;
    </script>
      

  4.   

    window.resizeTo(600,400); 
    600 宽  ,400 高 ~