0

为什么这个脚本:

function addLoadEvent(func) {
    var existing = window.onload;


    window.onload = function () {
        if (typeof (existing) == "function") {
            existing();
        }
        func();
    };

}

仅适用于“func()”所在的 js 文件?我怎样才能抽象出这个脚本?

4

1 回答 1

0

您尝试在<script></script>处更改标签<script type="text/javascript"></script>

于 2013-05-09T21:52:32.053 回答