jQuery simplemodal closeHTML 问题
我在使用 jquery.simplemodal 插件初始化模式窗口时遇到问题。
如果没有 closeHTML
选项,模式窗口的格式会正确。
$.modal(html, {});
但是,如果我指定 closeHTML
,则模式窗口的格式将设置为适合带有滚动条的近 10x10 像素正方形。
$.modal(html, {
closeHTML: '<a href="#close">Close</a>',
});
有没有人遇到过这个问题并且有解决办法?
相关规范是:
- Ubuntu x86_64 上的 Chrome8
- jQuery 1.4.4
- jquery.simplemodal 1.4.1
I'm having an issue where when initializing a modal window using the jquery.simplemodal plugin.
With no closeHTML
option, the modal window is formatted properly.
$.modal(html, {});
However, if I specify closeHTML
, the modal window is formatted to fit in nearly a 10x10 pixel square with scrollbars.
$.modal(html, {
closeHTML: '<a href="#close">Close</a>',
});
Has anyone run into this issue and have any idea for a fix?
Relevant specs are:
- Chrome8 on Ubuntu x86_64
- jQuery 1.4.4
- jquery.simplemodal 1.4.1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我能够解决这个问题。我刚刚从
Close
中删除了文本,并使用了< ;/a>
和 CSS 背景图像。所以实际上,如果您想在中使用文本,例如“x”或“close”,这并不能解决您的问题,它只是避免了错误。也许这可以帮助埃里克发现问题。
I was able to work around this issue. I just removed the text from the
<a class="modal-close">Close</a>
and went with<a class="modal-close"></a>
and a css background image. So really, if you want to use text in your<a>
, like "x" or "close" this doesn't solve your problem, it just avoids the bug. Maybe this helps Eric spot the issue.这个问题可以通过添加一个带有一些CSS的
closeClass
来解决:JS:
CSS:
This problem is solved by adding a
closeClass
w/ some CSS:JS:
CSS: