我现在正在构建一个包含搜索框的网页。如何根据搜索框中的输入创建更改的搜索查询?
<input type=text name="searchquery"/>
<input type=button name=search value="search" onClick=changeQuery()/>
changeQuery(){
????
}
答案 0 :(得分:1)
无论如何我设法获得了所需的输出......
<input type=text id='sq' name="searchquery"/>
<input type=button name=search value="search" onClick=changeQuery()/>
changeQuery(){
var input_query=document.getElementById('sq').value;
window.location="http://www.google.com/search?q="+input_query+"myString";
}