谷歌自定义搜索 - 不想要删除标题

时间:2015-07-11 19:26:42

标签: javascript search

我正在尝试进行简单的Google搜索,我只需返回与页面相关联的标题。我已经购买了商业搜索,我已经完成了所有工作(请参阅下面的代码) - 我只想获得页面的完整标题,而不是截断的标题。谁能帮我? 在我脑海里,我有:

<div style="display:none">

<!-- Return the unescaped result URL.-->
<div id="mysite_webResult" >
  <div class="gs-webResult gs-result"
    data-vars="{longUrl:function() {
      var i = unescapedUrl.indexOf(visibleUrl);
      return i < 1 ? visibleUrl : unescapedUrl.substring(i);}}">

    <!-- Build the result data structure.-->
    <table width="50%" cellpadding="0" cellspacing="0" >
      <tr>
        <td valign="top">
          <!-- Append results within the table cell.-->
          <div class="gs-title">
            <a class="gs-title" style="color:#990000;font-family:'Times New Roman',serif;font-size:8.0pt;font-decoration:underline;" data-attr="{href:unescapedUrl,target:target}"
              data-body="html(title)"></a>
          </div>


          <!-- Render results.-->
          <div data-if="Vars.richSnippet && Vars.richSnippet.action" class="gs-actions"
            data-body="render('action',richSnippet,{url:unescapedUrl,target:target})"></div>

        </td>
      </tr>
    </table>
  </div>
</div>

我的身体:

<!-- Div container for the searcher.-->
<div id="cse"></div>

{{1}}

0 个答案:

没有答案