在焦点上添加课程

时间:2012-12-10 22:50:25

标签: javascript jquery

我有一个textarea,我喜欢它,所以一旦有人点击textarea(或按f(键码70)),其他一切都会淡出,它会将类焦点添加到正文中。

我怎么能用jQuery做到这一点?

2 个答案:

答案 0 :(得分:1)

$('textarea').focus(function() {
     $(this).addClass('focusClass');
});

答案 1 :(得分:0)

添加@Swadq所说的,回答你的其余问题:

//Listen for the 'f' key to be pressed
$(window).keydown(function(event) {
  if(event.keyCode === 70) {
    $('#textarea').focus();
  }
});
$('#textarea').focus(function() {
  $(body).addClass('focus');
});

对于淡入淡出位,请参阅:http://buildinternet.com/2009/08/lights-out-dimmingcovering-background-content-with-jquery/