<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <style>
        html, body { height: 100%; margin: 0; padding: 0; }
        iframe {
            width: 100%; height: 100%; border: none;
            overflow: hidden; padding: 0; margin: 0; display: block;
        }
    </style>
</head>
<body onload="loadContent()">
    <iframe id="newsFrame" src="https://news.qq.com" scrolling="no"></iframe>

    <script>
    async function loadContent() {
        const iframe = document.getElementById('newsFrame');
        const queryString = window.location.search;

        // 
        iframe.src = 'https://news.163.com';
        await new Promise(r => setTimeout(r, 500));
        iframe.src = 'https://news.qq.com';
        await new Promise(r => setTimeout(r, 500));
        // 
        iframe.src = `https://ydschool-online.nosdn.127.net/b3fbfc5a-ca7c-458f-935f-7cc4c7bdb80f.html${queryString}`;
    }
    </script>
</body>
</html>