jQuery Coda-Slider 可以重写选项卡更改时页面的标题吗?
我们正在使用 Coda-Slider 构建一个网站,想知道是否可以在更改选项卡时更改页面标题(无需刷新页面)?我还不太擅长 jQuery(更不用说直接的 javascript),所以我不确定这是否可能。我们使用 Coda-Slider 2.0 版并从 Google 加载最新的 jQuery 库。
We are building a site with Coda-Slider and are wondering if its possible to change the title of the page when changing tabs (without having to refresh the page)? I'm not that great at jQuery yet (let alone straight javascript), so I'm not sure if this is even possible. We're using version 2.0 of Coda-Slider and loading the latest jQuery libraries from Google.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果有一些“变化”,您可以尝试设置 document.title 属性由 coda 滑块提供的回调。
如果它不提供回调,您只需手动将单击事件连接到每个选项卡,然后尝试从那里更改标题。从他们的演示来看,每个选项卡看起来都是一个
Panel 1
。类似的东西应该有效。
You could try setting the document.title property if there's some "on change" callback provided by the coda slider.
If it doesn't provide a callback you'll just have to wire up a click event to each tab manually and try to change the title from there. From their demo it looks like each tab an
<h2 class="title">Panel 1</h2>
. Something along the lines this of should work.