Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このサイトにアクセスした場合: Bing 検索
(文字を入力した後) 提案のリストが表示されます。これは常に約 8 つの提案です。提案の数を減らすにはどうすればよいですか?
livesearch.js スクリプトには、次のようなコード行があります。
$.each(suggestResults, function(i,suggestResult){
次のように更新します。
$.each(suggestResults.slice(0,3), function(i,suggestResult){
3 は、表示する提案の最大数です。