|
本帖最后由 itfans 于 2011-7-24 13:03 编辑
我使用的是codeigniter2.0和jquery1.6.1
js
$.post("http://localhost/develop/auth/is_email_available",{"email":"some@example.com"},
function(data){alert(data);});
php
function is_email_available(){
echo 'true';
}
结果无法alert.
如果使用$.post("http://localhost/develop/auth/is_email_available","some@example.com",
function(data){alert(data);});
就可以,但此时如何在php获得获得email呢?
是不是因为jquery自动生成查询字符串,而CI默认禁用了查询字符串? |
|