明天的明天 永远的永远 未知的一切 我与你一起承担 ??

是非成败转头空 青山依旧在 几度夕阳红 。。。
  博客园  :: 首页  :: 管理

jquery : ajax之GET与Post示例。

Posted on 2009-07-14 23:24  且行且思  阅读(336)  评论(0编辑  收藏  举报

 

 

ajax之GET示例。

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    
<title>无标题页</title>
            
<script type="text/javascript" src="jquery.js"></script> 
</head>
<script type="text/javascript">        
          
function GetAllMsg()
{              
$(
"#AllMsg").html("&nbsp;&nbsp;<img src='images/loading.gif'/>");             
$.ajax({                  
type:
'GET',                 
url:
"img.ashx?act=getAll",                 
dataType:
'html',   //默认["xml"/"html"] 返回数据类型:["xml" / "html" / "script" / "json" / "jsonp"]               
data:""
success:
function(result)                 
 { 
 
$(
"#DIV002").html(result);
                                   
 }             
});          
}     
 
</script> 


<body>
    
<form id="form1" runat="server">
    
<div id="DIV002">
        
<input id="Button1" type="button" value="button"  onclick="GetAllMsg()"/></div>
    
</form>
</body>
</html>

 

 

Post示例如下: