php提交javascript表单
我正在使用 php
解析网站以检索数据。在 javascript
组合框中选择值后,部分数据将变得可见。
他们是 php
在组合框中选择一个值、提交它并处理结果的方法吗?
I'm parsing a website with php
to retrieve data. Part of the data becomes visible after selecting values in a javascript
combobox.
Is their a way for php
to select a value in the combobox, submit it and handle result?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
恐怕不是。您必须剖析正在抓取的页面,以查看可见数据的来源。使用 Firebug 来帮助你。
I'm afraid not. You will have to dissect the page you are scraping to see where the data that becomes visible comes from. Use Firebug to help you.
我最终在
网络选项卡
上使用了Chrome
中的开发者工具
。这使我能够捕获使用javascript
组合框发布的表单数据
。我使用
cURL
在php
中执行了该帖子。I ended up using the
Developer Tools
fromChrome
on thenetwork tab
. This allowed me to capture theform data
that is been posted with thejavascript
combobox.With
cURL
I performed the post inphp
.