答案 0 :(得分:0)
当用户输入一些输入时,您需要有一个事件监听器来执行某些代码。
document.getElementById("myInput").addEventListener("input", function() {
// The input just changed. Do something with it.
// For example change the text in the div:
document.getElementById("myOutput").innerText = this.value;
});

<input type="text" id="myInput" />
<div id="myOutput"></div>
&#13;
此处an example。
答案 1 :(得分:0)
我假设您在服务器上进行搜索: