点击它后,我希望在Chrome浏览器的新窗口弹出窗口中打开我的Cookie详细信息。
这是我的代码 -
</div>
<a href="javascript:window.open('','_self').close();">
<label className="return"><T.span text='Cookies.Homepage' /></label>
</a>
</div>
<Link to="/Cookies" target="_blank">
<T.span text='Footer.Cookies'/>
</Link>
但是这总是会在新标签页中打开Cookie内容。如何在一个单独的新窗口弹出窗口中打开它?
答案 0 :(得分:0)
使用空白而不是自我
<a href="javascript:window.open('','_blank').close();">
答案 1 :(得分:0)
要在实际窗口而不是标签中打开新窗口,您需要将specs参数传递给window.open:
javascript:window.open('','_blank','height=600,width=400');