我创建了一个分为3帧的页面,代码是:
<html>
<head>
<title>Home</title>
</head>
<frameset rows="100,*">
<frame src="title.html" name="title" noresize="noresize">
<frameset cols="100,*" noresize="noresize">
<frame src="index.html" name="index">
<frame src="body.php" name="body">
</frameset>
</frameset>
</html>
&#13;
在索引框架中,我想插入一个链接到在框架体中打开的https页面(例如https://www.google.it/),但是当点击该链接时,它不会打开任何内容。 这是索引框架的代码:
<html>
<a href="https://www.google.it/" target="body">Google</a>
</html>
&#13;
我尝试使用不使用https协议的链接并且它有效,所以我不知道问题是什么。