- 品牌: other/其他
- 材质: 钛钢
- 图案: 其他/other
- 风格: 日韩
- 成色: 全新
- 价格区间: 51-100元
- 适用性别: 女
- 新奇特: 新鲜出炉
- 颜色分类: 时尚红绳手链(适中款) 时尚红绳手链(粗手款) 时尚红绳手链(延长链款) 时尚黑绳手链(适中款) 时尚黑绳手链(粗手款) 红钻转运双环 红绳手链 18k金 福喜双面手链 玫瑰金 福喜双面手链 白钻 玫瑰金半绳手链 红钻 玫瑰金半绳手链
- 货号: SL009
- 镶嵌材质: 其他
- 是否现货: 现货
在控制台输入这段代码: Shopline.event.on("Product::productPreviewInit", function(e) { var data = e && e.data; if (data && data.modalType === "quickAddToCart") { var ele = data.modalContainerElement; if (ele) { var parentDom = ele.querySelector( "#product-button-list_" + data.id ); var targetDom = parentDom ? parentDom.querySelector("#payment_button_" + data.id) : null; function removeDisabled() { var pod = ele.querySelector('.plugin-pod'); if (pod) { var payBtn = ele.querySelector('.pay-button-buy-now'); if (payBtn) { setTimeout(function() { payBtn.classList.remove('pay-button-disabled'); }, 100); } } } if (targetDom && MutationObserver) { var observer = new MutationObserver(function() { removeDisabled(); }); observer.observe(targetDom, { childList: true, subtree: true }); setTimeout(function() { observer.disconnect(); }, 10000); } } } });