什么是虚拟DOM
React会先将jsx转换为js对象,而后将这个js对象转换为真实DOM,这个js对象就是虚拟DOM。
例如:javascript
<div class="title"> <span>Hello DOM</span> <ul> <li>苹果</li> <li>橘子</li> </u1> </div>
React将其转换为相似下面的js对象html
const vitrualDom = { type: 'div', props: { class: 'title' }, children: [{ type: 'span', children: 'Hello DOM' }, { type: 'ul', children: [{ type: 'li', children: '苹果' },{ type: 'li', children: '橘子'~~~~ }] }] }