2013-03-14 42 views
-4

我希望我可以發佈有關錯誤的代碼,但坦率地說,我不知道。我的網頁工作正常,但聯繫人面板中的輸入元素不允許我輸入任何內容。任何想法爲什麼?文字輸入有問題? jQuery的/ HTML?

http://s1527.mtchs.org

+0

。修正'無法加載資源:// s1527.mtchs.org/hide.js'將開始 – ultranaut 2013-03-14 23:27:23

+1

的好地方看起來像你:服務器與404(未找到)HTTP狀態迴應需要與開發人員工具 – 2013-03-14 23:28:15

+1

保持密切關係此外,請驗證您的標記:http://validator.w3.org/check?uri=http%3A%2F%2Fs1527.mtchs.org%2F&charset=%28detect+automatically%29&doctype=內聯&組= 0 – sweetamylase 2013-03-14 23:28:55

回答

0

在你的CSS http://s1527.mtchs.org/techmuffins.css

的第一條規則包含的聲明,這將使得一切(*) 「不可選擇」 的user-select property的(跨瀏覽器)的變體特別是集合。

* { 
    margin: 0; 
    padding: 0; 
    -webkit-touch-callout: none; /****************************/ 
    -webkit-user-select: none; /* Remove these lines  */ 
    -khtml-user-select: none; /* or make the CSS selector */ 
    -moz-user-select: none;  /* more specific to avoid */ 
    -ms-user-select: none;  /* the <input/> elements */ 
    user-select: none;   /****************************/ 
} 
+0

THANKYOU這麼多!!!!!!!!!!!!!! LIFE SAVER:D – Stacy 2013-03-14 23:28:37

0

這些規則是您無法選擇輸入的原因。

* { 
    -webkit-user-select: none; 
    -khtml-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
}