İlk defa jquery ile oynamak, ve ben o yüzden daha iyi işlerin nasıl anlayabiliriz çalışma kurmak basit bir AJAX almaya çalışıyorum. Ne yazık ki, ben bir sürü bilmiyorum. Burada komut ile HTML bulunuyor:
<html>
<head>
<title>AJAX attempt with jQuery</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
function ajax(str){
$("document").ready(function(){
$.post("ajaxjquerytest.php",str,function(){
$("p").html(response);
});
});
</script>
</head>
<body>
<input type="text" onchange="ajax(this.value)"></input>
<p>Age?</p>
</body>
</html>
Ve burada konuşuyor PHP:
<?php
$age = $_POST['age'];
if ($age < 30)
{
echo "Young";
}
else if ($age > 30)
{
echo "Old";
}
else
{
echo "you're 30";
}
?>