我在一个页面上有几个点击功能,在 IE 中都触发了,除了一个。它也只发生在 IE 中,Firefox 和 Chrome 都很好。
该网站可以在这里看到(它的页脚不起作用,它应该显示一个带有视频的弹出窗口):http ://sealection.info/
$('#footer').click(function() {
event.preventDefault();
$('.splash').stop().delay(200).fadeIn('300');
$('.splashcontent').stop().delay(400).fadeIn('300');
$('.overlay').stop().fadeOut('300');
$('#vimeo_frame').attr('src', 'http://player.vimeo.com/video/22659728?title=0&byline=0&portrait=0&autoplay=1');
});