0

我想在加载时向 iframe 添加一些 html 和 javascript 代码,以便在用户冲浪时,它将通过 iframe 转到其他链接。

我努力了:

<script src="http://code.jquery.com/jquery-2.0.2.js"></script>
<body>
     <button id='button1' onclick="changecode()">Change Code</button>
     <iframe id='iframe1' name='iframe1' src='http://example.in/Default.aspx'> </iframe>
     <script type="text/javascript">
          function changecode(){
             $('#iframe1').contents().find('div.xyz').load('2.html');
          }
     </script>
</body>

另一个javascript尝试:

<script type='text/javascript'>
    function changecode() {
         document.frames('iframe1').document
            .getElementById('ContentPlaceHolder1_UpdatePanel1').innerHTML='11';
    }
</script>
4

1 回答 1

1

load 事件不会从文档的 html 元素触发,但您可以从框架本身附加加载处理程序:

<script type="text/javascript">

    function changecode(){
        $('#iframe1').load(function () {
            $(this).contents().find('div.xyz').html('11');
        });
    }

</script>
于 2013-07-10T14:20:30.457 回答