[LayaAir 1.0]一个方法实现复制到粘贴板

 
/**
* 复制到粘贴板 
* @param value

*/
public static function copyToClipBoard(value:String):void{
 
var input:Object;
 
input = Browser.createElement("input");
input.setAttribute('readonly', 'readonly');
input.setAttribute("value",value);
Browser.document.body.appendChild(input);
 
input.select();
input.setSelectionRange(0, value.length+1);
if(Browser.document.execCommand("Copy")){
Browser.removeElement(input);
}
 
}
已邀请:

Zero

赞同来自:

你上面的那个 input 用Object类型不行吧 他下面不会报没有setAttribute 方法吗  

要回复问题请先

商务合作
商务合作