js复制input内容function copyText(objId) { var obj = document.getElementById(objId) obj.select() document.execCommand("Copy")}2023-03-01JavaScript130