禁用快捷键alt +空间浏览器

时间:2018-03-05 10:07:39

标签: javascript

可以在firefox中禁用快捷键 Alt + space 吗? 我将以下代码用于其他快捷方式

public class recursionJava {

    private static int index = 0;
    private static int result = 0;

    public static void main(String[] args) {
        String names = "xxhixx";

        int result = number(names);
        System.out.println("number of x: " + result);
    }

    public static int number (String name){
        if(name.charAt(index) == 'x')
            result++;

        index++;

        if(name.length() - index > 0)
            number(name);
        return result;
    }

}

但是 Alt + space 则不同。

0 个答案:

没有答案