//编辑过敏史
if(itoolbar == 'editgms'){
lstype="gms";
var gms="";
if(gmstype=="0"){
gms=$('#gmsinfo').html();
$('#gmsdiv').html('<textarea class="form-control" id="gmsdesc" name="gmsdesc" style="width:100%; height:80px;" maxlength="500" autofocus="autofocus">'+gms+'</textarea>');
gmstype="1";
window.settimeout (function(){ document.getelementbyid ('gmsdesc'). select();},0 );//自动获取焦点
}
$("#gmsdesc").on("blur",function(){//失去焦点事件
if(gmstype=="1"){
gms=$('#gmsdesc').val();
}else{
gms=$('#gmsinfo').html();
}
settimeout(function(){//延迟执行
$.ajax({
type : "post",
url : '<%=request.getcontextpath()%>/svl_consultationmanage',
data : 'active=editjbs&iusercode='+pid+'&jbinfo='+gms+'&lstype='+lstype,
datatype:"json",
success : function(data){
gmstype="0";
$('#gmsdiv').html('<span id="gmsinfo" name="gmsinfo">'+gms+'</span>');
}
});
},150);
})
}