代码编辑器:
x
1
2
3
4
5
<title>简单教程(twle.cn)</title>
6
7
8
9
<p id="myP" contenteditable="true">点击按钮查看内容是否可编辑</p>
10
<button onclick="myFunction()">点我</button>
11
<p id="demo"></p>
12
<script>
13
function myFunction() {
14
var x = document.getElementById("myP").isContentEditable;
15
document.getElementById("demo").innerHTML = x + " = p 元素是可编辑的。修改内容查看效果。";
16
}
17
</script>
18