问题已经解决,多谢各位的指点。
var url="http:localhost/CodeIgniter/index.php/login/ajax ;
url=url+"?user="+names;
xmlHttp.open("Get",url,true);
换成
var url="<?php echo site_url('login/indexs')?>/"+names;
就行了。
url=url+"?user="+names;
xmlHttp.open("Get",url,true);这两句不要了。
|