我在 Volusion OrderFinished.asp 上为我的退出调查弹出窗口使用 ResellerRatings。
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”和发票:“INVOICE NUMBER”值”。
email: "customer@home.com",
invoice: "INVOICE NUMBER",
但我知道这些应该是取决于每个客户的变量。我联系 Volusion 并回答“没有任何编码帮助......”。所以我很想在这里使用 Stackoverflow 的力量来帮助我。这些变量应该是什么以及采用什么格式?提前致谢。