jQuery实现在下拉列表选择时获取json数据的方法_jquery
程序员文章站
2022-03-25 18:15:40
...
本文实例讲述了jQuery实现在下拉列表选择时获取json数据的方法。分享给大家供大家参考。具体如下:
function populateDropDown() { $.getJSON('/getData.aspx',{Name:$('#parm').val()},function(data){ var select = $('#DDLControl'); var options = select.attr('options'); $('option', select).remove(); $.each(data, function(index, array) { options[options.length] = new Option(array['variety']); }); }); } $(document).ready(function() { populateDropDown(); $('#DDLchangeData').change(function() { populateDropDown(); }); });
希望本文所述对大家的jQuery程序设计有所帮助。
上一篇: 浅谈css清除浮动clearfix和clear的用法介绍
下一篇: 关于JS中Attr的用法
推荐阅读
-
jquery的ajax和getJson跨域获取json数据的实现方法
-
jquery实现触发时更新下拉列表内容的方法_jquery
-
jQuery实现动态显示select下拉列表数据的方法
-
jquery的ajax和getJson跨域获取json数据的实现方法
-
jQuery实现在下拉列表选择时获取json数据的方法_jquery
-
jquery的ajax和getJson跨域获取json数据的实现方法_jquery
-
jquery实现触发时更新下拉列表内容的方法_jquery
-
jquery的ajax和getJson跨域获取json数据的实现方法_jquery
-
jQuery实现在下拉列表选择时获取json数据的方法_jquery