📅  最后修改于: 2022-03-11 15:02:54.632000             🧑  作者: Mango
//JS
$("#theSelect").change(function(){
var value = $("#theSelect option:selected").val();
var theDiv = $(".is" + value);
theDiv.slideDown().removeClass("hidden");
});
$("div a.remove").click(function () {
$(this).parent().slideUp(function() { $(this).addClass("hidden"); });
});
//HTML
Patient remove
Physician remove
Nurse remove
â