如何将整个 HTMLElement 的文本替换为其他内容?
这是例子。
webBrowser1.Document.Body.InnerHtml 包含:
在我的 MyWebBrowser 类中,我想将整个 img 标签重新电镀为某些文本,例如字符串示例:“<myImage>”(如果用户不想看到图像,我的聊天应用程序需要它)
我想我可以做类似的事情:
Document.GetElementById("image1").InnerHtml = "<" + Document.GetElementById("image1").GetAttribute("src") + ">";
但是它抛出异常。
实际上,我通过在整个文档中搜索这些特定标签并使用 String 类的方法替换它来解决这个问题,但代码看起来不太好。如果有更有效的方法来做到这一点,请不要费心回答我的问题。
Here's the example.
webBrowser1.Document.Body.InnerHtml contains:
<img id="image1" src="myImage.gif">
and in my MyWebBrowser class I want to replate whole img tag to some text, for example to string: "<myImage>" (I need it for my chat application, if user doesn't want to see images)
I thought I could do something like that:
Document.GetElementById("image1").InnerHtml = "<" + Document.GetElementById("image1").GetAttribute("src") + ">";
but it throws exception.
Actually I resolved that by searching those specific tags in whole document and replacing it using String class' methods, but code doesn't look good. If there's more effective way to do that, do not bother answering my question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 OuterHtml 属性:
但请注意,分配给
OuterHtml
将使对该元素的引用无效,因此image
之后将不会引用新内容。You can use the OuterHtml property:
Note, however, that assigning to
OuterHtml
will invalidate the reference to the element, soimage
will not refer to the new content afterwards.