contenteditable




Этот атрибут определяет содержание, которое пользователь может редактировать.


Значение :

  • true
  • false



index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  • </head>
  • <body>
  •  <p contenteditable="true">To be or not to be?</p>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  • </head>
  • <body>
  •  <p contenteditable="true">To be or not to be?</p>
  • </body>
  • </html>