historyframe.html

来自「Simple RIA-> Example」· HTML 代码 · 共 24 行

HTML
24
字号
<html>
    <head>
        <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> 
        <META HTTP-EQUIV="Expires" CONTENT="-1"> 
    </head>
    <body>
    <script>
        function processUrl()
        {

            var pos = url.indexOf("?");
            url = pos != -1 ? url.substr(pos + 1) : "";
            parent.DeepLinking.setBrowserURL(url, true);
            parent.DeepLinking.getPlayer().browserURLChange(url);
        }

        var url = document.location.href;
        processUrl();
        document.write(url);
    </script>
    Yo, I'm your history.
    </body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?