将 id 的值发送到 fancy box
我有不同的 id 属性值,需要发送到精美的盒子。
$('a.Links').click(function() {
var clickID = $(this).attr('id') ;
alert(clickIDID);
});
$("#"+clickID).fancybox({
'width' : '75%',
'height' : '75%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe',
'titlePosition' : 'outside',
'content' : 'testl'
});
如何将 clickID 的值发送到 .fancy 框。我尝试在单击功能中添加 .fancybox,但这不起作用。详细信息请参阅上一个问题
属性的索引值
I have different value for id attribute that I need to send to fancy box.
$('a.Links').click(function() {
var clickID = $(this).attr('id') ;
alert(clickIDID);
});
$("#"+clickID).fancybox({
'width' : '75%',
'height' : '75%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe',
'titlePosition' : 'outside',
'content' : 'testl'
});
How can I send the value of clickID to .fancy box. I tried to add the .fancybox within click function but that doesnt work. see previous question for detail
the index value of attribute
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的所有 ID 均以“popup_”一词开头(popup_1、popup_2 等),那么您可以使用 Attribute Starts With 选择器如下所示:
但是,使用类属性来集体寻址它们会更直接,如下所示:
Suppose all of your IDs begin with the word 'popup_', (popup_1,popup_2 etc.), then you could use the Attribute Starts With selector like this:
However, it would be more straightforward to use a class attribute to address them collectively, like this: