请你能帮助我,我没有找到解决方案。我有一个带参数的函数,并希望将此函数传递给 jquery 绑定事件:
function countChars23 (chars) {
var thi = $(this);
var len = $(this).val();
if (len.length >= chars) {
len = len.substring(0, 22);
thi.val(len);
}
}
调用函数不起作用:
$('#name').bind('keyup', countChars23(10));
这也不起作用:
$('#name').bind('keyup', function() {
countChars23(10);
}
这也不起作用:
$('#name').keyup(function() {
countChars23(10);
}
非常感谢您的帮助!