html 浏览器实时编辑 contentEditable属性

浏览器页面可编辑

document.body.contentEditable='true';

实时编写样式的输入框

<body>
  <style style="display:block; position: fixed;" contentEditable>
    * {
    
     background: yellow; }
  </style>
</body>

猜你喜欢

转载自blog.csdn.net/lorogy/article/details/110523579