用c# webbroser填充html文本区域
我需要使用网络浏览器填充文本区域。我无法使用 getElementByID 因为 textarea 中没有 id,只有名称,这是 textarea 代码:
<textarea name="txt1"></textarea>
谢谢..
I need to fill textarea using webbrowser. I can't use getElementByID as there's no id in textarea, just name, here's textarea code:
<textarea name="txt1"></textarea>
thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果无法通过 ID 获取元素,则始终可以通过标记名迭代元素
If you cannot get elements by ID, you can always iterate elements by tagname
你可以尝试这样的事情:
You could try something like this: