使用ext.net 加 xheditor时,一直报 cloneRange错误。
于是 按照说明但独使用xheditor ,检查无错,正常使用, 因此排除版本问题。
<ext:panel runat="server"> <Content> <ext:TextField id="txtTitle" runat="server"/> <input class="xheditor" type="text" runat="server"></input> <ext:TextField id="txtTag" runat="server"/> </Content> </ext:panel>
最后发现 把 <input class="xheditor" type="text"/>放入到容器中就会出这个错误。 把代理整理后如下:
<ext:TextField id="txtTitle" runat="server"/> <input class="xheditor" type="text" runat="server"></input> <ext:TextField id="txtTag" runat="server"/>
再次运行,一切正常,兼容ie与chrome .