表单提交上的jQuery工作,但表单更改没有

时间:2016-12-30 19:07:55

标签: javascript jquery shopify

我只想让这个jQuery工作。当我这样做时,它写入控制台就好了:

$('body').on('submit', 'form[action="/cart"]', function(event){
  console.log("I don't think this is getting here");
});

但是当我这样做时,它不会写入控制台:

$('body').on('change', 'form[action="/cart"]', function(event){
  console.log("I don't think this is getting here");
});

我的测试网站,任何人都可以看到http://test-4658.myshopify.com这个脚本在购物车上。您可以在购物车中添加和更新内容以进行验证。

编辑: 我尝试过的其他一些想法,没有运气:

$('form[action="/cart"] :input').click(function() {
  if($(this).closest('form[action="/cart"]').data('changed')) {
  console.log("I don't think this is getting here");
  }
});

$('body').on('change', 'form[action="/cart"] :input', function(event){
  console.log("I don't think this is getting here");
});

我哪里误入歧途?

0 个答案:

没有答案