是否可以使用href直接链接到Google搜索结果?

Fra*_*ank 15 html search-engine href hyperlink

我想直接从标准链接链接到搜索结果页面.举一个我希望的例子,这里有一些伪代码:

<a href = "https://www.google.com/search?keywords=My+Search+Parameters">Click here to search Google</a>
Run Code Online (Sandbox Code Playgroud)

有没有办法做到这一点?我想将我的用户直接重定向到搜索结果页面,以便他们可以在网络上看到真实的结果.

Dev*_*yde 22

请看下面的链接:

http://www.googleguide.com/linking.html

<a href=”http://www.google.com/search?q=Google+tutorial+create+link”>
   Google tutorial create link
</a>
Run Code Online (Sandbox Code Playgroud)