可以在模态窗口中调用模态窗口吗?
我有一个从一系列 portlet 打开的模式窗口。打开的窗口包含文本和图像,我正在尝试在图像上实现灯箱脚本。我已经让灯箱脚本在单独的文件中工作,并将该 html 复制到模式窗口的 .html 值中,但是当我单击任何图像时,它会忽略 jQuery 并直接将我带到一个大版本的图像。
有人有什么想法吗?
非常感谢, 丰富的
附言: 这是该项目:http://djrb.co.uk/lightbox/tester.html
I have a modal window which is opened from a series of portlets. The window which is opened contains both text and images, and I'm trying to implement a lightbox script on the images. I have got the lightbox script to work in a separate file, and have copied that html into the .html value of the modal window, but when I click on any of the images it disregards the jQuery and takes me directly to a large version of the image.
Any one have any ideas?
Much appreciated,
Rich
P.S:
Here is the project: http://djrb.co.uk/lightbox/tester.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原型和 jQuery 可能会发生冲突。
试试这个这个。 http://api.jquery.com/jQuery.noConflict/ – Karthi.L 4 月 22 日
这是绝对正确的。将 $ 更改为 jQuery,然后就可以了。
it could be possible of conflict of prototype and jQuery.
Try this this. http://api.jquery.com/jQuery.noConflict/ – Karthi.L Apr 22
This was absolutely correct. Change $ for jQuery and on my way.