五月天黄色网址,国内久久精品,偷拍亚洲欧美,亚洲精品视频在线看

博禾醫(yī)生官網(wǎng)

科普文章

查疾病 找醫(yī)生 找醫(yī)院

耳膜破了會(huì)不會(huì)聾

發(fā)布時(shí)間:2020-10-2662374次瀏覽

耳膜破了即臨床上所說(shuō)的耳膜穿孔。耳膜穿孔一般不會(huì)造成耳聾,但它對(duì)聽(tīng)力有很大影響,穿孔越大,聽(tīng)力受損越嚴(yán)重。因此,出現(xiàn)耳膜穿孔,可到醫(yī)院就診,根據(jù)其病因選擇相應(yīng)的方式治療。

耳膜位于耳朵比較表淺的位置,是耳朵重要的結(jié)構(gòu),它不僅有傳導(dǎo)聲音的作用,對(duì)耳朵也能起到保護(hù)作用。但耳膜也容易受到損傷,在耳朵受到外傷、發(fā)生炎癥時(shí),耳膜可能破裂、穿孔。那么,耳膜破了會(huì)不會(huì)聾呢?
  1、耳膜破了會(huì)不會(huì)聾
  耳膜破了一般不會(huì)導(dǎo)致耳聾,但對(duì)聽(tīng)力可產(chǎn)生一定影響。耳膜穿孔越大,對(duì)聽(tīng)力的影響越大,一般耳膜穿孔超過(guò)五分之一,就會(huì)出現(xiàn)耳內(nèi)發(fā)堵、耳悶的癥狀,穿孔越大,對(duì)聽(tīng)力造成的危害也就越嚴(yán)重。除可影響到聽(tīng)力,耳膜穿孔還可引起一些并發(fā)癥,因此,發(fā)生耳膜穿孔應(yīng)及時(shí)到醫(yī)院就診,如果穿孔較大,很可能需要手術(shù)治療。
  2、耳膜破了怎么治療
  耳膜穿孔可因多種原因引起,如果是由于急性化膿性中耳炎引起,可出現(xiàn)發(fā)熱、耳朵疼痛的癥狀,還可出現(xiàn)膿性分泌物,應(yīng)積極抗炎治療,通過(guò)阿莫西林、頭孢克肟等藥物消除炎癥,再配合滴耳滴,1周左右可以恢復(fù)。如果是由于外傷導(dǎo)致的耳膜穿孔,治療時(shí)首先應(yīng)避免耳朵進(jìn)水,預(yù)防感冒,做好預(yù)防感染的工作,約1個(gè)月左右,穿孔可自行恢復(fù)。

' }else{ return '' } } function loadHtmlVoice(list){ if(list){ if(list.litpic){ return '
' +''+ list.title +' ' +'
' +'' +'' +'' +'
' +'
' +'
'+ (list.format_description || list.format_description) +'
' +'
' +'
' +'' +'' +'語(yǔ)音時(shí)長(zhǎng) '+ timeFt(list.durations_time.minute, list.durations_time.second) +'' +'' +'

' +''+ date_format(list.ctime, 'yyyy-MM-dd') +'' +'

' +'

' +''+ list.c_click +' 次收聽(tīng)' +'

' +'
' +'
' +'
' +'
' }else{ return '
' +'
' +''+ list.title +' ' +'
' +'
'+ (list.format_description || list.format_description) +'
' +'
' +'
' +'' +'' +'語(yǔ)音時(shí)長(zhǎng) '+ timeFt(list.durations_time.minute, list.durations_time.second) +'' +'' +'

' +''+ date_format(list.ctime, 'yyyy-MM-dd') +'' +'

' +'

' +''+ list.c_click +' 次收聽(tīng)' +'

' +'
' +'
' +'
' } }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 '
' +'
' +'' +'問(wèn)' +''+ list.title +' ' +'' +'
' +'
'+ list.content +'
' +'
' +'' +'
' +'
' }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; } }