为什么用ajax后会结果会是这个数字?
html的代码是: <html> <head> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/1.9.0/jquery.js"></script> <script type="text/javascript"> $(function(){ $("#shuru").click(function(){ $.ajax({ url: 'test.php', type: 'POST', data: {shuru:'xianshi'}, success:function(data){ $("div").html(data) } }) }); }); </script> </head> <body> <button id="shuru">提交</button> <div></div> </body> </html> php代码是: <?php if($_POST['shuru']=='xianshi'){ echo "111111111"; }else{ echo "2222222"; };
得出来的结果是2222222
php不是判断shuru:'xianshi'已经成立了吗?
为什么还要仔细else否则的结果呢?