jQueryのメモ。
focusされたときは.focus
メソッドを使い、focusが外れたときは.blur
メソッドを使う。
jquery.js
$(function(){
$("input").focus(function(){
$(this).css("background","#b3eaef");
}).blur(function(){
$(this).css("background","#fff");
});
});
Go to list of users who liked
More than 5 years have passed since last update.
jQueryのメモ。
focusされたときは.focus
メソッドを使い、focusが外れたときは.blur
メソッドを使う。
$(function(){
$("input").focus(function(){
$(this).css("background","#b3eaef");
}).blur(function(){
$(this).css("background","#fff");
});
});
Register as a new user and use Qiita more conveniently
Go to list of users who liked