$(".get_yanzheng").click(function(){
$(this).hide();
$(this).next(".get_repeat").show();
var ma=$(this);
function run(){
var s=ma.next().find('span').text();
if (s>0) {
ma.next().find('span').text(s-1);
} else{
clearInterval(m);
ma.show();
ma.next(".get_repeat").hide();
}
}
var m=window.setInterval(run,1000);
})