Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以将选项卡视为新页面(从 Omniture 的角度来看)并在用户单击不同的(jQuery)选项卡时更改页面标题?本质上,更改s.pageName用户在选项卡之间导航的时间。
s.pageName
使用点击事件来做到这一点:
$("#tab1,#tab2,#tab3").on("click", pageToggle); function pageToggle(event) { s.pageName = event.target.id; }