99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁精彩閱讀大數(shù)據(jù)曝亞洲女性:愛網(wǎng)購 控制欲 不顧家
大數(shù)據(jù)曝亞洲女性:愛網(wǎng)購 控制欲 不顧家
2014-12-18
收藏

大數(shù)據(jù)曝亞洲女性:愛網(wǎng)購 控制欲 不顧家

12月18日消息,日前,唯品會聯(lián)合經(jīng)濟(jì)學(xué)人智庫聯(lián)合發(fā)布了一份網(wǎng)購調(diào)研報告,通過網(wǎng)購行為,對亞洲女性尤其是中國大陸女性進(jìn)行了畫像??傮w來說,新女性們不僅經(jīng)濟(jì)獨(dú)立自主,還能控制家中財政大權(quán),且并不太顧家。

調(diào)查報告顯示,既有56%的女性喜歡成為獨(dú)立、聰慧的角色,又有54%的女性喜歡被稱為妻子、媽媽或者女朋友。從這個角度看,喜歡獨(dú)立的女性占比要比沉溺關(guān)系的女性多2%,剛剛過半,但是非常抱歉的是,網(wǎng)購時大部分時間是為自己買東西的亞洲女性占比遠(yuǎn)高于這一比例,達(dá)62%,中國大陸女性則高達(dá)74%。

大部分時間為自己買東西的中國大陸女性占比高達(dá)74%

大部分時間為自己買東西的中國大陸女性占比高達(dá)74%

喜歡為自己買東西不重要,重要的是她們還非常有控制權(quán)。報告稱,亞洲女性在家庭開支使用中,對購買服飾、化妝品的話語權(quán)為88%,購買家居用品話語權(quán)85%,休閑旅游84%,連電子產(chǎn)品的購買話語權(quán)都達(dá)到了81%。

最后,中國女性到底有多喜歡網(wǎng)購呢?調(diào)研報告稱,63%亞洲女性至少每天上網(wǎng)瀏覽一次,67%網(wǎng)購比配偶多,49%喜歡網(wǎng)購更甚于實(shí)體店購物。

綜上所述,亞洲女性無疑控制了網(wǎng)購的絕對力量,且比人們想象中更獨(dú)立更愛自己。

數(shù)據(jù)分析咨詢請掃描二維碼

若不方便掃碼,搜微信號:CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機(jī)數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進(jìn)行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個參數(shù)驗(yàn)證碼對象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺檢測極驗(yàn)服務(wù)器是否宕機(jī) new_captcha: data.new_captcha, // 用于宕機(jī)時表示是新驗(yàn)證碼的宕機(jī) product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計時完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }