使用jQuery库的话,只需要同时绑定 oninput 和 onpropertychange 两个事件就可以了,示例代码如下:
$('#feedText').bind('input propertychange', function() {
$('#textNum').html((maxNum - $(this).val().length));//剩余输入字数
});
使用jQuery库的话,只需要同时绑定 oninput 和 onpropertychange 两个事件就可以了,示例代码如下:
$('#feedText').bind('input propertychange', function() {
$('#textNum').html((maxNum - $(this).val().length));//剩余输入字数
});