• January 27, 2023
    javascript
    
    <iframe id="iframe" src="https://www.example.com"></iframe>
    <script>
        var iframe = document.getElementById("iframe");
        iframe.onload = function() {
            this.style.height = this.contentWindow.document.body.scrollHeight + 'px';
        };
    </script>
    
    jQuery
    <iframe id="iframe" src="https://www.example.com"></iframe>
    <script>
        $("#iframe").on("load", function() {
            $(this).height($(this).contents().find("body").height());
        });
    </script>
    


เวอไนน์ไอคอร์ส

ประหยัดเวลากว่า 100 เท่า!






เวอไนน์เว็บไซต์⚡️
สร้างเว็บไซต์ ดูแลเว็บไซต์

Categories


Uncategorized