thinkphp jQuery
页面代码为:<form action="__URL__/login_in" method="post" name="form1"> 邮箱<input type="text" name="email" id="email" class="inpt"><span class="emailmsg"></span><br/> 密码<input type="password" name="pwd" id="pwd" class="inpt"><span class="pwdmsg"></span><br/> <input type="button" value="" id="ulogin" class="log" > </form>
$("#ulogin").click(function(){ $.ajax({ url:"./index.php/User/logincheck", type:"POST", data:{email:$("#email").val(),pwd:$("#pwd").val()}, //dataType:'text', //timeout:1000, error:function(){ alert('请求错误'); return false; }, success:function(data){ $('.emailmsg').html(data); //return false; } }); });
把action= “”试试
把action= “”试试
还是不行
把你那ajax里的url写成绝对路径,
再不行那就真不行了。
为什么会出现空操作?LZ你怎么想?
能不能执行到你的logincheck方法?
Nice,不错的,收藏了
那个应该是action的问题,你改成绝对路径或者用:U(“***”)生成路径试试看
额,最后解决了。不知道mcleed的方法行不行,不过我只是把原来的url url:"./index.php/User/logincheck",改为方法名logincheck就行了