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

时间:2019-03-21 11:09:49

标签: javascript html django firefox search

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

enter image description here

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

HTML:

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

1 个答案:

答案 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)">