如何使用带有javascript的tr标签打开新的弹出窗口或窗口?

时间:2014-02-17 06:58:42

标签: javascript popup

这是我的剧本

tr style='cursor:hand' onclick="javascript:location.href='list.php?no=$row[no]'"

它会弹出同一个窗口:

我想我必须使用像

这样的东西
onclick="javascript:[           ]='list.php?no=$row[no]'"

如何有新的弹出窗口或窗口?

我使用了href=,但它在chrome中不起作用,因此我不想使用href标记。

2 个答案:

答案 0 :(得分:1)

尝试使用此window.open

tr style='cursor:hand' onclick="javascript:window.open('list.php?no=$row[no]');"

请参阅window.open

更新2

tr style='cursor:hand' onclick="javascript:window.open('list.php?no=$row[no]', 'my_window');"

答案 1 :(得分:0)

首先应该创建一个像这样的函数

function openPopUp(url)
{
    var newwindow=window.open(url,'name','height=200,width=150');
    if (window.focus) {newwindow.focus()}
}

而且你应该有这样的代码

tr style='cursor:hand' onclick="openPopUp('list.php?no=$row[no]')"

它将打开高度为200和宽度为150的新弹出窗口