从C#中的this BHO文章开始。尝试设置样式但它没有设置(我没有看到HTML的任何变化或明显的变化)。
在OnBeforeNavigate和OnDocumentComplete中尝试。还有其他地方我应该进行这些类型的更改吗?
foreach (IHTMLElementtempElement tempElement in document.getElementsByTagName("INPUT"))
{
IHTMLInputElementinput input=(IHTMLInputElement) tempElement;
if(input.type.ToLower().Contains("password"))
{
System.Windows.Forms.MessageBox.Show("OnBeforeNavigate:"+input.value);
tempElement.setAttribute("style", "(some styles here);",0);
}
}