< script type="text/javascript">
$().ready(function () {
 
   
    //采用POST方式
    $.post('Server.aspx', { id: 'id'}, function (text, status) {
           //回调函数
       });
 
})
</ script >

AJAX请求 $.post方法的使用_AJAX