js复制input内容

js复制input内容

function copyText(objId) { var obj = document.getElementById(objId) obj.select() document.execCommand("Copy")}
JavaScript70