简体   繁体   English

在鼠标悬停或悬停时隐藏图像标题工具提示弹出窗口

[英]Hide Image Title Tool Tip Popup on Mouse Rollover or Hover

I'm hoping I can get this question answered here... 我希望我能在这里得到解答...

I have a client who wants to add a PayPal "Add to Cart" button inside a Lightbox window. 我有一个客户想要在灯箱窗口内添加PayPal“添加到购物车”按钮。 I was able to achieve this by placing the PayPal code inside the image title tag. 通过将PayPal代码放在图片标题标签内,可以实现这一目标。

Not sure if this was the best way, but it worked. 不知道这是否是最好的方法,但它确实有效。

However, here is my problem... 但是,这是我的问题...

Now when you mouse over the image thumbnail the image title tooltip popup displays the PayPal code. 现在,当您将鼠标悬停在图像缩略图上时,图像标题工具提示弹出窗口将显示PayPal代码。 Not good... 不好...

Is there a way to disable this feature? 有没有办法禁用此功能? Can I tell browsers to not display this popup? 我可以告诉浏览器不要显示此弹出窗口吗?

Here is the link (I only applied the code to the first two photos): 这是链接(我仅将代码应用于前两张照片):

http://lancemissionart.com/index.php?Page=gallery&title=fof&gallery=msd http://lancemissionart.com/index.php?Page=gallery&title=fof&gallery=msd

Thanks! 谢谢!

Thinbox它不再维护了!

You should change from using Lightbox to Thickbox (looks like you might be experimenting with it in your code). 您应该从使用Lightbox更改为Thinbox(看起来可能在代码中进行了尝试)。 Lightbox is for images only (even though you've made it work its pretty ugly putting all that in the title tag and pretty wrong), Thickbox will let you include your form. 灯箱仅适用于图像(即使您已将其工作在其丑陋的标题标签中并且非常错误),Thickbox仍可以让您包括表格。

http://jquery.com/demo/thickbox/ http://jquery.com/demo/thickbox/

I would modify lightbox to use a different attribute instead of title, like paypalForm. 我将修改灯箱以使用其他属性代替标题,例如paypalForm。 Modification on line 398 of lightbox.js. 在lightbox.js的第398行进行修改。

398: imageArray.push(new Array(anchor.getAttribute('href'), anchor.getAttribute('paypalForm')));

The other option would be to only set the title attribute onMouseDown and setting it back to empty string when the lightbox is closed. 另一种选择是仅在关闭灯箱时将title属性设置为onMouseDown并将其设置回空字符串。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM