我正在尝试使用 ajax 调用进行自定义 Google 搜索。
我在谷歌中搜索并找到了一个很好的链接。
这里会自动出现一个文本框和一个按钮,当我们单击搜索按钮时,结果会显示在 div 中。
但我想搜索写在我自己创建的文本框中的项目。手段:我手动创建了一个文本框和一个按钮。当我单击我的按钮并在我的文本框中写入查询时,我想显示结果。
请帮忙
提前致谢。
我正在尝试使用 ajax 调用进行自定义 Google 搜索。
我在谷歌中搜索并找到了一个很好的链接。
这里会自动出现一个文本框和一个按钮,当我们单击搜索按钮时,结果会显示在 div 中。
但我想搜索写在我自己创建的文本框中的项目。手段:我手动创建了一个文本框和一个按钮。当我单击我的按钮并在我的文本框中写入查询时,我想显示结果。
请帮忙
提前致谢。
在提交按钮中写下这个
// get a custom search control & keep it in cseControl
// note: put your own custom search ID number here
var cseControl = new google.search.CustomSearchControl('009827885688477640989:igzwimalyta');
// open pages from search results clicks on the same page
cseControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF);
// when there are no matches, explain why
cseControl.setNoResultsString("Sorry, there are no pages in this web site that match all the search terms.");
// make the search field visible in div with ID 'cseDiv'
cseControl.draw('divGoogleResult');
cseControl.execute(userInput);
$('.gsc-search-box').hide();