天天看点

ajax无法获取null,Ajax未捕获TypeError:无法读取属性'点击'null

我无法找出错误的原因。我不断收到Uncaught TypeError: Cannot read property 'click' of null错误。我确实在按钮中定义了.product-btn类。Ajax未捕获TypeError:无法读取属性'点击'null

下面是完整的代码:

$('.product-btn').click(function(){

if($(this).attr('data-action')=="add"){

ajaxSubmit('/add/product/'+$(this).attr('data-id')+'/');

$(this).attr('data-action','remove');

$(this).children('span').html('Remove from cart');

}else{

ajaxSubmit('/remove/product/'+$(this).attr('data-id')+'/');

$(this).attr('data-action','add');

$(this).children('span').html('Request Price');

}

});

而且按钮:

<?php echo $this->__('Add to Cart') ?>

2016-01-30

Kevin S

+0

你拥有包括jQuery的内部功能? 'console.log($ .fn.jquery)'的输出是什么? –

+0

是的,我已经包含jQuery。我得到'Uncaught TypeError:无法通过'console.log($ .fn.jquery)'读取undefined'的属性'jQuery'' –

+0

然后'$ .fn'不应该是'undefined'再次检查包含 –