表单提交模拟 - Javascript 菜单
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 PrototypeJS,您也许可以使用 event.simulate 库来模拟链接点击。
https://github.com/kangax/protolicious/blob/master/event .simulate.js
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