如何用QTIP替换标题标签
就当我是一个完全的新手吧!我只想用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面的代码示例来自此处: http://craigsworks.com/projects/qtip/docs/ #replace
这行代码将用 qTip 工具提示替换 HTML 锚点的所有“标题”属性。
因此,在您编写“这里有东西吗?”的脚本块内,您需要将上面的行包装在 jquery“ready”函数中:
The code sample below is from here: http://craigsworks.com/projects/qtip/docs/#replace
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: