如何用QTIP替换标题标签

发布于 2024-11-14 21:01:37 字数 359 浏览 3 评论 0原文

就当我是一个完全的新手吧!我只想用 QTIP 替换标题标签。 我已经在我的服务器上安装了 qtip 和 jquery,我只是不知道如何替换标题标签。

<script type="text/javascript" src="/tip/jquery.1.3.2.min.js"></script>
<script type="text/javascript" src="/tip/jquery.qtip-1.0.0-rc3.min"></script>
<script type="text/javascript">
Does something go here?
</script>

Consider me a complete newbie! I just want title tags replace with QTIP.
I've installed qtip and jquery on my server, I just don't know how to replace title tags.

<script type="text/javascript" src="/tip/jquery.1.3.2.min.js"></script>
<script type="text/javascript" src="/tip/jquery.qtip-1.0.0-rc3.min"></script>
<script type="text/javascript">
Does something go here?
</script>

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

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

发布评论

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

评论(1

不顾 2024-11-21 21:01:37

下面的代码示例来自此处: http://craigsworks.com/projects/qtip/docs/ #replace

$('a[title]').qtip({ style: { name: 'cream', tip: true } })

这行代码将用 qTip 工具提示替换 HTML 锚点的所有“标题”属性。

因此,在您编写“这里有东西吗?”的脚本块内,您需要将上面的行包装在 jquery“ready”函数中:

$(function () {
    // the qTip code above goes here, in order to call on document-load
}

The code sample below is from here: http://craigsworks.com/projects/qtip/docs/#replace

$('a[title]').qtip({ style: { name: 'cream', tip: true } })

That line of code will replace all the 'title' attributes of HTML anchors with the qTip tool-tips.

So inside your script block where you wrote 'Does something go here?', you would want to wrap the above line within a jquery 'ready' function:

$(function () {
    // the qTip code above goes here, in order to call on document-load
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文