如何使用js分割HTML元素的N个数组

时间:2019-07-10 13:07:50

标签: javascript html arrays reactjs

我需要向可以编辑和查看的用户显示特定内容。

我正在尝试为富编辑器获取特定的html元素。 -用户可以在此div内容内进行编辑 -用户只能读取classname =“ header”

import React, { Component } from 'react'
import { render } from 'react-dom'
import CKEditor from 'ckeditor4-react';
import Select from 'react-select'

import './test.css'

import BaseComponent, { HubContent } from '../../../../../core/components';

<div classname="main">
<div classname="header">
it can be read only</div>
<div classname="contenteditable">it can be edit only</div>
</div>

我该如何使用reactjs

0 个答案:

没有答案