如何嵌入Google搜索

时间:2015-11-29 00:29:04

标签: javascript html html5 web

我一直想知道如何在网页上嵌入Google。可以将它放在iframe中吗?我知道有些网站使用谷歌CSE,但我想要真正的谷歌。如果是这样,我该怎么做?

3 个答案:

答案 0 :(得分:1)

您可以https://www.google.com/webhp?igu=1&gws_rd=ssl内嵌this URL(又名iframe)。 ?igu=1是它的工作原理。我从agoogleaday.com找到了这个答案,该答案使用iframe来存放实验性Google搜索网站。



<iframe src="https://www.google.com/webhp?igu=1&gws_rd=ssl" width="640" height="480" frameborder="0">Your browser does not support <code>iframe</code>s. Please consider using a <a href="http://browsehappy.com/">modern</a> browser.</iframe>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

如果您不想使用Google徽标和搜索框,可以使用以下命令:

<form target="_self" id="google" method="get" action="http://www.google.com/search" target="main" onsubmit="window.top.close();">
    <input name="q" id="google" placeholder="Google Search" size="40" maxlength="2000" value="" type="text" autofocus></input>
</form>

答案 2 :(得分:0)