1. 程式人生 > >javaScript非同步操作處理

javaScript非同步操作處理

<!DOCTYPE html>
<html lang="cn">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script type="text/javascript" src="../js/jquery-1.11.3.min.js"></script>
</head>
<body>

</body>
</html>
<script type="text/javascript">
    $(function () {
        test(function () {
            console.log("執行回撥");
        });
        console.log("$");
    });

    function test(callFun) {
        setTimeout(function () {
            console.log("執行非同步操作");
            callFun();
        }, 0);

        console.log("succeed");
    }

</script>

執行結果圖片

標題