(Win)IE限定なので、あまりWebプログラミングには適さない上、XSSやスキミングの温床にもなりかねないが、知っていると便利ということで。
window.clipboardData.setData( “text”, str );
サンプルソース
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title></title> <script type="text/javascript"> <!-- function test() { var str = document.jsTest.copySrc.value; copyClipboard( str ); } function copyClipboard( str ) { if (document.all && navigator.userAgent.match(/windows/i) && document.convert.output.value) { window.clipboardData.setData( "text", str ); } } //--> </script> </head> <body> <form name="jsTest"> <textarea name="copySrc" rows="5" cols="20">ここのテキストをクリップボードにコピーします。※IE限定</textarea> <input type="button" onClick="test();" value="実行"> </form> </body> </html> |
No comments yet. You should be kind and add one!
By submitting a comment you grant typista a perpetual license to reproduce your words and name/web site in attribution. Inappropriate and irrelevant comments will be removed at an admin’s discretion. Your email is used for verification purposes only, it will never be shared.