我使用谷歌自定义搜索,我想使用我自己的 div 和 Jquery 提交它的表单。我尝试了很多没有运气的事情,这就是其中之一:
谷歌代码:
<script>
(function() {
var cx = 'partner-pub-2789521296837340:9402765321';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:search></gcse:search>
Jquery部分:
$( document ).ready(function() {
$( "div.button" ).click(function() {
$( "form.gsc-search-box" ).submit();
return false;
});
});
现场示例:JsFiddle