沒做B超前怎么排除宮外孕
發(fā)布時間:2024-05-2957次播放
視頻內(nèi)容:
B超一般指二維B超檢查,宮外孕通常是指
異位妊娠,沒做二維B超檢查前一般可以通過臨床癥狀和人絨毛膜促性腺激素檢查來排除異位妊娠。
異位妊娠是
受精卵在子宮體腔以外的部位著床發(fā)育的情況,通常會表現(xiàn)出停經(jīng)、腹痛、陰道流血等癥狀。沒做二維B超檢查前,若孕婦并沒有出現(xiàn)上述癥狀,或者經(jīng)過人絨毛膜促性腺激素檢查后的結(jié)果顯示為正常,同時未出現(xiàn)明顯的不適,此時一般可排除異位妊娠。不過需注意,通過癥狀判斷是否存在異位妊娠通常準確率并不高,為了結(jié)果的準確性,建議到醫(yī)院進行二維B超檢查來判斷比較好。
妊娠期間,女性應定期到醫(yī)院進行檢查,如果出現(xiàn)異位妊娠的情況,需在醫(yī)生的指導下通過手術(shù)方式終止妊娠,以免傷害身體。
分享到微信朋友圈
×
用微信“掃一掃”圖中二維碼,
即可把視頻分享給您的微信好友或朋友圈。
'
}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;
}
}