swiper.js框架里面的div不能放iframe吗

2024-11-07 07:38:05
推荐回答(2个)
回答1:

楼主你好,建议参考如下代码漏蔽,或许对你有帮助:


    window.onload = function () {
        document.getElementById("showValue").contentWindow.document.designMode = "on";
        document.getElementById("showValue").contentWindow.document.contentEditable = true;

       大租 var div = document.createElement("DIV");
        div.id = "divName";
        div.innerHTML = "我在这里了哈";
       滚搜兆 div.style.cssText = "border:1px solid #ccc;height:200px;width:200px;color:red;";

        document.getElementById("showValue").contentWindow.document.appendChild(div);
    }



希望能帮到你,如果满意,请记得采纳哦~~~

回答2:

window.onload = function () { document.getElementById("showValue").contentWindow.document.designMode = "on"; document.getElementById("showValue").contentWindow.document.contentEditable = true; var div = document.createElement(...