我想废弃以下html代码,从“resultsTable”的“td”标签中提取一个值
我尝试在下面运行vba代码,但它不起作用。我收到了
运行时错误代码'91'
class MyComponent extends Component {
state = {
data: {
address: ""
}
};
render() {
return(
<Form onSubmit={this.onSubmit} loading={loading}>
<MapWithASearchBox />
<Button primary>Submit</Button>
</Form>
)
}
}
答案 0 :(得分:0)
您不允许加载页面时间。等待.Busy
完成并不意味着页面已加载且页面元素可用。
以下是一种暂停某些相关内容的方法:
trs = tbody.getElementsByTagName("tr")
Do While trs Is Nothing
DoEvents
Application.Wait Now + TimeValue("00:00:02")
trs = tbody.getElementsByTagName("tr")
Loop