<script> <br>/*功能:提交时自动复制到剪贴板 */ <br><br>function copyText(obj) { <br>ie = (document.all)? true:false <br>if (ie){ <br>var rng = document.body.createTextRange(); <br>rng.moveToElementText(obj); <br>rng.scrollIntoView(); <br>rng.select(); <br>rng.execCommand("Copy"); <br>rng.collapse(false); <br>} <br>} <br><br>function autocopy() { <br> if (this.document.formname.isautocopy.checked) { <br> copyText(this.document.formname.icontent); <br> } <br>} <br></script>











