[ad_1]
私のasp.netアプリケーションには、新しいWebサイトを開く必要があるIframeがあります。このページはリダイレクトする必要があるため、Iframeでページをリダイレクトする方法???
解決策 2
以下のリンクを確認してください。src を変更する方法がよくわかります。
ライブデモ:http://jsfiddle.net/GeekyJohn/GH5QG/
ヘルプリンク:
http://www.sitepoint.com/forums/showthread.php?818497-Changing-and-loading-an-iframe-src-attribute-with-jQuery
http://stackoverflow.com/questions/86428/whats-the-best-way-to-reload-an-iframe-using-javascript
解決策 1
やあ、
コードを見つけてください。
<html><head> <title>Test IFrame SRC by Javascript </title> <script> function RedirectPage() { document.getElementById("frame1").src = "http://WWW.microsoft.com"; } </script> </head> <body> <table> <tr> <td> <iframe name="frame1" src="http://www.w3schools.com" width="500px" height="500px"></iframe> </td> </tr> <tr><td> <input type="button" value="Change IFrame sRC Location" name="btnRedirect" runat="server" onclick="RedirectPage()"/> </td></tr> </table> </body> </html> <pre> Hope it helps Regards,Mahe
解決策 3
これを試して..:)
JavaScript
function SetPage(url) { document.getElementById("myframe").setAttribute("src", url); }
HTML
<iframe id="myframe"></iframe> <span onclick="SetPage('MyPage1.aspx')">My Page1</span> <span onclick="SetPage('MyPage2.aspx')">My Page2</span> <span onclick="SetPage('MyPage3.aspx')">My Page3</span> <span onclick="SetPage('MyPage4.aspx')">My Page4</span>
[ad_2]
コメント