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; }