Posted in Javascript onFebruary 04, 2013
//有两个按钮分别响应两个事件,用来控制iframe显示的网页。 <script type="text/javascript"> function bd(){ var baidu = document.getElementById("i"); baidu.src = "http://www.baidu.com"; } function xl(){ var sina = document.getElementById("i"); sina.src = "http://www.sina.com.cn"; } </script> <style type="text/css"> #i{ width:400px; height:300px; } </style> </head> <body> <iframe id = "i" scrolling = "no"> </iframe> <div> <input type = "button" value ="百度" onclick = "bd()"/> <input type = "button" value ="新浪" onclick = "xl()"/> </div> </body>
用按钮控制iframe显示的网页实现方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@