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

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

科普文章

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

跑步時(shí)肚子兩側(cè)痛要注意,可能是這些原因

發(fā)布時(shí)間:2024-04-012679次瀏覽

?今天后臺(tái)有朋友給我留言,表示自己前幾天跑步的時(shí)候,肚子兩側(cè)痛,不知道是為什么?

其實(shí)跑步時(shí)肚子兩側(cè)痛的情況并不少見,可能是呼吸過快、進(jìn)食不久、腹部肌肉損傷、肋骨骨折未痊愈等原因?qū)е碌摹?/p>

?【跑步時(shí)肚子兩側(cè)痛原因】

1??呼吸過快

如果沒有熱身,跑步比較快的情況下,可能出現(xiàn)呼吸不協(xié)調(diào)、頻率過快的情況,導(dǎo)致肚子兩側(cè)疼痛。

2??進(jìn)食不久

如果2-3個(gè)小時(shí)內(nèi)用餐了,后續(xù)跑步時(shí)動(dòng)作比較大,會(huì)刺激胃腸道蠕動(dòng),引起局部疼痛。

3??腹部肌肉損傷

如果因?yàn)橥饨缗鲎不蛘呓∩碜藙?shì)不當(dāng),導(dǎo)致腹部肌肉損傷,可能出現(xiàn)局部疼痛。跑步時(shí)左右擺手導(dǎo)致肌肉牽拉,會(huì)引發(fā)疼痛。

4??肋骨骨折未痊愈

原本存在骨折的情況,如果距離骨折時(shí)間比較短,在3個(gè)月內(nèi)進(jìn)行跑步這種劇烈運(yùn)動(dòng)可能會(huì)出現(xiàn)疼痛,肋骨位于肚子兩側(cè),表現(xiàn)為對(duì)應(yīng)部位疼痛。

-

跑步時(shí)出現(xiàn)了肚子兩側(cè)疼痛的情況,我建議他這樣做:

?慢慢停止跑步,用3-5分鐘的時(shí)間緩沖,將快速跑步轉(zhuǎn)為慢跑,直至變?yōu)檎2剿僮呗贰?/p>

?緩沖階段注意調(diào)整呼吸頻率,注意閉上嘴巴,保持2s吸氣、3秒呼氣的頻率。

?停止跑步后勻速步行到家,然后用45℃的溫水打濕毛巾,將毛巾蓋在肚子上,持續(xù)15分鐘。

??如果經(jīng)過這些處理,疼痛緩解了,則不需要就醫(yī);如果疼痛持續(xù)或者出現(xiàn)了嘔吐、咳嗽等癥狀,建議及時(shí)就醫(yī)。

' }else{ return '' } } function loadHtmlVoice(list){ if(list){ if(list.litpic){ return '
' +''+ list.title +' ' +'
' +'' +'' +'' +'
' +'
' +'
'+ (list.format_description || list.format_description) +'
' +'
' +'
' +'' +'' +'語音時(shí)長 '+ 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) +'
' +'
' +'
' +'' +'' +'語音時(shí)長 '+ 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; } }