js 改变 iframe 的 src


js 改变 iframe 的 src

1
2
3
4
5
6
7
8
<script>
  function dizhi(){
    document.getElementById("aaa").src='http://www.sohu.com';
  }
</script>

<iframe id="aaa" name="aaa" width="400" height="200" src="http://www.baidu.com"></iframe>
<input type="submit" name="Submit" value="改变地址" onclick="dizhi()" />