ajax firefox,JQuery Ajax Firefox Error

It is difficult to say what the problem might be from the information provided in your question. You are saying that you never see the request being sent in the Network tab of FireBug and that the page refreshes. This could be due to some javascript error that you have in your code before the AJAX call which would prevent it from firing. Also if you are calling this AJAX request in the click or submit handler of some DOM element you might want to ensure that you are canceling the default event by returning false from this callback. Another point is the proper URL encoding of your GET parameters which you are not currently doing.

So here's a sample:

$('#someElement').click(function() {

// TODO: adapt the selectors to match your input field ids

var dsl = $('#telNumberBox').val();

var date = $('#requiredDate').val();

var timeslot = $('#ddTimeslot').val();

var data = { dsl: dsl, date: date, timeslot: timeslot };

$.get('../ajax/BTBookAppointment.aspx', data, function (response, status, xhr) {

//DO some stuff

});

return false;

});

Also don't forget to watch the FireBug Console for javascript errors that might be occurring prior to sending your AJAX request.

If this doesn't work I would try hardcoding the request values to try to further narrow down the possibilities of error:

var dsl = '123456789';

var date = '2012-04-07';

var timeslot = '14:15';

var data = { dsl: dsl, date: date, timeslot: timeslot };

$.get('../ajax/BTBookAppointment.aspx', data, function (response, status, xhr) {

//DO some stuff

});

You could apply this error narrowing down technique to different part of your script by hardcoding some values (which eliminates the possibilities of error) until you find the smoking gun which doesn't kill IE and Chrome but kills FireFox.

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值