|
|
|
ทำหน้าเว็บซ่อน พอจะดูก็คลิก แท็บก็จะเลื่อนลงพอดีเห็นในเว็บ ฮอนด้า ผมอยากถามว่าเขาใช้โค้ดตัวไหนทำ และทำกันยังไงคับ |
|
|
|
|
|
|
|
ใช้แบบนี้หรือเปล่าครับ
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-06-16 17:03:53 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้ไม่ได้ยังไงแจ้งด้วยน่ะครับ เดียวจะกลับมาเขียนให้ใหม่ครับ
|
|
|
|
|
Date :
2011-06-16 17:16:42 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ แบบนี้ก็ใช้ได้ประยุกต์เอา
แต่ถ้าได้แบบนี้ จะเจ๋งมาเลยครับผม
http://www.honda.co.th/th/news-release/index.php
|
|
|
|
|
Date :
2011-06-16 17:18:00 |
By :
shinjangs |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดให้หน่อยก็ดีครับผม
ขอบคุณล่วงหน้าครับ
|
|
|
|
|
Date :
2011-06-16 17:34:29 |
By :
shinjangs |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
view source ดูไฟล์ news-release.js ครับ jquery เขาเขียนเองหรือเปล่าไม่แน่ใจ
|
|
|
|
|
Date :
2011-06-16 23:18:45 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|