触发 onsearch
属性事件当用户通过按ENTER键进行搜索时在< input> 元素与 type =“search”
。
我们还可以通过单击字段中的“X”触发事件。
没有。
<elementName onsearch="script">
<input type="search">
onsearch |
Yes | No | No | Yes | Yes |
<!DOCTYPE html>
<html>
<body>
<input type="search" id="myInput" onsearch="myFunction()">
<script>
function myFunction() {
var x = document.getElementById("myInput");
console.log(x.value);
}
</script>
</body>
</html>