欢迎来到福编程网,本站提供各种互联网专业知识!

表单提交时自动复制内容到剪贴板的js代码

发布时间:2007-03-16 作者: 来源:转载
交时自动复制到剪贴板/*功能:提交时自动复制到剪贴板*/functioncopyText(obj){ie=(document.all)?true:falseif(ie){varrng=document.body.createTextRange();rng.moveToElementText(obj);rng.scrollIntoView();rng.select();rng.execCommand("C



交时自动复制到剪贴板


/*功能:提交时自动复制到剪贴板*/

functioncopyText(obj){
ie=(document.all)?true:false
if(ie){
varrng=document.body.createTextRange();
rng.moveToElementText(obj);
rng.scrollIntoView();
rng.select();
rng.execCommand("Copy");
rng.collapse(false);
}
}

functionautocopy(){
if(this.document.formname.isautocopy.checked){
copyText(this.document.formname.icontent);
}
}





提交时复制内容到剪贴板


相关推荐