在框架中使用https链接的HREF不起作用

时间:2016-09-23 15:54:25

标签: html https hyperlink href

我创建了一个分为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;
&#13;
&#13;

在索引框架中,我想插入一个链接到在框架体中打开的https页面(例如https://www.google.it/),但是当点击该链接时,它不会打开任何内容。 这是索引框架的代码:

&#13;
&#13;
<html>

<a href="https://www.google.it/" target="body">Google</a>

</html>
&#13;
&#13;
&#13;

我尝试使用不使用https协议的链接并且它有效,所以我不知道问题是什么。

0 个答案:

没有答案
相关问题