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.
我在 iPad 上的网页中有一个 HTML 元素,它必须是只读的,以防止用户更新内容,使用readOnly='readOnly'会使元素无法选择,并且根本无法复制元素的文本内容。
readOnly='readOnly'
有什么方法可以使元素只读并且用户可以选择/复制文本内容????
只是我删除了readOnly属性并添加了以下onkeydown和oncut事件来模拟readOnly行为
readOnly
onkeydown
oncut
<input type="textarea" onkeydown="event.preventDefault();event.stopPropagation();return false;" oncut="event.preventDefault();event.stopPropagation();return false;">