|
|
|
สอบถามเรื่องการ ส่งค่าแบบ POST ครับว่า ถ้าเรามี Botton 2 อันแล้วเราใส่ Action ไว้ใน Form ซึ่ง Botton 2 อันนี้ทำงานแตกต่างกันต้องทำอย่างไร |
|
|
|
|
|
|
|
เบื้องต้นต้องสังเกตุว่า form ทับกันหรือเปล่า
|
|
|
|
|
Date :
2013-06-28 10:28:01 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ป่าวครับ มี Form เดียวเปิดและปิด Table ไว้อยู่ครับซึ่ง Botton ทั้่งสองตัวก็อยู่ในนี้
Code (PHP)
<form name="frmMain" id="frmMain" method="POST" action="frmPODataUpd.php" OnSubmit="return onUpdate();">
</form>
|
|
|
|
|
Date :
2013-06-28 10:38:56 |
By :
TotEcom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองไม่ต้องใส่ action ครับ action = '' ว่างเอาไว้ แล้วใช้จาวาสคริปต์เช็คตอนกดปุ่มแทน
Code (PHP)
<form name='test' id='test' method='post' action='' >
<input name='a' />
<button type='button' id='btn1'>goto Action1</button>
<button type='button' id='btn2'>goto Action2</button>
</form>
<script>
$(document).ready(function(){
$('#btn1').click(function(){
$('#test').attr('action','test.php'); // ใส่ค่า action
if($('#test').attr('action')!='')
{
$('#test').submit();
}
});
$('#btn2').click(function(){
$('#test').attr('action','test2.php'); // ใส่ค่า action
if($('#test').attr('action')!='')
{
$('#test').submit();
}
});
})
</script>
|
|
|
|
|
Date :
2013-06-28 10:57:29 |
By :
randOmizE |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมลองแล้วครับ ส่งไม่ไปครับ
|
|
|
|
|
Date :
2013-07-01 16:11:05 |
By :
TotEcom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมใช้ PHP เขียนครับผม
|
|
|
|
|
Date :
2013-07-02 16:25:55 |
By :
TotEcom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคุณ randOmizE ที่ช่วยเหลือนะครับผมทำได้แล้วครับ
<script type="text/javascript">
function Bsubmit(frm)
{
frm.action="?id=frmEditForIssue";
frm.submit();
}
</script>
<form name="frmMain" id="frmMain" action="post">
<input type="submit" name="btnUpdate" value="ISSUE INVOICE" class="Header_Table" onClick="Bsubmit(this.form);">
</form>
|
|
|
|
|
Date :
2013-07-04 13:59:29 |
By :
TotEcom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|