/ Published in: JavaScript

Expand |
Embed | Plain Text
function copyToClipboard(txt) { if(window.clipboardData) { window.clipboardData.clearData(); window.clipboardData.setData("Text", txt); } else if(navigator.userAgent.indexOf("Opera") != -1) { window.location = txt; } else if (window.netscape) { try { netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); } catch (e) { alert("被ç€è¦½å™¨æ‹’絕ï¼\n請在ç€è¦½å™¨åœ°å€æ¬„輸入'about:config'並回車\n然後將'signed.applets.codebase_principal_support'è¨ç½®ç‚º'true'"); } var clip = Components.classes['@mozilla.org/widget/clipboard;1'].createInstance(Components.interfaces.nsIClipboard); if (!clip) return; var trans = Components.classes['@mozilla.org/widget/transferable;1'].createInstance(Components.interfaces.nsITransferable); if (!trans) return; trans.addDataFlavor('text/unicode'); var str = new Object(); var len = new Object(); var str = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString); var copytext = txt; str.data = copytext; trans.setTransferData("text/unicode",str,copytext.length*2); var clipid = Components.interfaces.nsIClipboard; if (!clip) return false; clip.setData(trans,null,clipid.kGlobalClipboard); } alert('已經複製'); } </script>
Comments

You need to login to post a comment.
hi thanks for the code .i ma using the code below to copy to clipboard in mozilla and have a buton that call the fuction to copy. how can i paste in a field with a button that will call a fucntion like "fonction pastefromclipborad (aaaa).
My code :
function copy_clip(meintext){ if (window.clipboardData){ window.clipboardData.setData("Text", meintext); }else if (window.netscape){ netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
var clip = Components.classes['@mozilla.org/widget/clipboard;1'].createInstance(Components.interfaces.nsIClipboard); if (!clip) return;
var trans = Components.classes['@mozilla.org/widget/transferable;1'].createInstance(Components.interfaces.nsITransferable); if (!trans) return;
trans.addDataFlavor('text/unicode');
var str = new Object(); var len = new Object();
var str = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString); var copytext=meintext; str.data=copytext; trans.setTransferData("text/unicode",str,copytext.length*2); var clipid=Components.interfaces.nsIClipboard;
if (!clip) return false; clip.setData(trans,null,clipid.kGlobalClipboard);
}
return false; } //-->
hi thanks for the code .i ma using the code below to copy to clipboard in mozilla and have a buton that call the fuction to copy. how can i paste in a field with a button that will call a fucntion like "fonction pastefromclipborad (aaaa).
My code :
function copy_clip(meintext){ if (window.clipboardData){ window.clipboardData.setData("Text", meintext); }else if (window.netscape){ netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
var clip = Components.classes['@mozilla.org/widget/clipboard;1'].createInstance(Components.interfaces.nsIClipboard); if (!clip) return;
var trans = Components.classes['@mozilla.org/widget/transferable;1'].createInstance(Components.interfaces.nsITransferable); if (!trans) return;
trans.addDataFlavor('text/unicode');
var str = new Object(); var len = new Object();
var str = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString); var copytext=meintext; str.data=copytext; trans.setTransferData("text/unicode",str,copytext.length*2); var clipid=Components.interfaces.nsIClipboard;
if (!clip) return false; clip.setData(trans,null,clipid.kGlobalClipboard);
}
return false; } //-->