|
|
|
ผมมีตารางที่แสดงข้อมูลเป็น Row แล้วที่นี้ผมอยากให้ รหัสใน rowP_id สามารถคลิกได้จากนั้นเมื่อคลิกที่ row อะไรให้แสดงข้อมูล detail ในช่องตารางด้านล่าง ครับผมไม่รู้วิธ๊ ส่งค่าไป |
|
|
|
|
|
|
|
ลองดูตัวนี้ครับ
ใช้แบบนี้หรือเปล่าครับ
Code (JavaScript)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<script language="JavaScript">
function fncShow(ctrl)
{
document.getElementById(ctrl).style.display = '';
}
function fncHide(ctrl)
{
document.getElementById(ctrl).style.display = 'none';
}
</script>
<form name="frmMain" action="" method="post" OnSubmit="return onDelete();">
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
</tr>
<?
$i = 0;
while($objResult = mysql_fetch_array($objQuery))
{
$i++;
?>
<tr>
<td colspan="6"><?=$objResult["CustomerID"];?> [<a href="JavaScript:fncShow('tr<?=$i;?>');">Show</a>] [<a href="JavaScript:fncHide('tr<?=$i;?>');">Hide</a>]</td>
</tr>
<tr id="tr<?=$i;?>">
<td><div align="center"><?=$objResult["CustomerID"];?></div></td>
<td><?=$objResult["Name"];?></td>
<td><?=$objResult["Email"];?></td>
<td><div align="center"><?=$objResult["CountryCode"];?></div></td>
<td align="right"><?=$objResult["Budget"];?></td>
<td align="right"><?=$objResult["Used"];?></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
</form>
</body>
</html>
Go to : Ajax Visibility and Display
Go to : Ajax Display Element
|
|
|
|
|
Date :
2011-09-22 22:33:59 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ
|
|
|
|
|
Date :
2011-09-23 08:29:13 |
By :
54-206 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือผมอยากจะเก็บค่ารหัสของ บรรทัดด้วยนะครับ ถ้าจะให้ ปุ่น show เก็บค่าของรหัสด้วย ในแต่ละบรรทันนะครับ สามารถได้ไหม เพื่อเอาไปตัวแปลตัวนั้นไปแสดงนอกลูบนะครับ
|
|
|
|
|
Date :
2011-09-23 09:43:09 |
By :
54-206 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ฝากถามต่อด้วยครับแล้วถ้าอยากให้มันซ่อนก่อนแล้วพอคลิงshow ถึงค่อยแสดงได้ไหมครับ
|
|
|
|
|
Date :
2011-09-23 10:19:24 |
By :
coop |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็หน้าจะให้ ฟั่งชั่น
function fncHide(ctrl)
{
document.getElementById(ctrl).style.display = '';
}
ทำงานก่อนนะครับ แต่ผมก็ไม่รู้วิธีใช้เหมือนกัน - -
|
|
|
|
|
Date :
2011-09-23 11:28:25 |
By :
54-206 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function จะทำงานเมื่อเรียกใช้ไม่ใช่เหรอ ก็คือต้องคลิกปุ่มก่อนน่ะ แต่ถ้าพอเปิดหน้านี้มาให้มันซ่อนเลยน่ะทำยังไงเหรอครับ
|
|
|
|
|
Date :
2011-09-23 11:32:58 |
By :
coop |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง เอาสคิบ จาวาไปเซฟที่ เป็น file จาวา ก่อนนะครับแล้ว เป็นjs
<script language="javascript" src="ชื่อfile"></script>
<? function fncHide(ctrl); ?>
หน้าจะได้นะครับ แต่ผมก็ไม่ได้ลองเขียนดูไม่แน่ใจเหมือนกัน
|
ประวัติการแก้ไข 2011-09-23 12:47:46
|
|
|
|
Date :
2011-09-23 12:46:53 |
By :
54-206 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|