|
|
|
ใช้คำสั่งของ JQuery ส่งค่าไปที่ไฟล์ testJQuery.php |
|
|
|
|
|
|
|
ผมคิดว่าคุณน่าจะลืม load jqeury library นะครับ
ลองเอาโค้ดนี้ไปรันดูใหม่นะครับ อันนี้เป็นการ load jquery library จาก google
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>untitled</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="generator" content="Geany 0.20" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.js"></script>
<script type="text/javascript">
$(function(){
var dataValue = 'Success!!';
$("#chkBtn").click(function(){
$.ajax({
url: 'testJQuery.php',
type: 'POST',
data: 'dataValue=' + dataValue,
success: function(result){
$("chkLbl").html(result);
alert("Success: "+result);
}
});
});
});
</script>
</head>
<body>
<input type="button" name="buttion" id="chkBtn" value="button" />
</body>
</html>
|
|
|
|
|
Date :
2011-07-01 08:52:06 |
By :
Nautilus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|