JQ获取点击位置
$(function(){
    $(document).click(function(event){
        console.log(event.pageX + ' ' + event.pageY);
    })
})