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.
标记选择器怎么样?
又名
$('select.shipping-updater').click(function(){ $(this).addClass("clicked"); }).blur(function(){ $(this).removeClass("clicked"); }); $('select.shipping-updater.clicked').change(function(){ $('#shipping_estimation_button').click(); });