| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head id="ctl00_header">
- <!-- AppInternalsXpert BMX Integration Begin -->
- <script>
- if(!OPNET_ARXS){
- var OPNET_ARXS={startJS:Number(new Date()),
- clientId:'7496BECC1B8E33C4',appId:100040,
- collector:'perf.mouser.com',
- collectorHttpPort:80, collectorHttpsPort:443,
- sv:'0302',
- tag1:'', tag2:'', tag3:''};
- (function(){
- var w=window,l=w.addEventListener,m=w.attachEvent,
- d=document,s='script',t='load',o=OPNET_ARXS,
- z='-0b2c4d73f58414c86c7384150be8ca44',
- r=(('https:'===d.location.protocol)?
- 'https://953c27ce3b34cfb8cc56'+z+'.ssl':
- 'http://fb3f316d487bcc59f7ec'+z+'.r88')+
- '.cf1.rackcdn.com/opnet_browsermetrix.c.'+
- (o.ajax?'ajax.js':'js'),p=('onpagehide' in w),e=p?'pageshow':t,
- j=d.createElement(s),x=d.getElementsByTagName(s)[0],
- h=function(y){o.ldJS=new Date();o.per=y?y.persisted:null;},
- i=function(){o.ld=1;};o.cookie=d.cookie;d.cookie=
- '_op_aixPageId=0; path=/; expires='+(new Date(0)).toGMTString();
- o.cookieAfterDelete=d.cookie;j.async=1;j.src=r;
- if(l){l(e,h,false);if(p){l(t,i,false);}}else if(m)
- {m('on'+e,h);if(p){m('on'+t,i);}}
- if(o.sync){d.write('<'+s+' src=\''+r+'\'></'+s+'>');}
- else{x.parentNode.insertBefore(j,x);}
- })();}
- </script>
- <script>if(!OPNET_ARXS_PARAM){var OPNET_ARXS_PARAM={};} OPNET_ARXS_PARAM.pageId = 'a2_507cbf11-37c6-4d21-83d4-e6b7f5801761-35544-369421';</script>
- <!-- AppInternalsXpert BMX Integration End -->
- <title>
- 能量采集模块 | Mouser
- </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应能量采集模块 。Mouser提供能量采集模块 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="能量采集模块" /><meta name="verify-v1" content="bhrmPa5uloYbiuM+lDu4z+y0qUGeKGW5FfFMprQAqlU=" /><meta name="viewport" content="width=1000, initial-scale=1" /><meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
- <!-- BASE STYLE SHEET -->
- <link rel="shortcut icon" href="../../../../favicon.ico" /><link rel="alternate" type="application/rss+xml" title="RSS" href="../../../../rss/rss.xml" />
- <!--[if IE 7]>
- <link rel="stylesheet" type="text/css" href="../../../../css/ie7.css" />
- <![endif]-->
- <!--[if IE 8]>
- <link rel="stylesheet" type="text/css" href="../../../../css/ie8.css" />
- <![endif]-->
- <!--[if IE 9]>
- <link rel="stylesheet" type="text/css" href="../../../../css/ie9.css" />
- <![endif]-->
- <script type="text/javascript">
- function OpenBackordered(URL) {
- var MsgWindow;
- MsgWindow = window.open(URL, "MsgWindow", "scrollbars=1,height=500,width=650,menubar=0,resizable=1");
- }
- </script>
- <script type="text/javascript"> var _gaq = _gaq || [];var pluginUrl ='//www.google-analytics.com/plugins/ga/inpage_linkid.js';_gaq.push(['_require', 'inpage_linkid', pluginUrl]); _gaq.push(['_setAccount', "UA-521079-1"]);_gaq.push(['_setDomainName', "mouser.cn"]);_gaq.push(['_setAllowLinker', true]);_gaq.push(['_setAllowAnchor', true]);_gaq.push(["_setCustomVar",1,"Language","zh-CN",3]);_gaq.push(["_setCustomVar",30,"s35h","M/McqHJyB+ASa7UqHjHDazYZMTpMKIBX9Oc3gpQ+3+k=",2]);_gaq.push(["_setCustomVar",31,"Cart","aff262e0-c865-4006-8940-073f74ade331",2]);
- _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA126AA195",2]);
- _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
- _gaq.push(["_setSiteSpeedSampleRate", 10]);
- _gaq.push(["_trackPageview"]);
- (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
- ga('require', 'ec');
- ga('ec:addImpression', {
- 'id': '582-P2110B',
- 'name': 'Energy Harvesting Modules Powerharvester Receiver - 915 MHz',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Powercast',
- 'variant': 'P2110B',
- 'list': 'Refine',
- 'position': '1'
- });
- ga('ec:addImpression', {
- 'id': '509-PPA-1022',
- 'name': 'Energy Harvesting Modules Piezo Transducer and Energy Harvester',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Mide',
- 'variant': 'PPA-1022',
- 'list': 'Refine',
- 'position': '2'
- });
- ga('ec:addImpression', {
- 'id': '509-PPA-1014',
- 'name': 'Energy Harvesting Modules Piezo Transducer and Energy Harvester',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Mide',
- 'variant': 'PPA-1014',
- 'list': 'Refine',
- 'position': '3'
- });
- ga('ec:addImpression', {
- 'id': '509-PPA-1011',
- 'name': 'Energy Harvesting Modules Piezo Transducer and Energy Harvester',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Mide',
- 'variant': 'PPA-1011',
- 'list': 'Refine',
- 'position': '4'
- });
- ga('ec:addImpression', {
- 'id': '582-P1110',
- 'name': 'Energy Harvesting Modules 23dBm 50mA 902-928MHz 4.2V',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Powercast',
- 'variant': 'P1110',
- 'list': 'Refine',
- 'position': '5'
- });
- ga('ec:addImpression', {
- 'id': '485-500',
- 'name': 'Energy Harvesting Modules Large 6V 3.4W Solar Panel',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Adafruit',
- 'variant': '500',
- 'list': 'Refine',
- 'position': '6'
- });
- ga('ec:addImpression', {
- 'id': '932-MIKROE-651',
- 'name': 'Energy Harvesting Modules SOLAR PANEL 4.0V 100mA 70x65x3.2mm',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'MikroElektronika',
- 'variant': 'MIKROE-651',
- 'list': 'Refine',
- 'position': '7'
- });
- ga('ec:addImpression', {
- 'id': '485-1525',
- 'name': 'Energy Harvesting Modules Huge 6V Solar Panel',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Adafruit',
- 'variant': '1525',
- 'list': 'Refine',
- 'position': '8'
- });
- ga('ec:addImpression', {
- 'id': '509-PPA-1001',
- 'name': 'Energy Harvesting Modules Piezo Transducer and Energy Harvester',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Mide',
- 'variant': 'PPA-1001',
- 'list': 'Refine',
- 'position': '9'
- });
- ga('ec:addImpression', {
- 'id': '585-EH301A',
- 'name': 'Energy Harvesting Modules 3.1V to 5.2V 55mJ 88msec@150mA',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Advanced Linear Devices',
- 'variant': 'EH301A',
- 'list': 'Refine',
- 'position': '10'
- });
- ga('ec:addImpression', {
- 'id': '585-EH300A',
- 'name': 'Energy Harvesting Modules 1.8V to 3.6V 30mJ 75msec@150mA',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Advanced Linear Devices',
- 'variant': 'EH300A',
- 'list': 'Refine',
- 'position': '11'
- });
- ga('ec:addImpression', {
- 'id': '585-EH300',
- 'name': 'Energy Harvesting Modules 1.8V to 3.6V 4.6mJ 68msec@25mA',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Advanced Linear Devices',
- 'variant': 'EH300',
- 'list': 'Refine',
- 'position': '12'
- });
- ga('ec:addImpression', {
- 'id': '485-200',
- 'name': 'Energy Harvesting Modules Medium 6V 2W Solar Panel',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Adafruit',
- 'variant': '200',
- 'list': 'Refine',
- 'position': '13'
- });
- ga('ec:addImpression', {
- 'id': '713-313070004',
- 'name': 'Energy Harvesting Modules 0.5W Solar Panel 55x70',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Seeed Studio',
- 'variant': '313070004',
- 'list': 'Refine',
- 'position': '14'
- });
- ga('ec:addImpression', {
- 'id': '713-313070005',
- 'name': 'Energy Harvesting Modules 1W Solar Panel 80X100',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Seeed Studio',
- 'variant': '313070005',
- 'list': 'Refine',
- 'position': '15'
- });
- ga('ec:addImpression', {
- 'id': '713-313070002',
- 'name': 'Energy Harvesting Modules 1.5W Solar Panel 81X137',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Seeed Studio',
- 'variant': '313070002',
- 'list': 'Refine',
- 'position': '16'
- });
- ga('ec:addImpression', {
- 'id': '713-313070000',
- 'name': 'Energy Harvesting Modules 2.5W Solar Panel 116X160',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Seeed Studio',
- 'variant': '313070000',
- 'list': 'Refine',
- 'position': '17'
- });
- ga('ec:addImpression', {
- 'id': '713-313070003',
- 'name': 'Energy Harvesting Modules 2W Solar Panel 80X180',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Seeed Studio',
- 'variant': '313070003',
- 'list': 'Refine',
- 'position': '18'
- });
- ga('ec:addImpression', {
- 'id': '713-313070001',
- 'name': 'Energy Harvesting Modules 3W Solar Panel 138X160',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Seeed Studio',
- 'variant': '313070001',
- 'list': 'Refine',
- 'position': '19'
- });
- ga('ec:addImpression', {
- 'id': '509-PPA-2014',
- 'name': 'Energy Harvesting Modules Piezo Transducer and Energy Harvester',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Mide',
- 'variant': 'PPA-2014',
- 'list': 'Refine',
- 'position': '20'
- });
- ga('ec:addImpression', {
- 'id': '713-114990057',
- 'name': 'Energy Harvesting Modules 2V 0.5W Thin-film Flexible Solar Panel',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Seeed Studio',
- 'variant': '114990057',
- 'list': 'Refine',
- 'position': '21'
- });
- ga('ec:addImpression', {
- 'id': '713-114990247',
- 'name': 'Energy Harvesting Modules 2.5W CIGS Solar Cloth',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Seeed Studio',
- 'variant': '114990247',
- 'list': 'Refine',
- 'position': '22'
- });
- ga('ec:addImpression', {
- 'id': '713-114990248',
- 'name': 'Energy Harvesting Modules 5W CIGS Solar Cloth',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Seeed Studio',
- 'variant': '114990248',
- 'list': 'Refine',
- 'position': '23'
- });
- ga('ec:addImpression', {
- 'id': '509-PPA-1021',
- 'name': 'Energy Harvesting Modules Piezo Transducer and Energy Harvester',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Mide',
- 'variant': 'PPA-1021',
- 'list': 'Refine',
- 'position': '24'
- });
- ga('ec:addImpression', {
- 'id': '509-PPA-1012',
- 'name': 'Energy Harvesting Modules Piezo Transducer and Energy Harvester',
- 'category': 'Energy Harvesting Modules',
- 'brand': 'Mide',
- 'variant': 'PPA-1012',
- 'list': 'Refine',
- 'position': '25'
- });
- ga('set','dimension1','zh-CN');
- ga('set','dimension30','M/McqHJyB+ASa7UqHjHDazYZMTpMKIBX9Oc3gpQ+3+k=');
- ga('set','dimension31','aff262e0-c865-4006-8940-073f74ade331');
- ga('set','dimension13','163AA125AA126AA195');
- ga('set','metric2',31);
- ga('set','dimension5','Energy Harvesting Modules');
- ga('set','dimension48','8t3zx');
- ga('set','dimension3','Refine');
- ga('set','dimension55','Products');
- ga('send', 'pageview');
- </script>
- <link href="http://www.mouser.cn/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/?No=25" rel="next" content="http://www.mouser.cn/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/?No=25" /><link href="http://www.mouser.cn/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx" rel="canonical" content="http://www.mouser.cn/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx" /><meta http-equiv="content-language" content="zh-cn" /><link href="../../../../css/style.axd?v=3.0.20160304.2&type=css&fileSet=CSS_Base&lang=zh-CN" rel="stylesheet" type="text/css" /><link href="../../../../css/style.axd?v=3.0.20160304.2&fileSet=Css_Search&type=css&lang=zh-CN" rel="stylesheet" type="text/css" /><link rel="alternate" hreflang="es-AR" href="http://ar.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" /><script type="text/javascript" src="/msrxcucubtv.js" defer></script><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#ewcwrcwsvatwfucsreewcwr{display:none!important}</style>
- <script type="text/javascript">
- var w=window;
- if(w.performance||w.mozPerformance||w.msPerformance||w.webkitPerformance){var d=document,AKSB=AKSB||{};AKSB.q=[];AKSB.mark=function(a,b){AKSB.q.push(["mark",a,b||(new Date).getTime()])};AKSB.measure=function(a,b,c){AKSB.q.push(["measure",a,b,c||(new Date).getTime()])};AKSB.done=function(a){AKSB.q.push(["done",a])};AKSB.mark("firstbyte",(new Date).getTime());AKSB.prof={custid:"35125",ustr:"cs",originlat:0,clientrtt:30,ghostip:"182.118.62.140",
- ipv6:false,pct:10,xhrtest:false,clientip:"163.125.126.195",requestid:"6337d61",protocol:"",blver:5,akM:"ca2",akN:"ae",akTT:"O",akTX:"1",akTI:"6337d61",ai:"218298"};(function(a){var b=d.createElement("script");b.async="async";b.src=a;a=d.getElementsByTagName("script");a=a[a.length-1];a.parentNode.insertBefore(b,
- a)})(("https:"===d.location.protocol?"https:":"http:")+"//ds-aksb-a.akamaihd.net/aksb.min.js")};
- </script>
- </head>
- <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
- <script src='../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
- <script src='../../../../flash/js/empty.file.js' type="text/javascript"></script>
- <script src='../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
- <script src='../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
- <script src='../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
- <!--[if lt IE 9]>
- <script src='../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
- <![endif]-->
- <form method="post" action="/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/" id="aspnetForm">
- <div class="aspNetHidden">
- <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
- <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
- <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="zL9U1oomaYqfj5TL9u89v5rC4pQzIHvDb0ZfLFGN0hFkYNaU3Ww071SZLpNYjw98XyjJhqd0O41uJAWZaaoLeeCu5PRrwwmVNf3/3bYcYI5bZ6/HeOqZiWYCeMYWx4kp3+DcgGRegUEJqbOpUevv+CmVuMvKmXxC2ShA1s/SaHobj6PCaSL7ZlFkbVdK/YWgFxSiDgHSgbDIwP6B/7a1+rAs0I4amVUE1IeAtuzB3Ul6EnXMSPE6TeBxs0bjp5Yemjr2cUMV3KYPhcs7vHruTVmcRWRJNCNdWjKFrvaXh1lNDJrz4BNMwrPSw51U8u3uARs3HShAgBJTIwLamDWV0zPTGHJGhUiSG1FJNwa1uRFRgRiAHhtYq9R9t74ANFY2dqr/HAm0wPL/PeSbltY/0BZomn1ef6ZyUwNOCBIpzrwL8KgTfisRYGQk7C/srVwN5tErpdcRzlxZ60Ff7R5yiHaTzlz3FkhKcLUxf/D0Uea1VevgCifHQhqtE92GydqKBEgcuvyXx4fKuGM38IbKB3APhdloXKgF4k2tlg68grLmoIeQdW2NKZlQLjUCH9huC8QPvZ+iBHaS1U+KditO97sZHvotjKMfxiERiVIssOtb/s/yNWKl+fGnllrw0m8dLdaFQP395MMYZwY9XWdFLceDW07fPVI50F6MMvOjNm5eGWtl7mnveJ3iFztCPOBN9wpmYPemvKAwD6Vw7Q9vtZULbW8sqKijzrViUgS0NbltDXyVHyIaNIkh/IEB5HjhL8FBjIdSqVkCFpPlc8Ni3DIsFZy1F340gEt1VmdJPDm5VdthvMte+ENAzt0PxQdPiZXQcwLRR4ytxRiuwFexqANOgK7jDo/FzhwQTcU7toAgvl5cSCdYaXUYCanXYRb1djaZ/hwyevt5aVa24JnXaoPuxA1rW3yUvGM9iwsk6ZF5+hI77macbAHnAAtniAoscKysVS64bcYFpjNOXcpH8hfL3CWJtxVOijaiHqeQfrDrOsyDQTSVe5SaQot4DvcdLwidLS7tpVrzP/xnzIMfe5lwDZzclKqZ2Fmfzt886nxL5Sf4s6XTAzO2Sj+HdAyPU4kVnf6AL11OtWWN/Z72WvctqrNMyfWcoiCX6Dp+FCTozKGW3SA4Mkpa9Xg34GKr68oBdM3T9ieoHpreVYrgB7QaH367u+ba43kPlM3uIxiGVKqkPW+9VHNZa8Awg4rVxVq2bJv/5TwP+RpjJZDwjH9Ea61GKvMhg69leq4QMBFbIDzItMwcyb8vQ2FZ6w9s4v6VmxpuTOxvjclLXQiUWaueh/MCkSgBGbW28dM4np1+fcDfnRTrew8SqbyJqIV0n97LHfoMYtSZX+0nA3AaGRm8ZZy95gkQPflIBVnfhHntMS5cHxojlnsyTDIerKnCELSSw8DownkgcWLQJe2sKgcYenI9SPvvDxtWEhkmUME6wQ7bWDE31W5lZiijly4RdL3yew/poUdTcjAGmiFW8gvADeHDv4nmm1ZcMaaPLM0Yd549wYDbLTmWXy5Qb4AtHHCA7x0iwUPaaJeZfWukhr5bzW9ZIv+m3TXUgg3HZ4Dij6rWqoBn40c98e8tFhWRnXyiHQngMYacG99Cc15eEqI2nkvCCsmQKgayca3TfaXwdbkevtTUdniM3uGa9It1fGE54kHMcUYPtC1IKPg9X+ZMNg3bkBkFGdB9xToVqjxjedSdP4Lz+y/glprU2pDqDCmfAKgbqT/e1i/yWwoZ7zReffEH2OMMSOiv2nKVV/JYZtr9Mq7bDN0hRrYihAxlKVdFzfkffxqY4F0eoxLPkyE5s/myfgsapDkuZyoVg19SIScRX4GyOuEZ1A30VqqWVyG5BLfATccFFN4HMy6RNaTUofJqiX3oyK69Uv6OtWyQdeitPG/UfYaD+uwwfm3eyYMM6MAx7w8/NKV11sG/9lAsOWjo2nPuja1eHWIZpn2xt6Cyq2utrhfyxhe+3b841TWQhPfvUREsncilYtSFaCreP4spF5Lm8da+o/BBArnWN4y+l4TntNGWGzpTn8clxiOtgWnkf/u3YJl81SIlxWGzXMPcMUhrU+TtV92oXsCFyJ3BX9rtS/QV7/UQrTDrsTntzF5FOgYBT0LTx9baD6tZI2OqekYoJVV2mxLUvPY7QRHjNY+KknXDtQQwzyo/O3SN2wPBlDcqCXkQ8qHPYXmWSVLU4JR6UNfVmu8MLdDBMQ6ZajgS0xURJT4aznvxl+b0uis7idj1lsYObhTf9zIOuhr1C1BbzulkMfe9kbWGGiluEqh59Z7YH0qB5sMpwQUf1vKz7A7JAdix1ZUv0vFr4K2FmFEH7feVHQwFU9oYS/GDCwgDDTbtAFXfULslQcse9idKksCBnDh8lH7K5fqLPt2EplSMKIMbl1YeHIkk8CvCX2YgTeBDXnHLrQhUtoxRsmIlcBoV6sybtXA8OpMfm6pJRVC4doE8Qk4eB9febIOMujrTOtJ3boILBq+hAALJkO5EunH5jO9upYzE4Bei5maXyKlEG3B8bIH31xVmEjI9f1m81f+wDWio0tUDWxyAe9UxlMGwa1P8L4W+vxkWGyLc1PYRAT35vljrc/PH99xAJXhJH+vi3zdXRGRK4P03KmHAUPkK71PfThyswNLSGrScgtnJcn7d2aTdMoG0EIx5r4CYNO28uOYhUh/rm5QWMtpNVMWMeRVZvbOy0l1s3jtb9c8XZdU0vwceX6GiVc2WI+pIXDHJRpOhe0xRXwOYtZwL0IOVMv9SDArP0ZGvZzp0BwlyxFLa7851ZJNFYA3h7zAvkiesTtyIw3o4fqr6UhM4LZexb9CBNhNc6AGzJYBj8nT8imHZdTq0l3KettrJfIvLVRh6XXBaf2ueyugErnJEYWoAlTIih2dISvsQN1AdGOHIYDXTcQTN3g69/86/d1bzJ4Fk5p8e6a9fJA9aRaH7PLfI6LBU1T08Bn22zNEBND45oWmRiFFjIrKEgLts/UJ+gHbtOUFBUsMMa2qXfeSwCPio1OFN/rRidU06juqq56YzYgJL7M5GWlgdkceYBZ7LxahWVhALq5JKlD47i0c8NqdvaSMfiFIzkFstM1+wQsBp+SUM/rt9K9jK9PQjTFmZgLWqX2SyWzbltRALWHCm7C9iP+Z+EDVJmqMWgZjxeixvJjxp8N/UMVrTJG3ZtSr7633hfEAoLy5MLFCLlHfz00Ju1nYzTx++4IHwq1oyFpTzdJGvLotQ8fg/jW8OwGCk0ojL6pVao0fWfk/8aj2v1nsn6I0BZj+6cwpke1pM/CZkQw9dvgyyhOrn9ucNLACu9PR2HHloZJBp7jI8icEPtT5jH7o/xtz6Y/bSynsEWRWbyGt6ZvMBAq8J3LBZnlUFpStc52L3BeHy2cGrmbWp9uf0hvgkz9krivN53RS7T0awwiBLrf7NI8pgGptVw6TyAck92RHj31esPXwsJ4yZY6wDTUJVFAH8swDnKc18QYS1qiDFMb5/CdKNlCXzueHxB0NZRKrFNEKKcTeNu7Mee1NllgcwaM4ZGmyd7VOECLBM//vc71Awl4QKldztG+gssSvNxlsoOsIolOVlQs38Wp36OrmOBT2ODKxAgiG1xsdZPwf9k3V+3GndMaZ+TTevtlx6UYyZWpUjPFwilmpICk6Rb3mGUHITKIezIt7+34NLuRkOzOjvBxJiDqQlgQawpVAfib3jAQs8rm2b1bqxnfsD7k/4SwaQMfkjFzFgu7OulJ8joUFNyMnHvcG/gdRBRmhxJ6i/drqL3cxs4AfVBklcJ+nfQsQcxSaTe0Zd3vqQB5uHwWnoK4ssmoVdn2aL3ZkpRITwlw082Hhcc41EOsbPdHrZuq6owHTHXgAwcAhktTJga2ZtYqBVzFNki58FyJAl1bqrbXSQOFO6UmoCgUSIQLkiWA8g5ELAHGTuwSlvF/gfuo+41afa0dpVuQYnjNCP733H+Jj402yEwuj0aT0plp1MiWxwpi/xzGrG/zMUMI4AX0y6gngm1SprIhXdsnppEyp0CEFULeoXgRqJ20swA1gT9lseqDyU1/sMeMfKhAwgU3CWdbswnYma7nM6m33OLmFXzmmu8AZIfDHUymhOVna9q9XdXHfDbxrZYpcRl4P4poaDaABXijPOgZRupuM/UqJBumyRq0e6dWQlG72HvL417tMBphofev1SvuAb063MVpFWqFlkaTjj1yW39oaHrdQdn4+sIViTZzmIh9bXt62Se/0U2+0rTgtHHVN7gDTzQHV45zIXnTR99Ns+jvsQg5LmV81Yrv8Iew1F1ZDRv+nUzkS+YZ4qiLzrZ3TRH5gamEv7tOv5mCiHtlOU3vWMp6aTrnqXLUgn80wX9tqZQ6MxrZFsVEAbuKy4Nv7jYZB8QOUWQdgvBNZFQphlUXFlCXabTOerTI5qjdk8gxTMdWcs+SIktakThafDuJroBuSi6sOneovbC3R1i3hvLtQxt1UXgi/1JgXKSrdx+NlthJXnLh02hN6QHQZXaHcK8cyeNdSdh6HMszJ5w/TOgTnky5I+iAISWVUzkF//VSJKILBiN1Wsnj2Hq/ZelhHD3YyEsNE8ZFtMZX/tOtw+SQUVY8tmrNsgwGTkVohJJhrs+r4ipHd/lhvdT50jwhlo9Lx/NFJuHjes0hpj5hRpbHhnSrohOD8SuO2IUV1sGUjEblO2AB5AYgs/ymw2V+q4et4ZJKZOhjBZ4vsfHTV1fX49ZAYRji3R+eVrQRnr8Veacy1KKUpbQ76TOx/Ihzktpm9TNk/qJFsPDfQl4yn/FARi11HlDMb8vSyyEZREWcd8JtxlWTobd9h28BRiX7yq5wIPhghk6uGZmR3r3Gj0D8KSAaDmp7i6wK9TNBH0gbIw/arqC4ulmLeGDqYDpIk2/V+62u6FM//dWU3+KmjS7hY6d4T8rZBxkmb5ua9/B5iZzhb9+qLpzbuNPXLPJATOwd31fPau81f2dcF3ZmFQqWvbsFUINUhnQBv68ClsmLi1nGCptDF+BNiC3Pjd+LXsdVhjvnRHEtVU2uZonQBmRCSoKYJiJ09sLfJ8M2e4H/KyxgJjdHGPMCn6kMzVB8/U/Ec0f58KayDVVmLTxDRpOLfAaYD40nlW2coEDmhr+BdtlrqpwdD5QZzrKXsxe/QN1jEQdvP7bsqEbWP9arr63EE8m0IY9TwlespLqXinhkWW6O2euwffxIvHXaPCvGqImtxkPahWyZO1NZuyBtyCUPP14Y/Gm5lRnkn7ephwPHdRTQyrv40pR2mj4y5toENn8a4hVmNQD2VL9bOPCpMitwfA6oa7G0/kr4UIb62TUhOY34Ob3nN7gav16UYPKKQTbzuBjO9ExavY7fCLqn57vSbY0sbwpckDhDgqQToehekffMwjiRI7EJYb4Zh7qIHG9LkWNMVyFY7OKK7cn4zm0bXla/hDYIaxt1hDz4gLduyBuM02Phn4YxPyYJ/yOyiFjNznmCEs+eLE51gOLxYtQzvkqdf/VoRemO2Lj6vLXPYn+xWGyIBO28aAnrxLsymlHTf9JBv3Qgtp4hMMQfDKTzSe7DUZLctb1JFE04+/dWLjz/gf1h8frBbQAnoX2if9rmbIeamLtiFR3sktq4AtvBQTAPpSyT+cN8M/rj6Dy3SM/Jq6uHjPdGHleJIHGfaPTdxe2je07+jHXzl6Cd//mJFiukr0WUox8N6AK6XRRx0vPntXf7fU0bq6b0EGwNdYlPW1ishl5FauQgPXY3N6jp/1XZ5auF778iOG7E+RQ4cyvpvo0SIIUmxP5bKSNSkQCpOG6eql6rMk/FA2dL56rf6EoL7m2OLQ1eqm8WNBpUdYMx2M+3yOPpINsK8ppp7XnW4GAiyW+awTo2ut46Ukuf5HEeSNsBckvIksjGGSDp7aeSXWo15WHUpDaKUy9ZC3Mr2vSGGsukUrSmpmSw8I9YXO+2bH3wBZDLOCdyZ3l72Rxw0QyWW96lKiqIwT0ikUIW30pNrReVV0NxnRYOTcOdVmKpMImHAaeXek4d1HIVNmNhZkJmuA2wq1Kh6cJnELYbdH1NKPe/knblO5fUn1Ya9gKf7SuH+0lvu+c6yTdMAGzAEe3teM/PYMAiBikxmN9x6GYo5xQcKBj0eiV2WnSfGuyGcAqT/ZDOxDlYHkQGfPzFOcL2AFIPh4MFl/B2EBx8/4XpOunNC3Eje2zr9onHIfCNVrscX7Rrz3PChE35NwFUpCx2E37eRyHA4RvOdJMSsAI1MuC1h8E9vG49NT02LVfAfYxG12NNR9lRl2bBFwP5Chf4mn6//Q+gYhfaIVfUZ20hk1kzkhsX186jJYAqwgVprnUhjpLbyVIqBy4waRL49YPk9xmdmGv+uoNOlH4P+smWJFBqZ1tzJfEm81WS0CEYqJtBoYOkdUkkO1Iflz2OPQO+xyhPkRXTXJhu8t2ZP+6xzde2PVODLDnsq0OB/qMOiUuqJ8RDhrWp4JJxE0656ephPRRvxxEDa5cYuZJF4CPobWsxmhrICXxecOad+Us8ledHxhYAK8q6/lZsZaZP4dAn62CniL8d2kTOJrJ29szkSYMoYjijWwbWy54INLn+miYn+ytTN6IoX0BAPLKikvlhiFNqFWbQGm2uShAbYHkdtaYIsJwEP7ZQnmHEgJoCJQ9cdZO6sfcya4HKJNzPW2901ghG2ttbFRAaeB3Av+gAwud/H3v3Ve2OF10c5gJpVzkg7cpHTizT3+wo99rrq/5+hyl6Hj3QxcC1oLwJ9P4S9j61pwAu9zWl6BOESE1CpS23trZY17BFhY+553nbqi8ufbYj9jQrFN60zvbpcb5A7A/MHWmaUdDtPOExuD2TBWaFR9Nj2+TplX9gV2ik9RbfIahj1/6dbID7Dqh/tRSdfgjs9fRndACcz5pdIry6MTXjyMh0/XWCdobVbPghRUtraHcZAr1Kb15Xy/tk5tCHfj+qjiDaaLKAYEImlOIcYZbpk7GzAECQKnrrUykZeFgzQ+ZfT2l+5cAs7yuO2fr00FDoa/bDX7LEyRJxjIkGtJ+6hpvV4tVeS40+woDZ6bcAMqHHYiElFE74+Ke9iBzyPmXAVGEiPIshv8qsz38qNX4OlhaLzNHTK8NJurQwdlate4iYedeUG6EDXnpJr5gaw17SiZkVbxbm4Gh9nF7L8P1ktBocE7X+8s6K3Dje7+/9w+bPWU23965jc9eGXmHbrPTaXSwz6/wJ02wHg7pol5MYK022/L/PJTCnduX+PquIceolH4vzIyI8xCSzrxvs4O20fTpizbLqw8JZaJZQOMtd4AV/r+GcOtf9GtpIkWaI2i3fJJ+fN8G0DTkfRiIVTscdFHa7OWfOHQ44KUhXGZXlNKr1EddYT1fH2Mme5uNZMIf9silbwqpzI/WNQv174M4HKwKFNcbrkF/va3mYpFh8y55jtMNYNC6An81x0a5yTS0ht0qdmbiq2u3lpzWa+ag1ojWfnlSfmHBMGztpP8J/RMSe68APqWZv9KV6bac3oFW9A7feziL5PdS+iGo33TCRJ4DhobKypOIrSLGZzm9Vmd7Cb0Qsu2btiFb7ODZDyLtNkkh+Q2iYRguOENBLV6U48rlQTOB//A+Lb7gjzPk25rZW/TDj3VFs4HEl+wC8I81ryC7qva/OKXm1dumGnSAijHVBloBNSsoxCrk5HNVR1NYIhgcF3uXFTpl8mD+Fldc52c9Rfaem8mib9CniaR2AjVGCk2z7IQFjDoJTiwq+Vh+kxQ6Sab6d0stC/N1l0DfzE7JIUya89DxCi6eYKPzEN8fDaC5IdR9RzNOZcKV1x/Vm8EigBtusJfo6KDZOMEAsPDGE44nSM2T0MtY8Q5Tslf0L7SGZH8M1NzFM4p6dHYp+6NdEEz7cRdu37n3OHfUi4q/MXB0oxiDLMM376776QvBjgV+a+P9r82keqzgLumMRfgIOLzRvyEmhAq8JxjPguVEi2lEityDNL/MQtAeaTJ3wMc3Y6f3eGnwE5ixmSbz4BTfydFlIfld5sncBdh9Q/+nEtPJiKCvPTfaye5ieJktKfMwSHRfDM3LjsrSqZZQpn/tKI/7cRJQhEolcTUtREexwwBOMGp7wn9xRFN9bKBEoVCZbq4z0cX8N1R3oyEIzi2fImv9O3QksaEM3A2AreVhb5MphYhr0gpD5W/1wM7ZXgPGearcMZKjLfwapr9dICVGz/HZRT3/1mS3B9bXFkDAbBlbOuHGfAvY8a9K4/dS/c3Eq9/XnOLxQxum4coILbLx8nAieSdIJRyfSVzNjSSNAf6Xfk9KmCwdAoiKi4RehV0rL0c9S0phG/I6eZyINKmmaOdN07SF78mP+geULJNpnnAdAhBAXimxU8tSXm+qT+YVm9AGZe9GYz/Xqvc74DABGkyHPal/KThvvSs1016t3Mw0GXTtDikdEu/e/gRJsFjyxhxK7oRTUyyrE052K1nVk16zsYeRQ1ok3idFXzillhrvA/+0B/utVoic7+5vr64fhHsVA3+zyHTCYBFumrIQmm0GZJlEoXcljEvYTBjbFZVo+komJADx9jxIN73IaFOtpA4zTEneP0GhpUuF3CoxNyL+t7bKC2vE5O86EyF/UIGONpY9F44gRTez3FD/5Vq3s6e37psKRQpzTvE+kdmrOo15Mxykr+YmTpjG/OkRsfP1oECkEdEhpiSV6WaXDjRGANFWEvMrzmJDiKh9t+kPXwaGORfK6cteuZj7k1BQV2EWgbNAXHFueOTigXoFEX4pLkHKM2fu6zsxwivDFpGPimWZoQHOfm2mLeZbaYM3EdMcVk7IeGckpbkK0YIn7xHAgNyDrPXNGyzBVlpAgo342W958Z4bbp9GWlyabzbIhkgg3Htr2zdeXB95ICfzxvrJUUelevE93QXrxmydO6sVSpN+Awcbs7Fhs9rkzbgSvuek2X/j1EL0FHTbowP9tWyjq6/lgSksYHfnrLD9GcskjMTejHWQ3726dTt8dzos9two4M9AMWypHzzHH8ZRxKk/oxr8eeecvLPj4aAPvj5Cj+6LNgoBG1HIr5mITPh791o/KObZ2LNOr4bkYHgH9jHknNqUZwK0u+yXlCpEF4fhBhyVpwX+U4hUST7glZHm87JyJfTIvSkdg04EtKay3NkXaNDg5U5Cwxho6IykU+gdfBlcOZYPXmUUsDvdVvxZO5Atpa5K7jWT1rpF4+G0fG0mWrFzzkPBnnWsT33lnA9ULh7T77tXboz7lDfhXkg/tgXk/3CSsBYxHLGW8UCbY4Qda3zgTV9r+TmCtLraKTr5kDXMXUeCaNe4jUDXSbHUPDpbSbQrpiL+td4L7IZQnuOBplfFqjbSdfQp0Ma1HLrZepcACSSrXe+cBQ6PNWmtx6hWVwvpysaev/fZrxG7A5NwhU4xnu9JgMHgVtNuzLQxqzNEGiiUS/tMcjlXGVIOXR5IHF8GAB2beC/wiNSW0xCqF7J14Pvr32PL+vFW8ztIrH21lWXHU2Oo1aO3e4Ubmnm6mrPNTB9C4+BC+dzSvEYwsFXnDpoK5urzWEHd9U9gaHZ/a+jGncpzJvAcSkGwaaI+UXq48zF+iWf1tz8pvKSWWQT5jkNLP/Wuc0h8Z3PgE/TwhiAkmTQnLdnO7RLTRcp7NAsghFH+6ZQo1SB2OA/sbI5k1yhgNDtJlhq3zu3mSJvagZglYjyjt/rPNDXCeMfBrLjVNOhduAggX/lteTlqTMeGDeITV0iJClipQUpgy62RSHg2gFoMZzY53uh/13fC1Ak7ZlzFYLcptagivDcdkzFRLn42siBbdXM6wTgwAWgqSXwOsp3cNwFJAa+twyXYAeKnAGkhy/O/kFejWSWIaBF+hSRqD4+b3zaGEC6LsRzbRSJqtZMCNIoJSxgWpih6wJxvSNx9tHqS8Jji8+N2qsAf09aUwnxjg2x4sLwh8wDMoD1lKWaQQWBTCyvCNqdMt7b8CLfnHwq8p3AovzSYJipl/BnaA5P2FgkSTIZN9PKL9Wy7JPPEIr0SxUJKcRiMZ24dMr5j9sA57d2h06obUKOE95p/Ci7oLCFxi2VI3cIudalxxAOfwsdp+NpuFF6paLhggBXHvDrD/lBZMFlKUNmfiDFQLwt4jx32rTfYzVcm/HaYfn5TgFFG7irBldUf6lpGyExPQRx4jtKlmhAYszX9Vqxo1vCcBv++qGoxoLZPtM5XhxrqgOGR4FnbTX7C0KkN9tNfrzPTTIzLoo+TYPu2bZlPGE2dxloy6dOaA/UNqs2h9O9/keV5Kn10bEdfvBoChRBot4oPj72MQzpH0Qlemxr0UB6hC3jfHzVV1RCDJlYumo3068/d70qKKRQ+Qt3fUGb+MiFLcbF6WLwK/3rIYXrLx6e0jK1wC5nkX3+BcHECdGn4hCZncACKqTvNnuHOTCe7a7XD6ZnLU8JBrXvKEKjoldZvcXoe6LN5WTcbtnzZP4iYStUECs+HeYDJwYWkZRs/HLjBxpk9hICvjm34yam2Ap/G6YuLFwYOSyNjAONURlXytl4sfNQPT1KLcHVJfoHjwWFJ6DpMocbhdKqLwW3E63LLUARtkgWYWKLeWxDJCf8k7On6hnc4yxLW9rliqSLPNywddcUMKSk8R7aBdZ4vBzNFhsEp3QySr004P8xW7w77O2h9UnTr9Aq7pf9q4qOwu0bfNUkPZO1SNBiBAzWZkDHN0Ncgvnfz9P3yxQK3+7UlTcOneXeHUhZerWtAQz9JwKsaIxReMYdXZZvPZtHgEOnAK4KKV5yiSLE3fJrvy2h8U9QoQP+tocHeEuDK1umjgtPmqinAWuRHPEQ/p5D+VXOdvEV8x5wzWMIEfUBvPhRXhGM/X13sTH14EqhiTmUpnAJaf6qCaC8+ZauLxtIE4+5J4TCFYV94uHI4pr+pkxe95YR+SFQSyeIFIbVVxfidCeGCztTtDAah+U2QoULt9hqfgUsWAxQEfvVaUqFwyeQ0YSPGFyIdlQHoOzk9Y/jfCo8KCNMloS8c2kw43Tvt9B8JvAgCBemvVUCkCamGALGS1A7PF6SN5VRl7x4PPDDNqeOee1HFDl+Cys5Kg9YQqqjGsUwsIr/8hgNF+Nkin3FU/EpyIqAr/dQ8lYaNiiKF7VVh3ERzXmP0ei3PCqaPOsGVKh5ZB3kHnr4XHvLF0hobOE3htVGWVqkbZ8qZwOX4Ip0nEg1yf8Mkvz+irLeWb7wiEB080plR5fLuXYY+gidZ2fHM4GrjekkvlEkXKVgLMYpfOatnhJtrjyjsNA8JOlF7L+LzLdnfzuqdcsCww+L4knTs2EbqitCiCaoJHuTk3AXyLJf+4UfDLMLn4yeavUY9/RX5gjwMTC9ZC1m0U88+QC5PH9Th+PVtMhcuER4Sb2ath9d0gwZ57PBE79MXMgvS5S+yZI0tlQYwzzAVEaKd/VUPEhTlbayn0df6CXVXeNfbCTl7JRgRjmGWB7cDdoqgCDxW/Qz1ouPGVe5f1Q4E4RYfiy5xLQ8J8E6EnFi26UROQxAZvTbKiMFOqFiIM9Y2auezPHosNL6u2q3fkI1Vb4JT+kmwHNbKo+nQS9ACkgZQYZlM/f12oQwJDogAUIc6nmrYu+mcNw3ZuYShp4e/GdjKbq3ycQk9ke0o1yD5fUOt418PEr2Nomw4beskxeBbOBB600vmEe7QvNf3KiNPbiPXwbt7w4ABE+vHa/2VfbxVS6GIkZmiWs4iBi+CPdWMLodC9gQahGOLZ7xYvWUX7/N3xIjAhxlJ0Ary/ZS9+bnXadi2iUutZ/cF4kvKfzdkzV9PgLQ9a4cfBdJXt/A4KMLwespXWyUEXRrIGJtG4Kr1YsWlWhzJpRmgicfObQ9NbOhISzZqZIGa0qs6QMKVZm2r/MTkJWcfVwwMXVHsFrer5IFN6LnPzocDI64VPkedTr/THsjK4iQaiYQK1q4+uYAlJqPqwt5ddMQ5qtoasYgTyuBkJ9SAUaMzQsLuxsNyJaeTuwqZbR5BM6hVT7n6/hmOtIHCLQkKPvhyG7bPGrFn8S9ScgUgwj3DtKjMHnquvFm4AOw/MRz1bWyq8CJocO+7mcxmcRyF3Jenl4exmVdqbTw3JPqbqv+SddPAkBX6z12Uj+ujahTQm2VUV8My07204SA37xhK+dxch3E28KMggGUA9nbjOZGhWrJYJBQT+3fptN1MJidTL8sYTAj2e1xa+x+6G6wOGMaj6vysmeQIIx3u2pCTW4iROpz/qB8dDp42Shq2dhp+8Ypr+CGiZA+RcW0wDxvIkx7HG5WFE5tInjoGwKR+64ny5zD6Kz9T9eI63AoNfNHmvsN2ZXMtt5ubPC3uOvO3aWMpfGt6KWvWW8tcDVlyRpOu2N6BSxQ+M8sI+jWXJKlim63brVwjgXwOx3i5FApRlwZVCqjfGYwIEqQsUBevjSI97IHdP7vQGSPmd/YtshJXVSge0KZiXQzYr3m73Iiy+S4EpWpbiw3QJvazlKZLYb4+1tQ1bqjnYkzCB5pz7pmabSC4tWw2NcY0EelJRqyH9u+5VQLFGesZ/yGrOOQuuo1gEvINYI6glBBd6dW3HE+WHhYOWB1UigaIBeQtai9bbn2YZhzONaWPU1M6vmsbayBXQ+/wOFutGAJn4kdSshsmXgFKn0AWR2MXWE4GCmt79rw3qxvYaUlGMHP9gUVj0CcMIuwHwKh8HCCRACQ6gFPv+zGr5xA0kPb8l7Rq0NcXvY+3WkzyF0SPi+WN9HduAv2dqTjvGijBQOtk07n2ngaqsIZ8b/C8sKrCptbVPwB40vVZLlVsfBHjr3co97Ft4rbttUjxkyxAs0BjL2IbopP8ccFbYABA5itET8UnPYJGcatgIYZD26ph+aF/VCsDnKVsNs5xrmPgoCAPk1FpE6Qzx1+cRsgz9T3ABEWs9G24hvU2uPQLpAHE72ZZJLe1TeKJ8DcOgeFFBk6sLE90QQFEs25oGe/oSOSQ+el8Eu2FQTXzAaBYpSpweBFQdchz0frZ+pTf1b12iAqNKh5zDuZjAMuGFVWXhmTVzimnyb3B+0U5NXdPIdmWX7NDs5qhYlsct6jGpsl88kM4OcN6LZxtycEiAXsUy0zQdKsqJOWuCN0sjIoQOOcgHmLKv5aFiR4giIWNdEy5erTotI+vRu6sGRsOtAqpcsKvaTqUBL1/noVmZWH2PkWZ9jgwyG7fByQa63HdQBOzRvFq3IcEB2AU4AIlEl3lDKX/SiT+aKHJkVdq7H++W6lsKh7m2NYgnJKRgoJTkuZUVXVDrMMkAvDtcIsI6VVIUtgDZyP4U/y+0modcojV8cZcl5QnSHWNSHW6hcnW/cBOZANTIKC1bjz8941izCMbisQXY3m52T1vgccm3O552Bg00QD0HkfBQBWoBNjWOIG1gO9PjKIYPJAco270u8G76SAsrhFaMZ/OQ1ritPQWRHGL8l1Dg90EB1GGzo0FK5vXMOXqS/14/jtbHS82PUUsiXh0r3UKq8yLh/nCVWbN3Awh65WGNIRHhuzAUqRril3jhnKEALyyFQsogpvNRV6QPDp7qdY+SFnXzdaSVFRwFw1x3GeR9LuyFkcXa2qDaGaGfm0CqQR+OZlyBOLpdzJDThLC0Zxwxrjjca7mgoNJXi8Pihso/ThhaRRyWCKvK7El1wmXodE5noVXbFJToswNH6ZnueYOIlgat7J1kBBSF2DMZgY2tfi27I7LvGWfIf4z4LkmoabYDkfeBXfyqnUkgJDSQMVAHW9jNIWn80YXOxMKBafKnpxaRR/Mql/YRFW2WVrpIDaie1uRAx+c1KJFflb44HylrSCbzrk1gnNbrWOBgTsuyNI8j+Ba7Z/hEqY28JhXTj+JbzPWu31DPXXncpOrF0/7eFe7pcwdWhon+OpaN2LezBeFOy9VlJB+yR9vXMUlEjFhbh0x2GrAG2XF36/yxNiZk28NDKZGuLmrYq/mTJN8sGraTNqkZW3ikLqxqtZqWoIFjb+gQTx/slRo2efGPxg6YAlyJQ7DpE10gIEkbIp7QJmZ5DfX9FjcYu5dJ6ggIOZ76qU3MdTiswwnz+vG5hvhpggh59HhHd70Sxm3WlK/mUpf+Lr48IVazkSaMlJqk1rEmS8+g3OOIp6LnHRYQmUqywZw0XAoyMAvKOIKYJhrSHX2ax/84wbI5pVkA8b8fshIehF+BEgVTGxZmnBLWKwRMcL2H++XmN07tIVPql+OgeHftIqzf42ezfimJwQMV9dq/Ron98aXT/0e2I1jRYQjKUJ2WlL8BCa69t2vriYWCXj1aBiphclT8tQO6Jt7SEz+G5F0XA6tKG+eoR/82WfWmiHoK2Xf9taVPTOm3WpgFBSCo8DFftC4YQe59SlMLrDHCT+BqkvJwaVkc5MsQWi3aQlGLfPXgosV4eDVR+Eubmsxwg1gbs9HaSZZQyQzMX0r9MnoTkrvUbsxZNAaW1QMMhWBgfK/ITNpC1EnLYnRZN47LeEUN1bh2jHNT7xiy94YoFtKkkiD69OomBycI7mfvr4dFEZLNTHiFupHRZtPvGZFRCRbbtjf6FwrI7uA7jFa60mPNO4ieazbxuxRzXsOFUoWNXuF+7f+AXxhxbD1Bjw/GvTNo4Lp7hIDU6b/Iw+W1fDT8W7/uiB6J6k3UXVFzb+qxel2NImMNSZ8I+6qBH7WH4pLdpdxovbEeJuulQfHCW4SrWaqyj7ruYviGfP3kIjfWkSwMqbTESdkOnn6DWcs30hHWauDBpsgyMLI3DTzI0a6qLuvb1Xz+27Ra1GqzkH+92PHSYHw8LTtEDYnV2AhZ1cLkIVeifDIZeE7YZaSV0+rQEa2ZAVKbT3ISDK2V3jVZ6owMQJcda4TDpqC3gRwVpfJevMCuzIqcbGd3Li07/yh7V992bDAn0WUVMG6OEGsoAxbCVIHKqJ49cQlbTX7jpqAfpMP71kzwi+wee+6BSuxJQcYYnVt45WO90PzVWahJ8py57Kc7lfUkneVSpgFq097m+TxQY8/7fOUch2aY2Lac5QDL5jVP8kgB6DtF/HhVFCZd7USOv2OXocqhsH5tBkQGWCL/cWySJvEpJ19NWyisISOH2XlY71SI2ucspGvHbwmYPHNJmJ2OhhPmo6Jwjlsa11clH5FogExAtWxMI5TYz0UEWWX4+MBQYqOXKtTIfPo+/UMtYhjAvEEy6xuXtDFkOICuEOOahEun/K/yZH/TlPWXq5AY04g/GexsnWFJbFGJbPDKrdsHPI2tLmGrnx1n/zBr8n9lf4ScOE8QdzVqqB3WMPMBYsz/r5o+y3S96vJ9N5DIKh6i/z5ZBw73p1cD7QfTIBP3UQ4kKOMyyDEN4LWTJvHvA/NFdT6wQvCsd40OwpOxxMr+ASu2d4Qh7cd4TI2AXSfmvdDSLtZt7rPxwakXoLbLcYz+Mxp8zMYbIt/aKhRnnl5UjCTnYIi+yr6JUqeYqRRLDiJsMipQmMCwy4lWoILkNS2m/kmxMBDvMlu4EhXA9frjSriUEecKPvt/FP38r1nfTT9ywm6cuatsH9fVp7n+mfz9EorZ4gn5b01pV13+zUGXQnYGs0v/1wp56wokof+TKe0E1gYzoTtNlyYQMP4XV3UREseszEWTMvahNOrgRCM/krIVJtI04JSYfaJmoaBtAw/kols/8s1qbPMdoNc5kqm189WAkPjXQzl9YDz/gmTQ5fQUwS2FVrbmHMCIw+mj3p/P8RtTM4zSe3qWMU4VJui4ctxcNbHmWo1dSUQp0S6GtPnhCUn6ay2SYDzfHAChdoTgVmukcelM7ZM+K8XItIpxQPrAB7hO6/Od3sOIHRYD1lOQ1NMaHykcfflvtYAHXPm2mLuNQt7ewYaZNE2D7m1IqMsV6Tt78mDGQQr3no5CLVnR4iGHixaLf+LKdL04M67LKFfZq0T72kipjpguxgfSek9YncW+KFg0qu1QEuP6CRMKnudNn56MzQ+uIBPEPqLWAizADYWfoPo7cLOHkOY0MM53G0xszdhyVa+KkG9Ir6hBPI7H7n+yHeEBtXhvUd+0SxiJU2ztvrnPiZ3zY6hHr7Pr0s3vhzj8/n66rSEh3jk3N0jMW6aVnDm3bb64iZiARQsbdxGN449VKUT/oMeCzY5Ep4B4NU1qW/BowzsNVw4RX28UwEWoEKoKZNdL21W7VfTbmauwjaodh2t0zX78HzBd6CaZmMmhpXp28r+yEXo3KRLc+PapexQMPblL858MspHB1t2LqsokVQrEK+8SAqtd07VGnQVXObnzSannixwFomYuKTI7MU7yOvxmY8QtJPJowykSYWlipKLcUEPav1AheQeygOqRZuYtwOjAndUp4e3ImI1If1AhybNmAZtYjtC9zOEJ4m91KzfU78EYLYZK2AdpGOJzr4K5zgS+Q6mM3nysswdtyXDD7c2XdC9ZSWeSpeSsDUBYH7gRnKx+QcwE3OGrJHO6Xgrn6rfvn45ItU5Mx9poIhRKcr+hNpA7MKUmG1XP5vJmRimlyhEOkR+WA2tA9W5p20GcM9FJ0hdcfAVR7a/n5+aof4ExgzmG55HJVIAV3PTbf/7fvNEFMfQ3bQJlYlQcHOvYDnaeu8XItGSuWRH9N/JOTvzipqZx3aSmgm4GbUYuGcHg+UoTnGK8H97a5fuHcFRQy/gznie3ZoetemdTkievNuBfXCwNIqJD1LQz5EBup4nhrslGDnJX2toNiBEw1NlgdBdjgj7+hNL/5vQo5OvaCO/ZL/9CeJBrUkqItfT8+x4SFqVeIfhg+rDRCzNF401B67yD1cY74umwAw2IAgxaGcKOPsjL5pOCzhTICMWaZ0vVfbfHuSp9RIhPyyajl9S1ZcvP0cqJVQHG64z54KuT2jGJ56hHdkc7BjFEVwK7mY7Ruy5u0nG2Yq2OI8wUHotu6JINLQ0YWkc3EQ4XO2cKIwyTaTZet/pdPuNE/NBRoapXI13DVPw5SCF3eaZD1by0Gj4Uo8fBq63TiVsQ2rj1zHuYoSyf9w83kZIhL19+flUdfPjx8pz/4e5f3RblRkmii556eOG2QCsy9xip5I75J6oL0z6jsZeOLkKVLQH5neRz8aohBQarXfm6diaWBLv54eremCmFTSKtuVJNG007c+IUfBIRGVO3/CsppVrtJX+ZgUYVS1kKava43LMCMbNz2spytNPE4yLegE84O6yoYBtAvs8yX2ralZ8pU6lUcXjOJFPUzeYcMaxoWsy97dfI5vbBsiERo305vfXDcO+pMgc4IpjTmizXNACqQpzOGZNmBTK1LGHiYtMHHWBkbK5HDXDHKlaCZZsSBvcec4jDXNvuG2JFm/Jtn4h2CHX0dw+62PVzecYfdXCjQDP+BLMD67ZtU47ux+l08XNpmBRy0t8FqOlmUux99h9tDkWE2NYoh/vlpTPggDWEzu07wWWLC9DOgiKD7MWAu3Vcq1daoHmsg6Jn/yzxZjcyn6YRB9RuMY0+3Mn5B4Dqqj6LrK5u1VH/79FgL9kfeRmVzUbkiA1VxiB25D/fG6S6XsshTFZ55o2sy8CRLe//2BLb9ce98ftZ1ZW7x6eq2YXxBko3sz+exnOIMuPMHgv1syefxs6DCVw5gTXG/vniKgbTL9x/T2eRHl9xg+X8cnldutzxMwaKVpibQ3iKSEpEe+kV85024alHNPydyrI2qiXoVbTWJkUiv9m1CTCCPQtsT27h+Z8A6f1hkEt+l2CycahYY/413LHwqE7HuUGfiXnLxJtjQ/KDcxX6IPJu70llFsuKaNeIq7yqNM64hhPSW7PBUkgC7SVXPnhrOWlxOMxyxnZCDN94pHeA701ziWLoy0N/BBW3KhLJSv8XgsP8uMWYw0L7KvDe2NHsOlQtSi9IQU98pcvZFk7uWkIQ/1jtJnEidbZYtB7ZgnDyttEsnWWP0Nse8qJ8RHBCn8a2GeVh8/ZBojEyjAy1W8XYB/5TfGkySqQJ0tePqTZwhOmWqvLVzXAF/jZgP5myR7k7Z2kAc0CCD7yRW9M/3sZFGnk7SD/R8282JckxK55J+XIqmJJymgFH5D4rnAfMNpJS+97xwPq/LBGopUdlqpiO92cG10fV3HVAiJZ7eTyvrB5fCcc4Uqq78/cUeKqBjARSjQhQ8PxWw+yi2Eu2rI9o92jZlUAtNGQ/93tiSHoJvKl4Uhiqvq0hml+Kffry8uAl4ftIHLFAvdJ9i+joAp4wPIgqfL6VAehGzT+DxpBJr7FRKzuCwpMEhYmnFGXJzw/AGyyterfbk4dI9NqUxj9o+WoRBRi8EteIwMJv0DlLrBIVWhXq1VpDH5gbsnCOBMQVNZpa0eYKNWxmUIN4JueWCltifZsZ2WVTYqNsE75T5seml777CzmxvGhLTcEdWKlGoceUBsfXrcQHdWsSvhZxJBEKC6iDypRKoYeV+8AUhQYGa4UTm3q3pLHB5cUdHiIh1hE0kCSWLeTAprn0kPsWsJqWQS1pVnUxcI8gt1tO9fPWjjlOiJihcVkxOdP2xxoq1HDt/SfptX2/yfX+ZitrBiq0WnZNXnHFv6JjLG7nMulau1Xi92tk3AnYcSoRUBVKay8wFaRoIorH4F/LQwdTo3nISaHeoC6PsFQt7u7yTdH8kIPc1Zt8oLtKpAesmiZ0sW45BwHTsu/4qTF5goKbwS0TGyMXv3I19nBTFNbVihvOvsfyDpF0BsruLcRLKiqbyPKvIrni97IA9s0w0cKb18DJp+cLjRuGVJ2paEnRKtOOl4iF1haPWTOLWFajSziTwImKrSbavC/onPs9/r/XXoZfaq8tsFPaCkV7qLjXJXFBc6RyYO1NzVC4F646R0/NoXNvuTKz7NFmc3jHm9ED2y4QCWAgOnLxLLUVqCZrKrlFA+8FVoPYhx4lcpE5XDuDe8vlD2Qnchiq7I6tWp20yvPBaR0hdOXgsHm4spNsRr+JWIwszlQGx45283u0L/GzkXA3sZr1PhbbVxnE7p3Ta0/crQjAi4I3qC5Wlovud3/QDnRceWVU1jYEBiWp5kZJbSqe8vy1ANCIy9RvZ1OXkb21VzlM8dSBmPQQfgicSZhcrJ2pD6YvLq+aR93nEG+LIXFzqApAUxVhM1CHZri2uYLFOSw1HrJsSbAHqeShQNtrRLt64IbFlvrEEM+t32hlbTMgS4pdegO04gBg0+fV2gvbRYQUyJD6U/fNIFtF8zMEhAovF0TZRs8sbhMR2JkPtj5iGNkvTWR+CM9vmq3Nq4AXcXcgRHK7VoVH2uORn1UsVG9H5m0qFe5FmceaXP4clJFSTxiGtaJSYqkKwTjQhlx4xLCvclSjR4qS2dXajL31SR4UN8I434Nbj+u+Nm4jEvAr1N3IKExnT2MA/wjC3EcTi5FTH4KDx1fD3DCca0pIWSuUeAie9ffstsbXNAH3VgrvaBqTUNdORcjyuB9uj5hbRymVBlbUJ4yxe3gvw0n0gDLWGGCOiw2M2qPgORunLE1BLuvdtO/g5u2XJ0jDRUKnFhHv1rzSS5yjJyTaOWSFAFk2r0sd7UDrRwicl8pQfbtCcq7oMfu0WMNPkbrZFmruIBzmHV7KM2D7YADtHHn0jsLznGPczC4zXvSUgxYli4mjlwWLVZBttcJa9qtqKl5fns/hJE3y9FvCWDPr58zTWPH/e2bBve7Qmd3RQLVu1zVzi4DWB6JsvzsV+0ynHSGhj2yGbEbT3nIwjcEvt1rCgb8UKWK6bTkcrWFTxCnXvbASUn0mELimHtbppOsQetWkqNnDcwat8+bqHHNgkNGsMg+5zOXT7aIOdlDZ31Wp4VAogYIzbBWngyKydkx/TCy5o9dRoJsB0Q7u/Qe6ressUxwN0bNpfYk3COIMLQuBzbn573W4HnDBRcyL7Y6eFz1QjQqzTnHf51nGjjCvOCuCxT7N4N9Xh3prTJmsgA2dy3emvb08WosAUHjcPFc68U7O7w7s7FNnFwLh5Ewu6wT+g6FCj15Ux8lYHhurhEHqhfGKBMTGyXTBpNmXGWgVii+J9PLA2Ikn3CfAJS35kv24NDHguyzD09pVKAMZttgBwHxCImEbrs9dK2cAQ1ZqMPMSyjnWamYIa+FTOi1end4N0fyF36ONI/fBM1MXkRAlC6d8ueqsM5VpB82LkV9Poe9r/l8EONrZo+MoOA+PqzxT9FHSKpyspnJ9cig/oheZuFTcX7xuF5Egaqumb0T4Rq8GTCEwG+hPDS3qwm8DFm0pDlyJZfxPMqdNi4Sx1FovKUrLyCwLPKBQK7UoCEEWrm0ZpCkLaWcR1vDdw+6tnfJgb7Gx8nP4b/sFwvR7POI1Q1+aZUa8ktTihfltkxjdEbGpYusuI9klAuSRWQt90VE/WbwLhR97gYfpHGBsKwvI+YV/CW8fBv53YIc7H51YsV3fYmJjCymzm29Dq2gxcFoF+lIrkCQX/C2/2QxIfqRjh2RRDeRGJGXHMAT8Zn2zm6thy6o9RSDboV8YhuZBT1Vm2MTCud0d9FKta33KnSYl4j1KJJd8V9ti/JhJ3Bbvq8BUphDJuv8QpIGkvi4vYOnCnEAmwCw2kIAvafzHAENzYyv15KAdWDB+lE3WrcyCIs/wxklGTuIhlvb7Ya1oP/nVFnJ36gb4lZZbaMrlojYrK3PqKkm3uxYOV9HNN4GaJf2TysW/UUvy5iij7MchrICsrmpBJdc/zrsnTNNeZnwWyN3LzDHzAvlvA20Y/7DOloSpyTVngXBuNJ6yRpVGWf4VgpxLITCERSCrS4Fcv47r5ZgT339rcltiIly7/Kp1LNEzUeQk7dz8tmrThMLXTQk8G3RlB8uaDGdq/jETylXfisg7l6lWoP/VYOkKh4PdyGjd5hdKaiuK6tckQek5KTi/lUNU43AIW4ofh9pL520kMV05KA3ZTH4hkh8S1m1eIYsPUUDaS4cLT2IvJNsndQolh/M1mpnBAy22BWoyMh7xo9xZx267KypDXOCxRp6TYcIVLEBrvBuRvzbjb6RNa0wV4yZ32C3wQrDwuW4VYwF53ZBvgDYXWFce5Hti5+HE5JE+6EfJOgVf/OKLgJyRmv7vg8HekWC12sMOemdF2kCUx12viobQGtHGF8eisOz85c0ko/iLoV/dr2on/aX7Qri9mrvyJ5OZz0XS9WvnuRQFk5QjlaAyTnNmxWjRIOm3LbUz3gogl8r3OKNJpC9uzO2wM55DX6eoqIDZhsrdRWD+UolEDo5JhJ0S3TCBWbrAyZkWf+JvspDpckANh4QstNgm/9hRDOvDvrAaSSyFzjLViAmtKUCp8LqtKitvE35gTKHep+ebV3ku9E6Hxm6C1ITEA7c8uz++boldwgyMndScGC6/WPT1zKGIz4no01aVMPi27ryJwan9Sk7SRgNS+3LvggyKf7qKCAQ4iSvPO05L0cqXZPFttekFukEsoGasPYzVWoAS1PBKMYDXpWAkVO0wouaXL6HZqZITZpHxWX7LqkyBdfp3jTQqh+E0kkkjcXB3Y2roJnNfM1LnhtjHkbzb0OjZce2uoedprZt+d38doirKbHQrBJvv48O269L+ePFbIMwyMNPiWqNvyuPhPQ8zt6TkbUK+UsqNUdzdcZuqU+/DWkqdGmZ8iOGy54auaGGnH1vn4CxO755fNnjcojdUwGWbmhdT1ScmVz0pijhiL+8RWVYMx9pu3ANTJ5dzYomS9BBJtObvAWdkHO3mwCOXXbBoGhruBqbxU2C+xJaouxpV80M4RCtMze18+aGsYZr4FgNFwmKb0SCZSVoH4d7O1i8Nh5AyYtoKeRsv3p+9tRXJlOssMUjQtk9Gjv1d1+un5QMbdDanT7VbXOlw2bKloz2dgpghHljQxh6zqqabq1x7VZfstmgvsrH4AFBknQSsNgT7eObxlu4xvSJM0c6Xxhxr8bcZFo8FzU7w8=" />
- <input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
- </div>
- <script type="text/javascript">
- //<![CDATA[
- var theForm = document.forms['aspnetForm'];
- if (!theForm) {
- theForm = document.aspnetForm;
- }
- function __doPostBack(eventTarget, eventArgument) {
- if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
- theForm.__EVENTTARGET.value = eventTarget;
- theForm.__EVENTARGUMENT.value = eventArgument;
- theForm.submit();
- }
- }
- //]]>
- </script>
- <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZIfBoSL8TZnsnOFihh6T3B3-ZDc9vWAo-Dvo5VSdzj9CkFL2Zg2&t=635802997220000000" type="text/javascript"></script>
- <script type="text/javascript">
- //<![CDATA[
- var lasttemplateid='14795133';
- var subdomainname = '.mouser.cn';
- var lang = 'zh-CN';
- var country = 'CN';
- var shippingCountry = 'CN';
- var usdSubdomain = 'www';
- var subdomain = 'cn2';
- function attributecount() { return true; }
- var navids='14795133';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
- var left = (screen.width / 2) - (800 / 2);var top = (screen.height / 2) - (505 / 2); var msgWindow = window.open(url,'MsgWindow','height=505,width=800,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0');
- }
- function GenerateClientID(prefix, i, suffix) {
- if (i < 10) { return prefix + '0' + String(i) + suffix; }
- else { return prefix + String(i) + suffix; }
- }
- var checked = false;
- function SelectAll() {
- checked = !checked;
- var i = 3;
- var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
- while (i < 29) {
- if (chkSelect != null) chkSelect.checked = checked;
- i = i + 1;
- chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
- }
- }
- function IsAllChecked(checked) {
- var i = 3;
- var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
- while (i < 29) {
- if (chkSelect != null && chkSelect.checked != checked) return false;
- i = i + 1;
- chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
- }
- return true;
- }
- function IsAnyChecked(checked) {
- return !IsAllChecked(!checked);
- }
- function SelectRow(row, checked) {
- document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
- }
- function RowSelected(index, checked) { }
- function GetQuantityTextboxByRow(row) {
- return GetQuantityTextboxByIndex(row + 2);
- }
- function GetQuantityTextboxByIndex(index) {
- return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
- }
- function SelectQuantity(row, quantity) {
- txtQuantity = GetQuantityTextboxByRow(row);
- if (txtQuantity == null) { return; }
- txtQuantity.value = quantity;
- SelectRow(row, true);
- }
- var qtyRegEx = /^([0]|\s)*$/;
- function IsQuantityEmptyOrZero(quantity) {
- return qtyRegEx.test(quantity);
- }
- function QuantityChanged(row, quantity) {
- SelectRow(row, !IsQuantityEmptyOrZero(quantity));
- }
- var QuantityRowSelectedBase = RowSelected;
- function QuantityRowSelected(index, checked) {
- QuantityRowSelectedBase(index, checked);
- txtQuantity = GetQuantityTextboxByIndex(index);
- if (txtQuantity == null) { return; }
- if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
- else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
- }
- RowSelected = QuantityRowSelected;
- //]]>
- </script>
- <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&t=5f9d5645" type="text/javascript"></script>
- <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&t=5f9d5645" type="text/javascript"></script>
- <div id="cookie-notification-bar">
- </div>
- <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
- <div id="wideGab" class="wideGab">
- <div id="ctl00_globalActionBar" class="global-action-bar">
- <div id="gab-container" class="container">
- <div id="contact" class="row">
- <div class="topPadding col-xs-6">
- <div class="inline-block">
- <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
- <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>
- 400-821-6111</a><div style="display: none;"><a href="qqqqzrc.html" id="ewcwrcwsvatwfucsreewcwr" rel="file">qqqqvrt</a></div>
- <span class="pipe">|</span>
- <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
- 反馈</a>
- </div>
- <span class="qqIcon inline-block"> <script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
- </span>
- </div>
- <div class="col-xs-6 align-right">
- <div id="tdImg" class="inline-block topPadding9px">
- <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton('Cart Hover','Global Action Bar');" class="smallgrey">
- <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
- <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton('Cart Hover','Global Action Bar');" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
- </div>
- <div class="topPadding inline-block">
- <span class="pipe">|</span>
- <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwv%2fYk9eS6lWRbKLY%252bHM2RO2rW3%252baBnguan8hHWQ1O1YyFmexSUK9AjjEdH5krDNx7WurTcYduzInQShWdHKZlAv">更改国家</a>
- <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwv%2fYk9eS6lWRbKLY%252bHM2RO2rW3%252baBnguan8hHWQ1O1YyFmexSUK9AjjEdH5krDNx7WurTcYduzInQShWdHKZlAv"><img id="ctl00_gab1_img7" class="visualAttributeImage" src="../../../../images/international/flags/cn2.gif" alt="更改位置" style="border-width: 1px;" /></a>
- <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
- <span id="ctl00_gab1_lbl1">RMB</span>
- </div>
- </div>
- </div>
- </div>
- <div style="clear: both;"></div>
- <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
- class="thickbox"></a>
- <div id="divCurrencyPopup" class="currency-popup">
- <div class="currency-close">
- <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();"> </a>
- </div>
- <div>
- <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../images/international/flags/cn2.gif" alt="中国" /> <span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
- <br/>
- <div style="padding: 0 20px 0 20px">
- <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
- <br />
- <table width="95%">
- <tr>
- <td width="20%">
- <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
- </td>
- <td>
- <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
- <br/>
- <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
- <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
- <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
- <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- <div id="cartDialog" class="CartDialog" style="display: none;">
- <table id="miniCartOnly">
- <tr id="divall">
- <td id="tdCart">
- <table style="width: 100%; padding: 0px; border: 0px">
- <tr>
- <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
- <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
- </td>
- <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
- <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
- </td>
- </tr>
- </table>
- <table id="tableMiniCartItms">
- <tr id="trCart">
- <td>
- <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
- <table id="tblMiniCart">
- <thead>
- <tr>
- <th class="miniCartColumn">制造商</th>
- <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
- <th class="miniCartColumn MiniCartHdBg">数量</th>
- <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
- </tr>
- </thead>
- </table>
- <script type="text/javascript">
- var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
- var currentGuid = 'aff262e0-c865-4006-8940-073f74ade331';
- var currentCountryCode = 'CN';
- var currentCurrencyCode= 'RMB';
- var currencyCulture = 'zh-CN';
- var cultureCode = 'zh-CN';
- var customerID = '';
- </script>
- <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
- </td>
- </tr>
- </table>
- <div style="display: none; padding-top: 10px" id="divSingleItem">
- <table id="tblSingeItem">
- <tr>
- <!-- Here goes the single item -->
- <td style="padding-right: 15px">
- <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
- <td style="align: right; padding-right: 2px" id="tdSingleItms">
- <div id="divAll">
- <div id="wrapper">
- <div id="divLbl">
- <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
- </div>
- <div id="divHyp">
- </div>
- </div>
- <div id="divRest">
- <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
- <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
- <br />
- <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
- </div>
- </div>
- </td>
- </tr>
- </table>
- </div>
- <div id="divForCart" class="divMsgLnkTotal" style="display: none">
- <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
- <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
- <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
- <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
- <a onclick="javascript:return MiniCart.SendToCartPage('Cart Hover','View Cart Button');" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$gab1$ucmini$linkToCartAtMiniCart", "", false, "", "http://www.mouser.cn/Cart/Cart.aspx", false, true))" style="color:White;text-decoration:none;">查看购物车</a>
- </div>
- </div>
- </td>
- <td style="display: none" id="trCartSubTotal">
- <table class="tblMiniCartSub">
- <tr>
- <td align="right" style="padding-bottom: 5px; padding-top: 2px">
- <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
- <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
- </td>
- </tr>
- <tr>
- <td align="right" style="padding-bottom: 5px">
- <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
- </td>
- </tr>
- <tr>
- <td align="left" style="padding-bottom: 5px">
- <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
- </td>
- </tr>
- <tr>
- <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
- <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack('ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune','')" style="color:White;text-decoration:none;">继续购物</a>
- <a onclick="return MiniCart.SendToCartPage('Add to Cart Modal','View Cart');" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart", "", false, "", "http://www.mouser.cn/Cart/Cart.aspx", false, true))" style="color:White;text-decoration:none;">查看购物车</a>
- </td>
- </tr>
- </table>
- <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
- </td>
- </tr>
- <tr id="trHideModalCheckBox" style="display: none">
- <td colspan="2">
- <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
- </td>
- </tr>
- </table>
- <script type="text/javascript">
- $(document).ready(function () {
- MiniCart.source = 'refine';
- });
- </script>
- </div>
- <script type="text/javascript">
- function OpenCurrencyPopup() {
- $("#tblink").trigger('click');
- }
- function CloseCurrencyPopup() {
- var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
- var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
- if (ddlCurrency != null && hidCurrencyValue != null) {
- ddlCurrency.selectedIndex = hidCurrencyValue.value;
- }
- window.location.reload();
- }
- </script>
- </div>
- </div>
- <div id="wideHeader" class="wideHeader">
- <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
- <div id="search" class="row">
- <div id="logo" class='col-xs-4'>
- <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
- </div>
- <div id="search-block" class="col-xs-4">
- <div id="search-title">
- 物料编号/关键字
- </div>
- <div id="search-bar">
- <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_NavHeader_btn1')">
-
- <div id="searchPartNumberBox" class="search-box inline-block">
- <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
- <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
- </div>
- <div class="inline-block">
- <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
- <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
- </div>
- </div>
- </div>
- </div>
- <div id="account" class="col-xs-4 align-right">
- <ul>
- <li>
- </li>
- <li>
- <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwv%2fYk9eS6lWRbKLY%252bHM2RO2rW3%252baBnguan8hHWQ1O1YyFmexSUK9AjjEdH5krDNx7WurTcYduzInQShWdHKZlAv">登录</a>
- </li>
- <li>
- </li>
- <li>
- <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
- </li>
- <li>
- <!-- Mush:TBC -->
- <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
- </li>
- </ul>
- </div>
- </div>
- <div id="navArea" class="row">
- <div class="col-xs-12">
- <div id="navMain" class="inline-block">
- <div class="navbar">
- <ul class="topnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- </div>
- <div class="onlineCatalog inline-block">
- <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
- </div>
- </div>
- </div>
- </div>
- <div style="visibility: hidden; height: 0px;">
- <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
- <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
- <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
- </div>
- <script type="text/javascript">
- $(document).ready(function () {
- //* change to html5 catalog if javascript is enabled *
- $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
- });
- </script>
- <script type="text/javascript" src='../../../../javascript/genLib.js'></script>
- </div>
- <div id="ctl00_divWide" class="divWide">
- <link rel="stylesheet" type="text/css" href='../../../../css/fontawesome/css/font-awesome.min.css' />
- <br />
- <strong></strong>
- <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
- <strong>></strong>
- <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-5g1k/" style="font-size: 9pt; font-weight: bold;">嵌入式解决方案</a>
- <strong>></strong>
- <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">能量采集模块</a>
- <hr />
- <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
- <div class="categorySearchLimits">
- <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
-
- </div>
- </div>
- </div>
- <table border="0" width="100%">
- <tr>
- <td>
- <div id="ctl00_ContentMain_pnl3">
-
- <div id="category-top" class="category-content">
- <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> 能量采集模块</h1></a>
- <img id="ctl00_ContentMain_imageCat" class="category-img" src="../../../../images/DisplayCategories/14795133.png" alt="能量采集模块" />
- <!--Marketing Content-->
- <table id="ctl00_ContentMain_tbl5">
- <tr>
- <td>
- <div class="marketing-content2">
- <strong>Energy Harvesting Modules</strong> are available at Mouser Electronics from industry leading manufacturers. Mouser is an authorized distributor for many energy harvesting module manufacturers including Advanced Linear Devices, Cymbet, Micropelt, Nextreme & more. Please view our selection of energy harvesting modules below.
- </div>
- </td>
- </tr>
- </table>
-
- <div id="ctl00_ContentMain_refinemfglogo">
-
- </div>
- </div><!--.category-content-->
- </div>
- </td>
- </tr>
- <tr>
- <td>
- </td>
- </tr>
- <tr>
- <td>
- <div id="refine-page2">
- </div>
- </td>
- </tr>
- </table>
- <div id="ctl00_ContentMain_divTabs" class="row">
- <div class="col-xs-12">
- <div id="tabsNavigation" >
- <ul>
- <li id="ctl00_ContentMain_liProductsTab" class="active">
- <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(31)</span></a>
- </li>
- <li id="ctl00_ContentMain_liDatasheetsTab" class="">
- <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking('Refine Tab Click', 'Datasheets', 'Energy Harvesting Modules');" href="../../Datasheets/_/N-8t3zx">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(6)</span></a>
- </li>
- <li id="ctl00_ContentMain_liImagesTab" class="">
- <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking('Refine Tab Click', 'Images', 'Energy Harvesting Modules');" href="../../Images/_/N-8t3zx">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(29)</span></a>
- </li>
- <li id="ctl00_ContentMain_liNewestTab" class="">
- <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking('Refine Tab Click', 'Newest Products', 'Energy Harvesting Modules');" href="../../Newest-Products/_/N-8t3zx">最新产品</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- <div id="tabDivs" class="tab-divs">
- <script type="text/javascript">
- //<![CDATA[
- Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
- //]]>
- </script>
- <div id="ctl00_ContentMain_liProducts">
- <div id="refineSearchDiv">
- <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
-
- <div id="refine-keyword-search-2">
- <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_uc2_btnSearch')">
-
- <div id="boxPartSearch2">
- <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
- <tr>
- <td rowspan="3" style="vertical-align: middle">
- <div id="searchPartNumberBox" class="search-box" >
- <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
- <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
- </div>
- </td>
- </tr>
- <tr>
- <td class="chk-Search">
- <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
- </td>
- </tr>
- <tr>
- <td class="chk-Search">
- <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_ContentMain_uc2_chkRoHSCompliant" type="checkbox" name="ctl00$ContentMain$uc2$chkRoHSCompliant" /><label for="ctl00_ContentMain_uc2_chkRoHSCompliant">符合RoHS</label></span>
- </td>
- </tr>
- </table>
-
- <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
- </div>
- <script type="text/javascript" src='../../../../flash/js/Placeholders.min.js'></script>
- <script type="text/javascript" src='../../../../flash/js/watermark.js'></script>
- </div>
- </div>
- <div id="refine-mfg-select-2">
- </div>
- <div class="clear">
- </div>
- <table class="SearchParametricTable2">
- <tr>
- <td>
- <div id="AttributesDiv2">
- <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
- <div class="categorySearchLimits">
- <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
- <span class="subCategoryHeader">类别</span> <span title="嵌入式解决方案"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254072|Embedded Solutions" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx254072|Embedded Solutions" checked="checked" onclick="document.getElementById('ctl00_ContentMain_uc5_CategorySearchLimits_chkbx14795133|Energy Harvesting Modules').checked = false;" /></span> <b>嵌入式解决方案</b> > <span title="能量采集模块"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx14795133|Energy Harvesting Modules" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx14795133|Energy Harvesting Modules" checked="checked" onclick="document.getElementById('ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254072|Embedded Solutions').checked = true;" /></span> <b>能量采集模块</b>
- </div>
- </div>
- <hr/>
- </div>
- <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
- <p class="applied-filter-lbl">
- <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
- <span id="ctl00_ContentMain_uc5_lblreccount">31 匹配</span>
- <span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
- </p>
- <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
- <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />
- <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>
- <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../images/icon_tooltip.png" />
- <br />
- </div>
- </div>
- <table id="tb1" style="width: 100%;">
- <tr>
- <td>
- <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
- <tr>
- <td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
- <option value="4274387497">Adafruit</option>
- <option value="4294759240">Advanced Linear Devices</option>
- <option value="4290778819">Mide</option>
- <option value="4292755921">MikroElektronika</option>
- <option value="4294759378">Phoenix Contact</option>
- <option value="4292826680">Powercast</option>
- <option value="4273832515">Seeed Studio</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td><td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">转换能源</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="1000000740" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$1000000740" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_1000000740">
- <option value="4288926548">Electrical Energy</option>
- <option value="4290778333">Mechanical Vibrations</option>
- <option value="4292577186">RF</option>
- <option value="4292578913">Solar</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td><td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">能量输出类型</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="1000000741" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000741" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_1000000741">
- <option value="4290778334">AC</option>
- <option value="4292578996">DC</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td><td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">输出电压</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="688594" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688594" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_688594">
- <option value="4293982998">1.8 V to 3.6 V</option>
- <option value="4294586404">2 V to 5.5 V</option>
- <option value="4293983000">3.1 V to 5.2 V</option>
- <option value="4294608622">4 V</option>
- <option value="4263766131">17.3 V</option>
- <option value="4263766124">23.2 V</option>
- <option value="4263766166">27.3 V</option>
- <option value="4294591744">33 V</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td><td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">输出功率</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="688590" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$688590" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_688590">
- <option value="4263766132">4.4 mW</option>
- <option value="4292586859">4.6 mJ</option>
- <option value="4263766165">5.5 mW</option>
- <option value="4294638317">16 mW</option>
- <option value="4263766167">25.9 mW</option>
- <option value="4292586858">30 mJ</option>
- <option value="4292694811">55 mJ</option>
- <option value="4283199634">275 mW</option>
- <option value="4292980166">0.4 W</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td><td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">输入电压</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="688469" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$688469" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_688469">
- <option value="4292477572">0 V to +/- 500 V</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td><td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">最大工作温度</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="1000000314" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000314" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_1000000314">
- <option value="4294424511">+ 50 C</option>
- <option value="4294629996">+ 70 C</option>
- <option value="4294630005">+ 85 C</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td><td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lblheader" style="font-weight:bold;white-space:normal;">尺寸</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnDimId" value="688399" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$688399" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_688399">
- <option value="4283199635">0.53 in x 0.55 in x 0.082 in</option>
- <option value="4292586862">2 in x 0.7 in x 0.55 in</option>
- <option value="4292570042">70 mm x 65 mm x 3.2 mm</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <table class="ApplyFilter">
- <tr>
- <td class="ApplyFilterColumn1">
- <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
- </td>
- <td class="ApplyFilterColumn2">
- <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
- </td>
- <td class="ApplyFilterColumn2_5">
- <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
- </td>
- <td class="ApplyFilterColumn3">
- <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </div>
- </td>
- </tr>
- </table>
- <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
- height: 70px; display: none; background: white; border: 1px solid #000;'>
- <br />
- <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
- <br />
- <div style="text-align: right; margin-right: 15; padding-right: 15;">
- <!--Close Window-->
- <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
- <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
- </a> </div>
- </div>
- <div id ="VisualAttributePopup" class="hidden" >
- <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
- <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
- <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
- </div>
- <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id= "loadingimgspinner" src="/Images/spinner2.gif" /></div>
- <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
- <table id="tblAttributes" >
- <tbody data-bind="foreach: attributes, visible: loadFinished()">
- <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
- <td class="visualAttributeImage">
- <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
- <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
- </td>
- <td>
- <table class="visualAttValueDesc">
- <tr>
- <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
- </tr>
- <tr>
- <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
- </tr>
- <tr data-bind="if: ImagePath1 ">
- <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs"/></div></td>
- <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
- <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
- </tbody>
- </table>
- <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id= "Img1" src="/Images/spinner2.gif" />
- <div data-bind="if: hasMoreOptions" align="center">
- <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
- </div>
- </div>
- <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
- <div class="visualAttributesBtnDiv">
- <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnOK" value="确定" onclick="javascript:ClosePopup();" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnOK" class="button" data-bind="visible: attributes().length < 1" />
- <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
- <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnApply" value="确定" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnApply" class="button" data-bind="click: applySelections, visible: attributes().length > 0" />
- </div>
- </div>
- <style type="text/css">
- /* These styles are to customize "Visual Parametrics" modal window */
- .ui-dialog { position: absolute; padding: 0px !important; width: 300px; overflow: hidden;}
- .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .6em !important; background: none; overflow: auto; zoom: 1; max-height: 450px;}
- .ui-dialog .ui-dialog-titlebar { padding: .4em .5em !important; position: relative; background: none repeat scroll 0 0 #E0E4E9; font-size:15px; }
- .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border-bottom-right-radius: 0; }
- .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-bottom-left-radius: 0; }
- </style>
- <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
- <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
- </div>
- <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
- <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
- <script src='../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
- <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
- <script type="text/javascript">
- $().ready(function () {
- ko.applyBindings(new DisplayAttributesModel());
- ko.bindingHandlers.hoverToggle = {
- update: function (element, valueAccessor) {
- var css = valueAccessor();
- var isSelected = $(element).hasClass("selectedAttribute");
- if (!isSelected) {
- ko.utils.registerEventHandler(element, "mouseenter", function () {
- ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
- });
- ko.utils.registerEventHandler(element, "mouseleave", function () {
- ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
- });
- }
- }
- };
- });
- </script>
- </div>
- <div id="refine-mfg-logo2">
- </div>
- </div>
- <br />
- <table border="0" width="100%">
- <tr>
- <td>
- </td>
- </tr>
- <tr>
- <td>
- <!--- Search Features --->
- </td>
- </tr>
- <tr>
- <td>
- <div id="refine-page">
- </div>
- </td>
- </tr>
- <tr>
- <td class="refine-show-products">
- <span class="redtextb">
- </span> <span class="redtextb">
- </span> <span class="redtextb">
- </span> <span class="redtextb">
- </span>
- <span class="redtextb">
- </span>
- </td>
- </tr>
- <tr>
- <td>
- </td>
- </tr>
- <tr>
- <td>
- <!--- Special Order Parts New --->
- <!-- SOP Section 1 -->
- </td>
- </tr>
- </table>
- <div id="searchResultsTbl">
- <table id="ctl00_ContentMain_tbl2" class="no-pad">
- <tr>
- <td class="tdSearchResultsPagingTop">
- <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
- <tr>
- <td>
- <input type="submit" name="ctl00$ContentMain$btn1" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn1" title="购买所选商品" class="buy-button" ImageUrl="~/Images/Search/buy_selected.gif" />
- </td>
- <td>
- <input type="submit" name="ctl00$ContentMain$btn2" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) && 0 == 0) { alert('请选择您希望对比的产品。'); return false; };" id="ctl00_ContentMain_btn2" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
- </td>
- <td>
- <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
- </td>
- <td style="padding-left: 40px;">
- <div class="floatrightpager">
- <span class="bold">
- 页面:
- </span>
- <span id="ctl00_ContentMain_PagerTop"><span id="ctl00_ContentMain_PagerTop_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerTop_1" href="/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/?No=25">下一页</a></span>
- </div>
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td>
- <div>
- <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
- <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
- <th class="td-select" scope="col" style="width:35px;">
- 选择
- </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
- </th><th scope="col">制造商 零件编号
- </th><th scope="col">制造商
- </th><th scope="col">描述
- </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../Images/Search/pdf.gif" alt="文件" />
- </th><th scope="col">供货情况
- </th><th scope="col">单价(含17%增值税)
- <br />
- </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
- </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
- </th><th class="SearchResultParametricColumnHeading" scope="col">转换能源
- </th><th class="SearchResultParametricColumnHeading" scope="col">能量输出类型
- </th><th class="SearchResultParametricColumnHeading" scope="col">输出电压
- </th><th class="SearchResultParametricColumnHeading" scope="col">输出功率
- </th><th class="SearchResultParametricColumnHeading" scope="col">输入电压
- </th><th class="SearchResultParametricColumnHeading" scope="col">最大工作温度
- </th><th class="SearchResultParametricColumnHeading" scope="col">尺寸
- </th>
- </tr><tr class="SearchResultsSortCell">
- <td class="td-select" align="center"></td><td></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$MouserPartNumber>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl18','')"><img title="按 Mouser 零件编号 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 Mouser 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$MouserPartNumber>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl20','')"><img title="按 Mouser 零件编号 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 Mouser 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$ManufacturerPartNumber>Ascending'); return false;" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl02_ctl22" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl22','')"><img title="按 制造商 零件编号 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$ManufacturerPartNumber>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl24','')"><img title="按 制造商 零件编号 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Brand>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl26','')"><img title="按 制造商 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Brand>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl28','')"><img title="按 制造商 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Default>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl30','')"><img title="按 供货情况 Ascending 排序" src="../../../../Images/Search/btn_ActiveSort_Up.jpg" alt="按 供货情况 Ascending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Pricing>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl32','')"><img title="按 单价(含17%增值税) Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 单价(含17%增值税) Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Pricing>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl34','')"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Energy Sources to Convert>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl36','')"><img title="按 转换能源 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 转换能源 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Energy Sources to Convert>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl38','')"><img title="按 转换能源 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 转换能源 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Energy Output Type>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl40','')"><img title="按 能量输出类型 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 能量输出类型 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Energy Output Type>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl42','')"><img title="按 能量输出类型 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 能量输出类型 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Output Voltage>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl44','')"><img title="按 输出电压 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 输出电压 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Output Voltage>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl46','')"><img title="按 输出电压 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 输出电压 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Output Power>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl48','')"><img title="按 输出功率 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 输出功率 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Output Power>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl50','')"><img title="按 输出功率 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 输出功率 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Input Voltage>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl52','')"><img title="按 输入电压 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 输入电压 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Input Voltage>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl54','')"><img title="按 输入电压 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 输入电压 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Maximum Operating Temperature>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl56','')"><img title="按 最大工作温度 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 最大工作温度 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Maximum Operating Temperature>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl58','')"><img title="按 最大工作温度 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 最大工作温度 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Dimensions>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl60','')"><img title="按 尺寸 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 尺寸 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Dimensions>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl62','')"><img title="按 尺寸 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 尺寸 Descending 排序" /></a></td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="582-P2110B" data-index="3">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$chkSelect" onclick="javascript:RowSelected(3, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Powercast/P2110B/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q%252bByornoL4mpd03W2n%2fVrJu%252bfNaBlsuAA%3d%3d'><img title='Powercast P2110B' alt='Powercast P2110B' id=1365459784 src='/images/powercast/sm/P2110_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/powercast/images/P2110_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Powercast/P2110B/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q%252bByornoL4mpd03W2n%2fVrJu%252bfNaBlsuAA%3d%3d">582-P2110B</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Powercast/P2110B/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q%252bByornoL4mpd03W2n%2fVrJu%252bfNaBlsuAA%3d%3d">P2110B</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../powercast">Powercast</a>
- </td><td>能量采集模块 Powerharvester Receiver - 915 MHz
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../powercast-Px110-powerharvester">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Powercast","582-P2110B | P2110B"]);" href="http://www.powercastco.com/test566alpha/wp-content/uploads/2009/04/p2110b-datasheet-v12.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">279<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥276.8454</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥271.4634</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥269.1468</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,50);">50:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥265.2975</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(1,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 1);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy" title="购买 P2110B" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=UR84Xka27bmB5GFRkT6prA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=UR84Xka27bmB5GFRkT6prA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>RF
- </td><td>DC
- </td><td>2 V to 5.5 V
- </td><td>275 mW
- </td><td>
- </td><td>+ 85 C
- </td><td>0.53 in x 0.55 in x 0.082 in
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="509-PPA-1022" data-index="4">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$chkSelect" onclick="javascript:RowSelected(4, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Mide/PPA-1022/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOFxTvL%2f6nirfxogTcP6V02w%3d%3d'><img title='Mide PPA-1022' alt='Mide PPA-1022' id=1670488247 src='/images/midetechnology/sm/ppa-1022_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/midetechnology/images/ppa-1022_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Mide/PPA-1022/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOFxTvL%2f6nirfxogTcP6V02w%3d%3d">509-PPA-1022</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Mide/PPA-1022/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOFxTvL%2f6nirfxogTcP6V02w%3d%3d">PPA-1022</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../Mide-Technology">Mide</a>
- </td><td>能量采集模块 Piezo Transducer and Energy Harvester
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4gtaYxK9KOk6A%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4gtaYxK9KOk6A%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Mechanical Vibrations
- </td><td>AC
- </td><td>33 V
- </td><td>5.5 mW
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="509-PPA-1014" data-index="5">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$chkSelect" onclick="javascript:RowSelected(5, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Mide/PPA-1014/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOv43YdSzZvEUp8N74u0Svww%3d%3d'><img title='Mide PPA-1014' alt='Mide PPA-1014' id=1670488245 src='/images/midetechnology/sm/ppa-1014_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/midetechnology/images/ppa-1014_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Mide/PPA-1014/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOv43YdSzZvEUp8N74u0Svww%3d%3d">509-PPA-1014</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Mide/PPA-1014/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOv43YdSzZvEUp8N74u0Svww%3d%3d">PPA-1014</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../Mide-Technology">Mide</a>
- </td><td>能量采集模块 Piezo Transducer and Energy Harvester
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4gE7CL4qdexfw%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4gE7CL4qdexfw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Mechanical Vibrations
- </td><td>AC
- </td><td>27.3 V
- </td><td>25.9 mW
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="509-PPA-1011" data-index="6">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl06$chkSelect" onclick="javascript:RowSelected(6, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Mide/PPA-1011/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVO22wm9hJc%252bcmrbis3WosQag%3d%3d'><img title='Mide PPA-1011' alt='Mide PPA-1011' id=1670488259 src='/images/midetechnology/sm/ppa-1011_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/midetechnology/images/ppa-1011_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Mide/PPA-1011/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVO22wm9hJc%252bcmrbis3WosQag%3d%3d">509-PPA-1011</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Mide/PPA-1011/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVO22wm9hJc%252bcmrbis3WosQag%3d%3d">PPA-1011</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../Mide-Technology">Mide</a>
- </td><td>能量采集模块 Piezo Transducer and Energy Harvester
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4gmMcZTzbjgdw%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4gmMcZTzbjgdw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Mechanical Vibrations
- </td><td>AC
- </td><td>23.2 V
- </td><td>16 mW
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="582-P1110" data-index="7">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$chkSelect" onclick="javascript:RowSelected(7, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Powercast/P1110/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fL4HeDuOsK0p2FPtH1yMjs%3d'><img title='Powercast P1110' alt='Powercast P1110' id=483839054 src='/images/powercast/sm/P1110.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/powercast/images/P1110.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Powercast/P1110/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fL4HeDuOsK0p2FPtH1yMjs%3d">582-P1110</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Powercast/P1110/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fL4HeDuOsK0p2FPtH1yMjs%3d">P1110</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../powercast">Powercast</a>
- </td><td>能量采集模块 23dBm 50mA 902-928MHz 4.2V
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../new/powercast/powercast-Px110-powerharvester/">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Powercast","582-P1110 | P1110"]);" href="http://www.mouser.com/ds/2/329/P1110-datasheet-694.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">5<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/Powercast/P1110/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fL4HeDuOsK0p2FPtH1yMjs%3d">更多信息可用 </a>
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥246.4254</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥242.5761</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥239.8851</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,50);">50:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥236.808</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(5,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 5);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_btnBuy" title="购买 P1110" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=1dKsqSgSg908wicUWdZZPg%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=1dKsqSgSg908wicUWdZZPg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>+ 85 C
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="485-500" data-index="8">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$chkSelect" onclick="javascript:RowSelected(8, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Adafruit/500/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fFoG0K75Ds%2fMohE5FPoUb6Llgpx7nD%2fDw%3d%3d'><img title='Adafruit 500' alt='Adafruit 500' id=1480454606 src='/images/adafruit/sm/500_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/adafruit/images/500_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Adafruit/500/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fFoG0K75Ds%2fMohE5FPoUb6Llgpx7nD%2fDw%3d%3d">485-500</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Adafruit/500/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fFoG0K75Ds%2fMohE5FPoUb6Llgpx7nD%2fDw%3d%3d">500</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../adafruit">Adafruit</a>
- </td><td>能量采集模块 Large 6V 3.4W Solar Panel
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">3<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥337.8375</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(6,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 6);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy" title="购买 500" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=yt%2ffdA2rsuAwC4%2fon6B5sA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=yt%2ffdA2rsuAwC4%2fon6B5sA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="932-MIKROE-651" data-index="9">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$chkSelect" onclick="javascript:RowSelected(9, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/MikroElektronika/MIKROE-651/?qs=sGAEpiMZZMvxW%252bY8mn0Q9U%252b%2fhOkIvSmCqkyN6XrqZsI%3d'><img title='MikroElektronika MIKROE-651' alt='MikroElektronika MIKROE-651' id=672291746 src='/images/mikroelektronika/sm/solar_panel_board02.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/mikroelektronika/images/solar_panel_board02.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/MikroElektronika/MIKROE-651/?qs=sGAEpiMZZMvxW%252bY8mn0Q9U%252b%2fhOkIvSmCqkyN6XrqZsI%3d">932-MIKROE-651</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/MikroElektronika/MIKROE-651/?qs=sGAEpiMZZMvxW%252bY8mn0Q9U%252b%2fhOkIvSmCqkyN6XrqZsI%3d">MIKROE-651</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../mikroelektronika">MikroElektronika</a>
- </td><td>能量采集模块 SOLAR PANEL 4.0V 100mA 70x65x3.2mm
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"MikroElektronika","932-MIKROE-651 | MIKROE-651"]);" href="http://www.mouser.com/ds/2/272/solar_panel_spec-5527.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">38<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥83.9358</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(7,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 7);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy" title="购买 MIKROE-651" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=u9Abd22xxAGy0p0vTATBTg%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=u9Abd22xxAGy0p0vTATBTg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Solar
- </td><td>
- </td><td>4 V
- </td><td>0.4 W
- </td><td>
- </td><td>+ 50 C
- </td><td>70 mm x 65 mm x 3.2 mm
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="485-1525" data-index="10">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$chkSelect" onclick="javascript:RowSelected(10, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Adafruit/1525/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fFoG0K75Ds%2fPEfFDG3nW4FT3Qv%2f4lbn%252bQ%3d%3d'><img title='Adafruit 1525' alt='Adafruit 1525' id=1480456014 src='/images/adafruit/sm/1525_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/adafruit/images/1525_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Adafruit/1525/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fFoG0K75Ds%2fPEfFDG3nW4FT3Qv%2f4lbn%252bQ%3d%3d">485-1525</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Adafruit/1525/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fFoG0K75Ds%2fPEfFDG3nW4FT3Qv%2f4lbn%252bQ%3d%3d">1525</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../adafruit">Adafruit</a>
- </td><td>能量采集模块 Huge 6V Solar Panel
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">5<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥454.3578</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(8,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 8);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy" title="购买 1525" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=yt%2ffdA2rsuD6y0STuDEFjg%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=yt%2ffdA2rsuD6y0STuDEFjg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="509-PPA-1001" data-index="11">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$chkSelect" onclick="javascript:RowSelected(11, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Mide/PPA-1001/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVO7%2fCjs3L3ChiUPI17gmpiVA%3d%3d'><img title='Mide PPA-1001' alt='Mide PPA-1001' id=1670488241 src='/images/midetechnology/sm/ppa-1001_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/midetechnology/images/ppa-1001_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Mide/PPA-1001/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVO7%2fCjs3L3ChiUPI17gmpiVA%3d%3d">509-PPA-1001</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Mide/PPA-1001/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVO7%2fCjs3L3ChiUPI17gmpiVA%3d%3d">PPA-1001</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../Mide-Technology">Mide</a>
- </td><td>能量采集模块 Piezo Transducer and Energy Harvester
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4gPeJ0keNuPLA%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4gPeJ0keNuPLA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Mechanical Vibrations
- </td><td>AC
- </td><td>17.3 V
- </td><td>4.4 mW
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="585-EH301A" data-index="12">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$chkSelect" onclick="javascript:RowSelected(12, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Advanced-Linear-Devices/EH301A/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSURvNJf8EqCWcI%3d'><img title='Advanced Linear Devices EH301A' alt='Advanced Linear Devices EH301A' id=40327620 src='/images/advancedlineardevices/sm/727200715207.jpg'/></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Advanced-Linear-Devices/EH301A/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSURvNJf8EqCWcI%3d">585-EH301A</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Advanced-Linear-Devices/EH301A/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSURvNJf8EqCWcI%3d">EH301A</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../ald">Advanced Linear Devices</a>
- </td><td>能量采集模块 3.1V to 5.2V 55mJ 88msec@150mA
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Advanced Linear Devices","585-EH301A | EH301A"]);" href="http://www.mouser.com/ds/2/8/EH300ds-16650.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">3<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/Advanced-Linear-Devices/EH301A/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSURvNJf8EqCWcI%3d">更多信息可用 </a>
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥510.5763</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,2);">2:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥500.643</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,5);">5:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥498.5604</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥480.5424</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Advanced-Linear-Devices/EH301A/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSURvNJf8EqCWcI%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(10,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 10);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_btnBuy" title="购买 EH301A" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=yotRh4DLuF8b28FOw4Fs9A%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=yotRh4DLuF8b28FOw4Fs9A%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Electrical Energy
- </td><td>DC
- </td><td>3.1 V to 5.2 V
- </td><td>55 mJ
- </td><td>0 V to +/- 500 V
- </td><td>+ 70 C
- </td><td>2 in x 0.7 in x 0.55 in
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="585-EH300A" data-index="13">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$chkSelect" onclick="javascript:RowSelected(13, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Advanced-Linear-Devices/EH300A/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSUR%2fA5AczTqYF4%3d'><img title='Advanced Linear Devices EH300A' alt='Advanced Linear Devices EH300A' id=40327617 src='/images/advancedlineardevices/sm/727200715207.jpg'/></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Advanced-Linear-Devices/EH300A/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSUR%2fA5AczTqYF4%3d">585-EH300A</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Advanced-Linear-Devices/EH300A/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSUR%2fA5AczTqYF4%3d">EH300A</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../ald">Advanced Linear Devices</a>
- </td><td>能量采集模块 1.8V to 3.6V 30mJ 75msec@150mA
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Advanced Linear Devices","585-EH300A | EH300A"]);" href="http://www.mouser.com/ds/2/8/EH300ds-16650.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">4<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥510.5763</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,2);">2:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥500.643</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,5);">5:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥498.5604</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥480.5424</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Advanced-Linear-Devices/EH300A/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSUR%2fA5AczTqYF4%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(11,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 11);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy" title="购买 EH300A" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=yotRh4DLuF9kgD57bHdtgQ%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=yotRh4DLuF9kgD57bHdtgQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Electrical Energy
- </td><td>DC
- </td><td>1.8 V to 3.6 V
- </td><td>30 mJ
- </td><td>0 V to +/- 500 V
- </td><td>+ 70 C
- </td><td>2 in x 0.7 in x 0.55 in
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="585-EH300" data-index="14">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$chkSelect" onclick="javascript:RowSelected(14, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Advanced-Linear-Devices/EH300/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSURv7BX6dBv0qo%3d'><img title='Advanced Linear Devices EH300' alt='Advanced Linear Devices EH300' id=40327616 src='/images/advancedlineardevices/sm/727200715207.jpg'/></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Advanced-Linear-Devices/EH300/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSURv7BX6dBv0qo%3d">585-EH300</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Advanced-Linear-Devices/EH300/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSURv7BX6dBv0qo%3d">EH300</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../ald">Advanced Linear Devices</a>
- </td><td>能量采集模块 1.8V to 3.6V 4.6mJ 68msec@25mA
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Advanced Linear Devices","585-EH300 | EH300"]);" href="http://www.mouser.com/ds/2/8/EH300ds-16650.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">2<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥434.9475</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,2);">2:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥426.4767</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,5);">5:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥424.71</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥409.3011</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Advanced-Linear-Devices/EH300/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Rpxi6lxkSURv7BX6dBv0qo%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(12,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 12);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy" title="购买 EH300" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=yotRh4DLuF%252bNfjsXDXUrhw%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=yotRh4DLuF%252bNfjsXDXUrhw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Electrical Energy
- </td><td>DC
- </td><td>1.8 V to 3.6 V
- </td><td>4.6 mJ
- </td><td>0 V to +/- 500 V
- </td><td>+ 70 C
- </td><td>2 in x 0.7 in x 0.55 in
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="485-200" data-index="15">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$chkSelect" onclick="javascript:RowSelected(15, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Adafruit/200/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fFoG0K75Ds%2fokC7M0CWcfK7y7t%252bMa7URA%3d%3d'><img title='Adafruit 200' alt='Adafruit 200' id=1480454242 src='/images/adafruit/sm/200_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/adafruit/images/200_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Adafruit/200/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fFoG0K75Ds%2fokC7M0CWcfK7y7t%252bMa7URA%3d%3d">485-200</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Adafruit/200/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fFoG0K75Ds%2fokC7M0CWcfK7y7t%252bMa7URA%3d%3d">200</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../adafruit">Adafruit</a>
- </td><td>能量采集模块 Medium 6V 2W Solar Panel
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">2<br/>在订货物</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/Adafruit/200/?qs=sGAEpiMZZMvxW%252bY8mn0Q9fFoG0K75Ds%2fokC7M0CWcfK7y7t%252bMa7URA%3d%3d">更多信息可用 </a>
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥223.3296</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(13,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 13);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy" title="购买 200" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=yt%2ffdA2rsuBNMubL8SmOAQ%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=yt%2ffdA2rsuBNMubL8SmOAQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="713-313070004" data-index="16">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$chkSelect" onclick="javascript:RowSelected(16, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Seeed-Studio/313070004/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HnzLpsZGyaZ0lOCppMbo04A%3d%3d'><img title='Seeed Studio 313070004' alt='Seeed Studio 313070004' id=1580545179 src='/images/seeedstudios/sm/313070004_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/seeedstudios/images/313070004_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Seeed-Studio/313070004/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HnzLpsZGyaZ0lOCppMbo04A%3d%3d">713-313070004</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Seeed-Studio/313070004/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HnzLpsZGyaZ0lOCppMbo04A%3d%3d">313070004</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../seeedstudio">Seeed Studio</a>
- </td><td>能量采集模块 0.5W Solar Panel 55x70
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNORiBPVC7ZDmg%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNORiBPVC7ZDmg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="713-313070005" data-index="17">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$chkSelect" onclick="javascript:RowSelected(17, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Seeed-Studio/313070005/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HTGSOpKlQxTesHdspMXGQpA%3d%3d'><img title='Seeed Studio 313070005' alt='Seeed Studio 313070005' id=1580545203 src='/images/seeedstudios/sm/313070005_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/seeedstudios/images/313070005_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Seeed-Studio/313070005/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HTGSOpKlQxTesHdspMXGQpA%3d%3d">713-313070005</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Seeed-Studio/313070005/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HTGSOpKlQxTesHdspMXGQpA%3d%3d">313070005</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../seeedstudio">Seeed Studio</a>
- </td><td>能量采集模块 1W Solar Panel 80X100
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNP9jfRfuiLXfA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNP9jfRfuiLXfA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="713-313070002" data-index="18">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$chkSelect" onclick="javascript:RowSelected(18, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Seeed-Studio/313070002/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1Hr8fl1Ujh4SxeFffCG2ZLmg%3d%3d'><img title='Seeed Studio 313070002' alt='Seeed Studio 313070002' id=1580545193 src='/images/seeedstudios/sm/313070002_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/seeedstudios/images/313070002_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Seeed-Studio/313070002/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1Hr8fl1Ujh4SxeFffCG2ZLmg%3d%3d">713-313070002</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Seeed-Studio/313070002/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1Hr8fl1Ujh4SxeFffCG2ZLmg%3d%3d">313070002</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../seeedstudio">Seeed Studio</a>
- </td><td>能量采集模块 1.5W Solar Panel 81X137
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNMrLPKompOnLg%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNMrLPKompOnLg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="713-313070000" data-index="19">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$chkSelect" onclick="javascript:RowSelected(19, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Seeed-Studio/313070000/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1Hze0hDXLxtGwYiGwcF67WSQ%3d%3d'><img title='Seeed Studio 313070000' alt='Seeed Studio 313070000' id=1580545181 src='/images/seeedstudios/sm/313070000_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/seeedstudios/images/313070000_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Seeed-Studio/313070000/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1Hze0hDXLxtGwYiGwcF67WSQ%3d%3d">713-313070000</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Seeed-Studio/313070000/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1Hze0hDXLxtGwYiGwcF67WSQ%3d%3d">313070000</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../seeedstudio">Seeed Studio</a>
- </td><td>能量采集模块 2.5W Solar Panel 116X160
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNNBIXcifIFQgg%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNNBIXcifIFQgg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="713-313070003" data-index="20">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$chkSelect" onclick="javascript:RowSelected(20, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Seeed-Studio/313070003/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HO5CCN5tdj8Q4edwlaKBm5w%3d%3d'><img title='Seeed Studio 313070003' alt='Seeed Studio 313070003' id=1580545163 src='/images/seeedstudios/sm/313070003_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/seeedstudios/images/313070003_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Seeed-Studio/313070003/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HO5CCN5tdj8Q4edwlaKBm5w%3d%3d">713-313070003</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Seeed-Studio/313070003/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HO5CCN5tdj8Q4edwlaKBm5w%3d%3d">313070003</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../seeedstudio">Seeed Studio</a>
- </td><td>能量采集模块 2W Solar Panel 80X180
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNN6ccaFS32m4w%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNN6ccaFS32m4w%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="713-313070001" data-index="21">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$chkSelect" onclick="javascript:RowSelected(21, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Seeed-Studio/313070001/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HVfI%2f8OvFPVRlort1pRXv%2fA%3d%3d'><img title='Seeed Studio 313070001' alt='Seeed Studio 313070001' id=1580545201 src='/images/seeedstudios/sm/313070001_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/seeedstudios/images/313070001_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Seeed-Studio/313070001/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HVfI%2f8OvFPVRlort1pRXv%2fA%3d%3d">713-313070001</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Seeed-Studio/313070001/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HVfI%2f8OvFPVRlort1pRXv%2fA%3d%3d">313070001</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../seeedstudio">Seeed Studio</a>
- </td><td>能量采集模块 3W Solar Panel 138X160
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNOvxhfjuV0KeA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNOvxhfjuV0KeA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="509-PPA-2014" data-index="22">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$chkSelect" onclick="javascript:RowSelected(22, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Mide/PPA-2014/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOicjGUS105Ga3BPKOROkqkw%3d%3d'><img title='Mide PPA-2014' alt='Mide PPA-2014' id=1670488253 src='/images/midetechnology/sm/ppa-2014_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/midetechnology/images/ppa-2014_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Mide/PPA-2014/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOicjGUS105Ga3BPKOROkqkw%3d%3d">509-PPA-2014</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Mide/PPA-2014/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOicjGUS105Ga3BPKOROkqkw%3d%3d">PPA-2014</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../Mide-Technology">Mide</a>
- </td><td>能量采集模块 Piezo Transducer and Energy Harvester
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Mide","509-PPA-2014 | PPA-2014"]);" href="https://cdn.shopify.com/s/files/1/0964/1872/files/ppa-piezo-product-datasheet.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4hN7I9qURm%252bTA%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4hN7I9qURm%252bTA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="713-114990057" data-index="23">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$chkSelect" onclick="javascript:RowSelected(23, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Seeed-Studio/114990057/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HC2VfQDngzpE5YTSNg0v2%2fQ%3d%3d'><img title='Seeed Studio 114990057' alt='Seeed Studio 114990057' id=1580545387 src='/images/seeedstudios/sm/114990057_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/seeedstudios/images/114990057_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Seeed-Studio/114990057/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HC2VfQDngzpE5YTSNg0v2%2fQ%3d%3d">713-114990057</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Seeed-Studio/114990057/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HC2VfQDngzpE5YTSNg0v2%2fQ%3d%3d">114990057</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../seeedstudio">Seeed Studio</a>
- </td><td>能量采集模块 2V 0.5W Thin-film Flexible Solar Panel
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNOMnDiFeN74zQ%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNOMnDiFeN74zQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="713-114990247" data-index="24">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$chkSelect" onclick="javascript:RowSelected(24, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Seeed-Studio/114990247/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HRCuMeGOo33tvUFkZR%2fQtsA%3d%3d'><img title='Seeed Studio 114990247' alt='Seeed Studio 114990247' id=1580547369 src='/images/seeedstudios/sm/114990247_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/seeedstudios/images/114990247_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Seeed-Studio/114990247/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HRCuMeGOo33tvUFkZR%2fQtsA%3d%3d">713-114990247</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Seeed-Studio/114990247/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HRCuMeGOo33tvUFkZR%2fQtsA%3d%3d">114990247</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../seeedstudio">Seeed Studio</a>
- </td><td>能量采集模块 2.5W CIGS Solar Cloth
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNPXf8Mk5AO7GQ%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNPXf8Mk5AO7GQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="713-114990248" data-index="25">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$chkSelect" onclick="javascript:RowSelected(25, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Seeed-Studio/114990248/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HoMlslyZGUt3%2fdahiPAWeDg%3d%3d'><img title='Seeed Studio 114990248' alt='Seeed Studio 114990248' id=1580547359 src='/images/seeedstudios/sm/114990248_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/seeedstudios/images/114990248_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Seeed-Studio/114990248/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HoMlslyZGUt3%2fdahiPAWeDg%3d%3d">713-114990248</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Seeed-Studio/114990248/?qs=sGAEpiMZZMvxW%252bY8mn0Q9Q6jG3luBl1HoMlslyZGUt3%2fdahiPAWeDg%3d%3d">114990248</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../seeedstudio">Seeed Studio</a>
- </td><td>能量采集模块 5W CIGS Solar Cloth
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNPTYqN9ymtx9Q%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=czNUmmgVKNPTYqN9ymtx9Q%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="509-PPA-1021" data-index="26">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$chkSelect" onclick="javascript:RowSelected(26, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Mide/PPA-1021/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOq1%252bjMvBz8MYpKKlWqFyC%252bw%3d%3d'><img title='Mide PPA-1021' alt='Mide PPA-1021' id=1670488249 src='/images/midetechnology/sm/ppa-1021_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/midetechnology/images/ppa-1021_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Mide/PPA-1021/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOq1%252bjMvBz8MYpKKlWqFyC%252bw%3d%3d">509-PPA-1021</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Mide/PPA-1021/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOq1%252bjMvBz8MYpKKlWqFyC%252bw%3d%3d">PPA-1021</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../Mide-Technology">Mide</a>
- </td><td>能量采集模块 Piezo Transducer and Energy Harvester
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4irAlol%2fAMfAQ%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4irAlol%2fAMfAQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="509-PPA-1012" data-index="27">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$chkSelect" onclick="javascript:RowSelected(27, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/Mide/PPA-1012/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOI1tKtvuyfIyA4KKQPgq%252bcg%3d%3d'><img title='Mide PPA-1012' alt='Mide PPA-1012' id=1670488243 src='/images/midetechnology/sm/ppa-1012_spl.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/midetechnology/images/ppa-1012_spl.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Mide/PPA-1012/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOI1tKtvuyfIyA4KKQPgq%252bcg%3d%3d">509-PPA-1012</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Mide/PPA-1012/?qs=sGAEpiMZZMvxW%252bY8mn0Q9e0GWxlo%2fuVOI1tKtvuyfIyA4KKQPgq%252bcg%3d%3d">PPA-1012</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../Mide-Technology">Mide</a>
- </td><td>能量采集模块 Piezo Transducer and Energy Harvester
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=中國&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4gCVD0smS1jNw%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=HHIEyESCx4gCVD0smS1jNw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr>
- </table>
- </div>
- </td>
- </tr>
- <tr>
- <td class="tdSearchResultsPagingBottom">
- <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
- <tr>
- <td>
- <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
- </td>
- <td>
- <input type="submit" name="ctl00$ContentMain$btn4" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) && 0 == 0) { alert('请选择您希望对比的产品。'); return false; };" id="ctl00_ContentMain_btn4" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
- </td>
- <td>
- <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
- </td>
- <td style="padding-left: 40px;">
- <div class="floatrightpager">
- <span class="bold">
- 页面:
- </span>
- <span id="ctl00_ContentMain_PagerBottom"><span id="ctl00_ContentMain_PagerBottom_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerBottom_1" href="/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/?No=25">下一页</a></span>
- </div>
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td>
- <!--- Search Tips --->
- </td>
- </tr>
- <tr>
- <td>
- <!-- SOP Section 2 -->
- </td>
- </tr>
- </table>
- </div>
- </div><!-- #liProducts-->
- <!-- Datasheets tab -->
- <!-- #liDatasheets-->
- <!-- Images tab -->
- <!-- #liImages-->
- <!-- Newest Products tab -->
- <!-- #liProducts-->
- </div>
- <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
-
- <div>
- <span class="popular-searches-label">热门搜索:</span>
- <span class="popular-searches-links"><a href='/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx?P=1yzoo8q&pop=r6hu' onclick="ga('send','event','Popular Search Refine Click','Energy Harvesting Modules','70 mm x 65 mm x 3.2 mm Energy Harvesting Modules')">70 mm x 65 mm x 3.2 mm 能量采集模块</a> , <a href='/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx?P=1yxikwk&pop=15nq' onclick="ga('send','event','Popular Search Refine Click','Energy Harvesting Modules','Electrical Energy Energy Harvesting Modules')">Electrical Energy 能量采集模块</a> , <a href='/Embedded-Solutions/Energy-Harvesting-Modules/_/N-8t3zx/?P=1z0iyhi&pop=s7lq' onclick="ga('send','event','Popular Search Refine Click','Energy Harvesting Modules','1.8 V to 3.6 V Energy Harvesting Modules')">1.8 V to 3.6 V 能量采集模块</a> , <a href='/내장형-솔루션/에너지-하베스팅-모듈/_/N-8t3zx/?P=1yxikwk&pop=poap' onclick="ga('send','event','Popular Search Refine Click','Energy Harvesting Modules','Electrical Energy Energy Harvesting Modules')">Electrical Energy 能量采集模块</a></span>
- </div>
- </div>
- <div style="visibility: hidden;">
- <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
- <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
- <span id="SearchResultCount">31</span>
- <div id="disclaimer">
- 图像仅供参考<br/>请参阅产品规格</div>
- </div>
- <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Embedded-Solutions/Energy-Harvesting-Modules" />
- <script type="text/javascript" src='../../../../javascript/ProductImage.js'></script>
- <script type="text/javascript" src='../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
- <script type="text/javascript" src='../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
- <!--[if gte IE 9]><!-->
- <script type="text/javascript" src='../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
- <!--<![endif]-->
- <!--[if lt IE 9]>
- <script type="text/javascript" src='../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
- <![endif]-->
- <script type="text/javascript" src='../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
- <script type="text/javascript">
- var subdomain = 'cn2';
- </script>
- </div>
- <div class="aspNetHidden">
- <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
- <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
- <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
-
- <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
- </div>
- <script type="text/javascript">
- //<![CDATA[
- var mfrIDsArray = new Array;
- //]]>
- </script>
- <script src='../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
- <script type="text/javascript">
- //<![CDATA[
- var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
- </script>
- <script src='../../../../flash/js/Plugin/jquery.autoSuggest3.js?v=3.0.20160304.2' type='text/javascript'></script><script src='../../../../flash/js/AutoSuggestionM3.js?v=3.0.20160304.2' type='text/javascript'></script>
- <script type="text/javascript">
- //<![CDATA[
- maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
- //]]>
- </script>
- <script type='text/javascript'>$(document).ready(function() { $(':text').blur(); });</script><script src='../../../../flash/js/DataTables-1.9.4/jquery.dataTables.min.js' type='text/javascript'></script><script src='../../../../flash/js/DataTables.js?v=3.0.20160304.2' type='text/javascript'></script><script src='../../../../flash/js/jquery.hoverIntent.minified.js?v=3.0.20160304.2' type='text/javascript'></script>
- <script type="text/javascript">
- //<![CDATA[
- groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$1000000740^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000741^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688594^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$688590^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$688469^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000314^ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$688399';
- theForm.oldSubmit = theForm.submit;
- theForm.submit = WebForm_SaveScrollPositionSubmit;
- theForm.oldOnSubmit = theForm.onsubmit;
- theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
- //]]>
- </script>
- </form>
- <div id="content-container2" class="hidden">
- <div id="content-fixed-width2" class="content-fixed-width">
- </div>
- </div>
- <div id="wideFooter" class="wideFooter">
- <div id="footer" class="container">
- <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB08|20160304.2" />
- <div id="ft_table1">
- <div class="row">
- <div class="col-xs-12">
- <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
-
- <div class="floatleft padding5right">
- <strong class="h3">
- 快速电子邮件注册</strong>
- <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
- </div>
- <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
- 提交
- </a>
- </div>
- <div id="ft_icons" class="ft_icons">
- <div id="ft_social">
- <a id="ctl00_Footer1_lnkWechat" title="微信" onclick="ga('send','event','Social Media Footer Icon','Wechat','http://www.mouser.cn/wechat');" href="http://www.mouser.cn/wechat"><div id="ctl00_Footer1_imgWechat" class="ico-social wechat"></div></a>
- <a id="ctl00_Footer1_lnkYouKu" title="优酷" onclick="ga('send','event','Social Media Footer Icon','YouKu','http://i.youku.com/mouserelectronics');" href="http://i.youku.com/mouserelectronics" target="_blank"><div id="ctl00_Footer1_imgYouKu" class="ico-social youku"></div></a>
- <a id="ctl00_Footer1_lnkWeibo" title="新浪微博" onclick="ga('send','event','Social Media Footer Icon','Sina Weibo','http://www.weibo.com/u/2498646920');" href="http://www.weibo.com/u/2498646920" target="_blank"><div id="ctl00_Footer1_imgWeigo" class="ico-social weibo"></div></a>
- <a id="ctl00_Footer1_lnkFB" title="facebook" onclick="ga('send','event','Social Media Footer Icon','facebook','http://www.facebook.com/mouserelectronics');" href="http://www.facebook.com/mouserelectronics" target="_blank">
- <div class="ico-social fb"></div>
- </a>
- <a id="ctl00_Footer1_lnkTw" title="Twitter" onclick="ga('send','event','Social Media Footer Icon','Twitter','http://www.twitter.com/mouserelec');" href="http://www.twitter.com/mouserelec" target="_blank">
- <div class="ico-social tw"></div>
- </a>
- <a id="ctl00_Footer1_lnkRSS" title="RSS" onclick="ga('send','event','Social Media Footer Icon','RSS','http://www.mouser.cn/rssfeeds');" href="http://www.mouser.cn/rssfeeds" target="_blank">
- <div class="ico-social rss"></div>
- </a>
- <a id="ctl00_Footer1_lnkYT" title="YouTube" onclick="ga('send','event','Social Media Footer Icon','YouTube','http://www.youtube.com/mouserelec');" href="http://www.youtube.com/mouserelec" target="_blank">
- <div class="ico-social yt"></div>
- </a>
- <a id="ctl00_Footer1_lnkGp" title="Google+" onclick="ga('send','event','Social Media Footer Icon','Google+','http://google.com/+MouserElec');" href="http://google.com/+MouserElec" target="_blank">
- <div class="ico-social gp"></div>
- </a>
- <a id="ctl00_Footer1_lnkLn" title="LinkedIn" onclick="ga('send','event','Social Media Footer Icon','LinkedIn','http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT');" href="http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT" target="_blank">
- <div class="ico-social ln"></div>
- </a>
- <a id="ctl00_Footer1_lnkSb" title="订阅中心" onclick="ga('send','event','Social Media Footer Icon','Subscription Center','http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx');" href="http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx">
- <div class="ico-social sb"></div>
- </a>
- <a id="ctl00_Footer1_lnkBlog" title="Mouser博客" onclick="ga('send','event','Social Media Footer Icon','Mouser Blog','http://www.mouser.cn/blog');" href="http://www.mouser.cn/blog">
- <div class="ico-social blog"></div>
- </a>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
- <div class="ft_wrapper">
- <div id="ft_links" class="row">
- <div class="col-xs-3 paddingBtm10 hidden-xs">
- <strong class="paddingTopBtm10 inline-block">
- 公司</strong>
- <ul>
- <li>
- <a id="ctl00_Footer1_lnk26" href="../../../../aboutus/">关于我们</a></li>
- <li>
- <a id="ctl00_Footer1_lnk28" href="../../../../educationalsales/">教育销售</a></li>
- <li>
- <a id="ctl00_Footer1_lnk31" href="../../../../pressroom/">新闻中心</a></li>
- <li>
- <a id="ctl00_Footer1_lnk32" href="../../../../careers/">Mouser 工作机会</a></li>
- <li>
- <a id="ctl00_Footer1_lnk29" href="../../../../quality/">品质保证</a></li>
- <li>
- <a id="ctl00_Footer1_lnk30" href="../../../../environmental/">环境保护</a></li>
- </ul>
- </div>
- <div class="col-xs-3 hidden-xs">
- <strong class="paddingTopBtm10 inline-block">
- 快速链接</strong>
- <ul>
- <li><a id="A7" href="/blog">
- Mouser博客</a></li>
- <li>
- <a id="ctl00_Footer1_hlnk1" href="../../../../new/">最新产品</a></li>
- <li>
- <a id="ctl00_Footer1_hlnk2" href="../../../../new/products/">新产品</a></li>
- <li>
- <a id="ctl00_Footer1_hlnk3" href="../../../../applications/">新技术</a></li>
- </ul>
- </div>
- <div class="col-xs-12 col-sm-3">
- <strong class="paddingTopBtm10 inline-block">
- 支持</strong>
- <ul>
- <li><a id="A3" href="/feedback.aspx">
- 反馈</a></li>
- <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
- 帮助</a></li>
- <li>
- <a id="ctl00_Footer1_lnk27" href="../../../../contact/">联系我们</a></li>
- <li class="hidden-xs"><a id="A5" href="/browsersupport/">
- 浏览器支持</a></li>
- <li><a id="A6" href="/cookie-policy/">
- Cookie政策</a></li>
- </ul>
- </div>
- <div class="col-xs-12 col-sm-3">
- <strong class="paddingTopBtm10 inline-block">
- 昴氏(上海)电子贸易有限公司</strong>
- <ul>
- <li>
- <h4>
- 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <div class="row">
- <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
-
- <div id="ft_copy">
- <span class="ft_terms">
- <a id="A1" href="/privacypolicy/">
- 隐私政策</a>
- |
- <a id="href3" href="/saleterms/">
- 销售条款</a>
- <br />
- </span>
- <span class="ft_copyright">
- 版权所有©2016 Mouser Electronics, Inc
- |
- 沪ICP备15042575号-1
- <br />
- </span>
- <span class="ft_trade">
- Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
- </span>
- <span class="ft_hq">
- Corporate headquarters and logistics center in Mansfield, Texas USA.
- </span>
- <br />
- <span class="ft_ClassicMobile">
- <strong>
- <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../m_Home.aspx">通过移动设备查看</a></strong>
- </span>
- </div>
- </div>
- <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
- <a id="ctl00_Footer1_linkECIA" title="ECIA" class="ft_cert_padding ft_ecia" href="../../../../ecia/"><img id="ctl00_Footer1_imgECIA" src="../../../../Images/footer/logo-ecia_small.png" alt="ECIA" /></a>
- <a id="ctl00_Footer1_linkCEDA" title="CEDA" class="ft_cert_padding ft_ceda" href="../../../../ecia/"><img id="ctl00_Footer1_imgCEDA" src="../../../../Images/footer/logo-ceda_small.png" alt="CEDA" /></a>
- <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
- <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
- </a>
- <a id="ctl00_Footer1_lnkSiteSecureSeal" class="ft_cert_padding ft_secure" href="https://seal.qualys.com/sealserv/info/?i=c8b29c82-965e-403b-956c-c855241927bb" target="_blank"><img id="ctl00_Footer1_imgSiteSecureSeal" oncontextmenu="javascript:alert('Copying Prohibited by Law'); return false;" src="//seal.qualys.com/sealserv/seal.gif?i=c8b29c82-965e-403b-956c-c855241927bb" alt="Qualys Secure Seal" style="border-style:None;" /></a>
- <a id="ctl00_Footer1_Hyperlink1" class="ft_cert_padding ft_sgs" href="http://www.sgs.gov.cn/lz/licenseLink.do?method=licenceView&entyId=20120329100456493" target="_blank" style="text-decoration:none;"><img id="ctl00_Footer1_imgChinaCN2" src="../../../../images/footer/icon_SGS.gif" style="border-style:None;height:37px;width:45px;" />
- </a>
- </div>
- <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
- <a id="ctl00_Footer1_linkNfsb" title="Customer Service Award" class="ft_cert_padding ft_award" href="../../../../nfsb-award/"><img id="ctl00_Footer1_imgNfsb" src="../../../../Images/footer/logo-nfsb_small.png" alt="Customer Service Award" /></a>
- <a id="ctl00_Footer1_linkISO9001" title="ISO9001" class="ft_cert_padding ft_iso" href="../../../../quality/"><img id="ctl00_Footer1_imgISO9001" src="../../../../Images/footer/logo-ISO9001_small.png" alt="ISO9001" /></a>
- <a id="ctl00_Footer1_linkAS9120A" title="AS9120A" class="ft_cert_padding ft_as9" href="../../../../as9100C/"><img id="ctl00_Footer1_imgAS9120A" src="../../../../Images/footer/logo-as9120a_small.png" alt="AS9120A" /></a>
- <a id="ctl00_Footer1_linkESD2020" title="ESD" class="ft_cert_padding ft_esd" href="../../../../quality/"><img id="ctl00_Footer1_imgESD" src="../../../../Images/footer/logo-esd_small.png" alt="ESD" /></a>
- </div>
- </div>
- <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-WXX6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-WXX6');</script>
- <script type="text/javascript">
- var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
- </script>
- </div>
- </div>
- <script src="../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
- <script type="text/javascript">var _elqQ = _elqQ || []; _elqQ.push(['elqSetSiteId', '1742027581']); _elqQ.push(['elqTrackPageView']); _elqQ.push(['elqUseFirstPartyCookie', 'elq.mouser.cn']); (function () { function async_load() { var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img03.en25.com/i/elqCfg.min.js'; var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x); } if (window.addEventListener) window.addEventListener('DOMContentLoaded', async_load, false); else if (window.attachEvent) window.attachEvent('onload', async_load); })();</script>
- </body>
- </html>
|