IE7中的Textarea问题

时间:2013-06-05 06:18:41

标签: asp.net asp.net-mvc asp.net-mvc-3 asp.net-mvc-4

在textarea中,我输入一行中的单个字符,然后按Enter键,继续执行此操作,直到334个字符后,我无法再输入任何字符。此限制仅在IE7中发生。

我无法弄清楚,为什么会发生这种情况?

以下是查看代码。

@Html.TextAreaFor(model => model.Description,
    new { @id = "txtAreaDescription",
          @class = "expand12-200",
          @onkeypress = "return maxLength(this,'500');",
          @onpaste = "return maxLengthPaste(this,'500');"
    })

0 个答案:

没有答案