2014-01-21 45 views
0

工作,我試過CSS輸入[類型= 「提交」] [禁用]是不是在Firefox

input[type="button"][disabled="disabled"]{ 
     color:gray !important; 
} 

這個CSS在我的代碼它在IE工作,但不能在Firefox。

這是不適用於Firefox的CSS ..?

我的HTML代碼

<input type="button" id="submit" value="Submit"></input> 
<script location="body"> 
document.getElementById("submit").disabled=true; 
</script> 

請幫助我..

+2

標題和問題中的標記是不同的。你有一個包含相關標記和樣式的jsfiddle嗎? – StuperUser

+2

爲什麼'[disabled =「disabled」]'而不僅僅是[[disabled]]? – Spudley

+0

適用於我http://jsfiddle.net/cLbJy/ –

回答

0

一些代碼片段:將幫助您瞭解您所做的省略。

<html> 
    <head> 
     <style type="text/css"> 
      input[type="button"][disabled="disabled"]{ 
       color:gray !important; 
      } 
     </style> 

     <script type="text/javascript"> 
      function myFunc() { 
       document.getElementById("myButton").disabled = true; 
      } 
     </script> 
    </head> 

    <body onload="myFunc()"> 
     <input id="myButton" type="button" value="Hello"/> 
    </body> 
</html> 
+0

非常感謝你的回覆,但是,是否有必要在html中添加禁用屬性。我正在通過JavaScript禁用按鈕.. – user2907330

+0

我做了更改,請再次查看 – emilan

+0

好的,謝謝你,我會試試這個先生。 – user2907330

相關問題