如何测试脚本加载成功/失败?

时间:2011-05-12 05:09:08

标签: javascript html load

我有一个示例脚本如下。我想知道local.jsonline/latest.js是否无法加载。有可能吗?

<html>
<title>My JQuery Test</title>
<head>
    <!--<script type="text/javascript" src="jquery/jquery.local.js"></script>-->
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
    <script type="text/javascript" language="javascript">
        $(document).ready(function () {
            $("#Buttons-theTestAlert").click(function () {
                alert("`Test Alert` clicked");
            });
        });
    </script>
</head>
<body>
    <button id="Buttons-theTestAlert">Test Alert</button>
</body>
</html>

1 个答案:

答案 0 :(得分:2)

你可以测试

if (myFunction) myFunction()
else alert('not loaded (yet)')