Selecting text in mobile Safari on iPhone

前端 未结 4 612
闹比i
闹比i 2020-12-13 02:41

I\'m trying to make it easy for an iphone user to copy some text to the clipboard in mobile safari. As in the usual \"touch-hold-copy\". There is a specific bit of text I wa

4条回答
  •  伪装坚强ぢ
    2020-12-13 03:29

    The magic sauce for me was the combination of these three:

    onFocus="this.selectionStart=0; this.selectionEnd=this.value.length;" 
    
    onTouchEnd="this.selectionStart=0; this.selectionEnd=this.value.length;" 
    
    onMouseUp="return false" 
    

提交回复
热议问题