如何擷取iframe DOM的值

來源:互聯網
上載者:User

在Web開發時,很多時候會遇到一個問題。我在一個頁面嵌入了iframe,並且我想獲得這個iframe頁面某個元素的值。那麼該如何?這個需求呢?

先來看下示範:

效果示範

iframe1中文字框的值:

在IE下操作IFrame內容的代碼:

document.frames["MyIFrame"].document.getElementById("s").style.color="blue";

但是這在Firefox下無效。所以,想到在Firefox下用FireBug來調試。經過調試發現在Firefox下可用以下代碼來實現:

document.getElementById("MyIFrame").contentDocument.getElementById("s").style.color="blue";

demo代碼:

    <div><iframe name="frame1" id="frame1" src="frm.html" frameborder="1" height="60"></iframe></div>    <p>iframe1中文字框的值:<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>

iframe頁面代碼:

<html><head>    <title>架構內頁</title></head><body>    <div>        <input id="txt1" name="txt1" type="text" value="歡迎訪問www.bkjia.com" />    </div></body></html>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.