<?
if ($_REQUEST ['action'] == "recive")
{
echo "test";
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ajax test</title>
<script type="text/javascript"
src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(function(){
$('input').click(function(){
$name = $(this).attr('name');
$id = $(this).attr('id');
$action=$(this).attr('action');
$('#out').empty().load('ajax.php',{ action : $action ,id:$id});
});
});
</script>
<style type="text/css"></style>
</head>
<body id="out">
<input class=but1 value='接 收' type="button" action=recive openid=$openid
openkey=$openkey uid=$uid hash=$hash>
</body>
</html>