var iframe1 = document.getElementById("layui-layer-iframe1");
var code = iframe1.document.getElementById("code").value;
console.log(code);
提示 第二行 var code 的document报错
iframe里面是一个window对象,iframe外面的window对象是iframe里面的对象的父级对象。window.parent.layIndex
加个contentWindow试试。
iframe1.contentWindow.document.getElementById("code").value
window.parent就可以获取iframe外面的window对象
– 祁祁 6年前