fancybox可以打开一个表单类的多个实例吗
<a href=".login_form" class="the_form">click to Contact</a>
$(".the_form").fancybox({
'scrolling' : 'no',
'overlayOpacity': 0.1,
'showCloseButton' : false,
'onClosed' : function() {
$("#login_error").hide();
}
});
$(".login_form").bind("submit", function() {
if ($(this).find(".name").val().length < 1 || $(this).find(".email").val().length < 1 || $(this).find(".msg").val().length < 1) {
$(this).find(".login_error").show();
$.fancybox.resize();
return false;
}
});
我有一个循环并创建它的许多实例的表单。我想要做的是在该链接上单击打开表单的特定实例。我知道我可以通过为每个表单创建唯一的 id 来实现这一点,但是我想知道是否有更简单的方法。这段代码在理论上看起来很棒,但是 fancybox 不能与“.login_form”一起使用,只能与“#login_form”一起使用,这是一个特定的实例。
<a href=".login_form" class="the_form">click to Contact</a>
$(".the_form").fancybox({
'scrolling' : 'no',
'overlayOpacity': 0.1,
'showCloseButton' : false,
'onClosed' : function() {
$("#login_error").hide();
}
});
$(".login_form").bind("submit", function() {
if ($(this).find(".name").val().length < 1 || $(this).find(".email").val().length < 1 || $(this).find(".msg").val().length < 1) {
$(this).find(".login_error").show();
$.fancybox.resize();
return false;
}
});
I have a form that loops and creates many instances of it. What I want to do is on that link click open that specific instance of the form. I know i can achieve this by creating unique ids for each form, however Im wondering if there is an easier way. This code looks great in theory, but fancybox won't work with ".login_form" only "#login_form" which is a specific instance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您显示一些额外的标记,我也许可以提供帮助。
但是,也许您可以迭代每个项目并以这种方式将精美的框绑定到它?这样,每次迭代您都可以在精美的框声明中引用表单方向?
jsfiddle 上的示例来描述我正在谈论的内容......
If you show some additional markup I might be able to help.
However, maybe you could iterate over each item and bind the fancy box to it that way? That way each iteration you could reference the form direction in your fancy box declaration?
Example on jsfiddle to describe what I am talking about...
另外,如果我没猜错的话,您可以使用多个选择器,如下所示
Also if I got you correctly, you can use multiple selectors like this