Window.getSelection()。getRangeAt(0).getClientRectList()在IE 11中不起作用

时间:2019-05-06 17:12:23

标签: javascript typescript angular6

在Internet Explorer 11中,window.getselection().getRangeAt(0).getClientRects()始终为空,而window.getSelecion().type未定义。那么如何解决该问题?

sel = window.getSelection(); //sel.type is coming undefined
range=sel.getRangeAt(0);
rects=range.getClientRects(); //length is coming 0 

0 个答案:

没有答案