提交时自动复制到剪贴板
时间:2008-11-02 17:13:19浏览:12615
<html>
<head>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">
<title>提交时自动复制到剪贴板</title>
</head>
<script language=\"JavaScript\">
/*功能:提交时自动复制到剪贴板 */
function copyText(obj) {
ie = (document.all)? true:false
if (ie){
var rng = document.body.createTextRange();
rng.moveToElementText(obj);
rng.scrollIntoView();
rng.select();
rng.execCommand(\"Copy\");
rng.collapse(false);
}
}
function autocopy() {
if (this.document.formname.isautocopy.checked) {
copyText(this.document.formname.icontent);
}
}
</script>
<body>
<form action=\"\" method=\"post\" name=\"formname\" onsubmit=\"autocopy();\">
<textarea name=\"icontent\" rows=\"4\" cols=\"50\"></textarea>
<input name=\"isautocopy\" checked=\"checked\" value=\"1\" type=\"checkbox\" />
提交时复制内容到剪贴板<br/><input type=\"submit\" value=\"提交\" /> </form>
</body>
</html>
1上一篇:帅吧,嘿嘿
下一篇:退弹代码
- Linux文章
- PHP文章
- 随机文章
- Linux中的find(-atime...
- mysql的expire_logs_...
- PHP 扩展 libsodium s...
- Linux下利用find和cp实现筛...
- 使用mysqldump命令导出备份m...
- Linux系统如何设置开机自动运行脚...
- Linux上实现秒级执行的定时任务
- shell echo -e 颜色输出
- Linux下通过grep查找指定的进...
- 解决执行脚本报syntax erro...
发表评论
昵称: 验证码: