我有一个使用 jQuery 用 javascript 制作的函数。我用它来向服务器发送一些信息
function cart(val, theImg)
{
var url = location.protocol+'//'+location.hostname+'/';
if(!theImg.hasClass('added'))
{
jQuery.post(url,{ajax:'1',compedit:'shopping-cart',q:'1',tocart:val},function(result){
theImg.attr({'src':'/media/images/substract_from_cart.png','title':'Substract from cart','alt':'Substract from cart'}).addClass('added');
jQuery('.btip').text('Substract From Cart');
}, 'text');
}
else
{
jQuery.post(url,{'ajax':'1','compedit':'shopping-cart','q':'0','tocart':val},function(result){
theImg.attr({'src':'/media/images/add_to_cart.png','title':'Add To Cart','alt':'Add To Cart'}).removeClass('added');
jQuery('.btip').text('Add To Cart');
}, 'text');
}
}
我的问题是,此功能不会将数据发送到 Webkit 浏览器(Chrome、Safari)中的服务器!任何帮助,将不胜感激!