显示 Tipsy 工具提示而不悬停?
全部。我制作了一份注册表格,但我想在我的工具提示 Tipsy 中显示错误消息。为此,我必须创建一些函数来显示工具提示,而无需将鼠标悬停在 ID 对象上。我尝试在默认选项中添加新参数,如下所示:
$.fn.tipsy.defaults = {
delayIn: 0,
without_hover: true... }
此函数中的第二个 $.fn.tipsy = function(options).... 我添加了一项检查 without_hover 是否为 true 以显示这样的醉酒:
if(options.without_hover == true) tipsy.show();
但它不起作用。我会对任何解决方案感到高兴。 谢谢。
all. I made one form for registration, but I want to show the messages for errors in my tooltip Tipsy. For this I must made some function to show the tooltip without hover on the ID object. I try to add new parameter in the default options like this:
$.fn.tipsy.defaults = {
delayIn: 0,
without_hover: true... }
And second in this function $.fn.tipsy = function(options)....
I add one check if the without_hover is true to show the tipsy like this:
if(options.without_hover == true) tipsy.show();
but it doesn't work. I will be happy on any solution.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 tipsy 插件,手动显示工具提示的语法为:
$(selector ).醉酒(“显示”);
If you are using the tipsy plugin, the syntax for manually showing a tooltip is:
$(selector).tipsy("show");