jQuery Mouseup没有在Internet Explorer中解雇..

时间:2015-09-18 08:32:07

标签: jquery internet-explorer mouseup

这很奇怪。我已经使用这个代码几个月了,突然间它不适用于某些版本的IE(是的,遗憾的是我必须为IE编写代码)。

$(document).on("mouseup", ".flatDiv", function(event) {
            switch (event.button) {
                case 0:
                    window.open(
                      'place.php?id='+$(this).attr('id'),
                      '_blank'
                    );
                    break;
                case 1:
                    window.open(
                      'place.php?id='+$(this).attr('id'),
                      '_blank'
                    );
                    break;
            }
        });

切换的原因是因为我使用了两种不同的动作。

我查看了整个文档,看到没有问题,它在其他浏览器中完美有效。 有什么想法吗?

编辑1:鼠标注射事件不会触发,在开关未显示之前发出警报。

提前致谢。

0 个答案:

没有答案