为具有可编辑内容的 div React组件

时间:2024-06-28 10:33:15
【文件属性】:

文件名称:为具有可编辑内容的 div React组件

文件大小:163KB

文件格式:ZIP

更新时间:2024-06-28 10:33:15

Rich Text Editor

react-contenteditable React 组件用于具有可编辑内容的 div 安装 npm install react-contenteditable 用法 import React from 'react' import ContentEditable from 'react-contenteditable' class MyComponent extends React.Component { constructor() { super() this.contentEditable =React.createRef(); this.state = {html: " Hello World "}; }; handleChange = evt => { this.setState({html: evt.target.value}); }; 渲染 = () => { 返回 }; }; 可用道具道具描述类型innerRef 元素的ref 属性对象| 函数 html 需要:可编辑元素的innerHTML String disabled 使用true 禁用编辑 每当innerHTM


【文件预览】:
react-contenteditable-master
----src()
--------react-contenteditable.tsx(4KB)
----.npmignore(39B)
----.travis.yml(38B)
----tsconfig.json(5KB)
----LICENSE(11KB)
----README.md(3KB)
----tests()
--------public()
--------src()
--------tsconfig.json(494B)
--------.gitignore(19B)
--------package-lock.json(579KB)
--------package.json(991B)
----.gitignore(19B)
----package-lock.json(3KB)
----package.json(959B)

网友评论