Calling keyevent from mouse

前端 未结 2 787
孤独总比滥情好
孤独总比滥情好 2020-12-20 03:25

I need to emulate a key press with click on a link. The keyboard shortcut CTRL++ must be called with a click on a link, or a similar function.

2条回答
  •  时光取名叫无心
    2020-12-20 04:29

    You can't invoke key press with JavaScript.

    However, you can control zoom level with JavaScript, here is example for IE and Chrome: http://jsfiddle.net/cMCuz/2/

    Edit: now supports Firefox as well.

    Required JavaScript:

    var _zoomLevel = 100;
    
    function ChangeZoomLevel(diff) {
        _zoomLevel += diff;
        var oDiv = document.getElementById("Contents");
        if (typeof oDiv.style.MozTransform == "string")
            oDiv.style.MozTransform = "scale(" + (_zoomLevel / 100) + ")";
        else if (typeof oDiv.style.zoom == "string")
            oDiv.style.zoom = _zoomLevel  + "%";
    }
    

    Sample buttons:

    
    
    

    This will change the zoom level of whole DIV element, can be changed easily to change zoom level of whole document if required.

提交回复
热议问题