当你输入input元素运行一个函数时,我创建了一个样本 但是当我通过另一个函数改变时,我需要运行一个函数! 看到并帮助我:http://jsfiddle.net/pxfunc/5kpeJ/
$('#modern').bind('input', function() {
$(this).next().stop(true, true).fadeIn(0).html( $(this).val()).fadeOut(2000);
});
答案 0 :(得分:1)
$("input").focus(function(){
$("<span>Focused!</span>").appendTo("body").fadeOut(1000);
});