Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户向下滚动页面时,我会动态地将下拉控件添加到网页中。使用阿贾克斯。
我不知道如何将动态添加的 DropDown 控件转换为DRopKick (Jquery DropKick) 控件
所有动态添加的下拉菜单都具有相同的名称
对于页面上已经存在的控件,Dropkick 正在按预期工作
添加新控件后,您需要调用
$('select[name="<your-select-name>"]').dropkick();
根据更新的评论,以下解决方案应该有效
$(txtVal).appendTo('#ContentPlaceHolder1_productList').filter('select[name="cbo_products_listing"]').dropkick();