聚焦时会出现Ghost输入框

时间:2013-12-29 06:11:11

标签: html internet-explorer twitter-bootstrap

使用Bootstrap。 HTML:

<!DOCTYPE html>
...
<input class="list-group-item form-control text-right" 
       name="s" id="sidebar-primary" type="search" 
       placeholder="Search? " autocomplete="off" 
       autofocus spellcheck="false">

除非我用MS IE 10打开它,否则一切都很好。(MS IE 8&amp; 9也无法正常显示,但不是这个问题。)

Input box displayed in MSIE 10

有一个 ghost输入框(不知道如何对它进行描述)。它仅在输入框聚焦时出现。 如何删除?

1 个答案:

答案 0 :(得分:0)

如果你真的想要删除它而不知道它来自哪里:

$(document).ready(function() {
    $('#sidebar-primary').remove();
});