如何设置 c# webbrowser 里文本的样式?

如何设置 c# webbrowser 里文本的样式?,第1张

Hello 最近我也在弄WebBrowser

你可以这样 例如显示的网页时

<form action="test.htm" id="from1">

<font id="font1">font title</font><br />

</form>

现在要设置font1的属性 改变它的颜色 在winfrom上弄个按钮 这个按钮点击事件

private void button4_Click(object sender, EventArgs e)

{

webbrowser 1.Document.GetElementById("font1").SetAttribute("color", "red")

}

可能这不是你想要的 但是你自己可以去扩展啦

定义一个style类样式/ID样式。

var input = document.createElement("input")

input.setAttribute("class", "样式名")

用setAttribute设置style和onclick这些属性在IE中是行不通的,可以使用

document.getElementById("test").style.color = "#ccc"


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11210547.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-14
下一篇 2023-05-14

发表评论

登录后才能评论

评论列表(0条)

保存