如何解析包含 javascript 的渲染网页

发布于 2024-08-11 18:45:05 字数 83 浏览 7 评论 0原文

如何从呈现的网页中提取数据? 其中java脚本会随时间更新数据。 是否可以编写可以从网页java脚本访问变量的用户脚本? 请建议实现这一目标的可能方法。

How can one extract data from a rendered web page?
In which java script would update the data with time.
Is it possible to write user script which can access varibles from webpage java script?
Please suggest possible way to achieve this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

关于从前 2024-08-18 18:45:05

根据图灵停止问题定理,你不能。

这就是我们说 JavaScript 是一种图灵完备语言的意思。唯一的方法是执行 JavaScript 并让它呈现页面。

according to Turing's Halting Problem Theorem, you can't.

That's what we mean when we say that JavaScript is a Turing complete language. The only way is to execute the JavaScript and let it render the page.

伪心 2024-08-18 18:45:05

这取决于你的编程语言。

在 C# 中,您可以使用 webbrowser 控件 ,然后使用 Webbrowser.Document 属性获取 HTMLDocument 对象来获取当前标记。
要调用文档中的 javascript 函数,请使用 浏览器控件的 ObjectForScripting 属性。

it depends on your programming language.

In C# you could use a webbrowser control, then use the Webbrowser.Document property to get a HTMLDocument object to get the current markup.
To invoke javascript function in the document, use the ObjectForScripting property of the Browser control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文