Google搜索表单主要显示为白页

时间:2017-06-16 06:34:25

标签: html forms google-search

我的主页上有这个超级简单的搜索表单:

<form method="get" action="https://google.ca">
    <input type="text" placeholder="" name="q" autofocus>
</form>

当我输入并按回车键时,它会像我想要的那样带到谷歌,但它只是挂在这个白页上。适用于Chrome,Firefox和Edge。

如何制作成功搜索Google的表单?

enter image description here

1 个答案:

答案 0 :(得分:1)

您输入了错误的网址https://www.google.co.in/?q=bacon

你可以尝试这个:

<form method="get" action="https://www.google.ca/search?">
    <input type="text" placeholder="" name="q" autofocus>
</form>