JQuery .each() 和 IE 所有版本问题
我正在使用这段代码,它可以在所有浏览器上正常工作,但对于所有版本的 IE 都不起作用,任何人都可以帮助我解决这个问题
$('a.download').each(function() {
$(this).colorbox({href:$(this).attr('href') + ' div#download_popup',onComplete: function(){
$('div.sociable').hide();
$('a#share_button').click( function(){
$('div.sociable').slideToggle().show();
});
}})});
i am using this code and it is working on all browsers without a glitch but with IE all versions it`s not working can anyone help me with this
$('a.download').each(function() {
$(this).colorbox({href:$(this).attr('href') + ' div#download_popup',onComplete: function(){
$('div.sociable').hide();
$('a#share_button').click( function(){
$('div.sociable').slideToggle().show();
});
}})});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当您垂直对齐代码块时,更容易看到缺少的大括号、圆括号或分号。
When you align code blocks vertically, it is easier to see missing curly braces,parentheses, or semicolons.
清理代码(无论如何更好一些),看起来好像缺少一个分号
Cleaning up the code (somewhat better anyhow), it looks like it's missing a semicolon
您缺少一个分号。
You are missing a semicolon.