Scroll bar for Datalist in HTML5

前端 未结 2 782
独厮守ぢ
独厮守ぢ 2020-11-29 11:05

I am having trouble with datalist in HTML5, i have 10000 rows to display in my option values, I am populating from mysql using PHP, for some reason

2条回答
  •  攒了一身酷
    2020-11-29 11:52

    Unfortunately, there's not much you can do with the datalist attribute. The datalist does not currently support any CSS styling, and specific visual characteristics are browser-specific. Some browsers may choose to add scrollbars for long lists.

    If this isn't acceptable, you may have to forget the datalist and implement a ComboBox via Javascript. I believe JQuery has an autocomplete function that may be appropriate.

提交回复
热议问题