Google 搜索表单大部分显示为白页

Google search form turns up mostly white page

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

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

当我输入它并按回车键时,它会将我带到我想要的 Google,但它只是挂在这个白页上。出现在 Chrome、Firefox 和 Edge 中。

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

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

你可以试试这个:

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