根据用户输入动态创建http链接

时间:2015-08-28 13:06:19

标签: javascript html hyperlink

我现在正在构建一个包含搜索框的网页。如何根据搜索框中的输入创建更改的搜索查询?

<input type=text name="searchquery"/>
<input type=button name=search value="search" onClick=changeQuery()/>

changeQuery(){
????
}

1 个答案:

答案 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";
}