1.
2.
3.
- 引入JQUERY UI的CSS文件
1. $(function() {
2.
3. function log( message ) {
4. " ).text( message ).prependTo( "#log" );
5. $( "#log" ).scrollTop( 0 );
6. }
7.
8. q=so&wt=json
9. //搜索引擎关键字自动填充
10. $( "#city" ).autocomplete({
11. source: function( request, response ) {
12. $.ajax({
13.
14. url: "http://localhost:8088/solr-src/core0/suggest",
15. dataType: "json",
16. data: {
17. wt:"json",
18. q: request.term
19. },
20. success: function( data ) {
21.
22. response(data.spellcheck.suggestions[1].suggestion)
23. /*
24. response( $.map( data, function( item ) {
25. return {
26. label: item.username,
27. value: item.username
28. }
29. }));
30. */
31. }
32. });
33. },
34. minLength: 2,//输入两个字符才会发送请求
35.
36. select: function( event, ui ) {
37. log( ui.item ?
38. "Selected: " + ui.item.label :
39. "Nothing selected, input was " + this.value);
40. //执行搜索
41. $.getJSON("http://localhost:8088/solr-src/core0/select",
42. { "q": ui.item.label, "version": "2.2","start":0,"rows":10,"indent":"on","wt":"json" },
43. function(result) {
44. //显示搜索结果,这里简单显示json字符串
45. $("div#content").append(JSON.stringify(result.response.docs));
46.
47.
48. });
49.
50. },
51. open: function() {
52. $( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
53. },
54. close: function() {
55. $( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
56. }
57.
58. });
59. });
html代码:
1.
5.
6.
10.
11.
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: 教育不得不改变,ChatGPT可以提供个性化学习
近日,OpenAI的首席执行官Sam Altman接受ABC新闻首席商业、技术和经济记者Rebecca Jarvis的独家采访。Sam Altman提到了对错误信息的担忧、探讨了人工智能与人类工作的关系、ChatGPT与教育的关系等。 ChatGPT今年1月…