标题:webbrowser控件中 修改iframe中的body标签
只看楼主
kkmylove
Rank: 1
等 级:新手上路
帖 子:4
专家分:3
注 册:2010-8-21
结帖率:100%
 问题点数:0 回复次数:0 
webbrowser控件中 修改iframe中的body标签
1.html的内容
程序代码:
<form id="addReplyForm"  method="post">

 <fieldset>
<iframe id="ifa" style="width:100%;height:100%;border:none;" width="100%" height="100%" frameborder="0" title="kissy-editor" src="2.html" allowtransparency="true"></iframe>

 </fieldset>

 </form>

2.html的内容
程序代码:
<html contenteditable="true">
    <head>
</head>
    
    <body  id="editorbodyid">
                <p><br></p>
    </body>
</html>

请问如何用C#编程 用webbrowser控件载入 1.html然后 在webBrowser1_DocumentCompleted事件中 修改2.html中 body里面的内容
我在webBrowser1_DocumentCompleted中写的是
程序代码:
            if (webBrowser1.ReadyState < )
            {
                return;
            }
            HtmlElementCollection a = webBrowser1.Document.All["addReplyForm"].GetElementsByTagName("iframe");
            foreach (HtmlElement kk in a)
            {
                textBox1.Text = kk.GetAttribute("src");
                kk.Document.Write("aaaaaaaaaaa");
            }

结果1.html中的内容被改成aaaaaaaaaaa了
搜索更多相关主题的帖子: 标签 
2011-08-22 22:49



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-348164-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.046384 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved