我使用ResellerRatings作为我在Volusion OrderFinished.asp上的退出调查弹出窗口。
ResellerRatings提供了以下代码:
<script type="text/javascript">
var _rrES = {
seller_id: 101069,
email: "customer@home.com",
invoice: "INVOICE NUMBER",
auto: true
};
(function(w,o) {
o=o||{};w.seller_id=o.seller_id||"";w.__rr_email_pass=o.email||"";w.__rr_inv=o.invoice||"";
if(o.auto===false)w.__rr_autoEnroll=false;
var s=document.createElement('script');s.type='text/javascript';s.async=true;
s.src="https://www.resellerratings.com/popup/include/popup.js";var ss=document.getElementsByTagName('script')[0];
ss.parentNode.insertBefore(s,ss);
})(window, _rrES);
</script>ResellerRatings指令告诉我“请在执行过程中更新电子邮件:"customer@home.com”和发票:“发票号”值“。
email: "customer@home.com",
invoice: "INVOICE NUMBER",但我知道这些应该是变量,取决于每个客户。我与Volusion联系,回答“任何编码都没有帮助.”。所以我很想利用斯塔克沃弗的力量来帮助我。这些变量应该是什么,以什么格式?提前谢谢。
发布于 2014-07-15 16:38:21
email: Order[9],
invoice: Order[0],https://stackoverflow.com/questions/24743781
复制相似问题