标签: html dom mshtml
在C#中,我使用mshtml.HTMLDocument从页面中检索各种元素。
例如:
button =(mshtml.HTMLButtonElement)theDoc.getElementById(“ID1”);
现在,如果我运行IE6,IE7,IE8,“ID1”会根据浏览器版本而改变吗?
答案 0 :(得分:3)
不,ID是标签的属性。所以,如果你有
<input type="button" id="ID1" ... />
在所有浏览器中,它的ID都是ID1。