点击没反应
我写完
function addCart(productid){}这个进行alert没有问题 但是后边写完没有点击效果 这是ajax function addCart(productid){ var url="shopping.php"; var data={'shop_id':productid,'number':parseInt($('#number').val())}; var success=function (response){ } $.post(url,data,success,'json'); } 这是表单neir <ol> <p>数量</p> <input type="text" id="number" name="number" value="1"> </ol> <a href="pay.html" class="buy">立刻购买</a> <a href="javascript:addCart({$shopp.id})" class="car">加入购物车</a>