搜索栏可在Chrome和Opera中使用,但不能在上述浏览器中使用。我建议与onsearch="search(event)"
有关。
Mozilla说它不受支持,我想知道是否有人知道该问题的解决方案?
HTML:
<input
type=search
name=""
id="filterSearch"
placeholder="Search for events, seasonal meals or simply list ingredients"
onsearch="search(event)"
>
答案 0 :(得分:4)
onsearch事件在Internet Explorer,Firefox或Opera 12和更早版本中不受支持。 尝试使用onchange,onkeyup等
<input type=search name="" id="filterSearch" placeholder="Search for events, seasonal meals or simply list ingredients" onchange="search(this.id)">