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

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

語(yǔ)音答疑

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

高度遠(yuǎn)視眼如何恢復(fù)

發(fā)布時(shí)間:2020-06-0459316次收聽(tīng)

語(yǔ)音內(nèi)容:

高度遠(yuǎn)視眼通過(guò)手術(shù)治療進(jìn)行恢復(fù)。
高度遠(yuǎn)視眼是指超過(guò)600度以上的遠(yuǎn)視,遠(yuǎn)視看近的東西和看遠(yuǎn)的東西都不清楚,尤其是高度遠(yuǎn)視,對(duì)患者的視覺(jué)質(zhì)量是很大的挑戰(zhàn)?;剂烁叨冗h(yuǎn)視之后,最直接的治療方法是手術(shù)。首先采用激光手術(shù)的方式在角膜表面做中間鼓、周邊薄的凸透鏡的方式,然后使患者能獲取相對(duì)正常的視力。
高度遠(yuǎn)視的患者,如果是單純的高度遠(yuǎn)視,做個(gè)手術(shù)效果比較好,但是很多患者是符合了老花眼或者其它的調(diào)節(jié)能力下降的高度遠(yuǎn)視,先要去除老花眼的影響,在進(jìn)行屈光手術(shù)的同時(shí),可以把老花眼的因素設(shè)計(jì)進(jìn)去。老花眼可以用激光手術(shù)方式來(lái)進(jìn)行治療,所以高度遠(yuǎn)視符合老花眼,是臨床容易常見(jiàn)的現(xiàn)象。
另外高度遠(yuǎn)視的患者通過(guò)藥物治療的方式不確定,藥物治療效果不是很好,采用壓抑療法或者其它療法也不確定,所以對(duì)于高度遠(yuǎn)視的患者,首先要考慮手術(shù)的方式。因?yàn)檫h(yuǎn)視患者配鏡的效果不是特別好,因?yàn)榧纫唇忠催h(yuǎn),所以配鏡的方式要分情況來(lái)對(duì)待,如果是單眼的高度遠(yuǎn)視,配有框的眼鏡不如配單眼的隱形眼鏡,隱形接觸鏡要好,因?yàn)榭梢云帘蔚敉雇哥R使物像放大的作用,使患者的視覺(jué)感受更好。

分享到微信朋友圈

×

打開(kāi)微信,點(diǎn)擊底部的“發(fā)現(xiàn)”,

使用“掃一掃”即可將網(wǎng)頁(yè)分享至朋友圈。

' }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; } }