|
@@ -25,6 +25,7 @@ class RadioDrop extends Component{
|
|
timer:null
|
|
timer:null
|
|
};
|
|
};
|
|
this.$cont = React.createRef();
|
|
this.$cont = React.createRef();
|
|
|
|
+ this.isIE = navigator.appName=="Microsoft Internet Explorer" && navigator.appVersion.split(";")[1].replace(/[ ]/g,"")=="MSIE8.0";
|
|
this.handleSelect = this.handleSelect.bind(this);
|
|
this.handleSelect = this.handleSelect.bind(this);
|
|
this.handleShow = this.handleShow.bind(this);
|
|
this.handleShow = this.handleShow.bind(this);
|
|
this.handledbClick = this.handledbClick.bind(this);
|
|
this.handledbClick = this.handledbClick.bind(this);
|
|
@@ -104,7 +105,9 @@ class RadioDrop extends Component{
|
|
// 更改标签的value值
|
|
// 更改标签的value值
|
|
const ev = e || window.event;
|
|
const ev = e || window.event;
|
|
let changeVal = ev.target.innerText;
|
|
let changeVal = ev.target.innerText;
|
|
- ev.target.innerText = '';
|
|
|
|
|
|
+ if(!this.isIE){
|
|
|
|
+ ev.target.innerText = '';
|
|
|
|
+ }
|
|
handleLabelEdit && handleLabelEdit({ikey,changeVal,type:boxMark});
|
|
handleLabelEdit && handleLabelEdit({ikey,changeVal,type:boxMark});
|
|
}
|
|
}
|
|
handledbClick(e){
|
|
handledbClick(e){
|