答案 0 :(得分:3)
你需要document.ready
试试这个:
$(document).ready(function (){
$('#select-os').change( function() {
if (this.value == "r") {
$('.wont').show();
$('.ready, .will').hide();
}
else if (this.value == "g") {
$('.will').show();
$('.ready, .wont').hide();
}
});
});