Firebug: how do I see GET parameters?

只谈情不闲聊 提交于 2019-12-04 02:28:07

Use the All tab in the NET panel

POST parameters can be seen in the NET panel. The first line is the page and if you click the down arrow to expand it, you can see the parameters under the section called "Post"

GET parameters can be seen in a similar way, on the expanded NET tab, its the section called "Params". Additionally, GET parameters will always be part of the url. It's the set of parameters after the ? in the URL.

Not sure how to do this in Firebug, but you could use Fiddler to see the entire request and response.

Within Firebug you can also select DOM->document->forms->Your Form Name

All of you input variables and their post values will be listed under there.

I hope that helps.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!