我在我的表單中有3個遠程驗證,其中3個在Firefox中沒有錯誤。 第三個在IE中無法正常工作。 IE給我的錯誤 「對象犯規支持此屬性」jquery遠程驗證
這給在IE check.php錯誤:
< ?php
$sql="select * from people where email = '".$email."'";
$row=mysql_query($sql,$db_connection);
if (!$row)
{
die('Error: ' . mysql_error());
}
if (mysql_num_rows($row) > 0)
{
$output = false;
}
else
{
$output = true;
}
echo json_encode($output);
?>
這裏是jQuery的對應:
email: {// compound rule
required: true,
email: true ,
remote: "check.php"
},
任何想法,爲什麼它在IE中拋出一個對象錯誤。 注意firefox錯誤控制檯不顯示任何錯誤! 謝謝