0

我有这个代码,Google在同一页面上搜索结果

   <div id="cse" style="width: 100%;">Loading</div>
     <script src="http://www.google.com/jsapi" type="text/javascript"></script>
     <script type="text/javascript">
       google.load('search', '1', {language : 'en'});
       google.setOnLoadCallback(function()
       {
         var customSearchControl = new google.search.CustomSearchControl('XXXX:XXXX');
         customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
         customSearchControl.setLinkTarget(google.search.Search.LINK_TARGET_BLANK);
         customSearchControl.draw('cse');
       }, true);

     </script>
     <link rel="stylesheet" href="http://www.google.com/cse/style/look/default.css" type="text/css" />

但我希望点击链接后搜索结果显示在同一页面上

这样做有什么用URL

例子:

https://www.mysite.com/search?q=

<a href="https://www.mysite.com/search?q=food">food</a>
4

1 回答 1

0

在 www.bbc.com 中搜索“月亮”:

https://www.google.com.hk/search?q=moon+site%3Awww.bbc.com

在 Google 搜索框中尝试“moon site:www.bbc.com”。

于 2013-10-05T16:43:02.800 回答