在学习jQuery的ajax遇到了问题:$.ajaxSetup({ })取表单的数据不成功。代码如下:' <form> user:<input type="text" name="user"> email:<input type="text" name="email"> <input type="button" value='提交'> </form> <script type="text/javascript"> $(function(){ var to=$("form input[type=button]"); $.ajaxSetup({ type:'POST', url:"file/testAjax.php", data:$("form").serialize() }); to.click(function(){ $.ajax({ success:function(response,status,xhr){ alert(response); } }); }); })</script>testAjax.php:<?phpecho $_POST['user'].' - '.$_POST['email'];?>截图显示取的数据为空。把ajaxSetup这块放在click函数里能取到数据,但是这样ajaxSetup就失去意义了。小弟不才,请各位指教一下是什么原因。
添加回答
举报
0/150
提交
取消
