1

在使用 Google 自定义搜索(支持 Iframe)时,它会在底部创建一个巨大的空白区域?我怎样才能避免那个空白。

例如:这个网站 [ http://www.town.togtsu.nagasaki.jp/search/pub/Default.aspx?c_id=2&q=togitsu&cx=000096980916426724425:keok8sbpuem&cof=FORID:10&ie=UTF-8 ] 创建一个巨大的空白底部的空间。

我已经检查了来源(http://www.google.com/afsonline/show_afs_search.js),但无法将其取出。

4

1 回答 1

0

将此 iframe 的 height 属性更改为 1260:

<iframe name="googleSearchFrame" src="http://www.google.com/cse?c_id=2&amp;q=togitsu&amp;cx=000096980916426724425:keok8sbpuem&amp;cof=FORID:10&amp;ie=UTF-8&amp;ad=n9&amp;num=10&amp;rurl=http%3A%2F%2Fwww.town.togitsu.nagasaki.jp%2Fsearch%2Fpub%2FDefault.aspx%3Fc_id%3D2%26q%3Dtogitsu%26cx%3D000096980916426724425%3Akeok8sbpuem%26cof%3DFORID%3A10%26ie%3DUTF-8&amp;siteurl=http%3A%2F%2Fstackoverflow.com%2Fquestions%2F10647487%2Fgoogle-custom-search-create-a-huge-blank-space-at-the-bottom" frameborder="0" width="795" height="1260" marginwidth="0" marginheight="0" hspace="0" vspace="0" allowtransparency="true" scrolling="no"></iframe>

这很可能是由用于搜索的 JavaScript 代码动态添加的。如果是这种情况,您需要使用 JavaScript 动态更改高度:

$(document).ready(function() {
    $('[name="googleSearchFrame"]').attr("height","1260");
});
于 2012-05-18T06:10:23.393 回答