【发布时间】:2020-03-25 12:39:30
【问题描述】:
我在 WooCommerce 上有一家商店。它在 iframe 中有可定制的产品。“添加到购物车”按钮本身也在 iframe 中。当我单击“添加到购物车”按钮时,我会收到一条消息,其中包含来自iframe。
window.addEventListener("message", receiveMessage, false);
function receiveMessage(event)
{
console.log('test',event);
}
我在链接中找到了一种将产品添加到购物车的方法
http: // some_url / checkout /? Add to cart = id
在 event.data 我有一个产品 ID。 我的问题是:如何使用所有这些将产品添加到购物车?我需要在哪里添加这个链接?
【问题讨论】:
标签: javascript php wordpress iframe woocommerce