表单提交模拟 - Javascript 菜单

发布于 2024-12-06 18:18:04 字数 292 浏览 0 评论 0原文

我想使用 JavaScript 菜单获取网站的内容。我需要模拟菜单链接上的点击(或在浏览器中输入 javascript:gotoPage("p10"); ),以便能够从一个页面移动到另一页面。 该网站使用由JS激活的表单。输入 URL 可能无法转到另一个页面,因为有一些隐藏字段(例如哈希值 - 它取决于时间和页面 #)。这就是为什么我必须使用用户模拟浏览器。

基本上这个过程会是这样的: 而(任意内容){ 文件获取内容(); 单击链接(); ?

可以使用 cURL 或 JSON 来完成此任务吗

I'd like to get contents of a website using JavaScript menu. I need to simulate clicks (or typing javascript:gotoPage("p10"); into a browser) on menu links to be able to move from one page to another.
The website uses a form activated by JS. It's probably not possible to go to another page by entering URL, because there are some hidden fields (something like hash- it's dependent on time and the page #). That's why I have to simulate a browser using user.

Basically the process will look like this:
while (any_content) {
file_get_contents();
clickalink();
}

Can cURL or JSON be used for this task?

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

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

发布评论

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

评论(1

淡淡的优雅 2024-12-13 18:18:04

如果您使用 PrototypeJS,您也许可以使用 event.simulate 库来模拟链接点击。

https://github.com/kangax/protolicious/blob/master/event .simulate.js

$('link_id').simulate('click');

If you're using PrototypeJS you could perhaps use the event.simulate library to simulate clicks on links.

https://github.com/kangax/protolicious/blob/master/event.simulate.js

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