1. 程式人生 > >js相容安卓和IOS的複製文字到剪下板

js相容安卓和IOS的複製文字到剪下板

<input type="text" onclick="copy('api.xslfgame.com/wxchatlogin/index?agentId={$member['id']}')" value="api.xslfgame.com/wxchatlogin/index?agentId={$member['id']}" readonly="readonly">

<script language="javascript">
function copy(message) {
        var input = document.createElement("input");
            input.value = message;
            document.body.appendChild(input);
            input.select();
            input.setSelectionRange(0, input.value.length), document.execCommand('Copy');
            document.body.removeChild(input);
            $.toast("複製成功", "text");
}
</script>