码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-10-16 10:57:59      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:cti   this   on()   sele   pid   name   string   fun   json   


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对象)

标签:cti   this   on()   sele   pid   name   string   fun   json   

原文地址:https://www.cnblogs.com/chenxiaoxian/p/9796520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!