<div><p>邀請碼</p>//<p id="inviteCode" class="inviteCode">{{invite_code}}</p><input id="inviteCode" class="inviteCode" type="text" /><p class="copy">複製</ ...
<div>
<p>邀請碼</p>
//
<p id="inviteCode" class="inviteCode">{{invite_code}}</p>
<input id="inviteCode" class="inviteCode" type="text" />
<p class="copy">複製</p>
</div>
copy() {
var Url2 = this.invite_code;
//var oInput = document.createElement("input");
var oInput = document.getElementById("inviteCode");
//oInput.value = Url2;
// document.body.appendChild(oInput);
oInput.select();// 選擇對象
//document.execCommand("Cut","false",null);// 執行瀏覽器剪切命令
document.execCommand("Copy");// 執行瀏覽器複製命令
//oInput.className = "oInput";
//oInput.style.display = "none";
alert("複製成功");
//console.log(document.execCommand("Copy"))
},