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.
如果您访问此站点:必应搜索
您将看到(在输入字母后)一个建议列表,该列表总是大约 8 条建议。如何减少建议的数量?
您的 livesearch.js 脚本中有一行代码如下所示:
$.each(suggestResults, function(i,suggestResult){
将其更新为如下所示:
$.each(suggestResults.slice(0,3), function(i,suggestResult){
其中 3 是您希望看到的最大建议数。