如何在 HTML 中使 div 元素可编辑
主题:HTML / CSS
答案:使用 HTML5 contenteditable
属性
您可以将 HTML5 contenteditable
属性设置为值为 true
(即 contentEditable="true"
),以使元素在 HTML 中可编辑,例如 <div>
or <p>
元素。
让我们试试下面的例子来了解它的实际工作原理:
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML5 可编辑元素</title>
</head>
<body>
<h1 contentEditable="true">Your Name</h1>
<div contentEditable="true">You Favorite Movie</div>
<p contentEditable="true">Your Comment</p>
<p><strong>Note:</strong> Click on the elements and type some text.</p>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: