感音神經(jīng)性聾嚴(yán)重嗎
發(fā)布時間:2020-07-0362633次瀏覽
感音神經(jīng)性耳聾較嚴(yán)重。該病雖通過積極治療能改善癥狀,但無法痊愈。且絕大多數(shù)的感音神經(jīng)性耳聾都沒有明確的發(fā)病原因,藥物治療效果不是很好,需使用人工助聽裝置。
一部分感應(yīng)神經(jīng)性耳聾有明確病因,經(jīng)治療后,聽力會有較大程度的恢復(fù)。但絕大多數(shù)的感音神經(jīng)性耳聾發(fā)病原因都不明確,藥物治療的效果并不是很好。通常需借助人工助聽裝置才能讓患者重返有聲世界,嚴(yán)重者需做人工耳蝸植入。
若患有感音神經(jīng)性耳聾,正常的交流會受到阻礙,影響正常生活和工作。且感音神經(jīng)性耳聾易引發(fā)眩暈,患者可能因此摔倒,從而產(chǎn)生危險。部分患者可能會伴隨皮膚、外耳、神經(jīng)系統(tǒ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 ''
}
}
// 對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;
}
}