0

重複の可能性:
jquery を使用して検索結果からコンテンツを追加する

この素敵なスクリプトhttp://qpoit.com/marcofolio_demo/apple_search/を使用していますが、選択した値を div で表示したいのですが$.("#result").html(selectedValue);、検索結果が表示された後に選択した値を取得する方法がわかりません。助けてください

4

1 に答える 1

1

<span>タグに表示される検索結果のテキストを表示する場合:

// Place inside the keyup method used for triggering AJAX call
$('#searchresults a').mouseenter(function() {
   $('#result').text($(this).children('.searchheading').text());
}).mouseleave(function() {
   $('#result').text('');
});
于 2013-01-21T21:16:22.807 に答える