Rolinson's Blog

ASP.NET , J2ME , WAP
(还有收藏网络上的技术文章,以便一急之用)

博客园 首页 新随笔 联系 订阅 管理

2005年6月3日 #

摘要: 一、实现动态创建元素,并把元素内容复制到粘贴板上。function CreateElementToCopyValue(val){ var tt = document.createElement("input"); tt.type = "text"; tt.value = val; document.body.appendChild(tt); tt.createText... 阅读全文
posted @ 2005-06-03 15:34 ByNow 阅读(1962) 评论(3) 推荐(0) 编辑