我有一个textarea,我喜欢它,所以一旦有人点击textarea(或按f(键码70)),其他一切都会淡出,它会将类焦点添加到正文中。
我怎么能用jQuery做到这一点?
答案 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/