how to disable drop text inside a textarea?

后端 未结 3 1144
借酒劲吻你
借酒劲吻你 2020-12-12 02:23

How to prevent users from dragging and dropping text inside a textarea? is there an attribute which control this or need some js code?

Want to disable drop b

相关标签:
3条回答
  • 2020-12-12 03:00
    <textarea ondragstart="return false" ondrop="return false">
    

    While am trying with this code,its working fine in all browsers....

    0 讨论(0)
  • 2020-12-12 03:04

    What you want to do is an usability fault, but never mind...

    <textarea ondrop="return false;">
    

    I assume you don't want to disable normal typing into it.

    0 讨论(0)
  • 2020-12-12 03:09

    Yes the attributes name is disabled:

    <textarea disabled="disabled"></textarea>
    
    0 讨论(0)
提交回复
热议问题