我有一个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);
答案 0 :(得分:5)
您不需要.input
因为$('#ItemSearch')
已经选择了该元素。试试这个:
$('#ItemSearch').prop("maxlength", 2);