設萬維讀者為首頁 廣告服務 技術服務 聯繫我們 關於萬維
簡體 繁體 手機版
分類廣告
版主:納川
萬維讀者網 > 天下論壇 > 帖子
中國精英掀移民潮:海外"愛國"的多了,卻炕了國內
送交者: xm 2010年07月12日11:20:44 於 [天下論壇] 發送悄悄話
中國精英移民潮引發思考 專家稱系追求安全感(圖)(1)
2010-07-12 14:39:09 新華網 【大 中 小】 查看評論
//function Marquee() // //{ // // this.ID = document.getElementById(arguments[0]); // // if(!this.ID) // // { // // this.ID = -1; // // return; // // } // // this.Direction = this.Width = this.Height = this.DelayTime = this.WaitTime = this.Correct = this.CTL = this.StartID = this.Stop = this.MouseOver = 0; // // this.Step = 1; // // this.Timer = 30; // // this.DirectionArray = {"top":0 , "bottom":1 , "left":2 , "right":3}; // // if(typeof arguments[1] == "number" || typeof arguments[1] == "string")this.Direction = arguments[1]; // // if(typeof arguments[2] == "number")this.Step = arguments[2]; // // if(typeof arguments[3] == "number")this.Width = arguments[3]; // // if(typeof arguments[4] == "number")this.Height = arguments[4]; // // if(typeof arguments[5] == "number")this.Timer = arguments[5]; // // if(typeof arguments[6] == "number")this.DelayTime = arguments[6]; // // if(typeof arguments[7] == "number")this.WaitTime = arguments[7]; // // if(typeof arguments[8] == "number")this.ScrollStep = arguments[8] // // this.ID.style.overflow = this.ID.style.overflowX = this.ID.style.overflowY = "hidden"; // // this.ID.noWrap = true; // // this.IsNotOpera = (navigator.userAgent.toLowerCase().indexOf("opera") == -1); // // if(arguments.length >= 7)this.Start(); // //} // // // // // //Marquee.prototype.Start = function() // //{ // // if(this.ID == -1)return; // // if(this.WaitTime < 800)this.WaitTime = 800; // // if(this.Timer < 20)this.Timer = 20; // // if(this.Width == 0)this.Width = parseInt(this.ID.style.width); // // if(this.Height == 0)this.Height = parseInt(this.ID.style.height); // // if(typeof this.Direction == "string")this.Direction = this.DirectionArray[this.Direction.toString().toLowerCase()]; // // this.HalfWidth = Math.round(this.Width / 2); // // this.HalfHeight = Math.round(this.Height / 2); // // this.BakStep = this.Step; // // this.ID.style.width = this.Width + "px"; // // this.ID.style.height = this.Height + "px"; // // if(typeof this.ScrollStep != "number")this.ScrollStep = this.Direction > 1 ? this.Width : this.Height; // // var msobj = this; // // var timer = this.Timer; // // var delaytime = this.DelayTime; // // var waittime = this.WaitTime; // // msobj.StartID = function(){msobj.Scroll()} // // msobj.Continue = function() // // { // // if(msobj.MouseOver == 1) // // { // // setTimeout(msobj.Continue,delaytime); // // } // // else // // { clearInterval(msobj.TimerID); // // msobj.CTL = msobj.Stop = 0; // // msobj.TimerID = setInterval(msobj.StartID,timer); // // } // // } // // // // msobj.Pause = function() // // { // // msobj.Stop = 1; // // clearInterval(msobj.TimerID); // // setTimeout(msobj.Continue,delaytime); // // } // // // // msobj.Begin = function() // // { // // msobj.ClientScroll = msobj.Direction > 1 ? msobj.ID.scrollWidth : msobj.ID.scrollHeight; // // if((msobj.Direction <= 1 && msobj.ClientScroll <= msobj.Height + msobj.Step) || (msobj.Direction > 1 && msobj.ClientScroll 1) // // { // // var event = event || window.event; // // if(window.event) // // { // // if(msobj.IsNotOpera) // // { // // msobj.EventLeft = event.srcElement.id == msobj.ID.id ? event.offsetX - msobj.ID.scrollLeft : event.srcElement.offsetLeft - msobj.ID.scrollLeft + event.offsetX; // // } // // else // // { // // msobj.ScrollStep = null; // // return; // // } // // } // // else // // { // // msobj.EventLeft = event.layerX - msobj.ID.scrollLeft; // // } // // msobj.Direction = msobj.EventLeft > msobj.HalfWidth ? 3 : 2; // // msobj.AbsCenter = Math.abs(msobj.HalfWidth - msobj.EventLeft); // // msobj.Step = Math.round(msobj.AbsCenter * (msobj.BakStep*2) / msobj.HalfWidth); // // } // // } // // msobj.ID.onmouseover = function() // // { // // if(msobj.ScrollStep == 0)return; // // msobj.MouseOver = 1; // // clearInterval(msobj.TimerID); // // } // // msobj.ID.onmouseout = function() // // { // // if(msobj.ScrollStep == 0) // // // // { // // if(msobj.Step == 0)msobj.Step = 1; // // return; // // } // // msobj.MouseOver = 0; // // if(msobj.Stop == 0) // // { // // clearInterval(msobj.TimerID); // // msobj.TimerID = setInterval(msobj.StartID,timer); // // } // // } // // } // // setTimeout(msobj.Begin,waittime); // //} // // // //Marquee.prototype.Scroll = function() // //{ // // switch(this.Direction) // // { // // case 0: // // this.CTL += this.Step; // // if(this.CTL >= this.ScrollStep && this.DelayTime > 0) // // { // // this.ID.scrollTop += this.ScrollStep + this.Step - this.CTL; // // this.Pause(); // // return; // // } // // else // // { // // if(this.ID.scrollTop >= this.ClientScroll) // // { // // this.ID.scrollTop -= this.ClientScroll; // // } // // this.ID.scrollTop += this.Step; // // } // // break; // // // // case 1: // // this.CTL += this.Step; // // if(this.CTL >= this.ScrollStep && this.DelayTime > 0) // // { // // this.ID.scrollTop -= this.ScrollStep + this.Step - this.CTL; // // this.Pause(); // // return; // // } // // else // // { // // if(this.ID.scrollTop <= 0) // // { // // this.ID.scrollTop += this.ClientScroll; // // } // // this.ID.scrollTop -= this.Step; // // } // // break; // // // // case 2: // // this.CTL += this.Step; // // if(this.CTL >= this.ScrollStep && this.DelayTime > 0) // // { // // this.ID.scrollLeft += this.ScrollStep + this.Step - this.CTL; // // this.Pause(); // // return; // // } // // else // // { // // if(this.ID.scrollLeft >= this.ClientScroll) // // { // // this.ID.scrollLeft -= this.ClientScroll; // // } // // this.ID.scrollLeft += this.Step; // // } // // break; // // // // case 3: // // this.CTL += this.Step; // // if(this.CTL >= this.ScrollStep && this.DelayTime > 0) // // { // // this.ID.scrollLeft -= this.ScrollStep + this.Step - this.CTL; // // this.Pause(); // // return; // // } // // else // // { // // if(this.ID.scrollLeft <= 0) // // { // // this.ID.scrollLeft += this.ClientScroll; // // } // // this.ID.scrollLeft -= this.Step; // // } // // break; // // } // //}
//new Marquee("EndPageRollText",0,1,536,25,30,3000,3000,25)
screen.width || height>screen.height){ options += ",scrollbars=yes"; }else{ options+= ",scrollbars=no"; } //alert(width+">>"+height); //return false; new_window = window.open(url, name, options); window.self.name = "main"; new_window.focus(); } //-->

中國精英移民潮引發思考 專家稱系追求安全感(圖)

    在美國媒體 近日推出的“失敗國家”指標中,“人才流失”被作為其中最重要的一項單獨列出。

    2010年6月,中國頒布了《國家中長期人才發展規 劃綱要(2010-2020年)》,提出到2020年,人才發展要進入世界人才強國行列。而另一方面,卻是以新富階層為代表的精英群體正在集中出走。當鞏 俐們身後的隱性移民群體愈發龐大,我們便忍不住關心這些人的離開,並追問,他們為何離開?

    儘管眼下看來,所謂人才流失以及由此引發 的對中國巨額資金逃離的擔憂,還只是“少數派報告”。但當越來越多的社會精英走出國門,成為另一片國土上創造價值的中堅時,卻傳遞給了我們不能忽視的信號 ——這也是進入新世紀第二個十年的中國應有的警醒。

    別了,祖國

    《國際先 驅導報》記者楊梅菊發自北京

    北京日照當頭,多倫多已是深夜。

    魯萬萌安頓兒子睡下,並為自己在當地汽車公司謀 得的新差事做好工作計劃後,採訪得以進行。

    魯萬萌笑言,自己的移民史幾乎就是一部血淚史。6年前,家境優裕的她為了追隨丈夫,從二 線城市一家相當不錯的國企跳進北京某外企,來到北京後卻發現,這裡並非理想的安居地,而移民國外幾乎是身邊所有同事的首選,這顯然刺激了魯萬萌。在和丈夫 達成一致後,他們先是嘗試技術移民,卻因丈夫的環節一再出現問題而宣告放棄,後在移民公司的勸說和運作下,耗盡大半積蓄,成為所有投資移民中“最窮的一批 人”,並且,在這個過程中,她極有可能“已經失去了自己的婚姻”。儘管在說辭上,丈夫將於半年後來到多倫多。

    “你後悔嗎?”

    “曾 經有過,但現在不會,以後也不會了。”回答前,魯萬萌略有停頓,一旦開口,卻無絲毫遲疑。

    此刻的多倫多,比北京涼爽,魯萬萌說她坐 在自己的新家裡,心裡有說不出的平靜,或者還有隱隱的失落。“在這裡,我們是徹徹底底的普通人,不再有曾經國內的光鮮。”

    “錢可以 再掙,內心的寧靜和幸福感卻是無價的。”令魯萬萌一家苦苦掙扎6年的,正是這種對於所謂內心安全感的追逐。

    中國精 英蜂擁美加澳

    也許,魯萬萌只是這一波移民大潮中最為平常的一個。

    北京因私出境中介機構協 會的最新統計數據便能夠說明問題:2009年到美國投資移民的EB-5類簽證的中國申報人數已經翻了一番,從2008年的500人上升到超過1000人。 同時,近十年申請各國技術移民的數量與投資移民相比,大約為20∶1。美國國務院公布的數據則顯示,2010年財政年度獲批的EB-5類簽證移民總數還將 大幅增長,而中國申請人在其中所占的比重將可能提高至70%左右。

    而對於另一熱門國度加拿大而言,儘管2009年曾有媒體稱中國移 民加拿大出現低潮,但該國移民局提供的關於投資移民的數據,卻給出另外一個結論:去年,加拿大吸收全球投資移民目標數為2055名,中國占了1000人, 而僅魁北克移民局審理的投資移民,中國申請人就占據了七成。

    澳大利亞同樣“高燒不退”,根據今年1月澳洲統計局(ABS)公布的最 新數字,中國大陸出生人口的移民比例,從2009年8月至10月間的連續三個月,一直問鼎澳洲抵境“報到”移民人數榜首,超過傳統的英國和新西蘭,甚至後 來居上的印度。自2009年7月至今年1月,中國大陸移民澳洲的人數約為7800名。

    2007年,中國社科院發布的《全球政治與安 全》報告顯示,中國已成為世界上最大的移民輸出國。今年6月16日,國務院僑辦宣布,中國外海僑胞的數量已超過4500萬,絕對數量穩居世界第一。

0%(0)
0%(0)
標 題 (必選項):
內 容 (選填項):
實用資訊
回國機票$360起 | 商務艙省$200 | 全球最佳航空公司出爐:海航獲五星
海外華人福利!在線看陳建斌《三叉戟》熱血歸回 豪情築夢 高清免費看 無地區限制
一周點擊熱帖 更多>>
一周回復熱帖
歷史上的今天:回復熱帖
2009: deliver: 談談溫家寶為什麼捧季羨林的
2009: 2008西藏暴亂,2009新疆暴亂,是外患?還
2008: 蘆笛:更正與道歉
2008: 誰能幫我簡單敘述一下Lesson跟老毛有和
2006: 少來"滿嘴的仁義道德" -- 駁
2006: 為什麼“經濟陷於崩潰”的毛澤東時期建
2005: 袁崇煥的頭顱(民心的反噬)
2005: 日本文明史(二) 風土與原始宗教思想 鈴