使用self.location在新标签页中打开页面?

时间:2010-12-13 07:46:51

标签: javascript jquery

我在我的代码中使用self.location="www.google.com";来打开Goog​​le网页。如何在另一个窗口中打开同一页面。

5 个答案:

答案 0 :(得分:2)

你可以这样使用window objectopen method

window.open("www.google.com");

答案 1 :(得分:2)

您可以使用<a>标记并设置target="_blank"属性以在新标签/窗口中打开页面。是否将在新的选项卡/窗口中打开它完全取决于用户代理中的设置。

<a href="http://www.google.com" target="_blank">Google</a>

答案 2 :(得分:1)

试试这个

window.open ("www.google.com","mywindow");

答案 3 :(得分:1)

<script>
function fullwin(targeturl) {
window.open(targeturl,"","fullscreen,scrollbars")
}
</script>

<form>
<input type="button" onClick="fullwin('mypage.html')" value="Show My Frameset">
</form>

答案 4 :(得分:0)

我看到至少一种怪异的方法:

<a id='newwnd' href='goole.com' style='display:hidden' target='blank'></a>
...
document.getElementById('newwnd').click();