试图在新窗口中打开一个单击元素

时间:2019-06-12 21:10:12

标签: php

我在页面上的嵌入式页面上有一个按钮,该按钮链接到我要在新窗口中打开内容的表单,但是目前,页面在嵌入式页面内部打开

当然,我尝试了target=_blank,但这似乎不起作用。我尝试了onClick="location.href='embed_newstore.php'",但是那也不起作用。

<input type="button" name="op" onclick="document.location.href='embed_newstore.php'" id="edit-submit" value="<?php echo $lang['REQUEST_ADD_STORE']; ?>" class="btn btn-primary" style="color:white !important;" target="_blank"/>

预期:embed_newstore.php在新窗口/选项卡中打开

实际:embed_newstore.php在嵌入应用程序容器中打开

2 个答案:

答案 0 :(得分:1)

尝试

onclick="window.open('embed_newstore.php');"

答案 1 :(得分:0)

尝试一下
onclick =“ window.open('http://localhost/embed_newstore.php');”;
仅当按钮不在表单标记内时才有效