反思不起作用
我正在使用最新版本 (v1.6.2) 的 nyromodal lightbox:
jQuery.nyroModalSettings({title:'Manual Title'});
它不会反映任何标题并且灯箱标题仍为空。我也尝试过:
jQuery.nyroModalManual({
title:'Manual Title'
});
但是没有任何反映。我怎样才能让反射起作用?
I'm using the latest version (v1.6.2) of nyromodal lightbox:
jQuery.nyroModalSettings({title:'Manual Title'});
It won't reflect any title and the lightbox title remains empty. I also tried:
jQuery.nyroModalManual({
title:'Manual Title'
});
But nothing reflects. How can I get the reflection working?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
nyromodal 的设置表明它应该使用
title: 'your title'
来工作。但您也可以设置 html 元素的
title
属性,nyromodal 会选择它。The settings of nyromodal says it should work using
title: 'your title'
.But alternatively you can set the
title
attribute of html element and nyromodal will pick it up.尝试更改
$.fn.nyroModal.settings
或设置a
标签标题属性。它可能不起作用的唯一原因是您的链接中的标题属性为空或其在手动
调用中损坏Try changing
$.fn.nyroModal.settings
or set thea
tag title attribute. The only reason it may not work is you have empty title attribute in your link or its broken inmanual
call