不太确定从哪里开始,该网站在除 Internet Explorer 之外的所有浏览器中都能正常运行
这是网址https://bonaccord.co.nz/shop/checkout/
我一直在到处寻找答案,但还没有找到解决方案,大多数论坛都没有答案。
看起来按钮在单击时什么都不做?我不确定为什么会这样,因为我有另一个网站,其按钮完全相同。
有效购买按钮的 URL http://www.odarid.co.nz/dev/checkout/
我认为这可能与最近安装的 SSL 有关,但禁用时按钮仍然不起作用
此外,在 IE 中使用开发人员工具时,我会收到此消息
对象不支持此属性或方法
它引用的代码是
jQuery("form.product_form").livequery(function(){
product_id = jQuery('input[name="product_id"]',this).val();
image_element_id = 'product_image_'+product_id;
jQuery("#"+image_element_id).data("product_id", product_id);
parent_container = jQuery(this).parents('div.product_view_'+product_id);
jQuery("div.item_no_image", parent_container).data("product_id", product_id);
});
然后我尝试禁用我编写的脚本,看看它们是否导致 wp-ecommerce js 出现问题,但仍然遇到同样的问题......