14
Скопіюйте в буфер обміну за допомогою Javascript в iOS
Я використовую цю функцію для копіювання URL-адреси в буфер обміну: function CopyUrl($this){ var querySelector = $this.next().attr("id"); var emailLink = document.querySelector("#"+querySelector); var range = document.createRange(); range.selectNode(emailLink); window.getSelection().addRange(range); try { // Now that we've selected the anchor text, execute the copy command var successful = document.execCommand('copy', false, null); var msg = successful …