To see the content POST data trasferred by jQuery

后端 未结 2 603
南旧
南旧 2021-01-02 00:04

How can you see what the attribute rel contains when it is transferred by POST?

I transfer a variable by the rel attribute by jQuery. I

相关标签:
2条回答
  • 2021-01-02 00:36

    There are various tools you can use to capture such information. I use a plugin for Firefox called Live HTTP Headers, which lets you view the HTTP headers that are being transferred in each request, so you would be able to view your post variable.

    Firebug can also be used, it is also a plugin available for Firefox. Select the Net tab, then select All. Here you will see a list of all requests. Now you can expand each request to view the headers (and hence the post variables).

    0 讨论(0)
  • 2021-01-02 00:44

    You can use the Network tab and look at the params tab as shown below (this was a get request to google where I search for the word hello).


    (source: gyazo.com)

    0 讨论(0)
提交回复
热议问题