神經(jīng)鞘瘤會不會遺傳
發(fā)布時間:2020-06-0953030次瀏覽
神經(jīng)鞘瘤是否遺傳要根據(jù)實(shí)際類型而定,聽神經(jīng)瘤、三叉神經(jīng)鞘瘤等單發(fā)性神經(jīng)鞘瘤不會遺傳;多發(fā)性神經(jīng)鞘瘤屬于現(xiàn)行遺傳病。會遺傳給下一代。
1、單發(fā)性神經(jīng)鞘瘤
聽神經(jīng)瘤、三叉神經(jīng)瘤屬于單發(fā)性神經(jīng)鞘瘤,生長較為緩慢,屬于單發(fā)性病灶,主要是由于外傷、其它因素刺激所致,不具有遺傳性。
2、多發(fā)性神經(jīng)鞘瘤
多發(fā)性神經(jīng)鞘瘤又稱為神經(jīng)纖維瘤,其中以神經(jīng)纖維瘤1型、神經(jīng)纖維瘤病2型、雙側(cè)聽神經(jīng)瘤更為更為常見。屬于多發(fā)性病灶,生長較為快速。發(fā)病主要誘因是由于相關(guān)基因突變所致多位于顱內(nèi)和椎管內(nèi)。各種疾病屬于產(chǎn)常染色體顯性遺傳病,有家族聚集性傾向,具有一定遺傳性。
'
}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 ''
}
}
// 對Date的擴(kuò)展,將 Date 轉(zhuǎn)化為指定格式的String
// 月(M)、日(d)、小時(H)、分(m)、秒(s)、季度(q) 可以用 1-2 個占位符,
// 年(y)可以用 1-4 個占位符,毫秒(S)只能用 1 個占位符(是 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(), //小時
"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;
}
}