运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The contentEditable Property</h2> <p id="myP">I am a paragraph. Click "Editable" to make me editable.</p> <button onclick="myFunction()">Editable</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myP").contentEditable = true; document.getElementById("demo").innerHTML = "The paragraph is now editable. Try to edit it."; } </script> </body> </html>