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

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

科普文章

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

雞眼要做哪些檢查

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

我相信很多人都對(duì)雞眼不是很了解,只是知道有這么個(gè)東西,但卻不知道它是怎么形成的,要做哪些檢查呢,所以針對(duì)大家的問題我們就要為大家詳細(xì)介紹雞眼要做哪些檢查,相信會(huì)給大家?guī)韼椭摹?/p>

雞眼要做哪些檢查?

雞眼和胼胝是皮膚由于長(zhǎng)期受擠壓或受摩擦而發(fā)生的角質(zhì)性增生,雞眼一般都出現(xiàn)在腳趾,為圓錐形角質(zhì)增生,胼胝則為斑塊狀角質(zhì)增生,主要發(fā)生于手、足、指,趾受摩擦或擠壓部位。

雞眼的組織病理組織病理:病變?yōu)樵龊竦慕琴|(zhì)層,緊密呈板狀排列,形成角質(zhì)栓,呈楔形嵌入真皮。角質(zhì)栓內(nèi)常有排列成柱狀的角化不全細(xì)胞,角質(zhì)栓尖 端正 下方粒層消失,棘層萎縮。病變周圍表皮正常或輕度肥厚。受壓處真皮乳頭變平,少許淋巴細(xì)胞浸潤(rùn)。鑒別雞眼和胼胝根據(jù)發(fā)生在掌跖,呈角質(zhì)增生性損害,不難診斷。

雞眼與胼胝的主要鑒別點(diǎn)是:雞眼為呈倒圓錐形角質(zhì)增生,行走時(shí) 疼痛 明顯;而胼胝為扁平片狀角質(zhì)增厚,范圍較廣,一般不痛。雞眼與胼胝需與 跖疣

鑒別:跖疣可散發(fā)于足跖各處,不限于受壓部位,可多發(fā),損害如黃豆大小,表面角質(zhì)增厚,用刀削去表面角質(zhì)層,可見自真皮乳頭血管滲 出血 細(xì)胞凝成的小黑點(diǎn)的角質(zhì)軟芯。

以上介紹了雞眼的檢查方法,希望這能引起大家對(duì)這一疾病的重視,不要輕易忽略了。雞眼只要及早治療,還是能很好的治愈的,因此人們不必過度擔(dān)心。最重要的是在生活上注意保護(hù)好皮膚。

' }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 +' 次收聽' +'

' +'
' +'
' +'
' +'
' }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 +' 次收聽' +'

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