|
|
|
button เป็นแบบ array จะเขียน ajax ให้ทำงานเวลา click ยังไงอะครับ |
|
|
|
|
|
|
|
onclick ให้มันเรียก function สิครับ
|
|
|
|
|
Date :
2014-04-08 10:34:11 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กรณีมันต้องรับตัวแปล วันที่ด้วยอะครับทำยังไง
เป็น list รายการดังนี้
ชื่อ นามสกุล วันเริ่ม วันหมดอายุ ยืนยัน
xxx xxxx [ ใส่ค่า] [ใส่ค่า] [[ปุ่มกด]]
xxx1 xxxx2 [ ใส่ค่า] [ใส่ค่า] [[ปุ่มกด]]
xxx2 xxxx2 [ ใส่ค่า] [ใส่ค่า] [[ปุ่มกด]]
ให้กดแต่ละปุ่มกด ส่งข้อมูล วันเริ่มกับวันหมดอายุและ index
ทำยังไงอะครับ
เพราะคำวันเริ่ม กับวันหมดอายุ ต้องกรอกตอนนั้นแล้วกด ยืนยันอีกที
|
|
|
|
|
Date :
2014-04-08 12:43:25 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Basic guide Code (PHP)
for($i=0;$i<10;$i++){
echo '<input type="button" id="sendvalue" name="sendvalue[]" value="ส่งค่า" onclick="alert('.$i.');"><br />';
}
|
|
|
|
|
Date :
2014-04-08 14:02:08 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วรับ ตัวแปรวันที่ ที่ต้องกรอกละครับ ?
|
|
|
|
|
Date :
2014-04-08 14:03:32 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบ onclick call function ผมทำได้แล้ว แต่ส่งค่าที่ มาจาก การ query หรือค่าที่กำหนดได้
แต่ถ้าค่านั้น พึ่งกรอก ก่อนจะกด ทำยังไงอะ T_T
|
|
|
|
|
Date :
2014-04-08 14:06:24 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript">
function get(id){
var start = $('#start'+id+'').val();
var end = $('#end'+id+'').val();
alert('วันที่เริ่มต้น : '+start+'\r\n วันที่สิ้นสุด : '+end);
}
</script>
</head>
<body>
</head>
<body>
<?php for($i=1;$i<100;$i++): ?>
<input type="text" id="start<?php echo $i; ?>" />
<input type="text" id="end<?php echo $i ?>" />
<input type="button" name="edit" id="edit<?php echo $i ?>" value="ยืนยัน ปุ่ม <?php echo $i ?>" onclick="get('<?php echo $i ?>');" />
<br />
<?php endfor; ?>
</body>
</html>
|
|
|
|
|
Date :
2014-04-08 14:15:47 |
By :
WiTT |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ จะลองทำดูนะครับ
|
|
|
|
|
Date :
2014-04-10 14:06:04 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กลับมาแจ้งผลด้วยน่ะครับ
|
|
|
|
|
Date :
2014-04-10 14:14:04 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วคร๊าบบ ขอบคุณนะครับ ได้ความรู้ใหม่เรื่อง
$(document).ready(function(){
$(":button.editButton").click(function(){
//var this = $(this),
var cur = $(this).parents('tr'),
dateB = cur.find('input.dateStart').val(),
dateE = cur.find('input.dateEnd').val(),
index = cur.find('input.index').val();
alert(dateB+'/'+dateE+'/'+index);
$.post('update_info.php',{'dateStart':dateB ,'dateEnd':dateE,'index':index},function(data){
if(data == 'success') alert('บันทึกข้อมูลเรียบร้อย');
});
});
});
ตรงนี้ด้วย
|
|
|
|
|
Date :
2014-04-10 14:36:11 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยินดีครับ
|
|
|
|
|
Date :
2014-04-10 14:38:12 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|