jQuery v2.1.0冲突没有点击按钮

时间:2014-03-13 11:52:39

标签: jquery wordpress jquery-ui woocommerce

我只在 Checkout Page - >上发生Jquery冲突评论&付款

您可以在site

上看到

使用亚马逊支付按钮弹出新窗口。因为 CART 页面已经有效。

enter image description here

可以建议我正确的解决方案。

谢谢。

1 个答案:

答案 0 :(得分:0)

弹出窗口中的按钮/控件是动态创建的,因此您可以尝试使用.on()

委派click个事件

尝试

$(document.body).on("click",".pay_with_amazon > img",function(){
    //your rest of code goes here
});

语法:

$(closestparentelement).on('event','targetselector',function(){
    // code
});