使用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也无法正常显示,但不是这个问题。)
有一个 ghost输入框(不知道如何对它进行描述)。它仅在输入框聚焦时出现。 如何删除?
答案 0 :(得分:0)
如果你真的想要删除它而不知道它来自哪里:
$(document).ready(function() {
$('#sidebar-primary').remove();
});