我正在为我正在创建的网站制作Google搜索栏。我想在Google上搜索<input>
标记中输入的文字。任何帮助将不胜感激。
答案 0 :(得分:2)
尝试这样的事情
<script>
function googleSearch()
{
var text=document.getElementById("search").value;
var cleanQuery = text.replace(" ","+",text);
var url='http://www.google.com/search?q='+cleanQuery;
window.location.href=url;
}
</script>
<input type="text" id="search" />
<button onclick="googleSearch();">Search</button>