日期:2014-05-18  浏览次数:20480 次

怎么样通过脚本更改iframe 的SRC
页面A中有2个  
<a   href= "http://www.yahoo.cn "   > yahoo </a>
  <a   href= "http://www.yahoo.com "   > yahoo </a>
还有个iframe   id= "main "

现在格式已经定下来了,不能在 <a> 在任何东西了,但是可以通过脚本更改 <a> 的href属性 <a   href= "javascript:document.all.contentmain.src= 'http://news.sina.com.cn ' "   > ,但是这样会打开一个新的窗口,只显示http://news.sina.com.cn   这个东西.
我想让它打开的窗口在iframe中.

------解决方案--------------------
<a href= "http://www.yahoo.com " onclick= "javascript:document.all.contentmain.src= 'http://news.sina.com.cn ' "> yahoo </a>

------解决方案--------------------
onclick= "javascript:document.getElementById( "main ").src= 'http://news.sina.com.cn '
------解决方案--------------------
document.all.main_list.src = url_str;
------解决方案--------------------
添加一句: Target= "main "  就可以了