懷孕多久孕囊到達子宮
發(fā)布時間:2022-07-2911819次收聽
語音內(nèi)容:
女性在
排卵期后同房,受精后第4日,早期孕囊到達子宮腔。
正常排卵期發(fā)生性生活后,受精后30個小時,
受精卵借
輸卵管蠕動和輸卵管纖毛上皮的推動向宮腔方向移動。同時開始有絲分裂,受精后50個小時為8細胞階段,受精后72小時分裂為桑葚胚,隨后早期囊胚形成。
受精后第4日,早期孕囊到達子宮腔。受精后第5~6日早期囊胚的透明帶消失,總體積迅速增大,繼續(xù)分裂發(fā)育,形成晚期囊胚。所以如果平時月經(jīng)規(guī)律,并且是正常的宮內(nèi)妊娠的話,懷孕40天左右可以通過B超在子宮內(nèi)看到孕囊并伴胎心胎芽。不過因為每個人的體質不同,具體的受孕時間也不同。有的孕婦會推遲至45天左右時,才能看到孕囊。
女性孕期要注意營養(yǎng)均衡,注意飲食搭配。此外,還應注意會陰部衛(wèi)生,適當鍛煉,增強體質。
分享到微信朋友圈
×
打開微信,點擊底部的“發(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 轉化為指定格式的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;
}
}