$(document).ready(function(){  
        loadphpernote();  
        window.open('http://www.phpernote.com');  
    });  
    function loadphpernote(){  
        var url='http://www.phpernote.com/ajax.php';  
        var data='action=list';  
        jQuery.ajax({  
            type:'post',  
            url:url,  
            data:para,  
            async:false,//false代表只有在等待ajax执行完毕后才执行window.open('http://www.phpernote.com')语句  
            success:function (msg){  
                $('#articleList').html(msg);  
            }  
        });  
    }