<!DOCTYPE html><htmllang="en"><head><metacharset="UTF-8"><title>contenteditable</title></head><body><!--不可编辑--><p>1、You can try to edit this paragraph</p><!--不可编辑--><p><span>2、You can try to edit this paragraph</span></p><!--可编辑(这里不探讨这种写法符不符合规范,从面试的角度来看这种题是可能出现的)--><pcontenteditable>3、You can try to edit this paragraph</p><!--随便设置一个属性值,不可编辑(这里不探讨这种写法符不符合规范,从面试的角度来看这种题是可能出现的)--><pcontenteditable="randomstring">4、You can try to edit this paragraph</p><!--不可编辑--><pcontenteditable="false">5、You can try to edit this paragraph</p><pcontenteditable="false"><span>6、You can try to edit this paragraph</span><!--不可编辑--></p><!--可编辑--><pcontenteditable="true">7、You can try to edit this paragraph</p><pcontenteditable="true"><span>8、You can try to edit this paragraph</span><!--可编辑--></p></body></html>