Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
背景色を指定するインラインスタイルのdivがある場合、jQueryを使用してクリックしたときに色の値を取得するにはどうすればよいですか?
$(".myDiv").click(function(){ var myColor = $(this).... }); <div class="myDiv" style="background-color:#8080C0"></div>
$(this).css('background-color')
http://jsfiddle.net/zerkms/eWWXT/