我有这个jsp页面,其中包含以下框架:
<frameset cols="20%,*">
<frame src=”SideBar.jsp” name="frameA">
<frame src=”http://www.w3schools.com/” name="frameB" target="_self">
</frameset>
在frameB中,它是一个外部链接,用户可以浏览该网页并单击链接并执行操作。当用户单击链接时,是否可以获取该新网页的网址?例如http://www.w3schools.com/html/default.asp
提前致谢
最佳答案
你试过了吗:
alert(frameB.location);
取决于浏览器,可能会due to security reasons禁用此功能。
(您不知道用户何时单击页面,因此您应该定期检查页面是否更改。)