二级联动(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对象)的主要内容,如果未能解决你的问题,请参考以下文章