# pixel事件说明
# 1. PageView(必须)
页面浏览事件,每个页面都需要添加
mkq('track', 'PageView', {
title: "Stylish Eyeglasses Prescription Glasses Online"
});
# 2. ViewCategory(必须)
查看商品分类页面
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
content_category | 产品的类别 | snippets | string | 否 |
content_ids | 事件关联的产品 ID | ['goods-id'] | [string] | 否 |
<script>
mkq('track', 'ViewCategory', {
content_category: 'snippets',
content_ids: ['goods-id']
});
</script>
# 3. ViewContent(必须)
查看产品详情页面信息
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 货物的价格 | 0.10 | Double | 否 |
currency | 货物使用的货币单位 | USD | string | 否 |
content_name | 页面/产品的名称 | Abagail High Neck Cut-out Bodysuit | string | 否 |
content_ids | 事件关联的产品 ID | ['goods-id'] | [string] | 是 |
contents | 商品的详细信息,是一个数组对象,包含货物的内容标识符,商品标题,商品缩略图,商品链接,商品定价,商品折扣价,商品类别,谷歌商品类别,产品的数量。id,title,image_link,link,price_amount,sale_price_amount,product_type,google_product_category,quantity是必需字段。 | [{'id':'P001','title':'title1','image_link':'https://xx/1.jpg','link':'https://xx/goods1.html','price_amount':16.35,'sale_price_amount':11.25,'product_type':'Electronics>Accessories>Other','google_product_category':'Food & Tobacco>Tobacco> Vaporizers','quantity':3},{'id':'P001','title':'title2','image_link':'https://xx/2.jpg','link':'https://xx/goods2.html','price_amount':6.99,'sale_price_amount':6.00,'product_type':'Cigarettes>E-cigarette>Coils','google_product_category':'Hardware > Coils','quantity':8}] | [object] | 是 |
<script>
mkq('track', 'ViewContent', {
value: 0.10,
currency: 'USD',
content_name: 'Content Name',
content_type: 'product',
content_ids: ['goods-id'],
contents: [
{
'id':'P001',
'title':'title1',
'image_link':'https://xx/1.jpg',
'link':'https://xx/goods1.html',
'price_amount':16.35,
'sale_price_amount':11.25,
'product_type':'Electronics>Accessories>Other',
'google_product_category':'Food & Tobacco>Tobacco> Vaporizers',
'quantity':3
},
{
'id':'P001',
'title':'title2',
'image_link':'https://xx/2.jpg',
'link':'https://xx/goods2.html',
'price_amount':6.99,
'sale_price_amount':6.00,
'product_type':'Cigarettes>E-cigarette>Coils',
'google_product_category':'Hardware > Coils',
'quantity':8
}
]
});
</script>
# 4. Search(推荐)
进行搜索时,例如,在进行产品搜索查询时
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 货物的价格 | 0.10 | Double | 否 |
currency | 货物使用的货币单位 | USD | string | 否 |
content_category | 产品的类别 | snippets | string | 否 |
content_ids | 事件关联的产品 ID | ['goods-id'] | [string] | 否 |
search_string | 搜索输入的字符串 | searchString | string | 否 |
<script>
var searchString = document.getElementsByClassName('search-key')[0].value;
mkq('track', 'Search', {
value: 0.10,
currency: 'USD',
content_category: 'snippets',
content_ids: ['goods-id'],
search_string: searchString
});
</script>
# 5. AddToCart(必须)
将产品添加到购物车时,例如,单击“添加到购物车”按钮
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 货物的价格 | 0.10 | Double | 否 |
currency | 货物使用的货币单位 | USD | string | 否 |
content_name | 页面/产品的名称 | Abagail High Neck Cut-out Bodysuit | string | 否 |
content_type | 和 content_ids 和 contents 相关,传入'product'或者'product_group' 。如果传入的 content_ids 或 contents 的参数是产品 ID,则该值应为'product'。如果传入的是产品组 ID,则该值应为'product_group'。 | product | string | 否 |
content_ids | 事件关联的产品 ID | ['goods-id'] | [string] | 是 |
contents | 商品的详细信息,是一个数组对象,包含货物的内容标识符,商品标题,商品缩略图,商品链接,商品定价,商品折扣价,商品类别,谷歌商品类别,产品的数量。id,title,image_link,link,price_amount,sale_price_amount,product_type,google_product_category,quantity是必需字段。 | [{'id':'P001','title':'title1','image_link':'https://xx/1.jpg','link':'https://xx/goods1.html','price_amount':16.35,'sale_price_amount':11.25,'product_type':'Electronics>Accessories>Other','google_product_category':'Food & Tobacco>Tobacco> Vaporizers','quantity':3},{'id':'P001','title':'title2','image_link':'https://xx/2.jpg','link':'https://xx/goods2.html','price_amount':6.99,'sale_price_amount':6.00,'product_type':'Cigarettes>E-cigarette>Coils','google_product_category':'Hardware > Coils','quantity':8}] | [object] | 是 |
<script>
mkq('track', 'AddToCart', {
value: 10.00,
currency: 'USD',
content_name: 'Product Name',
content_type: 'product',
content_ids: ['goods-id'],
contents: [
{
'id':'P001',
'title':'title1',
'image_link':'https://xx/1.jpg',
'link':'https://xx/goods1.html',
'price_amount':16.35,
'sale_price_amount':11.25,
'product_type':'Electronics>Accessories>Other',
'google_product_category':'Food & Tobacco>Tobacco> Vaporizers',
'quantity':3
},
{
'id':'P001',
'title':'title2',
'image_link':'https://xx/2.jpg',
'link':'https://xx/goods2.html',
'price_amount':6.99,
'sale_price_amount':6.00,
'product_type':'Cigarettes>E-cigarette>Coils',
'google_product_category':'Hardware > Coils',
'quantity':8
}
]
});
</script>
# 6. ViewCart(必须)
进入添加购物车页面
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 货物的价格 | 0.10 | Double | 否 |
currency | 货物使用的货币单位 | USD | string | 否 |
content_name | 页面/产品的名称 | Abagail High Neck Cut-out Bodysuit | string | 否 |
content_type | 和 content_ids 和 contents 相关,传入'product'或者'product_group' 。如果传入的 content_ids 或 contents 的参数是产品 ID,则该值应为'product'。如果传入的是产品组 ID,则该值应为'product_group'。 | product | string | 否 |
content_ids | 事件关联的产品 ID | ['goods-id'] | [string] | 否 |
contents | 商品的详细信息,是一个数组对象,包含货物的内容标识符,商品标题,商品缩略图,商品链接,商品定价,商品折扣价,商品类别,谷歌商品类别,产品的数量。id,title,image_link,link,price_amount,sale_price_amount,product_type,google_product_category,quantity是必需字段。 | [{'id':'P001','title':'title1','image_link':'https://xx/1.jpg','link':'https://xx/goods1.html','price_amount':16.35,'sale_price_amount':11.25,'product_type':'Electronics>Accessories>Other','google_product_category':'Food & Tobacco>Tobacco> Vaporizers','quantity':3},{'id':'P001','title':'title2','image_link':'https://xx/2.jpg','link':'https://xx/goods2.html','price_amount':6.99,'sale_price_amount':6.00,'product_type':'Cigarettes>E-cigarette>Coils','google_product_category':'Hardware > Coils','quantity':8}] | [object] | 否 |
<script>
mkq('track', 'ViewCart', {
value: 10.00,
currency: 'USD',
content_name: 'Product Name',
content_type: 'product',
content_ids: ['goods-id'],
contents: [
{
'id':'P001',
'title':'title1',
'image_link':'https://xx/1.jpg',
'link':'https://xx/goods1.html',
'price_amount':16.35,
'sale_price_amount':11.25,
'product_type':'Electronics>Accessories>Other',
'google_product_category':'Food & Tobacco>Tobacco> Vaporizers',
'quantity':3
},
{
'id':'P001',
'title':'title2',
'image_link':'https://xx/2.jpg',
'link':'https://xx/goods2.html',
'price_amount':6.99,
'sale_price_amount':6.00,
'product_type':'Cigarettes>E-cigarette>Coils',
'google_product_category':'Hardware > Coils',
'quantity':8
}
]
});
</script>
# 7. AddToWishlist(推荐)
将产品添加到心愿单时,例如单击添加到心愿单按钮
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 货物的价格 | 0.10 | Double | 否 |
currency | 货物使用的货币单位 | USD | string | 否 |
content_name | 页面/产品的名称 | Abagail High Neck Cut-out Bodysuit | string | 否 |
content_category | 产品的类别 | snippets | string | 否 |
content_ids | 事件关联的产品 ID | ['goods-id'] | [string] | 否 |
<script>
mkq('track', 'AddToWishlist', {
value: 0.10,
currency: 'USD',
content_name: 'Product Name',
content_category: 'snippets',
content_ids: ['goods-id'],
});
</script>
# 8. InitiateCheckout(推荐)
当一个人在完成结账流程之前进入结账流程时,例如点击结账按钮
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 货物的价格 | 0.10 | Double | 否 |
currency | 货物使用的货币单位 | USD | string | 否 |
content_name | 页面/产品的名称 | Abagail High Neck Cut-out Bodysuit | string | 否 |
content_category | 产品的类别 | snippets | string | 否 |
content_ids | 事件关联的产品 ID | ['goods-id'] | [string] | 否 |
num_items | 已结帐的项目数 | 1 | int | 否 |
<script>
mkq('track', 'InitiateCheckout', {
value: 0.10,
currency: 'USD',
content_name: 'Checkout',
content_category: 'snippets',
content_ids: ['goods-id'],
num_ids: 1
});
</script>
# 9. AddPaymentInfo(推荐)
当在结账流程中添加支付信息时,例如点击/ LP 保存账单信息按钮
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 货物的价格 | 0.10 | Double | 否 |
currency | 货物使用的货币单位 | USD | string | 否 |
content_category | 产品的类别 | snippets | string | 否 |
content_ids | 事件关联的产品 ID | ['goods-id'] | [string] | 否 |
<script>
mkq('track', 'AddPaymentInfo', {
value: 0.10,
currency: 'USD',
content_category: 'snippets',
content_ids: ['goods-id']
});
</script>
# 10. Purchase(必须)
购买或结帐流程完成后,例如登陆谢谢/确认页面
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 货物的价格 | 0.10 | Double | 是 |
currency | 货物使用的货币单位 | USD | string | 是 |
content_name | 页面/产品的名称 | Abagail High Neck Cut-out Bodysuit | string | 否 |
content_type | 和 content_ids 和 contents 相关,传入'product'或者'product_group' 。如果传入的 content_ids 或 contents 的参数是产品 ID,则该值应为'product'。如果传入的是产品组 ID,则该值应为'product_group'。 | product | string | 否 |
content_ids | 事件关联的产品 ID | ['goods-id'] | [string] | 是 |
num_items | 已结帐的项目数 | 1 | int | 否 |
order_id | 订单 id | '1' | string | 是 |
contents | 商品的详细信息,是一个数组对象,包含货物的内容标识符,商品标题,商品缩略图,商品链接,商品定价,商品折扣价,商品类别,谷歌商品类别,产品的数量。id,title,price_amount,sale_price_amount,quantity是必需字段。 | [{'id':'P001','title':'title1','price_amount':16.35,'sale_price_amount':11.25,'quantity':3},{'id':'P001','title':'title2','price_amount':6.99,'sale_price_amount':6.00,'quantity':8}] | [object] | 是 |
<script>
mkq('track', 'Purchase', {
order_id:'1',
value: 10.00,
currency: 'USD',
content_name: 'Product Name',
content_type: 'product',
content_ids: ['goods-id'],
num_items: 1,
contents: [
{
'id':'P001',
'title':'title1',
'price_amount':16.35,
'sale_price_amount':11.25,
'quantity':3
},
{
'id':'P001',
'title':'title2',
'price_amount':6.99,
'sale_price_amount':6.00,
'quantity':8
}
]
});
</script>
# 11. Lead(推荐)
注册完成后,例如点击定价,注册试用
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 货物的价格 | 0.10 | Double | 否 |
currency | 货物使用的货币单位 | USD | string | 否 |
content_name | 页面/产品的名称 | Abagail High Neck Cut-out Bodysuit | string | 否 |
content_category | 产品的类别 | snippets | string | 否 |
<script>
mkq('track', 'Lead', {
value: 0.10,
currency: 'USD',
content_name: 'Report',
content_category: 'B2B'
});
</script>
# 12. CompleteRegistration(推荐)
完成注册表格后,例如完成订阅/注册服务
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 货物的价格 | 0.10 | Double | 否 |
currency | 货物使用的货币单位 | USD | string | 否 |
content_name | 页面/产品的名称 | Abagail High Neck Cut-out Bodysuit | string | 否 |
status | 注册的状态 | 'complete' | string | 否 |
<script>
mkq('track', 'CompleteRegistration', {
value: 0.10,
currency: 'USD',
content_name: 'Signup',
status: 'complete'
});
</script>
# 13. ReviewProduct(推荐)
评价商品,客户在购买后对商品进行评价。
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 评价说明 | good | string | 否 |
content_ids | 产品ID | [goods-id] | [string] | 是 |
<script>
mkq('track', 'ReviewProduct', {
content_ids: ['goods-id'],
value: 'good'
});
</script>
# 14. CancelOrder(推荐)
退款,客户在购买商品后,因为商品质量、尺寸不合适等原因选择退款。
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 退款的理由 | reason | string | 否 |
content_ids | 产品ID | [goods-id] | [string] | 是 |
order_id | 订单ID | '1' | string | 是 |
<script>
mkq('track', 'CancelOrder', {
order_id: '1',
content_ids: ['goods-id'],
value: 'reason'
});
</script>
# 15. JoinActivity(推荐)
促销活动参与,客户在电商平台上参加促销活动,如打折、满减等。
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 活动名称 | 'name' | string | 是 |
<script>
mkq('track', 'JoinActivity', {
value : 'name',
});
</script>
# 16. CustomerSupport(推荐)
售后服务,联系了客户服务
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 联系客户的原因 | 'reason' | string | 是 |
<script>
mkq('track', 'CustomerSupport', {
value : 'reason',
});
</script>
# 17. RemoveCart(推荐)
移出购物车,对不喜欢的商品,可以从购物车移出
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 移出商品的金额 | 10.00 | number | 是 |
currency | 移出商品的货币单位 | 'USD' | string | 是 |
content_ids | 移出商品的id | ['goods-id'] | [string] | 是 |
<script>
mkq('track', 'RemoveCart', {
value: 10.00,
currency: 'USD',
content_ids: ['goods-id'],
});
</script>
# 18. RateProduct(推荐)
商品打分
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 商品的分数 | 10 | number | 是 |
content_ids | 商品的id | 'goods-id' | string | 是 |
<script>
mkq('track', 'RateProduct', {
value: 10,
content_ids: 'goods-id',
});
</script>
# 19. ShareProduct(推荐)
分享行为,点击页面分享,分享到其它平台
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 分享的平台 | 'Facebook' | string | 是 |
content_ids | 商品的id | 'goods-id' | string | 是 |
<script>
mkq('track', 'ShareProduct', {
value: 'Facebook',
content_ids: 'goods-id',
});
</script>
# 20. ObtainingCoupons(推荐)
获取优惠卷
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 优惠券码 | '123code' | string | 是 |
<script>
mkq('track', 'ObtainingCoupons', {
value: '123code'
});
</script>
# 21. RedeemingCoupons(推荐)
消费优惠卷
参数名称 | 参数描述 | 示例 | 类型 | 是否必须 |
---|---|---|---|---|
value | 优惠券码 | '123code' | string | 是 |
<script>
mkq('track', 'RedeemingCoupons', {
value: '123code'
});
</script>