<? require_once "connectdb.php"; ?> <!DOCTYPE html> <html> <head> <style> p{display: none;} </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("a").click(function(){ var num=$(this).attr('rel'); $('p').each(function(){ $(this).hide(); }); $('#p'+num).show(); }); }); </script> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head> <body> <? $today_zean = date('Y-m-d'); $sqlprg = "select * from membertb order by id desc"; $resultpg = mysql_query($sqlprg) or die(mysql_error()); while($rowg = mysql_fetch_array($resultpg)) { $idmember = $rowg['id']; $name= $rowg['name']; $detail = $rowg['detail']; ?> <a href="#" rel="<? echo "$idmember"; ?>"><? echo "$name"; ?></a><br> <p id="p<? echo "$idmember"; ?>"><? echo "$detail"; ?></p> <? } ?> </body> </html>
a href="#" rel="<? echo "$idmember"; ?>"><? echo "$name"; ?> //เหมือน " มันซ้อนกันนะ ลองดู code ว่าได้แบบไหน
a href="#" rel="<?php echo $idmember; ?>"><?php echo $name; ?> //หรือ a href="#" rel="<?=$idmember?>"><?=$name?> //ในส่วน p ก็เช่นกัน
<script> $(document).ready(function(){ $("a").click(function(){ var num=$(this).attr('rel'); alert(num);//ลองดักค่าดูว่า num มาจริงไหม $('p').each(function(){ $(this).hide(); }); $('#p'+num).show(); }); }); </script>
<? require_once "connectdb.php"; ?> <!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function(){ $('p').each(function(){ // วน Loop html(p) $(this).hide(); // เมื่อเจอตัวนั้นๆให้ซ่อน }); $("button").click(function(){ //เมื่อทำการ click button var num=$(this).attr('rel'); // ดึง attr rel มาใช้งาน $('p').each(function(){ // วน Loop html(p) $(this).hide(); // เมื่อเจอตัวนั้นๆให้ซ่อน }); $('#p'+num).show(); // id Pnum แสดง }); }); </script> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head> <body> <? $today_zean = date('Y-m-d'); $sqlprg = "select * from membertb order by id desc"; $resultpg = mysql_query($sqlprg) or die(mysql_error()); while($rowg = mysql_fetch_array($resultpg)) { $idmember = $rowg['id']; $name= $rowg['name']; $detail = $rowg['detail']; ?> <button rel="<? echo "$idmember"; ?>"><? echo "$name"; ?></button><br> <p id="p<? echo "$idmember"; ?>"><? echo "$detail"; ?></p> <? } ?> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง