1
ong 2012-09-05 11:01:25 +08:00
function doSubmit
|
2
DouO 2012-09-05 11:02:02 +08:00 1
|
3
d0a1ccec OP @ong
function doSubmit(id){ document.frm.txtID.value = id; document.frm.action = "vote.asp?" + Math.random(); document.frm.target = "w_hidden"; //document.frm.encoding = "application/x-www-form-urlencoded"; document.frm.submit(); } 看过了,"vote.asp?" + Math.random() 不解啊。每次提交都是随机数 |
6
treo 2012-09-05 11:05:55 +08:00 1
这个不是吗
POST http://vh.jschina.com.cn/2012sjyy/vote.asp?0.75825699427664 HTTP/1.1 Accept: text/html, application/xhtml+xml, */* Referer: http://vh.jschina.com.cn/2012sjyy/ Accept-Language: zh-CN,de-DE;q=0.5 User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0) Content-Type: application/x-www-form-urlencoded Accept-Encoding: gzip, deflate Host: vh.jschina.com.cn Content-Length: 17 Connection: Keep-Alive Pragma: no-cache Cookie: ASPSESSIONIDCQSQTDCQ=NOLIEKDDPKLEPPBAHLOLBPAP txtID=0006&m=load |
7
treo 2012-09-05 11:06:56 +08:00
来晚了,刚刚还没人回复呢。。
|
9
enj0y 2012-09-05 17:32:31 +08:00
楼主,使用chrome开发者功能你就可以轻松抓包了。
|