我在 jquery 中使用下面的代码,但是我的页面本身重新加载,我不知道我在哪里犯了错误。
var newstr = $.trim($('#umail').val());
newstr 保存电子邮件地址
$.post("coding/unsub.php",{email:newstr},function(result){
$("#d_result").html(result);
});
我有
<span id="d_result"></span>
显示结果
我的 php 代码是
<?php
include ("../includes/dbcon_.php");
$unsub_sql = mysql_query("Delete FROM TblNewsLetter WHERE Email = '$_GET[email]'");
if (!$unsub_sql)
{
$ds_result = "<p style='font-size:200%;color:red;'>Some Error Occurred! Try Later.</p>";
}
else
{
$ds_result = "<p style='font-size:200%;color:green;'>Successfully Unsubscribed</p>";
}
mysql_close($con);
echo $ds_result;
?>