听起来像是您需要附加到表单或特定链接的内容。如果事件是由链接引发的,并且有一个充满变量的请求字符串,它将充当 GET。如果是表单,则必须检查 METHOD,然后根据表单本身中提交的数据计算 URL。
<a href="thisPage.php">No method</a>
<a href="thisPage.php?usrName=jonathan">GET method</a>
<form method="GET" action="thisPage.php">
<!-- This is a GET, according to the method -->
<input type="text" name="usrName" value="jonathan" />
</form>
<form method="POST" action="thisPage.php">
<!-- This is a POST, according to the method -->
<input type="text" name="usrName" value="jonathan" />
</form>
所以检测不会发生在 window 方法中,而是发生在你的链接的 click 方法和表单提交中。
/* Check method of form */
$("form").submit(function(){
var method = $(this).attr("method");
alert(method);
});
/* Check method of links...UNTESTED */
$("a.checkMethod").click(function(){
var isGet = $(this).attr("href").get(0).indexOf("?");
alert(isGet);
});