文字输入问题? jQuery的/ HTML?

时间:2013-03-14 23:23:44

标签: jquery html

我希望我能发布有关错误的代码,但坦率地说,我不知道。我的网页有效,但联系人面板中的输入元素不允许我输入任何内容。知道为什么吗?

http://s1527.mtchs.org

2 个答案:

答案 0 :(得分: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;           /****************************/
}

答案 1 :(得分:0)

这些规则是您无法选择输入的原因。

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