我在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指令告诉我&#34;请更新电子邮件:&#34; customer@home.com"和发票:&#34;发票号码&#34;实施期间的价值&#34;。
email: "customer@home.com",
invoice: "INVOICE NUMBER",
但我知道这些应该是变量,取决于每个客户。我联系Volusion并给出答案&#34;没有任何编码可以帮助...&#34;。所以我很乐意使用Stackoverflow的力量来帮助我。这些变量应该是什么格式?提前谢谢。
答案 0 :(得分:1)
email: Order[9],
invoice: Order[0],