请问链接在框架里显示的问题

<iframe name="frame1" id="frame1" src=""></iframe>
    
<a onclick="geturl()">链接给我进框架</a>

function geturl(){location.href="http://www.baidu.com/";}

请问怎样让我这个链接在框架里显示。function这里应该怎样写?

我的链接只能这样写在js里。

阅读 1k
1 个回答
<header>
  Geroge 
</header>
<script>
  function geturl(){
 let calendar = document.getElementById("frame1");
  console.log(calendar);
  alert(calendar);
  calendar.setAttribute("src", "https://www.baidu.com/");
  //document.getElementById('frame1').src = "http://www.baidu.com/";
}

</script>
<a onclick="geturl()">链接给我进框架</a>

<iframe name="frame1" id="frame1" src=""></iframe>

注意链接 http 或者https

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏