我正在使用 HTML 链接属性
<a href="http://www.google.com" target="_blank">Click me</a>
在这里,如果我单击“单击我的链接”,它将打开一个新选项卡。但它应该只显示当前选项卡。
任何人都可以帮助我做到这一点。
提前致谢
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>
删除target="_blank"
属性/值。
尝试这个
<a href="http://www.google.com" target="_self">Click me</a>
如果要在同一选项卡中打开此链接,只需从锚标记中删除目标属性。
<a href="http://www.google.com">Click me</a>