早上起來脖子疼是怎么回事
發(fā)布時間:2021-09-0271901次播放
視頻內(nèi)容:
一般早上起來脖子疼,是落枕的表現(xiàn),但如果發(fā)生次數(shù)較多,經(jīng)常發(fā)生落枕,則可能不是一般的落枕。
因為落枕較多,是
頸椎病的表現(xiàn),不單是早上起來,如果坐飛機(jī)或火車,在沒有保護(hù)頸椎的情況下,睡醒起來,也會導(dǎo)致脖子
疼痛,與落枕相同。
但是,有時為一過性,不過如果反復(fù)發(fā)作,可能是頸椎病。因為
椎間盤由內(nèi)部髓核和外部纖維環(huán)構(gòu)成,內(nèi)部髓核隨著人體變老,會發(fā)生變性、損傷,從而可能因姿勢不對,或承受過多拉力、應(yīng)力,產(chǎn)生拉傷,反復(fù)的拉傷就會導(dǎo)致頸椎、椎間盤有膨出,甚至突出,所以出現(xiàn)疼痛。
分享到微信朋友圈
×
用微信“掃一掃”圖中二維碼,
即可把視頻分享給您的微信好友或朋友圈。
'
}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的擴(kuò)展,將 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;
}
}