简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <title>简单教程(twle.cn)</title> <p id="myP">这是个段落,点击按钮使该段落可编辑</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myP").contentEditable = true; document.getElementById("demo").innerHTML = "以上 p 元素现在可编辑,尝试修改文本。"; } </script>
运行结果: