Copy and paste the selected text to the clipboard using JavaScript

后端 未结 4 422
灰色年华
灰色年华 2021-01-07 13:33

I\'m building a custom right-click menu for my system and I need to know how can I make a JavaScript function to copy the selected text, basically 100% like the original rig

4条回答
  •  星月不相逢
    2021-01-07 14:07

    For non-IE browsers you will most likely have to use a flash solution. For IE, however, this method works perfectly:

    function copyToClipboard(s) {           //only works in IE :(
        if (window.clipboardData && clipboardData.setData) {
            clipboardData.setData('text', s);
        }
    }
    

提交回复
热议问题