強(qiáng)直性脊柱炎是怎么引起的
發(fā)布時(shí)間:2020-09-1650140次瀏覽
強(qiáng)直性脊柱炎的病因與遺傳因素有關(guān),家系調(diào)查發(fā)現(xiàn)在強(qiáng)直性脊柱炎患者的第一代親屬中,發(fā)生強(qiáng)直性脊柱炎的危險(xiǎn)性比一般人群高出20~40倍。孿生子女的調(diào)查中發(fā)現(xiàn):?jiǎn)温褜\生中,另一個(gè)患病的可能性超過50%。基因背景是強(qiáng)直性脊柱炎易感性的主要決定因素。目前僅知的易感基因,HLA-B27,相對(duì)危險(xiǎn)度接近100%,但僅能說明強(qiáng)直性脊柱炎10%~50%的總體遺傳學(xué)的危險(xiǎn)度。
由外源性因素引發(fā)強(qiáng)直性脊柱炎,雖然未被證實(shí),但有眾多證據(jù)支持。強(qiáng)直性脊柱炎患者血清IgA抗體水平明顯升高,且與C反應(yīng)蛋白水平顯著相關(guān),同時(shí)活動(dòng)性強(qiáng)直性脊柱炎患者糞肺炎克雷白桿菌的檢出率增高,血清抗克雷白桿菌的IgA抗體水平和脂多糖的IgA抗體水平升高。也有文獻(xiàn)指出HLA-B27在沙門菌感染期間有刺激c-fos活性的作用。由衣原體、沙門菌、志賀菌、空腸彎曲菌、耶爾森菌等誘發(fā)的HLA-B27 相關(guān)的反應(yīng)性關(guān)節(jié)炎得到證實(shí)。
'
}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;
}
}