搜索栏可在Chrome和Opera中使用,但不能在上述浏览器中使用。我建议它与onsearch="search(event)"有关。

javascript - 输入搜索在Edge,IE或Firefox中不起作用-LMLPHP

Mozilla说它不受支持,我想知道是否有人知道该问题的解决方案?

HTML:

<input
    type=search
    name=""
    id="filterSearch"
    placeholder="Search for events, seasonal meals or simply list ingredients"
    onsearch="search(event)"
>

最佳答案

Internet Explorer,Firefox或Opera 12和更早版本不支持onsearch事件。
尝试使用onchange,onkeyup等

<input type=search name="" id="filterSearch" placeholder="Search for events, seasonal meals or simply list ingredients" onchange="search(this.id)">

09-19 16:05