$("#要点击的对象id").click(function () { var text =$("#要复制的那个input"); text.select(); document.execCommand('copy', false); })
这样就实现点击按钮,复制你想复制的文本啦