1

我有一个名为“review.asp”的页面,其中包含一个从数据库生成记录列表的表单。如果用户想查看有关特定记录的更多信息,他们只需单击“prjName”字段,这是一个超链接。然后,页面将提交并显示有关记录的信息。目前,这在同一窗口中打开。我希望它打开一个新窗口。

此外,我不想只在 HTML 的表单部分中放置一个 target = _blank,因为此页面会进行多次提交,并且我不希望它们全部在新窗口中打开 - 只是下面的这个。所以,我希望在 Javascript 中有一个解决方案?

提前致谢!

我的 HTML:

<form name="frmPrjReview" id="frmPrjReview" method="post">
<p><a href="javascript:selectRecID('<%= RS("recID")%>')";><%=RS("prjName")%></a></p>

我当前的 Javascript:

function selectRecID(recID)
{
    //Set the value of the hidden text field = to the record ID in the table.
    document.getElementById("txtRecID").value = recID;

    var submitSearch = document.getElementById("frmPrjReview");

    submitSearch.action = "review.asp"; 
    submitSearch.submit();
}
4

1 回答 1

2

在需要时以编程方式设置目标:

var submitSearch = document.getElementById("frmPrjReview");
...
submitSearch.setAttribute("target", "_blank");
submitSearch.submit();
submitSearch.removeAttribute("target")

编辑:添加删除。

于 2012-06-10T18:38:40.080 回答