0

我正在使用 HTML 链接属性

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

在这里,如果我单击“单击我的链接”,它将打开一个新选项卡。但它应该只显示当前选项卡。

任何人都可以帮助我做到这一点。

提前致谢

4

4 回答 4

3

I think this is what you want just leave target blank eg target=""

<a href="http://Google.com/" target="">Click me</a>

else you can test these out

opens it in the same window it was clicked in

<a href="http://webdome.com/" target="_Self">Click me</a>

opens it in the paren frame

<a href="http://webdome.com/" target="_Parent">Click me</a>

For New window or tab

<a href="http://webdome.com/" target="_Blank">Click me</a> 
于 2013-08-22T08:30:41.930 回答
1

删除target="_blank"属性/值。

于 2013-08-22T08:02:17.973 回答
0

尝试这个

<a href="http://www.google.com" target="_self">Click me</a>  
于 2013-08-22T08:04:49.890 回答
0

如果要在同一选项卡中打开此链接,只需从锚标记中删除目标属性。

<a href="http://www.google.com">Click me</a>
于 2017-11-14T04:41:49.863 回答