HTML iframe src Attribute

<input type="button" id="changeframe" value="Change">

<iframe id="declinedframe" class="embed-responsive-item" src="http://baidu.com" height="585" width="100%"></iframe>

Script:

  $('#changeframe').click(function () {
      $('#declinedframe').attr('src', 'http://taobao.com');
  });

 

posted @ 2021-07-22 10:48  katesharing  阅读(62)  评论(0)    收藏  举报