点击按钮后显示iframe上的内容-javascript?

时间:2016-12-24 19:46:14

标签: javascript html iframe

我有两个iframe,iframe1有按钮,如果单击一个按钮,iframe2应显示内容。例如,如果我点击iframe1上的button1,button1.html内容应该显示在iframe2中,如果我点击iframe1上的button2,那么button2.html内容应该显示在iframe2中(即iframe1上的内容应该被替换为内容相对于每个按钮)。 (我只使用javascript,HTML和CSS)

1 个答案:

答案 0 :(得分:0)

类似问题的accepted answer应该允许您检测iframe中的按钮点击事件。这将允许您在另一个iframe中设置src属性。类似的东西:

  $(document).ready(function(){
    let iframe_two = $("#two").contents();
    let iframe_one = $("#one");
    iframe_two.find("button").click(function(){ 
      iframe_one.attr("src", "https://www.reddit.com") 

    })
  })