|
|
|
สอบถามปัญหาการใส่คำสั่ง php ลงใน javascript หน่อยค่ะ รบกวนท่านผู้รู้ |
|
|
|
|
|
|
|
คงต้องใช้ jQuery Ajax
|
|
|
|
|
Date :
2013-02-01 21:41:46 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช่ $.post ครับ ลองมีตัวอย่างมากมายครับ
Code (JavaScript)
$.post( "sent.php" // ไฟล์ที่จะส่งไป
,{L1:L1,L2:L2} //ค่าที่ส่งไปไฟล์ นู้น
,function(data){
$("#show").html(data); //โชว์ค่าที่ return กลับมา *ในหน้า main ต้องมี <div id="show"> หรือ span ด้วยครับ
})
|
|
|
|
|
Date :
2013-02-01 21:49:05 |
By :
kokiflam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$examid=$post['Exam_id'];
?>
<script type="text/javascript">
$(document).ready(function()
{
$.post("service/getHeader.php",
{
'Exam_Id' : <?php echo($examid);?>
}).success(function(data)
{
$("#lmHeader").html(data);
});
});
$("#lmHeader").change(function()
{
$.post("service/getSubheader.php",
{
'header_id' : $(this).val()
}
).success(function(data)
{
$("#lmSubheader").html(data);
});
});
ผมเอามาจากการเลือกตำบลอำเภอครับแต่สุดท้ายเขียนเอง
เอามาเลือกจากรหัสข้อสอบไปยังหัวข้อและหัวข้อย่อย
รูปแบบajax ครับjquery
|
|
|
|
|
Date :
2013-02-01 22:59:49 |
By :
dannan882 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|