c webbrowser选择css元素,c# – 如何在WebBrowser控件中注入CSS?

我没有尝试这个,但CSS样式规则可以包含在使用< style>标签如:

h1 {color:red}

p {color:blue}

你可以尝试给:

HtmlElement head = webBrowser1.Document.GetElementsByTagName("head")[0];

HtmlElement styleEl = webBrowser1.Document.CreateElement("style");

IHTMLStyleElement element = (IHTMLStyleElement)styleEl.DomElement;

IHTMLStyleSheetElement styleSheet = element.styleSheet;

styleSheet.cssText = @"h1 { color: red }";

head.AppendChild(styleEl);

一路走来您可以在IHTMLStyleElement here上找到更多信息.

编辑

似乎答案比我原来想的要简单得多:

using mshtml;

IHTMLDocument2 doc = (webBrowser1.Document.DomDocument) as IHTMLDocument2;

// The first parameter is the url,the second is the index of the added style sheet.

IHTMLStyleSheet ss = doc.createStyleSheet("",0);

// Now that you have the style sheet you have a few options:

// 1. You can just set the content as text.

ss.cssText = @"h1 { color: blue; }";

// 2. You can add/remove style rules.

int index = ss.addRule("h1","color: red;");

ss.removeRule(index);

// You can even walk over the rules using "ss.rules" and modify them.

我写了一个小的测试项目,以验证这是否有效.我通过在MSDN上搜索IHTMLStyleSheet,在this page,this page和this one发生了这个最终结果.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值