猿问

JS document.execCommand 富文本 命令自己写的完全不行,请问这是什么情况啊?

<input type="button" value="selectAll" onclick="selectAll();"></body><script type="text/javascript">
    function copy(){        document.execCommand("copy",false,null);
    }    function selectAll(){        document.execCommand("selectAll",false,null);
    }    function open(){        document.execCommand("open",false,null);
    }    function saveAs(){        document.execCommand("saveAs",false,null);
    }    function print(){        document.execCommand("print",false,null);
    }</script>

上面代码是我直接复制过来的,
在别人博客上就是可以运行的,比如全选就可以。
可是复制到我本地电脑html文件上,啥也不行,所有的命令一个都不行.....也上传到服务器过,还是不行...
这是人品问题吗


哈士奇WWW
浏览 1727回答 1
1回答
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答