js 一鍵複製至剪下板

樑青竹發表於2019-03-01

html

<textarea name="" id="copytest" readonly>一鍵複製至剪下版</textarea>
 <input type="button" id="copy" value="複製">
複製程式碼

js

$(document).on("click","#copy",function(){
    var copytest=$("#copytest");
    copytest.select();
    document.execCommand("copy");
    alert("已複製到剪下板");
})
複製程式碼

execCommand 相容

js 一鍵複製至剪下板

相關文章