Layui layer.open报错 layui.all.js:5 Uncaught TypeError: s.parents is not a function

报错提示:
Layui layer.open报错 layui.all.js:5 Uncaught TypeError: s.parents is not a function_第1张图片

报错代码:
/*添加权限页面*/
    function createAuthoritypage() {
        console.log("onclick");
        layer.open({
            type: 1,
            title: "添加权限",
            area:["40%","35%"],
            content: ["/oceanNMS/authority/addAuthorityPage?fatherAuthorityId="+window.selectedAuthorityId]
        });   
    }

错误原因:type为1的时候是直接打开文本或者页面,而打开一个url需要使用type:2,修改即可。

你可能感兴趣的:(Layui)