$(document).ready(function () {
        var current;///////
        $(".t1").click(function () {
            $(".div_n").show();
            $(".yc").hide();
            current = this;//////////
        })
        $(".t2").click(function () {
            $(".div_n").show();
            $(".yc").hide();
            current = this;/////////////
        })
        $(".div_n span").click(function () {
            var n = $(this).html();
            $(current).html(n);/////
            $(".div_n").hide();
            $(".yc").show();
        })
    })