load iframe in bootstrap modal

后端 未结 6 1635
青春惊慌失措
青春惊慌失措 2020-12-14 22:00

I want to load an iframe into a bootstrap modal and show a loader before the iframe is loaded. I am using a simple jquery click function, but it is not working. I do not und

6条回答
  •  鱼传尺愫
    2020-12-14 22:46

    I came across this implementation in Codepen. I hope you find it helpful.

    this.on('hidden.bs.modal', function(){
          $(this).find('iframe').html("").attr("src", "");
        });
    

提交回复
热议问题