layui的一些使用问题

不打扰是莪最后的温柔 提交于 2020-03-09 16:32:44

 

<select name="province" lay-filter="province">
<!-- 
<option value="">请选择省</option>              
 <option data-href="https://daohang.qq.com/" value="浙江" selected="">浙江省</option>              
 <option data-href="https://www.layui.com/" value="411000">江西省</option>             
 <option data-href="https://www.baidu.com/" value="你最喜欢的老师">福建省</option>    
-->            
</select>              

 

 //数据填充
$.ajax({
  type: "get",
  url: "js/data.json",
  data: { parentId: id },
  success: function(data) {
    console.log(data);
    var array = data.rows || data;
    var str = "";   
    for (var index = 0; index < array.length; index++) {
      var element = array[index];
      str +='<option data-href="' + element.AREA_ID + '" value="' + element.AREA_ID +'">' +
        element.AREA_NAME + "</option>";
    }
    $("select[name='province']").html(str);

    form.render("select"); //刷新select选择框渲染
  }
});


 //事件监听
form.on("select(province)", function(data) {
  //获取自定义属性值
  var datahref = $(data.elem).find("option:selected").attr("data-href");
    console.log(datahref);
});

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!