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.
jqueryを使用している場合は、次のようなことができます
$(".select_box").on('change',function(){ if($(".select_box").find(":selected").text() == 'Open'){ $(".select_box").css('border-color','green'); } else{ $(".select_box").css('border-color','red'); } });
完全なフィドル