layui使用button按钮 点击出现弹层 弹层中加载表单

转载出处:https://blog.csdn.net/qq_37306041/article/details/80411389

1.html代码片段

注意:必须添加 

type="button"属性否则将会有问题

2.onclick函数

//选择角色弹层
    function selectRole(){
        layer.open({
            //layer提供了5种层类型。可传入的值有:0(信息框,默认)1(页面层)2(iframe层)3(加载层)4(tips层)
            type:1,
            title:"查找用户角色",
            area: ['50%','50%'],
            content:$("#popSearchRoleTest").html()
        });
    }

 

你可能感兴趣的:(前端)