$('.form-control').on('focus blur', function (e) {
$(this).parents('.form-group').toggleClass('focused', (e.type === 'focus' || this.value.length > 0));
}).trigger('blur');
$('#moveleft').click(function () {
$('#textbox').animate({
'marginLeft': "0" //moves left
});
$('.toplam').animate({
'marginLeft': "100%" //moves right
});
});
$('#moveright').click(function () {
$('#textbox').animate({
'marginLeft': "50%" //moves right
});
$('.toplam').animate({
'marginLeft': "0" //moves right
});
});
答案 0 :(得分:0)
您正在尝试连接到不存在的“焦点模糊”事件。
是.on("focus", function(e) { });
或.on("blur", function(e) { } );