zoukankan      html  css  js  c++  java
  • 异步加载script

    通过iframe 异步加载script

      通过异步请求另一页面的script 是不执行的,只返回html 原文件,因为返回的文本没有经过浏览器的解析执行。

     看代码

     a1.html

    代码
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>无标题页</title>
    </head>
    <script type="text/javascript">
    function testClick()
    {
    document.getElementById(
    "tsrc").src="a2.html"
    }
    </script>
    <body>
    <div style="display:none"><iframe id="tsrc"></iframe></div>
    <input id="Button1" type="button" value="异步加载script" onclick="testClick()"/>
    </body>
    </html>

    a2.html

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>无标题页</title>
    </head>
    <body>
    <script>
    alert(
    '我是异步script');
    </script>
    </body>
    </html>
  • 相关阅读:
    python笔记目录
    Django 的View(视图)系统
    051_Bootstrap 框架
    050_jQuery 事件
    049_jQuery 操作标签
    048_jQuery
    016-递归函数
    047_BOM_DOM
    046_JS
    045_CSS
  • 原文地址:https://www.cnblogs.com/skykang/p/1933657.html
Copyright © 2011-2022 走看看