码迷,mamicode.com
首页 > Web开发 > 详细

js兼容性 - 动态删除script标签后 ,定义的函数是否执行

时间:2016-04-16 00:30:50      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

hello.js
function hello(){
    alert(‘hello‘);
}

hello.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script id="hello" src="hello.js"></script>
</head>
<body>
</body>
<script>
    hello();
    if (-[1,]) {
        document.getElementById(hello).remove();
    } else {
        document.getElementById(hello).removeNode(true);
    }
    setTimeout(function(){
        hello();
    },1000);
</script>
</html>

会执行: Chrome,firefox,IE 11,Opera

不执行: Safari

暂时仅测试这些

js兼容性 - 动态删除script标签后 ,定义的函数是否执行

标签:

原文地址:http://www.cnblogs.com/j4s0n/p/5397292.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!