我正在使用Google自定义搜索,我想使用自己的div和Jquery提交表单。我尝试了许多没有运气的东西,这是其中之一:
Google代码:
<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
答案 0 :(得分:2)
我们无法直接提交表单(即Google使用jQuery在内部创建)。您必须更改代码才能更改外观。这是你要找的那个:
<form id="cse-search-box" action="http://google.com/cse">
<input type="hidden" name="cx" value="YOUR SEARCH ENGINE ID goes here" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="text" name="q" size="31" />
<input type="submit" name="sa" value="Search" />
</form>
<img src="http://www.google.com/cse/images/google_custom_search_smwide.gif">
参考:https://support.google.com/customsearch/answer/1351747?hl=en
的 DEMO FIDDLE 强>