如何从自动完成中删除项目符号和下划线

时间:2014-01-07 13:47:38

标签: jquery asp.net

我使用jquery和web服务进行了自动完成。自动完成显示子弹和下划线。

如何删除它?

2 个答案:

答案 0 :(得分:2)

您可以通过添加css

轻松完成此操作
list-style-type: none;

并删除下划线使用

text-decoration: none;

或者您可以使用 jquery

尝试此操作
$('.ui-autocomplete').css('list-style-type', 'none');
$('.ui-autocomplete').css('text-decoration', 'none');

答案 1 :(得分:0)

只需添加一些Jquery语句即可轻松获取:

  $('#myInput').autocomplete({ source: function (event, ui) {
      ...
      .....
      ......
      $('.ui-autocomplete').css('list-style-type', 'none').css('text-decoration', 'none');
    });

或尝试设置CSS样式:

    ul.ui-autocomplete
    {
        list-style-type: none;
        text-decoration: none;
    }