ajax使用案例

Posted 思风雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax使用案例相关的知识,希望对你有一定的参考价值。

jQuery.ajax({
url: "<?php echo $drawLotteryAjaxUrl; ?>",
data: {
product_id: turnplate.productids[item-1],
product_name: turnplate.productnames[item-1]
},
type: "post",
dataType: "json",
success: function(result){
if(typeof result.status == "undefined" || result.status != 0){
if(typeof result.message != "undefined" ){
alert(result.message);
}else{
alert("抽奖遇到问题, 请刷新本页");
}
}
<?php // 抽奖成功, 转盘rotate结束后页面自动刷新 ?>
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert("抽奖遇到问题, 请刷新本页");
},
});






















以上是关于ajax使用案例的主要内容,如果未能解决你的问题,请参考以下文章

Ajax 异步请求(登录案例实现 + ajax实现二级联动)

J. 案例THINKPHP框架使用Ajax

Ajax 解释Ajax的XML和JSON格式,操作Ajax的几种封装方法案例+解释

AJAX的使用案例

AJAX-04-笔记

ajax使用案例