是这样子的,我用chorme的移动调试可以成功地使用ajax,但是用手机(我的手机是华为mate7)打开执行则失效,这是为什么呢?
$(".cRemind").click(function(){
// 后台下订单提醒功能
var phone = $("#phone").val();//客户填写的电话
var name = $('#name').val();//客户名字
var price_total=$(".part_total").html();//商品总价格
var city = $('#city').val(); //市
var curr_time = new Date();//下单时间
var times = curr_time.getFullYear()+"年";
times += curr_time.getMonth()+1+"月";
times += curr_time.getDate()+"日";
times += curr_time.getHours()+":";
times += curr_time.getMinutes()+":";
times += curr_time.getSeconds();
var type = $("[attr-select='1']").attr("attr-val");//支付方式
var phone_list1 ='137XXX';
var phone_list2 ='137XXX';
$.ajax({
url: 'http://ms.qq.com/sms/remind',
type: "post",
data:{phone: phone,name:name,price_total:price_total,times,times,city: city,type:type,phone_list:phone_list1},
dataType: "jsonp",
cache: false
});
$.ajax({
url: 'http://ms.qq.com/sms/remind',
type: "post",
data:{phone: phone,name:name,price_total:price_total,times,times,city: city,type:type,phone_list:phone_list2},
dataType: "jsonp",
cache: false
});
})