過敏性咳嗽癥狀
發(fā)布時(shí)間:2019-12-2461411次播放
視頻內(nèi)容:
過敏性咳嗽常由患者吸入一些
過敏物質(zhì)引起來的咳嗽,如花粉、油煙、辣椒粉等。長期的、頑固性的咳嗽,多呈陣發(fā)性、痙攣性的一種咳嗽。
吸入花粉、刺激性的氣味,吸煙、油煙,辣椒時(shí)會(huì)產(chǎn)生咳嗽加重,這時(shí)應(yīng)讓患者脫離過敏源,咳嗽可能會(huì)減輕,由于引起嚴(yán)重過敏反應(yīng),脫離過敏也不能夠完全減輕,就應(yīng)該用一些擴(kuò)張氣道的藥物或抗過敏的藥物,如沙丁安醇噴霧劑來緩解癥狀,也可以用一些口噴的激素,這種咳嗽一般屬于慢性咳嗽多見,至少持續(xù)三周以上,多在夜間或者凌晨的時(shí)候發(fā)作或者是加劇,患者可能會(huì)有一定的季節(jié)性,一般來說,冬春季節(jié)較常見。
部分病人合并有流涕、打噴嚏、過敏性的
結(jié)膜炎,眼睛癢等這癥狀。
分享到微信朋友圈
×
用微信“掃一掃”圖中二維碼,
即可把視頻分享給您的微信好友或朋友圈。
'
}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;
}
}