DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> js實現iframe框架取值的方法(兼容IE,firefox,chrome等)
js實現iframe框架取值的方法(兼容IE,firefox,chrome等)
編輯:關於JavaScript     

本文實例講述了js實現iframe框架取值的方法。分享給大家供大家參考,具體如下:

為啥世上會有這麼多不同的浏覽器?每次遇到js/css的浏覽器兼容性問題,總是要發出這樣的感歎,真希望這些個浏覽器公司全部倒下,然後只留下一家(顯然這是一個不可能實現的美好願望),言歸正傳,看代碼吧:

iframe框架內頁:

<html>
<head>
  <title>框架內頁</title>
</head>
<body>
  <div>
    <input id="txt1" name="txt1" type="text" value="測試" />
  </div>
</body>
</html>

父級類:

<iframe name="frame1" id="frame1" src="frm.html" frameborder="1" height="30"></iframe>
<p>
  iframe1中文本框的值:</p>
<p>
  <input type="button" name="Submit" value="getValue" onclick="getValue()" />
</p>
<script type="text/javascript">
function getValue(){
  var ofrm1 = document.getElementById("frame1").document;
  if (ofrm1==undefined)
  {
    ofrm1 = document.getElementById("frame1").contentWindow.document;
    var ff = ofrm1.getElementById("txt1").value;
    alert("firefox/chrome取值結果為:" + ff);
  }
  else
  {
    var ie = document.frames["frame1"].document.getElementById("txt1").value;
    alert("ie取值結果為:" + ie);
  }
}
</script>

希望本文所述對大家JavaScript程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved