老年癲癇會不會遺傳
發(fā)布時間:2020-06-2268840次瀏覽
極少數(shù)老年癲癇與遺傳性因素有關(guān),多數(shù)老年癲癇則是由于腦部結(jié)構(gòu)異常病變所致。
1、遺傳性因素
有家族癲癇史者,在60歲以后可能會并發(fā)癲癇發(fā)作。但是有遺傳因素引起的老年癲癇發(fā)病率較低,在1%以下,傳染給下一代幾率較低。所以遺傳因素并不是誘發(fā)老年癲癇的主要誘因。只是相比較而言,有家族史者發(fā)病率高于其他正常人群。
2、腦部結(jié)構(gòu)異常
老年癲癇發(fā)作主要與腦外傷、腦腫瘤、腦血管疾、腦萎縮等腦部疾病有關(guān),而這些疾病會造成患者腦部結(jié)構(gòu)異常。引起腦神經(jīng)異常發(fā)電而誘發(fā)癲癇發(fā)作,所以腦結(jié)構(gòu)異常時誘發(fā)老年癲癇最為主要的病因。此外,代謝性疾病、慢性酒精中毒也與老年癲癇發(fā)作有關(guā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;
}
}