二级联动(list对象中存list对象)

Posted chenxiaoxian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二级联动(list对象中存list对象)相关的知识,希望对你有一定的参考价值。


var platformListJson = ‘${platformListJson}‘;
var shopPlatformhtml=‘‘;
$(JSON.parse(platformListJson)).each(function (i, o) {
shopPlatformHtml+=‘<option value="‘+o.code+‘" shopList=‘+JSON.stringify(o.shopList)+‘>‘+o.name+‘</option>‘;
});
$(‘#shopPlatform‘).html(shopPlatformHtml).change(function(){
var shopList=JSON.parse($(this).find(‘option:selected‘).attr(‘shopList‘));
var shopCodeHtml=‘‘;
$(shopList).each(function(i,o){
shopCodeHtml+=‘<option value="‘+o.shopId+‘">‘+o.shopName+‘</option>‘;
});
$(‘#shopCode‘).html(shopCodeHtml);
}).change();














以上是关于二级联动(list对象中存list对象)的主要内容,如果未能解决你的问题,请参考以下文章

ext4.0 二级联动

jquery,ajax实现二级省市联动

python+vue实现二级联动菜单

ajax 二级联动与springmvc 交互

springboot查询数据库,js实现二级联动效果

ComboGrid二级联动以及给二级联动赋默认值