Home >Web Front-end >JS Tutorial >Solution to the problem that JQuery cannot listen to the keyup event of input under ff_jquery
//function list
var fun=function(){
value=$(this).val();
$('.prev').text(value);
}
bind('input',fun) is used for keyup under ff
bind('keyup',fun) for ie