我有一个工作的asp:TextBox控件在一个旧的webforms应用程序中,当FireFox今晚从版本22.0升级到23.0.1时就破坏了。代码如下:
<asp:TextBox ID="txtChainDescription" TextMode="MultiLine" Rows="5" Width="350px" runat="server" />
这就是全部。这在Chrome中呈现为
<div class="cleditorMain" style="width: 500px; height: 150px;">
<div class="cleditorToolbar" style="height: 27px;">
<div class="cleditorGroup">
<div class="cleditorButton" title="Bold"></div>v class="cleditorGroup">
......等,但在FireFox中呈现为
<div class="cleditorMain" style="width: 500px; height: 150px;">
<div class="cleditorToolbar">
<div class="cleditorGroup">
<div class="cleditorButton cleditorDisabled" title="Bold" disabled="disabled" style="background-color: transparent;"></div>
......等不同之处在于编辑器按钮被禁用,并且需要编辑的textarea似乎也被完全禁用。所以有几个问题:
1)为什么会这样? 2)Firefox从版本22.0到23.0.1的变化是什么?
答案 0 :(得分:0)
如果不进行测试,我无法确定,但我的钱将用在浏览器定义文件上,例如,请参阅
可能存在定义文件无法识别FF中的v23的问题。