想要在texbox中输入文本,其中标签是输入标签,它也有ID
我正在使用ie.document.getElementsById(“myId”)。Value =“newtext”
然而它给出错误“对象不支持此属性或方法”
请给出决议
答案 0 :(得分:0)
你不能这样做。设置值的最佳方法是添加属性" value"元素:
示例:
ie.document.getElementsById("myId").setAttribute("value", "newtext");
这应该有效。