0

我在一个页面上有几个点击功能,在 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');

});
4

2 回答 2

1

尝试这个

 $('#footer').click(function(event) {

   event.preventDefault();
   .....
于 2013-02-20T11:03:10.303 回答
0

你有例外:

event.preventDefault();

事件未定义

于 2013-02-20T11:02:09.450 回答