php ajax 关键词提示,PHP-Jquery-AJAX,显示弹出消息

你可以你cookie和返回后只检查是否有指定cookie或没有,如果有,显示消息。

但是如果你使用ajax你不需要一个cookie,只需添加弹出功能阿贾克斯解析功能,这样的事情

function addToBasket(itemId) {

var x = new XMLHttpRequest();

x.open('GET', '/ajax/action.php?add=' + itemId, true);

x.onreadystatechange = function() {

if (x.readyState == 4) && (x.status == "200") {

var responseObj = eval('(' + x.responseText + ')');

if (responseObj.status == 0)

window.alert('The product successfully added to your basket');

else

window.alert('An error has occured during the processing the data. Please try again later');

}

};

x.send(null);

action.php代码示例

// ...

$response = array('status' => 1);

if (isset($_GET['itemId'] && $_GET['itemId'] != '')

{

$item_id = htmlspecialchars($_GET['itemId']);

if (is_numeric($item_id)

{

put_in_table($item_id);

$response = array('status' => 0);

}

}

// output an Ajax response

header('Content-Type: application/javascript');

echo json_encode($response);

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值