The example in this article describes the method of selecting text by clicking on js. Share it with everyone for your reference. The specific implementation method is as follows:
function selectText() { if (document.selection) { var range = document.body.createTextRange(); range.moveToElementText(document.getElementById('copy')); range.select(); } else if (window.getSelection) { var range = document.createRange(); range.selectNode(document.getElementById('copy')); window.getSelection().addRange(range); } }
I hope this article will be helpful to everyone’s JavaScript programming design.