|
|
|
สอบถามกูรูผู้รู้ เกี่ยวกับการส่งค่าตัวแปรไปกับปุ่ม button (Ajax) |
|
|
|
|
|
|
|
งง กับ ข้อผิดพลาดนี้มา 2 วันเต็มๆ แล้ว งับ แค่ส่งข้อมูลออกจาก textbox ไปให้เพจปลายทางรับ มึนหัวตึบเลย งับ
|
|
|
|
|
Date :
2012-05-20 19:20:13 |
By :
anirut_yam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวอย่างแบบเหนื่อยๆ ครับ
Code (PHP)
<form method="post">
<input type="text" id="text_id1" /><br />
<input type="text" id="text_id2" /><br />
<input type="text" id="text_id3" /><br />
...
.....
.......
<input type="text" id="text_id20" /><br />
<input type="button" id="submitForm" value="บันทึก" />
</form>
<div id="showResult"></div>
<script type="text/javascript">
$("#submitForm").click(function(){
var txtid1 = $("#text_id1").val();
var txtid2 = $("#text_id2").val();
var txtid3 = $("#text_id3").val();
...
.....
.......
var txtid20 = $("#text_id20").val();
$.post("saveresult.php" ,{ 'allText[]' : [txtid1 ,txtid2 ,txtid3 , ..... ,txtid20 ] } , function(returningData){
$("#showResult").css("color","red").html(returningData);
});
});
</script>
saveresult.php - Code (PHP)
<?php
print_r($_POST);
?>
แต่ก็มีตัวอย่างแบบเหนื่อยน้อยหน่อยครับ ............... To be continue
|
|
|
|
|
Date :
2012-05-20 23:55:20 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|