我知道有很多像这样的相关问题。但我没有找到任何可以解决我的问题的问题,或者我还没有找到它。嗯......我使用的是三种浏览器:Maxthon 4.4.2.2000,Spark Security Browser 33.9.2000.3033和Mozilla 32.0.3。
我使用$.ajax()
从我的登录表单发送数据
表格
<form method="POST" id="login_data">
<table>
<tr>
<td>Username</td>
<td><input id="txt_user" type="text" name="txt_username"></td>
<td><label id="warn_username"></label></td>
</tr>
<tr>
<td>Password</td>
<td><input id="txt_password" type="password" name="txt_password"></td>
<td><label id="warn_password"></label></td>
</tr>
<tr>
<td colspan="1" />
<td><button name="login" id="lgn_button">Login</button></td>
</tr>
</table>
</form>
我的javascript就像这样:
$(document).ready(function(){
$('#lgn_button').click(function(){
var user = $('#txt_user').val();
var password = $('#txt_password').val();
if(user==""){
alert('');
}
else{
$.ajax({
url: 'login.php',
type: 'POST',
data: {username:user,password:password},
success:function(){
}
});
}
});
});
最后一个是我的php文件连接到服务器以验证用户
<?php
session_start();
include '../controls/connection.php';
include '../controls/function.php';
shout($_POST['username']);
open_connection($dbserver,$dbuser,$dbpass,$dbname);
$query = mysql_query('SELECT COUNT(user_name) FROM Euser WHERE user_name="'.$_POST['username'].'"');
$count = mysql_fetch_row($query);
if($count[0]==0){
}
else{
$query = mysql_query('SELECT * FROM Euser WHERE user_name="'.$_POST['username'].'"');
$check=mysql_fetch_assoc($query);
if($check['user_password']==md5($_POST['password'])){
$_SESSION[md5('user')]=$_POST['username'];
$_SESSION[md5('author')]=$check['user_authority'];
}
}
?>
对于此功能:open_connection()
,它工作正常。问题是,这个代码在Maxthon浏览器中工作正常而不是其他2个,为什么?有人可以向我解释一下吗?我是新手。非常感谢每一个答案,我很感激。