<!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(){ $('#showrecord, :input[name="arrayname[]"]').click(function(){ alert($(this).attr('id')); }); }); $(document).ready(function(){ $('#cpost').click(function(){ $.post( 'cont.php', {}, function(data){ $('#showrecord').html(data); }, 'html' ); }); }); </script> <title>Untitled Document</title> </head> <body> <input type='button' id='cpost' value='cpost' /> <div id='showrecord'> </div> </body> </html>
<!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> </head> <body> <? echo "<input type='button' id='cus1' name='arrayname[]' value='Show ID' custid='1' />"; echo "<input type='button' id='cus2' name='arrayname[]' value='Show ID' custid='2' />"; echo "<input type='button' id='cus3' name='arrayname[]' value='Show ID' custid='3' />"; echo "<input type='button' id='cus4' name='arrayname[]' value='Show ID' custid='4' />"; ?> </body> </html>
<!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>
<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>
<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>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง