|
|
|
อ้างอิง input array ที่ถูกดึงเข้ามาจาก jquery post ไม่ได้ครับ |
|
|
|
|
|
|
|
ลองดูละกันนะ
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" />
<script src="script/jquery-1.9.1.min.js"></script>
<script src="script/jquery-1.9.1.js"></script>
<script src="jquery-ui.js"></script>
<script>
$(document).ready(function(){
$('#cpost').click(function(){
$('#showrecord').load('cont.php');
$('input[name^=arrayname]').click(function(){
alert($(this).attr('id'));
});
});
});
</script>
<title>Untitled Document</title>
</head>
<body>
<input type='button' id='cpost' value='cpost' />
<div id='showrecord'></div>
</body>
</html>
|
|
|
|
|
Date :
2014-07-25 15:42:48 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โหลดเข้ามาได้ แต่พอกดปุ่มเพื่อให้แสดงไอดี กลับไม่มี alert โชว์ครับ รบกวนด้วยครับ
|
|
|
|
|
Date :
2014-07-25 18:56:53 |
By :
chonpeak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<script>
$(document).ready(function(){
$('#cpost').click(function(){
$('#showrecord').load('cont.php');
$('#showrecord').contents().find('input[name^=arrayname]').click(function(event) {
alert($(this).attr('id'));
});
});
});
</script>
|
|
|
|
|
Date :
2014-07-25 21:04:55 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ ยังไม่ได้ครับ หมือนเดิมครับ ไม่มี alert ขึ้นเลยครับ
|
|
|
|
|
Date :
2014-07-25 21:13:32 |
By :
chonpeak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<script>
$(document).ready(function(){
$('#cpost').click(function(){
$('#showrecord').load('test.php',function(data){
$(this).html(data);
$('input[name^=arrayname]').click(function(event) {
alert($(this).attr('id'));
});
});
});
});
</script>
|
|
|
|
|
Date :
2014-07-25 21:31:45 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุณมากๆเลยครับ คุณ Krungsri
|
|
|
|
|
Date :
2014-07-25 22:53:14 |
By :
chonpeak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|