带有嵌入 onclick 的 jquery 工具工具提示
我在图像上使用 jquery 工具工具提示。这是工具提示的基本用法,当有人将鼠标悬停在图像上时,背景图像会变暗,工具提示会弹出并显示“单击查看详细信息”,到目前为止效果很好。我实际上想让工具提示可单击,以便它将打开一个包含图像详细信息的覆盖窗口。我不知道该怎么做? html 内容只是一个带有 .albumImage 类和 img src 的 div,几乎直接来自指南。我的脚本如下...
$(".albumImage img[title]").tooltip({
position: 'top center',
offset: [80,0],
onShow: function() {
this.getTrigger().fadeTo("0", 0.3);
},
onHide: function() {
this.getTrigger().fadeTo("0", 1.0);
}
});
I am using jquery tools tooltips on an image. It's a basic use of the tooltip, when somebody rolls over the image, the background image dims and the tooltip pops up and says "click for details", and this works fine up to this point. I would like to actually have the tooltip be clickable so that it will open an overlay window with the details of the image. I'm not sure how to go about doing that? The html content is just a div with an .albumImage class and img src, pretty much straight out of the guide. My script is as follows...
$(".albumImage img[title]").tooltip({
position: 'top center',
offset: [80,0],
onShow: function() {
this.getTrigger().fadeTo("0", 0.3);
},
onHide: function() {
this.getTrigger().fadeTo("0", 1.0);
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需在设置工具提示之前添加单击处理程序:
Simply add the click handler before setting up the tooltip:
考虑到当您将鼠标悬停在图像上时,您的
.tooltip()
可能会在页面中生成一些 DOM。假设 DOM 是blah blah blah
。最后通过
.tooltip()
函数将点击事件附加到生成的DOM上。Considering the fact that your
.tooltip()
might be generating some DOM within a page when you hover an image. Lets say that DOM is<div id='tooltip'>blah blah blah</div>
.Finally attach the click event to the generated DOM by
.tooltip()
function.