0

ajax 呼び出しを使用してカスタム Google 検索を実行しようとしています。

Google で検索したところ、適切なリンクが見つかりました。

ここではテキストボックスとボタンが自動的に表示され、検索ボタンをクリックすると結果が div に表示されます。

しかし、自分で作成したテキストボックスに書かれている項目を検索したいです。手段:手動でテキスト ボックスとボタンを作成しました。テキストボックスにクエリを書いてボタンをクリックすると結果が表示されます。

助けてください

前もって感謝します。

4

1 に答える 1

2

送信ボタンにこれを書いてください

// 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();
于 2012-12-20T07:02:22.567 に答える