衣原體肺炎會不會傳染
發(fā)布時間:2020-02-2160290次收聽
語音內(nèi)容:
衣原體肺炎也好,其他的肺炎包括
氣管炎、上
呼吸道感染,其實嚴(yán)格來說都是會傳染的。
主要的傳染途徑是靠飛沫傳播。所謂飛沫就是一般咳嗽、打噴嚏,然后有
分泌物排泄出來,這個分泌物就是我們所謂的飛沫。那它漂浮在空氣當(dāng)中,在其他人再進入到這個空氣當(dāng)中,它就被吸入到自己的肺里,引起他人的感染。所以不管是得了支原體、衣原體,還是其他一些肺炎,包括上呼吸道感染的時候,自己帶口罩。另外盡量少去人口密集的地方,家里邊多通風(fēng)。然后和他人也做到適當(dāng)?shù)母綦x。另外對于健康人來說,也盡量少去人員比較密集、比較封閉的區(qū)域,這樣減少交叉感染。家里如果有病人的話,除了適當(dāng)?shù)母綦x,家里一定要注意多通風(fēng)。因為如果不通風(fēng)的話,在局部房間里不管支原體、衣原體,它的濃度就會比外界高很多,感染的幾率就會大。通風(fēng)之后就會把致病微生物稀釋,空氣當(dāng)中的致病微生物少了,感染的幾率也就小了。
分享到微信朋友圈
×
打開微信,點擊底部的“發(fā)現(xiàn)”,
使用“掃一掃”即可將網(wǎ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的擴展,將 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;
}
}