在jQuery中,可以使用$.post()
方法来检测是否设置了PHP $_POST。具体实现方法如下:
check_post_set()
,该函数接受一个参数url
,表示要检测的URL地址。$.post()
方法向url
发送POST请求,请求参数包括_POST
。true
;否则,返回false
。示例代码如下:
function check_post_set(url) {
$.post(url, { _post: true }).done(function(data) {
console.log(data);
return data;
}).fail(function() {
console.log("Error");
return false;
});
}
在具体使用中,可以调用check_post_set()
函数,并传入要检测的URL地址即可。例如:
check_post_set("example.com/test.php");
其中,example.com/test.php
是要检测的URL地址,如果该页面设置了PHP $_POST,则会返回true
,否则返回false
。
领取专属 10元无门槛券
手把手带您无忧上云