调用 s.tl 会抛出 TypeError

发布于 2024-10-13 22:51:00 字数 360 浏览 0 评论 0原文

如果我将 s.products 设置为类似于

s.products = ";101;;;;eVar33=mystatus";

不幸的是,当脚本稍后调用 s.tl 时,它会崩溃,我会遇到 Omniture 问题。该错误在 Firefox 中的描述如下:

类型错误:tl 不是函数

当我像往常一样放入产品时,只有产品 s.tl 有效:

s.products = ";101";

有人知道为什么脚本可能会像这样崩溃吗?我错过了什么吗?

I'm having a problem with Omniture that happens if I set s.products to something akin to

s.products = ";101;;;;eVar33=mystatus";

Unfortunately when the script later calls s.tl, it crashes. The error has the following description in Firefox:

TypeError: tl is not a function

When I put in a product like usual, with only the product s.tl works:

s.products = ";101";

Anyone knows why the script may crash like this? Am I missing something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画中仙 2024-10-20 22:51:00

好吧,您将必须提供更多背景信息。更多代码,链接到问题所在,等等。我尝试了以下测试代码:

<a href='#' onclick="s_dlt(this);">click</a>

<script language="JavaScript" type="text/javascript" src="omniture.js"></script>

<script language="JavaScript" type="text/javascript"><!--

function s_dlt(that) {
  var s=s_gi(s_account);
  s.linkTrackVars='products';
  s.products = ";101;;;;eVar33=mystatus";
  s.tl(that,'d','some name');
}   
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code=s.t();if(s_code)document.write(s_code)//--></script>

我看到产品在请求中发送得很好,没有 .js 错误或什么都没有。

Well you're going to have to provide some more context. More code, link to where the issue is, something. I tried the following test code:

<a href='#' onclick="s_dlt(this);">click</a>

<script language="JavaScript" type="text/javascript" src="omniture.js"></script>

<script language="JavaScript" type="text/javascript"><!--

function s_dlt(that) {
  var s=s_gi(s_account);
  s.linkTrackVars='products';
  s.products = ";101;;;;eVar33=mystatus";
  s.tl(that,'d','some name');
}   
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code=s.t();if(s_code)document.write(s_code)//--></script>

and I see products being sent in request just fine, no .js errors or nothin'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文