paper.udn.com
Open in
urlscan Pro
152.199.22.66
Public Scan
URL:
https://paper.udn.com/papers.php?pname=POI0020
Submission Tags: falconsandbox
Submission: On February 23 via api from US — Scanned from DE
Submission Tags: falconsandbox
Submission: On February 23 via api from US — Scanned from DE
Form analysis
2 forms found in the DOMName: sform1 — GET search.php
<form action="search.php" method="get" name="sform1" id="sform1">
<input onmouseover="this.focus()" id="search_kw" onclick="this.value='';" value="請輸入報名或關鍵字" name="q" type="text"><a href="javascript:chkform()" id="search_submit"></a>
</form>
Name: paperForm — POST ./modify.php
<form id="paperForm" name="paperForm" method="post" action="./modify.php" onsubmit="return check();">
<input type="hidden" name="pkgInput[]" value="POI0020">
<div id="wrapper">
<div id="content">
<!--路徑-->
<div id="path"><a href="http://udn.com">udn</a> / <a href="index.php">聯合電子報</a> / 報別簡介</div>
<!-- 跑馬燈 -->
<script type="text/javascript">
<!--
/****************************************
顯示隱藏圖層 style_display
****************************************/
function style_display_on(idx) {
document.getElementById(idx).style.display = "block";
}
function style_display_off(idx) {
document.getElementById(idx).style.display = "none";
}
// End
-->
</script>
<script type="text/javascript">
/* 自訂連結 */
/*Example message arrays for the two demo scrollers*/
var pausecontent2 = new Array()
pausecontent2[0] = '<dl><dt><a href="http://paper.udn.com/udnpaper/POH0046/329222/web/" target="_blank">【FIND科技報】AI披白袍,AI成為醫療界的新寵兒</a></dt></dl>';
pausecontent2[1] = '<dl><dt><a href="http://paper.udn.com/udnpaper/PIE0004/329172/web/" target="_blank">【旅遊玩家電子報】台南又將多一處文創基地 你一定猜不到在哪</a></dt></dl>';
pausecontent2[2] = '<dl><dt><a href="http://paper.udn.com/udnpaper/PIC0006/329110/web/" target="_blank">【愛書人電子報】作伴/純真的最後一哩路上,誰曾經勇敢承諾?</a></dt></dl>';
pausecontent2[3] = '<dl><dt><a href="http://paper.udn.com/udnpaper/PID0001/329252/web/" target="_blank">【聯合電子報】美國考慮派航母穿台海? 薛瑞福:美方有權這麼做</a></dt></dl>';
pausecontent2[4] = '<dl><dt><a href="http://paper.udn.com/udnpaper/PID0026/329251/web/" target="_blank">【台灣百寶鄉電子報】嘉義、澎湖城隍爺締盟 太平雲梯「山海會香」</a></dt></dl>';
pausecontent2[5] = '<dl><dt><a href="http://paper.udn.com/udnpaper/PID0020/329250/web/" target="_blank">【udn雲嘉南新聞】「農萊陣線」翻轉農業 今年業績挑戰4億</a></dt></dl>';
pausecontent2[6] = '<dl><dt><a href="http://paper.udn.com/udnpaper/PIA0028/329244/web/" target="_blank">【udn兩岸財經報】人民幣貶破6.7 探一年低點</a></dt></dl>';
pausecontent2[7] = '<dl><dt><a href="http://paper.udn.com/udnpaper/PID0019/329249/web/" target="_blank">【udn中彰投新聞】老樹伴書院美景成追憶 80年椰子樹砍到只剩樹頭</a></dt></dl>';
pausecontent2[8] = '<dl><dt><a href="http://paper.udn.com/udnpaper/PID0006/329240/web/" target="_blank">【udn國際新聞報】情報總監嗆辭職?川普認錯滅火:俄干預大選</a></dt></dl>';
pausecontent2[9] = '<dl><dt><a href="http://paper.udn.com/udnpaper/PIE0007/329239/web/" target="_blank">【星新聞電子報】驚!郭書瑤生日PO戒指照「放閃」 甜喊:我願意!</a></dt></dl>';
/* 以下勿動 */
/***********************************************
* Pausing up-down scroller- c Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
function pausescroller(content, divId, divClass, delay) {
this.content = content //message array content
this.tickerid = divId //ID of ticker div to display information
this.delay = delay //Delay between msg change, in miliseconds.
this.mouseoverBol = 0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is)
this.hiddendivpointer = 1 //index of message array for hidden div
document.write('<div id="' + divId + '" class="' + divClass + '" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="' + divId + '1">' + content[0] +
'</div><div class="innerDiv" style="position: absolute; width: 100%; display: none" id="' + divId + '2">' + content[1] + '</div></div>')
var scrollerinstance = this
if (window.addEventListener) //run onload in DOM2 browsers
window.addEventListener("load", function() {
scrollerinstance.initialize()
}, false)
else if (window.attachEvent) //run onload in IE5.5+
window.attachEvent("onload", function() {
scrollerinstance.initialize()
})
else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec
setTimeout(function() {
scrollerinstance.initialize()
}, 500)
}
// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------
pausescroller.prototype.initialize = function() {
this.tickerdiv = document.getElementById(this.tickerid)
this.visiblediv = document.getElementById(this.tickerid + "1")
this.hiddendiv = document.getElementById(this.tickerid + "2")
this.visibledivtop = parseInt(pausescroller.getCSSpadding(this.tickerdiv))
//set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)
this.visiblediv.style.width = this.hiddendiv.style.width = this.tickerdiv.offsetWidth - (this.visibledivtop * 2) + "px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.display = "block"
var scrollerinstance = this
document.getElementById(this.tickerid).onmouseover = function() {
scrollerinstance.mouseoverBol = 1
}
document.getElementById(this.tickerid).onmouseout = function() {
scrollerinstance.mouseoverBol = 0
}
if (window.attachEvent) //Clean up loose references in IE
window.attachEvent("onunload", function() {
scrollerinstance.tickerdiv.onmouseover = scrollerinstance.tickerdiv.onmouseout = null
})
setTimeout(function() {
scrollerinstance.animateup()
}, this.delay)
}
// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------
pausescroller.prototype.animateup = function() {
var scrollerinstance = this
if (parseInt(this.hiddendiv.style.top) > (this.visibledivtop + 5)) {
this.visiblediv.style.top = parseInt(this.visiblediv.style.top) - 5 + "px"
this.hiddendiv.style.top = parseInt(this.hiddendiv.style.top) - 5 + "px"
setTimeout(function() {
scrollerinstance.animateup()
}, 50)
} else {
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function() {
scrollerinstance.setmessage()
}, this.delay)
}
}
// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------
pausescroller.prototype.swapdivs = function() {
var tempcontainer = this.visiblediv
this.visiblediv = this.hiddendiv
this.hiddendiv = tempcontainer
}
pausescroller.prototype.getinline = function(div1, div2) {
div1.style.top = this.visibledivtop + "px"
div2.style.top = Math.max(div1.parentNode.offsetHeight, div1.offsetHeight) + "px"
}
// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------
pausescroller.prototype.setmessage = function() {
var scrollerinstance = this
if (this.mouseoverBol == 1) //if mouse is currently over scoller, do nothing (pause it)
setTimeout(function() {
scrollerinstance.setmessage()
}, 100)
else {
var i = this.hiddendivpointer
var ceiling = this.content.length
this.hiddendivpointer = (i + 1 > ceiling - 1) ? 0 : i + 1
this.hiddendiv.innerHTML = this.content[this.hiddendivpointer]
this.animateup()
}
}
pausescroller.getCSSpadding = function(tickerobj) { //get CSS padding value, if any
if (tickerobj.currentStyle) return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) //if DOM2
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else return 0
}
</script>
<script type="text/javascript">
function MM_findObj(n, d) { //v4.01
var p, i, x;
if (!d) d = document;
if ((p = n.indexOf("?")) > 0 && parent.frames.length) {
d = parent.frames[n.substring(p + 1)].document;
n = n.substring(0, p);
}
if (!(x = d[n]) && d.all) x = d.all[n];
for (i = 0; !x && i < d.forms.length; i++) x = d.forms[i][n];
for (i = 0; !x && d.layers && i < d.layers.length; i++) x = MM_findObj(n, d.layers[i].document);
if (!x && d.getElementById) x = d.getElementById(n);
return x;
}
function MM_showHideLayers() { //v6.0
var i, p, v, obj, args = MM_showHideLayers.arguments;
for (i = 0; i < (args.length - 2); i += 3)
if ((obj = MM_findObj(args[i])) != null) {
v = args[i + 2];
if (obj.style) {
obj = obj.style;
v = (v == 'show') ? 'visible' : (v == 'hide') ? 'hidden' : v;
}
obj.visibility = v;
}
}
</script>
<div id="pscrolls">
<div id="eventmore">
<div id="event_head">最新出刊<span>|</span></div>
<dl>
<dt><a href="http://paper.udn.com/udnpaper/POH0046/329222/web/" target="_blank">【FIND科技報】AI披白袍,AI成為醫療界的新寵兒</a></dt>
<dt><a href="http://paper.udn.com/udnpaper/PIE0004/329172/web/" target="_blank">【旅遊玩家電子報】台南又將多一處文創基地 你一定猜不到在哪</a></dt>
<dt><a href="http://paper.udn.com/udnpaper/PIC0006/329110/web/" target="_blank">【愛書人電子報】作伴/純真的最後一哩路上,誰曾經勇敢承諾?</a></dt>
<dt><a href="http://paper.udn.com/udnpaper/PID0001/329252/web/" target="_blank">【聯合電子報】美國考慮派航母穿台海? 薛瑞福:美方有權這麼做</a></dt>
<dt><a href="http://paper.udn.com/udnpaper/PID0026/329251/web/" target="_blank">【台灣百寶鄉電子報】嘉義、澎湖城隍爺締盟 太平雲梯「山海會香」</a></dt>
<dt><a href="http://paper.udn.com/udnpaper/PID0020/329250/web/" target="_blank">【udn雲嘉南新聞】「農萊陣線」翻轉農業 今年業績挑戰4億</a></dt>
<dt><a href="http://paper.udn.com/udnpaper/PIA0028/329244/web/" target="_blank">【udn兩岸財經報】人民幣貶破6.7 探一年低點</a></dt>
<dt><a href="http://paper.udn.com/udnpaper/PID0019/329249/web/" target="_blank">【udn中彰投新聞】老樹伴書院美景成追憶 80年椰子樹砍到只剩樹頭</a></dt>
<dt><a href="http://paper.udn.com/udnpaper/PID0006/329240/web/" target="_blank">【udn國際新聞報】情報總監嗆辭職?川普認錯滅火:俄干預大選</a></dt>
<dt><a href="http://paper.udn.com/udnpaper/PIE0007/329239/web/" target="_blank">【星新聞電子報】驚!郭書瑤生日PO戒指照「放閃」 甜喊:我願意!</a></dt>
</dl>
<a href="javascript:;" onclick="style_display_off('eventmore');MM_showHideLayers('event','','show');MM_showHideLayers('pscroller2','','show')" class="btn_close">close</a>
<!--<a href="javascript:;" onClick="style_display_off('eventmore');style_display_on('event');style_display_on('pscroller2')" class="btn_close">close</a>-->
</div>
<div id="event">
<div id="event_head">最新出刊<span>|</span></div>
<script type="text/javascript">
//new pausescroller(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds)
new pausescroller(pausecontent2, "pscroller", "someclass", 3000)
</script>
<div id="pscroller" class="someclass" style="position: relative; overflow: hidden">
<div class="innerDiv" style="position: absolute; width: 663px; top: 0px;" id="pscroller1">
<dl>
<dt><a href="http://paper.udn.com/udnpaper/POH0046/329222/web/" target="_blank">【FIND科技報】AI披白袍,AI成為醫療界的新寵兒</a></dt>
</dl>
</div>
<div class="innerDiv" style="position: absolute; width: 663px; display: block; top: 23px;" id="pscroller2">
<dl>
<dt><a href="http://paper.udn.com/udnpaper/PIE0004/329172/web/" target="_blank">【旅遊玩家電子報】台南又將多一處文創基地 你一定猜不到在哪</a></dt>
</dl>
</div>
</div>
<a href="javascript:;" onclick="style_display_on('eventmore');MM_showHideLayers('event','','hide');MM_showHideLayers('pscroller2','','hide')" class="btn_open">more</a>
<!-- <a href="javascript:;" onClick="style_display_on('eventmore');style_display_off('event');style_display_off('pscroller2')" class="btn_open">more</a>-->
</div>
</div>
<!-- 跑馬燈結束 -->
<!--報別簡介-->
<div id="intro_box">
<h2>
<div id="fb"><a href="javascript:addFacebook();" title="facebook">分享至facebook</a></div> 報別簡介
</h2>
<div id="cover_photo"><img src="http://pgw.udn.com.tw/gw/photo.php?u=http%3A%2F%2F210.243.166.66%2FUDN%2Fpimage%3Fkey%3DPOI0020&w=360&h=450&b=Y" width="360" height="450"></div>
<div id="intro">
<ul>
<li>報名:carol的私房教養</li>
<li>格式:圖文/線上閱讀版</li>
<li>發報頻率:每月第二、四周的周四</li>
<li>內容提供:<a href="http://www.olbook.com.tw/" target="_blank">大穎文化、奧林文化</a></li>
<li>單元簡介: <p>親子專家兼童書總編的carol,透過【carol的私房教養】記錄與孩子一同成長的心得,及她和兩個可愛寶貝間的親蜜互動。透過簡單易懂的文字,carol不談長篇大道理把她的想法和作法落實在生活中,而其真誠樸實的文字更是打動許多身為人母的讀者。</p>
<p><br> 誠摯地邀請您一起加入【carol的私房教養】,並期許每個孩子都能在父母的用心、愛心和耐心下,平安健康的快樂長大。</p>
</li>
</ul>
</div>
</div>
<!--歷史報份-->
<a name="ph"></a>
<div id="history_box">
<h2>歷史報份</h2>
<div class="history_list">
<ul>
<li class="subject_title">電子報主旨</li>
<li class="date_title">日期</li>
</ul>
</div>
<div class="history_list">
<ul>
<li class="subject"><a class="iframe cboxElement" href="https://paper.udn.com/udnpaper/POI0020/379035/web/">教養的堅持 在時光裡顯影</a></li>
<li class="date">2022-09-22</li>
</ul>
</div>
<div class="history_list">
<ul>
<li class="subject"><a class="iframe cboxElement" href="https://paper.udn.com/udnpaper/POI0020/375489/web/">母親節,快樂💕</a></li>
<li class="date">2022-05-12</li>
</ul>
</div>
<div class="history_list">
<ul>
<li class="subject"><a class="iframe cboxElement" href="https://paper.udn.com/udnpaper/POI0020/374886/web/">時間的痕跡,生活的紀念</a></li>
<li class="date">2022-04-21</li>
</ul>
</div>
<div class="history_list">
<ul>
<li class="subject"><a class="iframe cboxElement" href="https://paper.udn.com/udnpaper/POI0020/374129/web/">媽媽的關心與擔心</a></li>
<li class="date">2022-03-24</li>
</ul>
</div>
<div class="history_list">
<ul>
<li class="subject"><a class="iframe cboxElement" href="https://paper.udn.com/udnpaper/POI0020/373672/web/">旅行的意義</a></li>
<li class="date">2022-03-10</li>
</ul>
</div>
<div class="history_list">
<ul>
<li class="subject"><a class="iframe cboxElement" href="https://paper.udn.com/udnpaper/POI0020/373231/web/">在對話中,找到我和孩子的默契頻率</a></li>
<li class="date">2022-02-24</li>
</ul>
</div>
<div class="history_list">
<ul>
<li class="subject"><a class="iframe cboxElement" href="https://paper.udn.com/udnpaper/POI0020/372802/web/">不嫌麻煩的儀式感,讓我們共度的記憶更溫暖</a></li>
<li class="date">2022-02-10</li>
</ul>
</div>
<div class="history_list">
<ul>
<li class="subject"><a class="iframe cboxElement" href="https://paper.udn.com/udnpaper/POI0020/372648/web/">與世界同行的步伐,由我自己配速:人群相談的游刃有餘,孤獨自處的怡然自得</a></li>
<li class="date">2022-01-27</li>
</ul>
</div>
<div class="history_list">
<ul>
<li class="subject"><a class="iframe cboxElement" href="https://paper.udn.com/udnpaper/POI0020/371936/web/">2022。新年快樂、平安。大家。</a></li>
<li class="date">2022-01-06</li>
</ul>
</div>
<div class="history_list">
<ul>
<li class="subject"><a class="iframe cboxElement" href="https://paper.udn.com/udnpaper/POI0020/371409/web/">當那個愛聽故事的孩子長大了以後……</a></li>
<li class="date">2021-12-23</li>
</ul>
</div>
<!--頁碼-->
<script>
function goPage(toPage) {
var tmp = document.URL;
if (tmp.indexOf("?") != -1) {
var url = tmp.split("?", 1);
var param = tmp.split("?");
if (param[1].indexOf("&") != -1) {
var param2 = param[1].split("&");
document.location = url + '?' + param2[0] + '&page=' + toPage + '#ph';
} else {
url = tmp;
document.location = url + '&page=' + toPage + '#ph';
}
} else {
var url = tmp;
document.location = url + '?pname=&page=' + toPage + '#ph';
}
}
</script>
<div class="quotes">
<span class="disabled"> < 上一頁</span>
<span class="current">1</span>
<a href="javascript:goPage(2);">2</a>
<a href="javascript:goPage(3);">3</a>
<a href="javascript:goPage(4);">4</a>
<a href="javascript:goPage(5);">5</a>
<a href="javascript:goPage(6);">6</a>
<a href="javascript:goPage(7);">7</a> ...<a href="javascript:goPage(28);">28</a>
<a href="javascript:goPage(2);">下一頁 > </a>
</div>
<!--頁碼-->
</div>
</div>
<script>
$(function() {
$("div#history_box > div.history_list > ul > li.subject > a").each(function() {
$(this).bind("click", function() {
var link = $(this).attr("href");
var title = $(this).html();
$("#cboxTitle").remove();
//$("#cboxClose").before("<div id=\"cboxTitle\" style=\"display:block;float:left;margin-left:530px;color:#FFFFFF\"><div style=\"float:right\"><input type=\"button\" id=\"copyUrl\" value=\"另開視窗\" onClick=\"copyUrl('"+link+"');\"></div> <div id=\"fb2\" style=\"float:right;\" onClick=\"javascript:addFacebook2('"+link+"','"+title+"');\"></div></div>");
$("#cboxClose").before(
"<div id=\"cboxTitle\" style=\"width:900px;height:37px;display:block;float:left;margin-left:0px;color:#FFFFFF;background-image:url('images/870_37.png')\"><div style=\"margin-top:6px;margin-left:760px\"><input type=\"button\" id=\"copyUrl\" value=\"另開視窗\" onClick=\"copyUrl('" +
link + "');\"></div> <div id=\"fb2\" style=\"margin-top:-44px;margin-left:710px;\" onClick=\"javascript:addFacebook2('" + link + "','" + title + "');\"></div></div>");
$("#cboxTitle").css("margin-top", "-10px");
$("#fb2").css("width", "40px");
$("#copyUrl").css({
"font-size": '13px',
"font-family": "Arial,sans-serif",
"height": "24px",
"border-style": "solid",
"border-color": "#DDDDDD",
"border-width": "1px"
});
$("#cboxClose").css({
"margin-top": "-35px",
"left": "835px"
});
});
});
});
function copyUrl(url) {
window.open(url, 'newwindow', 'height=1024, width=1280, top=0, left=0, scrollbars=yes')
/*
if($.browser.msie) {
copy2(url);
}
else {
copy1(url);
}
*/
}
function copy1(url) {
$("#copyUrl").zclip({
path: 'js/ZeroClipboard.swf',
copy: url
});
}
function copy2(url) {
if (window.clipboardData) {
window.clipboardData.setData("Text", url);
} else if (window.netscape) {
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
var clip = Components.classes['@mozilla.org/widget/clipboard;1'].createInstance(Components.interfaces.nsIClipboard);
if (!clip) return;
var trans = Components.classes['@mozilla.org/widget/transferable;1'].createInstance(Components.interfaces.nsITransferable);
if (!trans) return;
trans.addDataFlavor('text/unicode');
var str = new Object();
var len = new Object();
var str = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString);
var copytext = url;
str.data = copytext;
trans.setTransferData("text/unicode", str, copytext.length * 2);
var clipid = Components.interfaces.nsIClipboard;
if (!clip) return false;
clip.setData(trans, null, clipid.kGlobalClipboard);
}
alert("已成功複製到剪貼簿內\n\n" + url);
return false;
}
</script>
<!--右邊欄位-->
<div id="side_bar">
<!--直接訂閱-->
<div class="right_box_1">
<h3>直接訂閱</h3>
<div id="admin">
<p>
<input gtbfieldid="1" name="p_email" class="percent" onfocus="this.value=""" value="請輸入您的e-mail" maxlength="60">
</p>
<!--
<p><input type="text" name="verification_session" id="verification_session" size="8" onfocus="this.value=""" value="檢核碼" class="percent_1" ><img id="rand_img" style="vertical-align:middle" src="images/image_code.png">
<input name="imageField" type="image" id="reloadCheckCode" value="重新產生" src="images/reload_1.png" title="重新產生"></p>
-->
<p><input type="text" name="verification_session" id="verification_session" size="8" onfocus="this.value=""" value="檢核碼" class="percent_1"><img id="rand_img" style="vertical-align:middle" src="./verifycode.php">
<!--<input type="button" id="reloadCheckCode" value="換一組" />--><img id="reloadCheckCode" src="images/reload_1.png" title="重新產生"></p>
<p> <input type="submit" name="submit" value="確定" class="send"></p>
</div>
</div>
<!--聲明區-->
<div class="right_box_2">
<ul>
<li>本站保留調整各電子報出刊頻率之權利。</li>
<li>訂戶除收到您所訂閱之電子報外,系統將定期或不定期額外寄送「聯合電子報訂戶專刊」至您的電子信箱。</li>
<li>其它事項請參閱我們的「<a href="http://www.udngroup.com/members/udn_privacy" target="_blank">隱私權聲明</a>」</li>
</ul>
</div>
<!--相關報別-->
<div class="right_box">
<h3>相關報別</h3>
<ul>
<li><a href="./papers.php?pname=POI0017">親子天下電子報 </a></li>
<li><a href="./papers.php?pname=POI0021">媽媽寶寶電子報 </a></li>
<li><a href="./papers.php?pname=POI0022">育兒生活Mombaby Lifestyle </a></li>
<li><a href="./papers.php?pname=POI0032">信誼奇蜜0-3歲育兒報 </a></li>
<li><a href="./papers.php?pname=POI0033">信誼奇蜜4-7歲育兒報 </a></li>
<li><a href="./papers.php?pname=POI0041">嬰兒與母親電子報 </a></li>
</ul>
</div>
</div>
</div>
</form>
Text Content
udn / 聯合電子報 / 報別簡介 最新出刊| 【FIND科技報】AI披白袍,AI成為醫療界的新寵兒 【旅遊玩家電子報】台南又將多一處文創基地 你一定猜不到在哪 【愛書人電子報】作伴/純真的最後一哩路上,誰曾經勇敢承諾? 【聯合電子報】美國考慮派航母穿台海? 薛瑞福:美方有權這麼做 【台灣百寶鄉電子報】嘉義、澎湖城隍爺締盟 太平雲梯「山海會香」 【udn雲嘉南新聞】「農萊陣線」翻轉農業 今年業績挑戰4億 【udn兩岸財經報】人民幣貶破6.7 探一年低點 【udn中彰投新聞】老樹伴書院美景成追憶 80年椰子樹砍到只剩樹頭 【udn國際新聞報】情報總監嗆辭職?川普認錯滅火:俄干預大選 【星新聞電子報】驚!郭書瑤生日PO戒指照「放閃」 甜喊:我願意! close 最新出刊| 【FIND科技報】AI披白袍,AI成為醫療界的新寵兒 【旅遊玩家電子報】台南又將多一處文創基地 你一定猜不到在哪 more 分享至FACEBOOK 報別簡介 * 報名:carol的私房教養 * 格式:圖文/線上閱讀版 * 發報頻率:每月第二、四周的周四 * 內容提供:大穎文化、奧林文化 * 單元簡介: 親子專家兼童書總編的carol,透過【carol的私房教養】記錄與孩子一同成長的心得,及她和兩個可愛寶貝間的親蜜互動。透過簡單易懂的文字,carol不談長篇大道理把她的想法和作法落實在生活中,而其真誠樸實的文字更是打動許多身為人母的讀者。 誠摯地邀請您一起加入【carol的私房教養】,並期許每個孩子都能在父母的用心、愛心和耐心下,平安健康的快樂長大。 歷史報份 * 電子報主旨 * 日期 * 教養的堅持 在時光裡顯影 * 2022-09-22 * 母親節,快樂💕 * 2022-05-12 * 時間的痕跡,生活的紀念 * 2022-04-21 * 媽媽的關心與擔心 * 2022-03-24 * 旅行的意義 * 2022-03-10 * 在對話中,找到我和孩子的默契頻率 * 2022-02-24 * 不嫌麻煩的儀式感,讓我們共度的記憶更溫暖 * 2022-02-10 * 與世界同行的步伐,由我自己配速:人群相談的游刃有餘,孤獨自處的怡然自得 * 2022-01-27 * 2022。新年快樂、平安。大家。 * 2022-01-06 * 當那個愛聽故事的孩子長大了以後…… * 2021-12-23 < 上一頁 1 2 3 4 5 6 7 ...28 下一頁 > 直接訂閱 * 本站保留調整各電子報出刊頻率之權利。 * 訂戶除收到您所訂閱之電子報外,系統將定期或不定期額外寄送「聯合電子報訂戶專刊」至您的電子信箱。 * 其它事項請參閱我們的「隱私權聲明」 相關報別 * 親子天下電子報 * 媽媽寶寶電子報 * 育兒生活Mombaby Lifestyle * 信誼奇蜜0-3歲育兒報 * 信誼奇蜜4-7歲育兒報 * 嬰兒與母親電子報 刊登網站廣告︱網站總覽︱FAQ‧客服︱新聞授權︱服務條款‧著作權‧隱私權聲明︱聯合報系︱訂報紙︱關於我們︱招募夥伴 Copyright © 2013 udn.com All Rights Reserved.