开发者

Best way to bind a dropdown at client side [duplicate]

开发者 https://www.devze.com 2023-02-28 17:12 出处:网络
This question already has answers here: How do I add options to a DropDownList using jQuery? (12 answers)
This question already has answers here: How do I add options to a DropDownList using jQuery? (12 answers) 开发者_如何学JAVA Closed 3 years ago.

what is the best way to bind a dropdown at client side using JQuery


Assuming you are asking how to bind an event to a select element...

$('select').change(function() {
   ...
});
0

精彩评论

暂无评论...
验证码 换一张
取 消