/*功能:提交时自动复制到剪贴板*/
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);
}
}
提交时复制内容到剪贴板