如何在php echo中添加弹出窗口?

时间:2014-03-06 13:08:54

标签: javascript php html mysql popupwindow

我只是在表中使用php mysql查看来自数据库的行,但我想创建一个链接。当任何一次点击评论时,它将作为弹出窗口打开。

图像 enter image description here

echo "<tr bgcolor='#EBEBE6'>
  <td width='5'> </td>
  <td>".$rows['Date']."</td> 
  <td>".$rows['Payment_ID']."</td>
  <td>".$rows['Staff_ID']."</td>
  <td>".$rows['Amound']."</td>
  <td>"[i want add popup link here].$rows['Comments']."</td>
</tr>";

1 个答案:

答案 0 :(得分:0)

使用window.open弹出新窗口

echo "<tr bgcolor='#EBEBE6'>
  <td width='5'> </td>
  <td>".$rows['Date']."</td> 
  <td>".$rows['Payment_ID']."</td>
  <td>".$rows['Staff_ID']."</td>
  <td>".$rows['Amound']."</td>
  <td><a href='#' onclick='window.open("you url here","","width=200,height=100");'>".$rows['Comments']."</td>
</tr>";