因此,我设置了对 Microsoft HTML 对象库和 Microsoft Internet 控件的引用,下面是通过获取元素 id 来输入值的示例:
With HTMLDoc
.getElementById("USER").setAttribute "value", "myuser"
.getElementById("PASSWORD").setAttribute "value", "mypass"
.getElementById("Button").Click
End With
我很想知道,假设有一个名为“ReturnValue”的 ID 标记,其中包含我想复制到剪贴板的内部 html 中的字符串,我将如何在该实例中使用 .getElementByID 和 COPY?