我在 asp.net 中有回发方法,之后我想打开新的空白页。
我正在显示来自客户端的一些消息并明确单击 href 但该 href 没有触发。
<a href="../tools/pagename.aspx" target="_blank" id="aProcess"></a>
function DownloadData()
{
$("#aProcess").click();
}
我想在新页面中执行 href。我不想使用的 window.open()。我想打开新窗口。使用 window.open() 因为它有时可能会被浏览器阻止。因此,我想明确地触发一个 href 调用。