如何使用jQuery应用maxlength属性

时间:2013-11-01 11:22:32

标签: jquery

我有一个kendo ui控件,可以在运行时

上创建以下html语法
<input id=​"ItemSearch" name=​"ItemSearch" style=​"width:​115px;​" type=​"text">​

如何使用javascript

将maxlength HTML5属性应用于它

当我使用以下内容时,我会收到Cannot call method 'prop' of undefined

 $('#ItemSearch').input.prop("maxlength", 2);

1 个答案:

答案 0 :(得分:5)

您不需要.input因为$('#ItemSearch')已经选择了该元素。试试这个:

$('#ItemSearch').prop("maxlength", 2);