layui select获取自定义属性值
layui-select写法:
<option value='1' data-method='2'>
我想在点击的时候获取自定义属性data-method的值,其中selectId是该select的id
form.on('select(' + selectId + ')', function (data) { var method = $(data.elem).find("option:selected").attr("data-method"); console.log(method); })