一個html 下拉套件選單 ,可套API拉JSON資料....迷糊搜尋選單資料 之類的....
http://www.runoob.com/jqueryui/example-autocomplete.html
擴充使ˋ用 [ASP.NET][DropDownList][AutoComplete]改寫DropDownList下拉式選單改成ComboBox並可以輸入搜尋(AutoComplete)讓他更容易使用
https://dotblogs.com.tw/topcat/2019/07/10/150326
https://www.youtube.com/watch?v=tCr1p_InOe4
作者影片 by kudvenkat
20210412補充 修改CSS寬度
//重新設定with 預設只給100
var maxLength = 100;
$('#'dropdownlist666' > option').text(function (i, text) {
if (text.length > maxLength) {
maxLength = text.length;
}
});
$('.custom-combobox-input').css('width', maxLength);
20210412補充 隱藏起來
$('.custom-combobox').css('display', 'none');
以上文章僅用紀錄資料使用.....