/**
 * Created by Administrator on 2016/10/25.
 */
$(function(){
    $(".case_select").find("p").click(function(event){
        $(".case_select").find("ul").hide();
        $(this).next("ul").show();
        event.stopPropagation();
    });
    $(".case_select").find("li").click(function(){
        var litext = $(this).text();
        $(this).parent().prev().find("span").text(litext);
        $(this).parent().hide();
    });
    $(document).click(function(event){
        $(".case_select").find("ul").hide();
    });
});

