html5 datalist wont dropdown when the sugguest list is large
问题 I use datalist to suggest a selection of data to a specific text input, but when the size of the datalist got too large( I don't know the right number yet, but quite sure when the size is larger than 40 this will happen). I use datalist as following <datalist id="citysuggest"> <option value="北京"> <option value="锦州"> <option value="唐山"> <option value="天津"> <option value="清远"> <option value="盘锦"> <option value="成都"> </datalist> <input type="text" list="citysuggest" name="name1" value="" /> here