Is there a way to make a text area partially editable? (make only portions of the text editable)

前端 未结 8 1605
太阳男子
太阳男子 2020-11-29 08:09

I just came across a situation in which it would be an elegant solution to have only portions of a text area (previously loaded with text) be editable while other portions a

8条回答
  •  暖寄归人
    2020-11-29 08:59

    I'd suggest, rather than trying to break the contents of an input into sub-strings of editable/non-editable content, you use the contentEditable attribute of an HTML element, and use JavaScript to pass that edited value into a hidden input elsewhere in the page.

提交回复
热议问题