应在一帧中给出一个链接。当它被点击时,它将在另一个框架中打开。当我给出一个html页面链接时,代码可以工作。但是如果我放了一个像https://www.facebook.com/,then这样的网页代码不能正常工作。
为什么会这样? 代码是:
frames_example_1页面:
<frameset cols="200,*" frameborder="0" border="0" framespacing="0">
<frame name="menu" src="menu_1.html" marginheight="0" marginwidth="0" scrolling="auto" noresize>
<frame name="content" src="content.html" marginheight="0" marginwidth="0" scrolling="auto" noresize>
Menu_1.html:
menu_1.html : <p><a href="https://www.facebook.com/" target="content">Facebook</a></p>