|
|
|
ตัวแปลใน javascript loop ตัวสุดท้ายตัวเดียวอะคับ ช่วยที่ |
|
|
|
|
|
|
|
เพราะคุณประกาศฟังก์ชั่น open_win_detail() ซ้ำๆ ในลูป ด้วยชื่อเดียวกัน
ใน onClick มันจะไปรู้ได้ยังไงว่าคุณเรียกตัวไหน ดังนั้น เวลาเรียกมันก็เรียกตัวสุดท้ายยังไงล่ะครับ (เพราะตัวก่อนหน้าโดนทับไปด้วยตัวที่ตามมาทีหลัง)
เปลี่ยนเป็นประกาศครั้งเดียว แล้วใช้การผ่านตัวแปร id เข้าไปในฟังก์ชั่นแทน
?>
<script language="javascript">
function open_win_detail(id) {
window.open ("product_detail.php?id=" + id,"","width=800, height=700");
}
</script>
<?php
while($results = mysql_fetch_array($objQuerymember))
{
;
?>
<tr class="data">
<td class="data"><?=$results["date_cre"]?></td>
<td class="data"><?=$results["name_product"]?></td>
<td class="data"><?=$results["name_cat"]?></td>
<td class="data"><?=$results["code_product"]?></td>
<td class="data"><?=$results["product_price"]?></td>
<td class="data" width="75px">
<center>
<a href="" onClick="open_win_detail('<?=$results["id_product"]?>')">
<img src="mos-css/img/detail.png" ></a>
<a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='<?=$_SERVER["PHP_SELF"];?>?Action=Del&delete=<?=$results["userid"];?>';}">
<img src="mos-css/img/remove.png"></a>
</center>
</td>
</tr>
<?}?>
|
|
|
|
|
Date :
2014-05-20 13:08:42 |
By :
. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคับ ได้ละคับ
|
|
|
|
|
Date :
2014-05-20 13:18:41 |
By :
เนสด |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|