JQuery colorbox 无需在 JSP 文件的 div 中编写另一个 JSP 文件?
我正在使用 JQuery colorbox,如下所示:有一个链接(带有按钮),其中有一个类 cboxElement
。 colorbox 的 html 位于该链接处,我的意思是在另一个 JSP 文件处。当用户单击该链接颜色框时,一切正常。
但是,如何在页面中的 div
标记之间使用 colorbox(我的意思是,无需编写另一个用户不可见的 JSP 文件,该文件将在用户单击按钮后出现)?
编辑:我发现:如果内联“true”,则 jQuery 选择器可用于显示当前页面的内容。示例:
$("#inline").colorbox({inline:true, href:"#myForm"});
我认为这就是我正在寻找的内容,但我找不到任何示例?
I am using JQuery colorbox like that: There is a link(with a button) that has a class cboxElement
. The html of colorbox is at that link, I mean at another JSP file. When user click that link colorbox appears and everything is OK.
However how can I use colorbox for something within my page between div
tags I mean without writing another JSP file that will be non-visible for users and it will appear after a user clicks a button)?
EDIT: I found that: If inline 'true' a jQuery selector can be used to display content from the current page. Example:
$("#inline").colorbox({inline:true, href:"#myForm"});
I think this is what I am looking for but I couldn't find any example of it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看此页面上的内部 HTML 示例。我相信这就是您正在寻找的。
如果您查看页面的源代码,您会发现以下 HTML:
这是单击时启动 ColorBox 的链接:
这是 ColorBox 的绑定:
Take a look at the example for inner HTML on this page. I believe that is what you're looking for.
If you look at the source of the page, you'll find this HTML:
This is the link that launches ColorBox on click:
This is the binding for ColorBox: