Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个jsp页面。因为我有多个链接。在 http 模式下,如果单击任何链接,则会在同一窗口中打开目标页面。
但在 https 模式下,如果单击任何链接,则会在新窗口中打开目标页面。在 https 模式下如何在同一窗口中打开目标页面。
我相信 html 目标属性有自己的选项来打开链接..
<a target="_blank|_self|_parent|_top|framename"> <a herf="" target="_parent">LINK</a>
应该在同一个父窗口中打开链接,而不是弹出新窗口。