ajax 第一个简单程序

前端之家收集整理的这篇文章主要介绍了ajax 第一个简单程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

//////////////////////////////////////////pull.html

<html>
<body>
<h1> the result of pulled news:</h1>
<script type="text/javascript" src="jquery.js"></script>
<input type="button" class="pull" value="abutton"/>
<table border=1>
<tr><td>news from server:</td></tr>
<tr id="pullnews"></tr>
</table>
<script type="text/javascript">
$(".pull").click(function(){
$.ajax({
url:"handlePull.PHP",
data:"newsid =123",//attention:paramname=value 不是paramname:value
type:'post',
dataType:' json',/////atten:如果输入json object,这里却写成text,则object解析出undefined错误
success:function(result){
//attention: 获得参数是 object.paramname ,不能被双引号引入。
pullnews.innerHTML="<td>" +result.title+"</td><td>"+result.digest+"</td>";
alert("ajax recv:"+result);
}});
});
</script>
</body>
</html>


////////////////////////////////////////////////////////////////////////////////handlePull.PHP

<?PHP

class news{ public $newsid,$title,$digest;}; $news=new news;

$news->newsid=$_REQUEST["newsid"]; $news->title="中日建交n年"; $news->digest="小泉纯一郎参拜靖国神社,被中国人民强烈谴责"; echo json_encode($news); ?>

原文链接:https://www.f2er.com/ajax/166842.html

猜你在找的Ajax相关文章