将 Omniture 标记与 jcycle 插件结合使用

发布于 2024-11-16 18:41:26 字数 171 浏览 5 评论 0原文

有人用jcycle插件做过全能标签吗?我需要做的是让 onmiture 标签知道点击了哪个项目,而无需刷新页面。因此,如果您使用 jcycle 插件,并且有 pager 参数,则omnature 标签需要知道您访问的页面,但仍保留 jcycle 水平滚动功能并且没有页面刷新。希望这是有道理的。我认为这是不可能的,但只是想知道。

Has anyone ever done omniture tagging with the jcycle plug-in? What I need to do is have the onmiture tags know what item was clicked without having a page refresh. So, if you were using the jcycle plugin, and you have a pager parameter, the omniture tag would need to know what page you visited, but still keep the jcycle horizontal scroll feature and no page refresh. Hopefully this makes sense. I don't think this is possible, but just wondering.

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

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

发布评论

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

评论(1

苄①跕圉湢 2024-11-23 18:41:26

虽然我没有使用过这个插件,但我可以告诉您,使用 Omniture Sitecatalyst,可以通过多种方式向 javascript 事件/操作添加跟踪行为。
例如,将如下所示的函数添加到 onclick 事件中。

第一个函数(lead)是在单击时设置各种变量/事件的示例(但不发出新的综合浏览量)。

第二个功能(页面浏览量)实现了“虚拟页面浏览量”,它将模拟在单击某事物时浏览不同的页面(即使实际上没有实际的页面加载)。

function lead(type) {
    var s=s_gi(s_account);
    s.linkTrackVars="eVar25,eVar27,events";
    s.linkTrackEvents="event11,event12";
    s.events="event11,event12";
    s.eVar25=type;
    s.eVar27=type;
    s.tl(this,'o','interactions');
}

function pageview(pagename) {
    s.pageName=pagename;    
    void(s.t());
}

While I haven't used this plugin, I can tell you that with Omniture Sitecatalyst there are are various ways of adding tracking behaviours to javascript events/actions.
e.g. add a function like the ones below to an onclick event.

The first function (lead) is an example of one that sets various variables/events on a click (but doesn't issue a new pageview).

The second function (pageview) implements a "virtual pageview" which will imitatate travelling through different pages as one clicks on things (even though there isn't an actual page load in reality).

function lead(type) {
    var s=s_gi(s_account);
    s.linkTrackVars="eVar25,eVar27,events";
    s.linkTrackEvents="event11,event12";
    s.events="event11,event12";
    s.eVar25=type;
    s.eVar27=type;
    s.tl(this,'o','interactions');
}

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