設想是:將乙個名字通過ajax檢測資料庫中是否有這個名字存在。
結果在資料庫中有11顯示『1』但如果輸入1111資料庫中沒有此姓名仍顯示『1』。不知道**哪兒出現問題了。謝謝答覆!!
**如下:
index.html頁面
檢測
$(function(), function (data, textstatus)
);});
});
checkname.php檔案:
<?php header ( "content-type: text/html; charset=utf-8" );
$conn = mysql_connect("localhost", "root", "111");
mysql_select_db("db", $conn);
mysql_query("set names utf8");
$sql = "select * from hello where username='".$_get['user']."'";
$res=mysql_query($sql);
$result=mysql_fetch_array($res);
if($result)
else
echo $resback;?>
ajax使用POST傳遞引數
下邊是我找到的乙個例子http jeremy lee.blog.sohu.com 63843765.html post.html function alertcontents else function get obj server response post.php print r 下邊是我找到的...
ajax傳遞map引數給後端
向後端傳遞乙個引數 前端ajax 部分 var map 設定乙個事件觸發ajax ajax else if data 0 else error function 後端 後端controller 部分 public responsebody integer ajaxdemo requestbody m...
使用Ajax傳遞post請求引數
post請求必須在請求報文中明確設定請求的型別 xhr.setrequestheader content type post請求要寫在send方法裡 post請求要把請求引數寫在send方法中 xhr.send parase doctype html en utf 8 viewport conten...