3

构建了一个功能,可以取消选择除 ctrl-clicked 项目之外的所有项目。它在 IE 和 Chrome 中运行良好,但在 Firefox 中则不行。在http://jsfiddle.net/PJVK3/
尝试 jsfiddle

尝试使用简单的 javascript 代码捕获相同的事件,并出现相同的问题。这适用于 Chrome(24.0.1312.57) 和 IE(9),但不适用于 Firefox(18.0.2):

<!DOCTYPE html>
<html>
<head>
<script>
function myFunction()
{
if (event.ctrlKey){document.getElementById("demo").innerHTML="ctl key pressed";}
if (!event.ctrlKey){document.getElementById("demo").innerHTML="ctl key NOT pressed";}
}
</script>
</head>
<body>
<p>Click the button to trigger a function.</p>
<button onclick="myFunction()">Click me</button>
<p id="demo"></p>
</body>
</html>

怎么了?任何人?

4

2 回答 2

3

如果您查看源代码,您会看到它将事件存储在event.browserEvent.
这是一个固定的错误:https ://github.com/highslide-software/highcharts.com/pull/992

那么,为什么你必须使用event.browserEvent而不是window.event
很简单,因为window.eventFirefox 中不存在。

legendItemClick: function(e) {
    var visibility = this.visible ? 'visible' : 'hidden';

    if (!e.browserEvent.ctrlKey) {
        if (!confirm('The series is currently '+ 
            visibility +'. Do you want to change that?')) {
            return false;
        }
    }
}

演示

源代码-相关代码

.on('click', function (event) {
    var strLegendItemClick = 'legendItemClick',
        fnLegendItemClick = function () {
            item.setVisible();
        };

    // Pass over the click/touch event. #4.
    event = {
        browserEvent: event                  // < -- here is the magic
    };

    // click the name or symbol
    if (item.firePointEvent) { // point
        item.firePointEvent(strLegendItemClick, event, fnLegendItemClick);
    } else {
        fireEvent(item, strLegendItemClick, event, fnLegendItemClick);
    }
});
于 2013-02-15T06:29:54.890 回答
0

你可以使用这样的东西:

                var evtobj = window.event ? event : e;
                if (evtobj.shiftKey) {
                    //do something
                } else {
                   //other things
                }

这适用于 Chrome、IE 和 firefox。

于 2015-01-27T01:35:25.373 回答