Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有办法允许选择(单击)表单但同时使表单无法输入文本。
我试过使用readonlywhich 给我的功能,但它提供的光标与我设置的光标相同disabled=true,它使输入字段变灰,这让用户感到困惑。有其他选择吗?
readonly
disabled=true
<input class="notype" /> $('.notype').on('keydown', function(e){ e.preventDefault(); })
你没有告诉我们的是为什么。如果是因为您希望将其复制到剪贴板但不更改,则上面不会让您这样做,如果是,请详细说明。