視神經(jīng)萎縮有哪些分型
發(fā)布時(shí)間:2020-06-1363754次瀏覽
視神經(jīng)萎縮可以分為先天性視神經(jīng)萎縮和后天性視神經(jīng)萎縮,先天性視神經(jīng)萎縮如遺傳及先天性發(fā)育不全,后天性視神經(jīng)萎縮由遭受到的創(chuàng)傷有關(guān)。
1、先天性視神經(jīng)萎縮
先天性視神經(jīng)萎縮包括視神經(jīng)發(fā)育不全,先天性視神經(jīng)萎縮通常是由于母親懷孕時(shí)受到感染或輻射所致,遺傳性視神經(jīng)萎縮多數(shù)是家族遺傳所致,如果父母患病,遺傳子女幾率很大。
2、后天性視神經(jīng)萎縮
后天性視神經(jīng)萎縮是由后天一些因素所導(dǎo)致的視神經(jīng)萎縮,比較常見的包括中毒性視神經(jīng)萎縮、炎癥性視神經(jīng)萎縮、壓迫性視神經(jīng)萎縮及退行性視神經(jīng)萎縮。在日常生活中,視神經(jīng)受到不同創(chuàng)傷后,就會(huì)導(dǎo)致后天性視神經(jīng)萎縮,需要根據(jù)具體病因來進(jìn)行相應(yīng)治療。
'
}else{
return ''
}
}
function loadHtmlVoice(list){
if(list){
if(list.litpic){
return '
'
+'
'+ list.title +' '
+'
'
+'
'
+'
'
+''
+'
'
+'
'
+'
'+ (list.format_description || list.format_description) +'
'
+'
'
+'
'
+'
'
+'
'
+'
'
}else{
return '
'
+'
'
+'
'+ list.title +' '
+'
'
+'
'+ (list.format_description || list.format_description) +'
'
+'
'
+'
'
+'
'
+'
'
}
}else{
return ''
}
}
function loadHtmlArticle(list){
if(list){
return '
'
+ (list.litpic ? '

' : '')
+'
'
+'
'+ list.title +' '
+'
'
+'
'+ (list.format_description || list.format_description) +'
'
+'
'
+'
'
+'
'
+'
'
}else{
return ''
}
}
function loadHtmlAsk(list){
if(list){
return '
'
}else{
return ''
}
}
// 對(duì)Date的擴(kuò)展,將 Date 轉(zhuǎn)化為指定格式的String
// 月(M)、日(d)、小時(shí)(H)、分(m)、秒(s)、季度(q) 可以用 1-2 個(gè)占位符,
// 年(y)可以用 1-4 個(gè)占位符,毫秒(S)只能用 1 個(gè)占位符(是 1-3 位的數(shù)字)
// 例子:
// date_format("yyyy-MM-dd HH:mm:ss.S") ==> 2006-07-02 08:09:04.423
// date_format("yyyy-M-d H:m:s.S") ==> 2006-7-2 8:9:4.18
function date_format(time, fmt) { //author: meizz
time = new Date(parseInt(time)*1000)
var o = {
"M+" : time.getMonth()+1, //月份
"d+" : time.getDate(), //日
"h+" : time.getHours(), //小時(shí)
"m+" : time.getMinutes(), //分
"s+" : time.getSeconds(), //秒
"q+" : Math.floor((time.getMonth()+3)/3), //季度
"S" : time.getMilliseconds() //毫秒
};
if(/(y+)/.test(fmt))
fmt=fmt.replace(RegExp.$1, (time.getFullYear()+"").substr(4 - RegExp.$1.length));
for(var k in o){
if(new RegExp("("+ k +")").test(fmt))
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));
}
return fmt;
}
function timeFt(m,s){
if(m){
return m + ':' + s;
}else{
return s;
}
}
function dataFilter(data, str){
str = str || '';
if(data){
return data;
}else{
return str;
}
}