React-动态插入节点组件
2018-11-05 本文已影响5人
墨_梵
引入组件后,可以通过调用方式来插入显示组件
/**********组件KmcDialog************/
/**
* 显示弹框
*/
KmcDialog.showInstance = function(properties) {
if (!document.getElementById("KmcDialog")) {
let props = properties || {};
let div = document.createElement('div');
div.setAttribute('id', 'KmcDialog');
document.body.appendChild(div);
ReactDOM.render(React.createElement(KmcDialog, props), div);
}
}
/**
* 删除弹框
*/
KmcDialog.removeInstance = function() {
if(document.getElementById("KmcDialog")) {
document.getElementById('KmcDialog').remove();
}
}
在需要使用的地方直接调用:
KmcDialog.showInstance({
isShow: true
});
KmcDialog.removeInstance();