ホームページ >ウェブフロントエンド >jsチュートリアル >JavaScript_javascript スキルで iframe の部分更新を実現するためのいくつかの方法のまとめ
iframe は Web ページに埋め込まれたフレームの形式で、埋め込まれた部分を変更することで Web ページのコンテンツの一部を更新できます。
Iframeの使い方は通常のタグ要素DIVと同様で、ページ内に埋め込む位置、色、インターフェイスのレイアウトなどを指定できます。
1. iframe の部分更新を実装する方法
<script type="text/javascript"> $(function(){ $("#a1").click(function(){ var name= $(this).attr("name"); $("#iframe").attr("src",name).ready(); }) $("#a2").click(function(){ var name= $(this).attr("name"); $("#iframe").attr("src",name).ready(); }) }) </script> <a href="#" id="a1" name="a1.html">1</a> <a href="#" id="a2" name="a2.html">2</a> <iframe src="" id="iframe"></iframe>
a1をクリックすると、a1.htmlの内容がiframeに表示されます。 a2をクリックすると、a2.htmlの内容がiframeに表示されます。
2. iframe の部分更新を実装する方法 2
<a href="a1.html" id="a1" name="a1.html" target="i">1</a> <a href="a2.html" id="a2" name="a2.html" target="i">2</a> <iframe src="" id="iframe" name="i"></iframe>
3: iframe で部分更新を実現する方法 3:
<iframe src="1.htm" name="ifrmname" id="ifrmid"></iframe>
オプション 1: iframe の name 属性を使用して を見つけます
<input type="button" name="Button" value="Button" onclick="document.frames('ifrmname').location.reload()">
<input type="button" name="Button" value="Button" onclick="document.all.ifrmname.document.location.reload()">
オプション 2: iframe の id 属性を使用して を見つけます
<input type="button" name="Button" value="Button" onclick="ifrmid.window.location.reload()">
オプション 3: iframe の src が別の Web サイトのアドレスの場合 (ドメインをまたいで運用している場合)
<input type="button" name="Button" value="Button" onclick="window.open(document.all.ifrmname.src,'ifrmname','')">
オプション 4: iframe の src を に置き換えて部分更新を実現します。
document.getElementById("iframname").src="" を使用して iframe をリダイレクトできます。
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <script type="text/javascript"> function partRefresh() { document.getElementById("iframe1Id").src = "a2.html"; // 方法一: 通过和替换iframe的src来实现局部刷新 } </script> </head> <body> <table border="1" width="90%" align="center"> <tr style="background: #F0F0E4"><td>方格1</td><td>方格2</td> <td>方格3</td> </tr> <tr> <td> <iframe src="a1.html" id="iframe1Id" name="iframe1Name" width="100%"></iframe> </td> <td> <iframe src="a2.html" id="iframe2Id" name="iframe2Name" width="100%"></iframe> </td> <td> <iframe src="a3.html" id="iframe3Id" name="iframe3Name" width="100%"></iframe> </td> </tr> </table> <br> <br> <input type="button" value="IFRAME局部刷新" style="margin-left: 70px;" onclick="partRefresh();"> </body> </html>