我想在输入
时检查数据库中的用户名是否存在我在同一页面编写了php编码。我已经使用了像var x=document.getElementById("username").value;
这样的javascript用户名
现在如何将值传递给php代码。请为此提供建议。
答案 0 :(得分:0)
你可以使用jQuery $ .getJson并将Json Object发送到PHP脚本并在那里使用它。 PHP可以将Json值返回给Javascript,因此它可以知道如何处理它。
$.getJson('php_script.php', '{username:username}', function (returnJson) {
//here you do what you want with the returnJson object
}