在 Plone 中通过 Javascript 触发叠加
我这样定义了我的覆盖层
$j('#heise').prepOverlay(
{
subtype: 'ajax',
noform: function(el) {return noformerrorshow(el, 'close');}
}
(工作得很好)。
现在我需要手动触发叠加。
用户在表单中输入一些数据,提交表单后,结果应显示在溢出内。使用表单参数修改“href”值没有问题,但我不知道如何通过 JavaScript 手动触发叠加层的出现。我找到了jqueryTools的低级overlay() API方法,但它在这里没有帮助。有什么想法吗?
I defined my overlay for like that
$j('#heise').prepOverlay(
{
subtype: 'ajax',
noform: function(el) {return noformerrorshow(el, 'close');}
}
(which is working perfectly fine).
Now I need to trigger the overlay manually.
The user enters some data into so form and upon form submission the result should be displayed inside the overflow. Modifying the 'href' value with the form parameters is no problem however I don't know how to trigger the appearance of the overlay manually through Javascript. I found the low-level overlay() API method of jqueryTools but it's not helpful here. Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
打开 jQueryTools 覆盖层的正常方法是通过 上的
.load()
覆盖 API,但 .prepOverlay 将所有内容隐藏在它自己的包装器中,以用于ajax
样式覆盖。您可以执行以下两种操作之一:调用点击处理程序:
这将为所有点击事件触发正确的处理程序。
直接调用
pb.ajax_click
处理程序,将this
绑定到您的元素:这只会触发
ajax
点击处理程序。The normal way to open a jQueryTools overlay is through
.load()
on the overlay API, but .prepOverlay hides all that in it's own wrapper in place forajax
style overlays. You can do one of two things:Call the click handler:
This will trigger the correct handlers for all click events.
Call the
pb.ajax_click
handler directly, bindingthis
to your element:This only will trigger the
ajax
click handler.