jQuery显示意外的令牌;

时间:2014-06-27 21:12:13

标签: jquery

我收到了下面的代码,以回答我提出的另一个问题,但它给了我Unexpected token ;。我有一种感觉,它错过了关闭),但我已将它们添加进去,但仍未解决我错过的内容。

为什么我会收到Unexpected token ;

代码:

<script>
    jQuery(window).on('click', '.add_to_cart.button', function() {
        call_ajax_add_to_quotelist(add_to_quotelist_ajax_url, $(this).data('id');
    }
    </script>

2 个答案:

答案 0 :(得分:3)

在函数调用和处理程序结束时缺少关闭)

jQuery(window).on('click', '.add_to_cart.button', function() {
    call_ajax_add_to_quotelist(add_to_quotelist_ajax_url, $(this).data('id')); //here
}); //and here

答案 1 :(得分:1)

此行代码缺少两个右括号)

<script>
  jQuery(window).on('click', '.add_to_cart.button', function() {
    call_ajax_add_to_quotelist(add_to_quotelist_ajax_url, $(this).data('id')); /added )
  }); //added );
</script>