layui-select写法:

<option  value=''  data-method=''>

我想在点击的时候获取自定义属性data-method的值,其中selectId是该select的id

 form.on('select(' + selectId + ')', function (data) {
var method = $(data.elem).find("option:selected").attr("data-method");
console.log(method);
})
05-19 05:45