你可以这样 例如显示的网页时
<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"
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)