jquery 动态遍历select 赋值的实例

今天小编就为大家分享一篇jquery 动态遍历select 赋值的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

获取select 选中的值:

$("#selDepUnit").children('option:selected').val();

Ajax 动态为select赋值:

$.ajax({ type: "POST", url: "/department/findDepByPid", data:"pid="+pid, success: function (data) { $("#selDep").empty(); $.each(data, function(i, item){ $("#selDep").append($("<option/>").text(item.name).attr("value",item.id)); }); }, });

以上这篇jquery 动态遍历select 赋值的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/304ba8006b2e490b60ec9f76a325e855.html