layui框架下拉点击事件

描述:点击分类,商品会自动填充选中的分类商品。

截图如下:

layui框架下拉点击事件_第1张图片

 

HTML:
js: form.on('select(ccid)', function(data){ $("#cate_goods").nextAll().remove(); $.ajax({ url: "{php echo shopUrl('goods/specialgoods', array('template' => 'mult'))}", type: 'post', data: {cid:data.value}, dataType:'json', success: function (info) { $('#cate_goods').after(info.ht); $('#agent_id').val(info.gids); } }); });

 

注意:select 中必须要有lay-filter="ccid",form.on('select(ccid)'中的select(‘ccid’)必须一致。

你可能感兴趣的:(后端框架,layui,下拉点击事件,select点击事件)