disable text drag and drop

前端 未结 7 1820
后悔当初
后悔当初 2020-12-08 16:14

There is a common feature of modern browsers where a user can select some text and drag it to an input field. Within the same field it causes moving of text, between differe

7条回答
  •  失恋的感觉
    2020-12-08 17:02

    add the following to your field tags:

    #ondragstart is for IE, onmousedown is for firefox
    ondragstart="return false" onmousedown="return false" 
    

提交回复
热议问题