<html>
<script>
function jcopy(o, msg)
{
var contents = o.value.toString();
if (contents=="") return false;
try
{
clipboardData.setData('Text',contents);
o.select();
alert(msg);
return false;
}
catch(e){alert("failed");return null;}
}
</script>
使用:
<input type="text" name="foo" id="foo" value="i am test" /> <input type="button" onclick="jcopy(document.getElementById('foo'),'拷贝成功,你可以发给好友了!')" value="点此拷贝" />
</html>
posted on 2007-09-25 11:56
lk 阅读(141)
评论(0) 编辑 收藏 所属分类:
ajax&js