| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617 |
- <!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_7ba82f96-3da5-418f-8a16-68b4c05dc86d-45084-422018';</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","Bh7QnMUrbRz1es0SaBqGZsoghQ/e2ZP/SRjhHZ7AHI0=",2]);_gaq.push(["_setCustomVar",31,"Cart","fb0d61f4-bfae-47c6-ae66-f89f7ad8ff1e",2]);
- _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA96AA68",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': '262-BMF055',
- 'name': 'IMUs - Inertial Measurement Units Absolute Orientation Empty 9-Axis Sensor',
- 'category': 'IMUs - Inertial Measurement Units',
- 'brand': 'Bosch Sensortec',
- 'variant': 'BMF055',
- 'list': 'Refine',
- 'position': '1'
- });
- ga('ec:addImpression', {
- 'id': '511-LSM6DS33TR',
- 'name': 'IMUs - Inertial Measurement Units',
- 'category': 'IMUs - Inertial Measurement Units',
- 'brand': 'STMicroelectronics',
- 'variant': 'LSM6DS33TR',
- 'list': 'Refine',
- 'position': '2'
- });
- ga('ec:addImpression', {
- 'id': '498-MC3610',
- 'name': 'Accelerometers 3 Axis Accelerometer',
- 'category': 'Accelerometers',
- 'brand': 'mCube',
- 'variant': 'MC3610',
- 'list': 'Refine',
- 'position': '3'
- });
- ga('ec:addImpression', {
- 'id': '512-FIS1100',
- 'name': 'IMUs - Inertial Measurement Units Accel + Gyro 6DOF MEMS Sensor in LGA16',
- 'category': 'IMUs - Inertial Measurement Units',
- 'brand': 'Fairchild Semiconductor',
- 'variant': 'FIS1100',
- 'list': 'Refine',
- 'position': '4'
- });
- ga('ec:addImpression', {
- 'id': '912-KX023-1025-FR',
- 'name': 'Accelerometers 3x3x0.9mm Accel with FIFO/FILO Buffer',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KX023-1025-FR',
- 'list': 'Refine',
- 'position': '5'
- });
- ga('ec:addImpression', {
- 'id': '912-KXTC9-2050-PR',
- 'name': 'Accelerometers Triaxis accel 3.3V analog low noise',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXTC9-2050-PR',
- 'list': 'Refine',
- 'position': '6'
- });
- ga('ec:addImpression', {
- 'id': '912-KXR94-2283-PR',
- 'name': 'Accelerometers Triaxis accel 5.0V analog low noise',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXR94-2283-PR',
- 'list': 'Refine',
- 'position': '7'
- });
- ga('ec:addImpression', {
- 'id': '912-KXR94-2050-PR',
- 'name': 'Accelerometers Triaxis accel 3.3V analog low noise',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXR94-2050-PR',
- 'list': 'Refine',
- 'position': '8'
- });
- ga('ec:addImpression', {
- 'id': '912-KXCJK-1013-PR',
- 'name': 'Accelerometers 3x3x0.9mm 16-pin Low-Power Accel',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXCJK-1013-PR',
- 'list': 'Refine',
- 'position': '9'
- });
- ga('ec:addImpression', {
- 'id': '511-AIS3624DQTR',
- 'name': 'Accelerometers Motion MEMS',
- 'category': 'Accelerometers',
- 'brand': 'STMicroelectronics',
- 'variant': 'AIS3624DQTR',
- 'list': 'Refine',
- 'position': '10'
- });
- ga('ec:addImpression', {
- 'id': '912-KXD94-2802-PR',
- 'name': 'Accelerometers Triaxis accel 5.0V analog',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXD94-2802-PR',
- 'list': 'Refine',
- 'position': '11'
- });
- ga('ec:addImpression', {
- 'id': '912-KXRB5-2050-PR',
- 'name': 'Accelerometers Triaxis accel 3.3V analog-mux low noise',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXRB5-2050-PR',
- 'list': 'Refine',
- 'position': '12'
- });
- ga('ec:addImpression', {
- 'id': '511-LIS2DE12TR',
- 'name': 'Accelerometers MEMS digital output motion sensor: ultra low-power high performance 3-axes femto accelerometer',
- 'category': 'Accelerometers',
- 'brand': 'STMicroelectronics',
- 'variant': 'LIS2DE12TR',
- 'list': 'Refine',
- 'position': '13'
- });
- ga('ec:addImpression', {
- 'id': '511-LIS3DETR',
- 'name': 'Accelerometers MEMS digital output motion sensor ultra low-power high performance 3-axes \u0026#34;nano\u0026#34; accelerometer',
- 'category': 'Accelerometers',
- 'brand': 'STMicroelectronics',
- 'variant': 'LIS3DETR',
- 'list': 'Refine',
- 'position': '14'
- });
- ga('ec:addImpression', {
- 'id': '912-KX023-1025-PR',
- 'name': 'Accelerometers 3x3x0.9mm Accel with FIFO/FILO Buffer',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KX023-1025-PR',
- 'list': 'Refine',
- 'position': '15'
- });
- ga('ec:addImpression', {
- 'id': '912-KXCNL-1010-PR',
- 'name': 'Accelerometers 3x3x0.9mm Accel with Dual State Machines',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXCNL-1010-PR',
- 'list': 'Refine',
- 'position': '16'
- });
- ga('ec:addImpression', {
- 'id': '912-KXTF9-2050-PR',
- 'name': 'Accelerometers Triaxis accel 3.3V digi w/motion detect',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXTF9-2050-PR',
- 'list': 'Refine',
- 'position': '17'
- });
- ga('ec:addImpression', {
- 'id': '912-KXTIA-1006-PR',
- 'name': 'Accelerometers 3x3x0.9mm Accel with FIFO/FILO Buffer',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXTIA-1006-PR',
- 'list': 'Refine',
- 'position': '18'
- });
- ga('ec:addImpression', {
- 'id': '912-KXTI9-1001-PR',
- 'name': 'Accelerometers 3x3x0.9mm Accel with FIFO/FILO Buffer',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXTI9-1001-PR',
- 'list': 'Refine',
- 'position': '19'
- });
- ga('ec:addImpression', {
- 'id': '912-KX022-1020-PR',
- 'name': 'Accelerometers 2x2x0.9mm Accel with FIFO/FILO Buffer',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KX022-1020-PR',
- 'list': 'Refine',
- 'position': '20'
- });
- ga('ec:addImpression', {
- 'id': '912-KXTF9-4100-PR',
- 'name': 'Accelerometers Triaxis accel 1.8V digi w/motion detect',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXTF9-4100-PR',
- 'list': 'Refine',
- 'position': '21'
- });
- ga('ec:addImpression', {
- 'id': '81-SVK3A103AEA01R00',
- 'name': 'Board Mount Motion \u0026 Position Sensors SV3K Rotary Position Sensor - Reel',
- 'category': 'Board Mount Motion \u0026 Position Sensors',
- 'brand': 'Murata Electronics',
- 'variant': 'SVK3A103AEA01R00',
- 'list': 'Refine',
- 'position': '22'
- });
- ga('ec:addImpression', {
- 'id': '81-SVK3A103AEA01B00',
- 'name': 'Board Mount Motion \u0026 Position Sensors SV3K Rotary Position Sensor - Bulk',
- 'category': 'Board Mount Motion \u0026 Position Sensors',
- 'brand': 'Murata Electronics',
- 'variant': 'SVK3A103AEA01B00',
- 'list': 'Refine',
- 'position': '23'
- });
- ga('ec:addImpression', {
- 'id': '912-KXTJ2-1009-PR',
- 'name': 'Accelerometers 2x2x0.9mm Low Power Accel',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXTJ2-1009-PR',
- 'list': 'Refine',
- 'position': '24'
- });
- ga('ec:addImpression', {
- 'id': '912-KXCJ9-1008-PR',
- 'name': 'Accelerometers 3x3x0.9mm Low Power Accel',
- 'category': 'Accelerometers',
- 'brand': 'Kionix',
- 'variant': 'KXCJ9-1008-PR',
- 'list': 'Refine',
- 'position': '25'
- });
- ga('set','dimension1','zh-CN');
- ga('set','dimension30','Bh7QnMUrbRz1es0SaBqGZsoghQ/e2ZP/SRjhHZ7AHI0=');
- ga('set','dimension31','fb0d61f4-bfae-47c6-ae66-f89f7ad8ff1e');
- ga('set','dimension13','163AA125AA96AA68');
- ga('set','metric2',3160);
- ga('set','dimension5','Motion \u0026 Position Sensors');
- ga('set','dimension48','6g7q6');
- ga('set','dimension3','Refine');
- ga('set','dimension55','Products');
- ga('send', 'pageview');
- </script>
- <link href="http://www.mouser.cn/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=25" rel="next" content="http://www.mouser.cn/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=25" /><link href="http://www.mouser.cn/Sensors/Motion-Position-Sensors/_/N-6g7q6" rel="canonical" content="http://www.mouser.cn/Sensors/Motion-Position-Sensors/_/N-6g7q6" /><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/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Sensors/Motion-Position-Sensors/_/N-6g7q6/" /><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#xqystvxeaxesuf{display:none!important}</style><!-- Optimized for speed - Stingray Aptimizer --></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="/Sensors/Motion-Position-Sensors/_/N-6g7q6/" 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="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" />
- <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='10834206';
- function attributecount() { return true; }
- var subdomainname = '.mouser.cn';
- var lang = 'zh-CN';
- var country = 'CN';
- var shippingCountry = 'CN';
- var usdSubdomain = 'www';
- var subdomain = 'cn2';
- var navids='10834206';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><span id="xqystvxeaxesuf"><a rel="file" style="display: none;" href="beuvdedusduqsxwbzebzy.html">zrcuqbtxdtwatvcqccqdzr</a></span>
- <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=0gZ0gv0KDwvP7WQAo8iqDXBvX8gUo%2fLury2Ktfcih%2fsT3BxTrC%2fdaQfV5AfAhZ7wPFyVuaIRgJ8kYaYj2jvfWw%3d%3d">更改国家</a>
- <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDXBvX8gUo%2fLury2Ktfcih%2fsT3BxTrC%2fdaQfV5AfAhZ7wPFyVuaIRgJ8kYaYj2jvfWw%3d%3d"><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 = 'fb0d61f4-bfae-47c6-ae66-f89f7ad8ff1e';
- 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=0gZ0gv0KDwvP7WQAo8iqDXBvX8gUo%2fLury2Ktfcih%2fsT3BxTrC%2fdaQfV5AfAhZ7wPFyVuaIRgJ8kYaYj2jvfWw%3d%3d">登录</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-5gej/" 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">
- <span class="subCategoryHeader">类别</span> <span title="传感器"><input id="ctl00_ContentMain_uc1_chkbx254539|Sensors" type="checkbox" name="ctl00$ContentMain$uc1$chkbx254539|Sensors" checked="checked" onclick="document.getElementById('ctl00_ContentMain_uc1_chkbx10834206|Motion & Position Sensors').checked = false;" /></span> <b>传感器</b> > <span title="运动与定位传感器"><input id="ctl00_ContentMain_uc1_chkbx10834206|Motion & Position Sensors" type="checkbox" name="ctl00$ContentMain$uc1$chkbx10834206|Motion & Position Sensors" checked="checked" onclick="document.getElementById('ctl00_ContentMain_uc1_chkbx254539|Sensors').checked = true;" /></span> <b>运动与定位传感器</b>
- </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/10834206.png" alt="运动与定位传感器" />
- <!--Marketing Content-->
- <table id="ctl00_ContentMain_tbl5">
- <tr>
- <td>
- <div class="marketing-content2">
- <strong>Motion Sensors</strong> & <strong>Position Sensors</strong> are available at Mouser Electronics from industry leading manufacturers. Mouser is an authorized distributor for many motion & position sensor manufacturers including Avago, GE, Honeywell, Maxim Integrated, NXP, Optek, Texas Instruments & more. Please view our large selection of motion sensors & position sensors 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">(3,160)</span></a>
- </li>
- <li id="ctl00_ContentMain_liDatasheetsTab" class="">
- <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking('Refine Tab Click', 'Datasheets', 'Motion & Position Sensors');" href="../../Datasheets/_/N-6g7q6">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(756)</span></a>
- </li>
- <li id="ctl00_ContentMain_liImagesTab" class="">
- <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking('Refine Tab Click', 'Images', 'Motion & Position Sensors');" href="../../Images/_/N-6g7q6">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(467)</span></a>
- </li>
- <li id="ctl00_ContentMain_liNewestTab" class="">
- <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking('Refine Tab Click', 'Newest Products', 'Motion & Position Sensors');" href="../../Newest-Products/_/N-6g7q6">最新产品</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- <div id="tabDivs" class="tab-divs">
- <!-- Hide the View links if javascript is disabled -->
- <noscript>
- <style type="text/css">.list-visual{display:none;}</style>
- </noscript>
- <div id="CategoryControlTop">
- <table class="table-categories">
- <tr><td valign="top">
- <input type="hidden" name="ctl00$ContentMain$uc6$listCategories$ctl01$hdnCatID" id="ctl00_ContentMain_uc6_listCategories_ctl01_hdnCatID" value="10834206" />
- <div class="topCatTitle">
- <div class="col-xs-8 no-left-pad">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkCategory" class="SearchResultsTopLevelCategory" href="./"><h2>运动与定位传感器类型</h2></a>
- </div>
- <div class="text-right">
- <div class="list-visual">
- <ul>
- <li class="right-border active">
- <a onclick="SendGATracking('Refine Category View Change', 'List', 'Motion & Position Sensors'); SwitchListView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkListView" href="javascript:__doPostBack('ctl00$ContentMain$uc6$listCategories$ctl01$lnkListView','')">
- <i class="fa fa-th-list"></i> 列表</a>
- </li>
- <li>
- <a onclick="SendGATracking('Refine Category View Change', 'Visual', 'Motion & Position Sensors'); SwitchVisualView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkVisualView" href="javascript:__doPostBack('ctl00$ContentMain$uc6$listCategories$ctl01$lnkVisualView','')">
- <i class="fa fa-th-large"></i> 目视</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- <ul class="sub-cats">
- <table id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories" cellspacing="0" style="width:100%;border-collapse:collapse;">
- <tr>
- <td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../images/DisplayCategories/18357019.png" alt="Accelerometers" /></div>
- <div class="div-cat-title">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Accelerometers/_/N-axgd7/"><h3>加速计</h3></a>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lblRecordCount">504</span>)</span>
- </div>
- </li>
- </td><td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../images/DisplayCategories/20700990.png" alt="IMUs - Inertial Measurement Units" /></div>
- <div class="div-cat-title">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../IMUs-Inertial-Measurement-Units/_/N-cbozi/"><h3>IMU-惯性测量单元</h3></a>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lblRecordCount">44</span>)</span>
- </div>
- </li>
- </td><td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../images/DisplayCategories/18356883.png" alt="Speed Sensors" /></div>
- <div class="div-cat-title">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Speed-Sensors/_/N-axg9f/"><h3>速度传感器</h3></a>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_lblRecordCount">365</span>)</span>
- </div>
- </li>
- </td>
- </tr><tr>
- <td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../images/DisplayCategories/10834225.png" alt="Board Mount Motion & Position Sensors" /></div>
- <div class="div-cat-title">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Board-Mount-Motion-Position-Sensors/_/N-6g7qp/"><h3>板机接口移动感应器和位置传感器</h3></a>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lblRecordCount">299</span>)</span>
- </div>
- </li>
- </td><td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../images/DisplayCategories/20735539.png" alt="Inclinometers" /></div>
- <div class="div-cat-title">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Inclinometers/_/N-ccfn7/"><h3>测斜计</h3></a>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lblRecordCount">43</span>)</span>
- </div>
- </li>
- </td><td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../images/DisplayCategories/22777831.png" alt="Tilt Switches" /></div>
- <div class="div-cat-title">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Tilt-Switches/_/N-dk7hj/"><h3>倾斜开关</h3></a>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_lblRecordCount">47</span>)</span>
- </div>
- </li>
- </td>
- </tr><tr>
- <td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../images/DisplayCategories/18356833.png" alt="Gyroscopes" /></div>
- <div class="div-cat-title">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Gyroscopes/_/N-axg81/"><h3>螺旋仪</h3></a>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lblRecordCount">85</span>)</span>
- </div>
- </li>
- </td><td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../images/DisplayCategories/10834217.png" alt="Industrial Motion & Position Sensors" /></div>
- <div class="div-cat-title">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Industrial-Motion-Position-Sensors/_/N-6g7qh/"><h3>工业移动感应器和位置传感器</h3></a>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_lblRecordCount">1,725</span>)</span>
- </div>
- </li>
- </td><td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl08_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl08_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../images/DisplayCategories/20735577.png" alt="Vibration Sensors" /></div>
- <div class="div-cat-title">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl08_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Vibration-Sensors/_/N-ccfo9/"><h3>振动传感器</h3></a>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl08_lblRecordCount">48</span>)</span>
- </div>
- </li>
- </td>
- </tr>
- </table></ul>
- </td></tr></table>
- <div id="search-left-col">
- </div>
- </div>
- <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 id="ctl00_ContentMain_uc3_BoxManufacturer" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_uc3_btnSelectManufacturer')">
-
- <div id="boxSuppliers">
- <table id="ctl00_ContentMain_uc3_tblSuppliers" class="tblSuppliers2">
- <tr>
- <td valign="middle" align="left">
- <table cellspacing="0" cellpadding="0" width="100%">
- <tr>
- <td style="vertical-align: middle;">
- <select name="ctl00$ContentMain$uc3$ddlManufacturer" id="ctl00_ContentMain_uc3_ddlManufacturer" class="default">
- <option selected="selected" value="0">所有制造商</option>
- <option value="4294759271">Alpha (Taiwan) (3)</option>
- <option value="4294759270">ALPS (19)</option>
- <option value="4291852130">ams (32)</option>
- <option value="4290538360">Analog Devices Inc. (148)</option>
- <option value="4292858401">BEI Sensors (32)</option>
- <option value="4267065231">Bosch (15)</option>
- <option value="4294759693">Bourns (43)</option>
- <option value="4294758777">C&K Components (10)</option>
- <option value="4288434773">CHERRY (21)</option>
- <option value="4288463162">Diodes Incorporated (2)</option>
- <option value="4291156561">ELMOS (4)</option>
- <option value="4294759258">E-Switch (2)</option>
- <option value="4294759249">ETI Systems (1)</option>
- <option value="4294759187">Fairchild Semiconductor (7)</option>
- <option value="4293998581">Freescale / NXP (172)</option>
- <option value="4291607133">Gravitech (3)</option>
- <option value="4287829429">Grayhill (2)</option>
- <option value="4294424657">Honeywell (1,463)</option>
- <option value="4294759026">Infineon (2)</option>
- <option value="4292803520">Kionix (75)</option>
- <option value="4293984106">Knowles (7)</option>
- <option value="4294759313">Littelfuse (7)</option>
- <option value="4285139929">mCube (9)</option>
- <option value="4273581899">Melexis (46)</option>
- <option value="4292755921">MikroElektronika (1)</option>
- <option value="4294759241">Murata (94)</option>
- <option value="4294758758">NJR (1)</option>
- <option value="4294012386">NKK Switches (3)</option>
- <option value="4294758971">NXP (179)</option>
- <option value="4294759010">Omron (9)</option>
- <option value="4294758778">OncQue (32)</option>
- <option value="4292890524">Panasonic (197)</option>
- <option value="4294758655">Parallax (9)</option>
- <option value="4294759160">Piher (8)</option>
- <option value="4290079589">Plessey Semiconductors (4)</option>
- <option value="4292733687">Raychem / TE Connectivity (1)</option>
- <option value="4294005660">ROHM Semiconductor (3)</option>
- <option value="4292984436">Spectra Symbol (12)</option>
- <option value="4294764375">STMicroelectronics (85)</option>
- <option value="4292733690">TE Connectivity (131)</option>
- <option value="4294758568">Toshiba (1)</option>
- <option value="4285624292">TT Electronics (413)</option>
- <option value="4294759685">Vishay (18)</option>
- <option value="4283162860">Xsens (6)</option>
- <option value="4294759235">ZiLOG (1)</option>
- </select>
- </td>
- <td style="vertical-align: middle;">
- <input type="submit" name="ctl00$ContentMain$uc3$btnSelectManufacturer" value="确定" onclick="return attributecount();" id="ctl00_ContentMain_uc3_btnSelectManufacturer" title="确定" class="button" />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-
- </div>
- </div>
- </div>
- <div class="clear">
- </div>
- </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="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_126" class="first-last" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=3150">127</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?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>
- </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$ctl11','')"><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$ctl13','')"><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_ctl15" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl15','')"><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$ctl17','')"><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$ctl19','')"><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$ctl21','')"><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$ctl23','')"><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$ctl25','')"><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$ctl27','')"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="262-BMF055" 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/Bosch-Sensortec/BMF055/?qs=sGAEpiMZZMs0JOhy9PM0UVimaW%252bJf89Z%252byXEirxDkYIS9UxgcDZVng%3d%3d'><img title='Bosch Sensortec BMF055' alt='Bosch Sensortec BMF055' id=1629806510 src='/images/boschsensortec/sm/BMF055_SPL.jpg' /></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bosch-Sensortec/BMF055/?qs=sGAEpiMZZMs0JOhy9PM0UVimaW%252bJf89Z%252byXEirxDkYIS9UxgcDZVng%3d%3d">262-BMF055</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 4000 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bosch-Sensortec/BMF055/?qs=sGAEpiMZZMs0JOhy9PM0UVimaW%252bJf89Z%252byXEirxDkYIS9UxgcDZVng%3d%3d">BMF055</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../bosch-sensortec">Bosch Sensortec</a>
- </td><td>IMU-惯性测量单元 Absolute Orientation Empty 9-Axis Sensor
- <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="../../../../bosch-sensortec-bmf055-motion-sensor">了解更多</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',"Bosch Sensortec","262-BMF055 | BMF055"]);" href="http://www.mouser.com/ds/2/783/151002_BMF055_Flyer_10-786469.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">7,839<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 id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
- <td colspan="2" style="text-align: center;" class="pricingHeaders">
- 剪切带
- </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">¥84.6378</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,5);">5:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥80.6247</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥79.092</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥73.1601</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(1,50);">50:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Bosch-Sensortec/BMF055/?qs=sGAEpiMZZMs0JOhy9PM0UVimaW%252bJf89Z%252byXEirxDkYIS9UxgcDZVng%3d%3d">查看</a>
- </td>
- </tr>
-
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
- <td colspan="2" style="text-align: center;" class="pricingHeaders">
- </td>
- </tr>
-
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReel">
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(1,4000);" style="white-space: nowrap">4,000:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥55.9845</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;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bosch-Sensortec/BMF055/?qs=sGAEpiMZZMs0JOhy9PM0UVimaW%252bJf89Z%252byXEirxDkYIS9UxgcDZVng%3d%3d">MouseReel 提供服务支持</a>
- </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="购买 BMF055" 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>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_trReel">
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(1,4000);">卷轴</a>:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- <em class="SearchResultsReel">
- 4,000
- </em>
- </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=4Yl85YvZwrjP3YvVvLSNDQ%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=4Yl85YvZwrjP3YvVvLSNDQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="511-LSM6DS33TR" 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/STMicroelectronics/LSM6DS33TR/?qs=sGAEpiMZZMs0JOhy9PM0Ucc%252bByJlo6gDxNbwQI6TLhWzjXGbBL1V4w%3d%3d'><img title='STMicroelectronics LSM6DS33TR' alt='STMicroelectronics LSM6DS33TR' id=1590530013 src='/images/stmicroelectronics/sm/LGA_16_t.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/stmicroelectronics/images/LGA_16_t.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/LSM6DS33TR/?qs=sGAEpiMZZMs0JOhy9PM0Ucc%252bByJlo6gDxNbwQI6TLhWzjXGbBL1V4w%3d%3d">511-LSM6DS33TR</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/LSM6DS33TR/?qs=sGAEpiMZZMs0JOhy9PM0Ucc%252bByJlo6gDxNbwQI6TLhWzjXGbBL1V4w%3d%3d">LSM6DS33TR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
- </td><td>IMU-惯性测量单元
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../stm-lsm6ds3">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"STMicroelectronics","511-LSM6DS33TR | LSM6DS33TR"]);" href="http://www.mouser.com/ds/2/389/DM00157718-770651.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">4,374<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_ctl04_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_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥32.7249</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥27.7992</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥24.102</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,250);">250:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥22.8735</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(2,500);">500:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/STMicroelectronics/LSM6DS33TR/?qs=sGAEpiMZZMs0JOhy9PM0Ucc%252bByJlo6gDxNbwQI6TLhWzjXGbBL1V4w%3d%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(2,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 2);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy" title="购买 LSM6DS33TR" 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_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/RoHSCompliant.aspx?qs=mSVPq9GJGDeVoyYkK3Ej2w%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=mSVPq9GJGDeVoyYkK3Ej2w%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="498-MC3610" 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/mCube/MC3610/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq472eaiB54Ms29OxdFma%252besg%3d%3d'><img title='mCube MC3610' alt='mCube MC3610' id=1506640731 src='/images/mcube/sm/MC3610_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/mcube/images/MC3610_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/mCube/MC3610/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq472eaiB54Ms29OxdFma%252besg%3d%3d">498-MC3610</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 5000 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/mCube/MC3610/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq472eaiB54Ms29OxdFma%252besg%3d%3d">MC3610</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../mcube">mCube</a>
- </td><td>加速计 3 Axis Accelerometer
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../mcube-mc3610-accelerometers">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"mCube","498-MC3610 | MC3610"]);" href="http://www.mouser.com/ds/2/693/MC3610-Preliminary-Datasheet-APS-048-0042v1.3-736599.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">4,652<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_ctl05_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 id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
- <td colspan="2" style="text-align: center;" class="pricingHeaders">
- 剪切带
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥20.3346</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥18.486</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥17.0937</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥15.7131</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(3,250);">250:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/mCube/MC3610/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq472eaiB54Ms29OxdFma%252besg%3d%3d">查看</a>
- </td>
- </tr>
-
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
- <td colspan="2" style="text-align: center;" class="pricingHeaders">
- </td>
- </tr>
-
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trReel">
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(3,5000);" style="white-space: nowrap">5,000:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥11.3256</span>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(3,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 3);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy" title="购买 MC3610" 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>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_trReel">
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(3,5000);">卷轴</a>:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- <em class="SearchResultsReel">
- 5,000
- </em>
- </td>
- </tr>
-
- </table>
- </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/RoHSCompliant.aspx?qs=sFsc%2fj2a1wXQN3y%252bax%252byXw%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=sFsc%2fj2a1wXQN3y%252bax%252byXw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="512-FIS1100" 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/Fairchild-Semiconductor/FIS1100/?qs=sGAEpiMZZMs0JOhy9PM0UUCtpP03podUVhTLb%2fZ%2fwWJ%2f6fi4SRAvhQ%3d%3d'><img title='Fairchild Semiconductor FIS1100' alt='Fairchild Semiconductor FIS1100' id=1471087642 src='/images/mouserimages/sm/LGA_16_t.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/mouserimages/images/LGA_16_t.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Fairchild-Semiconductor/FIS1100/?qs=sGAEpiMZZMs0JOhy9PM0UUCtpP03podUVhTLb%2fZ%2fwWJ%2f6fi4SRAvhQ%3d%3d">512-FIS1100</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 3000 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Fairchild-Semiconductor/FIS1100/?qs=sGAEpiMZZMs0JOhy9PM0UUCtpP03podUVhTLb%2fZ%2fwWJ%2f6fi4SRAvhQ%3d%3d">FIS1100</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../Fairchild-Semiconductor">Fairchild Semiconductor</a>
- </td><td>IMU-惯性测量单元 Accel + Gyro 6DOF MEMS Sensor in LGA16
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../fairchild-fis1100-imu">了解更多</a>
- </div>
- <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><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Fairchild Semiconductor","512-FIS1100 | FIS1100"]);" href="http://www.mouser.com/ds/2/149/FIS1100-611030.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_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=China&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/RoHSCompliant.aspx?qs=ucjR9gTF43qm0omnKADPhw%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=ucjR9gTF43qm0omnKADPhw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KX023-1025-FR" 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/Kionix/KX023-1025-FR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKEltxkTQdzJvWkfjwV1YeBQ%3d%3d'><img title='Kionix KX023-1025-FR' alt='Kionix KX023-1025-FR' id=1464018488 src='/images/kionix/sm/LGA-16_DSL.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/kionix/images/LGA-16_DSL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KX023-1025-FR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKEltxkTQdzJvWkfjwV1YeBQ%3d%3d">912-KX023-1025-FR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 1000 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KX023-1025-FR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKEltxkTQdzJvWkfjwV1YeBQ%3d%3d">KX023-1025-FR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 3x3x0.9mm Accel with FIFO/FILO Buffer
- <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="../../../../kionix-kx023">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_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_ctl07_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KX023-1025-FR | KX023-1025-FR"]);" href="http://www.mouser.com/ds/2/217/KX023%20Sell%20Sheet_0-542331.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KX023-1025-FR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YStAJ0x9DXCeQk%2f61GlRn6KaO9v5v2iAARBX95cgvBBpmY7%2fegn%252b%252bR0hWuHAvZl8qBlAK66unS5NCJrxB5Q213gUPWElbAfoV5RnlDhfV3cgw5ildzLGzEWBwQeJuyRo0jyupjK5P9kyw%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&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_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=bJHKFzVgYhwebGHlBsaJvQ%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhwebGHlBsaJvQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="912-KXTC9-2050-PR" 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/Kionix/KXTC9-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK6%2f4djMz2IqFo%252b5WcsA%2fEfg%3d%3d'><img title='Kionix KXTC9-2050-PR' alt='Kionix KXTC9-2050-PR' id=1464018538 src='/images/kionix/sm/KXTC9_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/kionix/images/KXTC9_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXTC9-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK6%2f4djMz2IqFo%252b5WcsA%2fEfg%3d%3d">912-KXTC9-2050-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXTC9-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK6%2f4djMz2IqFo%252b5WcsA%2fEfg%3d%3d">KXTC9-2050-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 Triaxis accel 3.3V analog low noise
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxtc9">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_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_ctl08_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KXTC9-2050-PR | KXTC9-2050-PR"]);" href="http://www.mouser.com/ds/2/348/KXTC9-2050%20Specifications%20Rev%202-845092.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXTC9-2050-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YTfYcj1bDhLjuQrhYNIWVTh69ihqm3L85JPoVFpFDIpqStysgQKrEMB4EGEBIpmn%2fGcia4HQWd%2fJbynOwlEgfLubin6s1sghZKIXkhoLW%2ftj5WY55Jz8tKL8k9uGyJ72FrTdgAiXKUSJQ%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&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_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=bJHKFzVgYhzELGOuoj%2fe5g%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzELGOuoj%2fe5g%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXR94-2283-PR" 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/Kionix/KXR94-2283-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK5W9NWN1BOwEFZyMgfZp59A%3d%3d'><img title='Kionix KXR94-2283-PR' alt='Kionix KXR94-2283-PR' id=1464018518 src='/images/kionix/sm/kxr94_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/kionix/images/kxr94_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXR94-2283-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK5W9NWN1BOwEFZyMgfZp59A%3d%3d">912-KXR94-2283-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXR94-2283-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK5W9NWN1BOwEFZyMgfZp59A%3d%3d">KXR94-2283-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 Triaxis accel 5.0V analog low noise
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxd94">了解更多</a>
- </div>
- <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',"Kionix","912-KXR94-2283-PR | KXR94-2283-PR"]);" href="http://www.mouser.com/ds/2/348/KXR94-2283%20Specifications%20Rev%202-844622.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">1,000<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXR94-2283-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQDnzavFtKS1mmWMpMQ4SRBwLOU7gKOZYgU8e4Bcy%2faULxSfKWFlZCrM6CppMp5oanECzUx3Y4krf3DUncdteSQzgB7nqLWWNiIZDF3VkXy06lPZ9Vqys30VCkg2xWc%2fDtT8Cf0fpkung%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </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 id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
- <td colspan="2" style="text-align: center;" class="pricingHeaders">
- 剪切带
- </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">¥75.465</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥67.6962</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥61.1442</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_trReelHeader">
- <td colspan="2" style="text-align: center;" class="pricingHeaders">
- 卷轴
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,500);">500:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥61.1442</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(7,1000);">1,000:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥44.2845</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl06_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,4000);">4,000:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Kionix/KXR94-2283-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK5W9NWN1BOwEFZyMgfZp59A%3d%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl06_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="购买 KXR94-2283-PR" 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>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_trReel">
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(7,500);">卷轴</a>:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- <em class="SearchResultsReel">
- 500
- </em>
- </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=bJHKFzVgYhy3T2JMHsBfFA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhy3T2JMHsBfFA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="912-KXR94-2050-PR" 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/Kionix/KXR94-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKWWCwP5UvEt1FISwZsC60Rg%3d%3d'><img title='Kionix KXR94-2050-PR' alt='Kionix KXR94-2050-PR' id=1464018514 src='/images/kionix/sm/kxr94_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/kionix/images/kxr94_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXR94-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKWWCwP5UvEt1FISwZsC60Rg%3d%3d">912-KXR94-2050-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXR94-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKWWCwP5UvEt1FISwZsC60Rg%3d%3d">KXR94-2050-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 Triaxis accel 3.3V analog low noise
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxd94">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_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_ctl10_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KXR94-2050-PR | KXR94-2050-PR"]);" href="http://www.mouser.com/ds/2/348/KXR94-2050%20Specifications%20Rev%203-844615.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXR94-2050-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQDnzavFtKS1jT18%252bg58m1Qj72bLM6SisbNPgWwMETve1jtsufqPa7Ra6d08mW6w9TX0AoXQOTPvMy1J2keB%2fvvkNibocbNWjjm5ZFAWu5Ku6SOWupnprxYVB16gCK24T6bEwgv9pRj8A%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&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_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=bJHKFzVgYhzzl6F6lEZ5uA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzzl6F6lEZ5uA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXCJK-1013-PR" 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/Kionix/KXCJK-1013-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK0IDYPm13Nd%2f6%2fneHLgPMdA%3d%3d'><img title='Kionix KXCJK-1013-PR' alt='Kionix KXCJK-1013-PR' id=1464018498 src='/images/kionix/sm/LGA-16_DSL.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/kionix/images/LGA-16_DSL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXCJK-1013-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK0IDYPm13Nd%2f6%2fneHLgPMdA%3d%3d">912-KXCJK-1013-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXCJK-1013-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK0IDYPm13Nd%2f6%2fneHLgPMdA%3d%3d">KXCJK-1013-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 3x3x0.9mm 16-pin Low-Power Accel
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxcjk">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KXCJK-1013-PR | KXCJK-1013-PR"]);" href="http://www.mouser.com/ds/2/348/KXCJK-1013%20Specifications%20Rev%202-844751.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">1,407<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXCJK-1013-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQUUtUaQovk3FMYsXy3cvqzO17ks15Z0vLjQBKkbLVM5vu5F0YQ5%252brZ2dRUn93hM0K1oaK4tAqh2%252b%252bIhwimsrk1DiTQufGCskjQkLlMiCfUPQpSsdkQN3TkbVBJpjQrVxq42nOf4CkMJw%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_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 id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
- <td colspan="2" style="text-align: center;" class="pricingHeaders">
- 剪切带
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥22.3353</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥20.1708</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥16.2513</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_trReelHeader">
- <td colspan="2" style="text-align: center;" class="pricingHeaders">
- 卷轴
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,500);">500:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥16.2513</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(9,1000);">1,000:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥10.4013</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(9,4000);">4,000:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Kionix/KXCJK-1013-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK0IDYPm13Nd%2f6%2fneHLgPMdA%3d%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(9,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 9);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy" title="购买 KXCJK-1013-PR" 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>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_trReel">
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(9,500);">卷轴</a>:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- <em class="SearchResultsReel">
- 500
- </em>
- </td>
- </tr>
-
- </table>
- </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/RoHSCompliant.aspx?qs=bJHKFzVgYhxncVsYfbs66Q%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhxncVsYfbs66Q%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="511-AIS3624DQTR" 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/STMicroelectronics/AIS3624DQTR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFw9sqF8GTr8M%3d'><img title='STMicroelectronics AIS3624DQTR' alt='STMicroelectronics AIS3624DQTR' id=958646018 src='/images/mouserimages/sm/QFN_24_EP_t.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/mouserimages/images/QFN_24_EP_t.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/AIS3624DQTR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFw9sqF8GTr8M%3d">511-AIS3624DQTR</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/AIS3624DQTR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFw9sqF8GTr8M%3d">AIS3624DQTR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
- </td><td>加速计 Motion MEMS
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../stm-ais3624dq-accelerometer">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_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_ctl12_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"STMicroelectronics","511-AIS3624DQTR | AIS3624DQTR"]);" href="http://www.mouser.com/ds/2/389/DM00115750-608015.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_ctl12_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&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_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=0qZzwMB2JhXhfWllp9dcJg%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=0qZzwMB2JhXhfWllp9dcJg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXD94-2802-PR" 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/Kionix/KXD94-2802-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKWcLoIpK9xqvU%2fdacodfnXA%3d%3d'><img title='Kionix KXD94-2802-PR' alt='Kionix KXD94-2802-PR' id=1464018506 src='/images/kionix/sm/kxd94_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/kionix/images/kxd94_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXD94-2802-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKWcLoIpK9xqvU%2fdacodfnXA%3d%3d">912-KXD94-2802-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXD94-2802-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKWcLoIpK9xqvU%2fdacodfnXA%3d%3d">KXD94-2802-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 Triaxis accel 5.0V analog
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxd94">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_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_ctl13_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KXD94-2802-PR | KXD94-2802-PR"]);" href="http://www.mouser.com/ds/2/348/KXD94-2802%20Specifications%20Rev%202-844537.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXD94-2802-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRiUJw%252bv2jWPB3DLhr3FsQbERAK9mgOBiIeZS%252b7RlaEYrOLS5%252bMC0WaDtkHUhDWfq%252bWZOMqkQfOj67jPSKY0N06D6Y5ZX55OfIpnFjGqNh3XQPaXkxEmxKbpRbaIdZz7rkpHj7q5SnYPA%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&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_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=bJHKFzVgYhxHqmQOZkQYow%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhxHqmQOZkQYow%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="912-KXRB5-2050-PR" 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/Kionix/KXRB5-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK6LQHTyhMTYrY3c5ytjU4LQ%3d%3d'><img title='Kionix KXRB5-2050-PR' alt='Kionix KXRB5-2050-PR' id=1464018526 src='/images/kionix/sm/KXRB5_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/kionix/images/KXRB5_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXRB5-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK6LQHTyhMTYrY3c5ytjU4LQ%3d%3d">912-KXRB5-2050-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXRB5-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK6LQHTyhMTYrY3c5ytjU4LQ%3d%3d">KXRB5-2050-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 Triaxis accel 3.3V analog-mux low noise
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxrb5">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_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_ctl14_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KXRB5-2050-PR | KXRB5-2050-PR"]);" href="http://www.mouser.com/ds/2/348/KXRB5-2050%20Specifications%20Rev%202-844619.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXRB5-2050-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQDnzavFtKS1mr4g35baHXLQGyZayaZcT%252bBrl1%2fGR0VS0XOe9foNCVnO9wBWE3isJ2uIZifsToNoJR4b5bpcpJlg8uGA6GJRur7cApgzcNxvRd12E%252b81sb2t9cLNSpW5oGh79JHrCKi6g%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&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_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=bJHKFzVgYhyQ9kd5KEBVXg%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhyQ9kd5KEBVXg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="511-LIS2DE12TR" 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/STMicroelectronics/LIS2DE12TR/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq4zRPV%252bsKP5rJGYPJ7VO8NWw%3d%3d'><img title='STMicroelectronics LIS2DE12TR' alt='STMicroelectronics LIS2DE12TR' id=1506693582 src='/images/stmicroelectronics/sm/LGA_12_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/stmicroelectronics/images/LGA_12_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/LIS2DE12TR/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq4zRPV%252bsKP5rJGYPJ7VO8NWw%3d%3d">511-LIS2DE12TR</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/LIS2DE12TR/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq4zRPV%252bsKP5rJGYPJ7VO8NWw%3d%3d">LIS2DE12TR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
- </td><td>加速计 MEMS digital output motion sensor: ultra low-power high performance 3-axes femto accelerometer
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../stm-lis2dh">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"STMicroelectronics","511-LIS2DE12TR | LIS2DE12TR"]);" href="http://www.mouser.com/ds/2/389/DM00153214-766560.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">1,309<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_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 id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
- <td colspan="2" style="text-align: center;" class="pricingHeaders">
- 剪切带
- </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">¥11.4777</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥9.7812</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥7.5114</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,500);">500:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥6.6456</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(13,1000);">1,000:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/STMicroelectronics/LIS2DE12TR/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq4zRPV%252bsKP5rJGYPJ7VO8NWw%3d%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_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="购买 LIS2DE12TR" 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=Mdf5GwH50iSecVNnMYmB2w%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=Mdf5GwH50iSecVNnMYmB2w%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="511-LIS3DETR" 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/STMicroelectronics/LIS3DETR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFyMFnyWNJ4Vs%3d'><img title='STMicroelectronics LIS3DETR' alt='STMicroelectronics LIS3DETR' id=958652740 src='/images/stmicroelectronics/sm/LGA_16_t.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/stmicroelectronics/images/LGA_16_t.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/LIS3DETR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFyMFnyWNJ4Vs%3d">511-LIS3DETR</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/LIS3DETR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFyMFnyWNJ4Vs%3d">LIS3DETR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
- </td><td>加速计 MEMS digital output motion sensor ultra low-power high performance 3-axes "nano" accelerometer
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../stmicrolis3dh">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"STMicroelectronics","511-LIS3DETR | LIS3DETR"]);" href="http://www.mouser.com/ds/2/389/DM00066267-771679.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">1,751<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/STMicroelectronics/LIS3DETR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFyMFnyWNJ4Vs%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_ctl16_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_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥11.0916</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥9.477</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥7.3008</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,500);">500:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥6.4584</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(14,1000);">1,000:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/STMicroelectronics/LIS3DETR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFyMFnyWNJ4Vs%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(14,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 14);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy" title="购买 LIS3DETR" 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_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=dbh0SxNh4v57cvALbunsDg%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=dbh0SxNh4v57cvALbunsDg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KX023-1025-PR" 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/Kionix/KX023-1025-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK6xaqNKn6j7gzLKqpumDDHg%3d%3d'><img title='Kionix KX023-1025-PR' alt='Kionix KX023-1025-PR' id=1464018490 src='/images/kionix/sm/LGA-16_DSL.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/kionix/images/LGA-16_DSL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KX023-1025-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK6xaqNKn6j7gzLKqpumDDHg%3d%3d">912-KX023-1025-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KX023-1025-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK6xaqNKn6j7gzLKqpumDDHg%3d%3d">KX023-1025-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 3x3x0.9mm Accel with FIFO/FILO Buffer
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kx023">了解更多</a>
- </div>
- <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><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KX023-1025-PR | KX023-1025-PR"]);" href="http://www.mouser.com/ds/2/217/KX023%20Sell%20Sheet_0-542331.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KX023-1025-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YStAJ0x9DXCeQk%2f61GlRn6KbEVFCmcuVMS05b7G3q3DvsKKaZk6ROAHb3G%2fVvTsoIL4EcjXXdAquuV2%252bVNT3fEvsICgyWdHdQhUsJx%2flQPy%252bZOHSbCYePuaC%2fEXdONIGXkdsGar8R6sRg%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </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=China&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=bJHKFzVgYhx8jOndLWj%2fhg%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhx8jOndLWj%2fhg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="912-KXCNL-1010-PR" 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/Kionix/KXCNL-1010-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKr5fwhEijmWtRIXF0ZJnjAQ%3d%3d'><img title='Kionix KXCNL-1010-PR' alt='Kionix KXCNL-1010-PR' id=1464018502 src='/images/kionix/sm/LGA-16_DSL.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/kionix/images/LGA-16_DSL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXCNL-1010-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKr5fwhEijmWtRIXF0ZJnjAQ%3d%3d">912-KXCNL-1010-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXCNL-1010-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKr5fwhEijmWtRIXF0ZJnjAQ%3d%3d">KXCNL-1010-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 3x3x0.9mm Accel with Dual State Machines
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxcnl">了解更多</a>
- </div>
- <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><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KXCNL-1010-PR | KXCNL-1010-PR"]);" href="http://www.mouser.com/ds/2/348/KXCNL-1010%20Specification%20Rev%203-844609.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXCNL-1010-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQUUtUaQovk3MUiSgd5uBX%252bcx9Zvne60vZw0oj5BReg0ACbVA8qIP7nmoMyPJaedFxjlHKq83wH7%2fxaZdtpn8FyzT96JWP%2fob%2f9oNR6%2fK5x2DXE0T%252b%2f3UMvVYR5pgUHs6wuntXqP2EE8w%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </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=China&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=bJHKFzVgYhzBDtfjh4xw0Q%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzBDtfjh4xw0Q%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXTF9-2050-PR" 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/Kionix/KXTF9-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKp29kpKqjYk7lIf6Wfaan4g%3d%3d'><img title='Kionix KXTF9-2050-PR' alt='Kionix KXTF9-2050-PR' id=1464018542 src='/images/kionix/sm/KXTF9_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/kionix/images/KXTF9_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXTF9-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKp29kpKqjYk7lIf6Wfaan4g%3d%3d">912-KXTF9-2050-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXTF9-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKp29kpKqjYk7lIf6Wfaan4g%3d%3d">KXTF9-2050-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 Triaxis accel 3.3V digi w/motion detect
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxtf9">了解更多</a>
- </div>
- <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><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KXTF9-2050-PR | KXTF9-2050-PR"]);" href="http://www.mouser.com/ds/2/348/KXTF9-2050%20Specifications%20Rev%207-844637.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXTF9-2050-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YTfYcj1bDhLjoo9YQVVYs4zaBouZWLvIJfkPETVSIAIZQq5MVMDeljXcEaYV59ibGbEmGLag5xCV%2f%2f1T2Ksg1MPWBtQr1NTRAlIKA9l0Q3tXAMNbdgNlXjTyAAPvCtOV1A%2fDfexX%252bKAEg%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </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=China&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=bJHKFzVgYhx%252bztVEEEJC6A%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhx%252bztVEEEJC6A%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="912-KXTIA-1006-PR" 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/Kionix/KXTIA-1006-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKM3U5F2HjDkk%2fNUhaaa3e7w%3d%3d'><img title='Kionix KXTIA-1006-PR' alt='Kionix KXTIA-1006-PR' id=1464018558 src='/images/kionix/sm/KXTIA_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/kionix/images/KXTIA_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXTIA-1006-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKM3U5F2HjDkk%2fNUhaaa3e7w%3d%3d">912-KXTIA-1006-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXTIA-1006-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKM3U5F2HjDkk%2fNUhaaa3e7w%3d%3d">KXTIA-1006-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 3x3x0.9mm Accel with FIFO/FILO Buffer
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxtia">了解更多</a>
- </div>
- <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><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KXTIA-1006-PR | KXTIA-1006-PR"]);" href="http://www.mouser.com/ds/2/348/KXTIA-1006%20Specifications%20Rev%204-844587.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXTIA-1006-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YTfYcj1bDhLjsyZ%252bxkQ5%2fOpEu2aumm0r%2fmpZ8uO3rzDeAruVdH7KLHozupQ6vd2RV4YtB8DdRovLO15THsA04PGev3j7sjNlR8w%2fp2o6hZLUAIMt6CyCg7xB4pdsz%2f%252b5P6ULmsNose8hg%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </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=China&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=bJHKFzVgYhzIf7DDQjz9vQ%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzIf7DDQjz9vQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXTI9-1001-PR" 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/Kionix/KXTI9-1001-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKZf0yx9ilCuzDi%2fIfUJ0Omw%3d%3d'><img title='Kionix KXTI9-1001-PR' alt='Kionix KXTI9-1001-PR' id=1464018554 src='/images/kionix/sm/KXTI9_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/kionix/images/KXTI9_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXTI9-1001-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKZf0yx9ilCuzDi%2fIfUJ0Omw%3d%3d">912-KXTI9-1001-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXTI9-1001-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKZf0yx9ilCuzDi%2fIfUJ0Omw%3d%3d">KXTI9-1001-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 3x3x0.9mm Accel with FIFO/FILO Buffer
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxti9">了解更多</a>
- </div>
- <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><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KXTI9-1001-PR | KXTI9-1001-PR"]);" href="http://www.mouser.com/ds/2/348/KXTI9-1001%20Specifications%20Rev%203-844915.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXTI9-1001-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YTfYcj1bDhLjlDrSzYB8o9abM3GOTd%2fY5gcEjKuPrBP1bEtQNTMqScvs3AGEcRs2TmZplKi1GefdRtMUCrrQwsQBH%2fhsM3WN9bmksgj0te6ez4bqWlZSSfgNvAlh6BT7vyR7JsCRBv0HA%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </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=China&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=bJHKFzVgYhxYpsL9muboaA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhxYpsL9muboaA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="912-KX022-1020-PR" 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/Kionix/KX022-1020-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK%252bMCQ9tP8x7FR%252bBdkMOCUhg%3d%3d'><img title='Kionix KX022-1020-PR' alt='Kionix KX022-1020-PR' id=1464018486 src='/images/kionix/sm/LGA-12_DSL.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/kionix/images/LGA-12_DSL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KX022-1020-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK%252bMCQ9tP8x7FR%252bBdkMOCUhg%3d%3d">912-KX022-1020-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KX022-1020-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK%252bMCQ9tP8x7FR%252bBdkMOCUhg%3d%3d">KX022-1020-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 2x2x0.9mm Accel with FIFO/FILO Buffer
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kx022">了解更多</a>
- </div>
- <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',"Kionix","912-KX022-1020-PR | KX022-1020-PR"]);" href="http://www.mouser.com/ds/2/217/KX022%20Sell%20Sheet-542346.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/Kionix/KX022-1020-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK%252bMCQ9tP8x7FR%252bBdkMOCUhg%3d%3d">更多信息可用 </a>
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KX022-1020-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YStAJ0x9DXCeRA62Gpu7b3MlbahdvBLJ%2fhFR%252bOPEVYyztEXEDI6l7tWKFmJeTZNsA85jNbHCnJDmnR9Ql%252bHi94grr%2fxbzo%2fIpK5EIHp7lPbfFzLKVLraURYDNnpWfVwB0Q0mzAoWg%2faHg%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </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=China&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/RoHSCompliant.aspx?qs=bJHKFzVgYhyraHIhuC%2fGbA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhyraHIhuC%2fGbA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXTF9-4100-PR" 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/Kionix/KXTF9-4100-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKgASGA%252bO6BfiDn4gvf8BAzw%3d%3d'><img title='Kionix KXTF9-4100-PR' alt='Kionix KXTF9-4100-PR' id=1464018546 src='/images/kionix/sm/KXTF9_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/kionix/images/KXTF9_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXTF9-4100-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKgASGA%252bO6BfiDn4gvf8BAzw%3d%3d">912-KXTF9-4100-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXTF9-4100-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKgASGA%252bO6BfiDn4gvf8BAzw%3d%3d">KXTF9-4100-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 Triaxis accel 1.8V digi w/motion detect
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxtf9">了解更多</a>
- </div>
- <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><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KXTF9-4100-PR | KXTF9-4100-PR"]);" href="http://www.mouser.com/ds/2/348/KXTF9-4100%20Specifications%20Rev%206-844576.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXTF9-4100-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YTfYcj1bDhLjrP98EqncROyDWDMrDXWYQeVi2gG%252bxD5CgMDQ2uU%2fVe0HIBcSd5zM%2ff%252b4Sl3i8KcnuI1ynj2J81XkT5a%2f%2fMkGn9JPeBJ1Q2hj9l%252bOTSXCvlLOuv6N%2fBGeKLeO4RckLbMHQ%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </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=China&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=bJHKFzVgYhwoycVOOM8PNQ%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhwoycVOOM8PNQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="81-SVK3A103AEA01R00" 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/Murata-Electronics/SVK3A103AEA01R00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LuYY6s5WgIQLBIcdozXB1Eg%3d%3d'><img title='Murata Electronics SVK3A103AEA01R00' alt='Murata Electronics SVK3A103AEA01R00' id=1585548209 src='/images/murata/sm/SVK3A103AEA01R00_SPL.jpg' /></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Murata-Electronics/SVK3A103AEA01R00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LuYY6s5WgIQLBIcdozXB1Eg%3d%3d">81-SVK3A103AEA01R00</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 1000 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Murata-Electronics/SVK3A103AEA01R00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LuYY6s5WgIQLBIcdozXB1Eg%3d%3d">SVK3A103AEA01R00</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../murataelectronics">Murata Electronics</a>
- </td><td>板机接口移动感应器和位置传感器 SV3K Rotary Position Sensor - Reel
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../murata-rotary-position-sensors">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Murata Electronics","81-SVK3A103AEA01R00 | SVK3A103AEA01R00"]);" href="http://www.murata.com/en-global/products/productdetail?partno=SVK3A103AEA01R00" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">948<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAlternativePackaging" title="备用包装 | 81-SVK3A103AEA01R00" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YTiUMo8H2TFu0sQlOqbjSUZSQzVW3mx4akK%2fUEc4QdN647PLpHwcnmzJH%2fjRFF23QATnXBh9HOrYVfjzf02wXWNgMxuQDRe0SbfbmJYP1fY2umbVPRobr21xkfvA0V0FN8N9gAE40Afr027q8X2EFWK&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_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 id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
- <td colspan="2" style="text-align: center;" class="pricingHeaders">
- 剪切带
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥17.0937</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.0152</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.3187</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,500);">500:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6401</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
- <td colspan="2" style="text-align: center;" class="pricingHeaders">
- 卷轴
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(22,1000);">1,000:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥6.1893</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl06_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(22,2000);">2,000:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Murata-Electronics/SVK3A103AEA01R00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LuYY6s5WgIQLBIcdozXB1Eg%3d%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(22,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 22);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy" title="购买 SVK3A103AEA01R00" 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>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_trReel">
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(22,1000);">卷轴</a>:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- <em class="SearchResultsReel">
- 1,000
- </em>
- </td>
- </tr>
-
- </table>
- </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=l3aNjoEHcFD1tt3i%252bEG74w%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=l3aNjoEHcFD1tt3i%252bEG74w%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="81-SVK3A103AEA01B00" 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/Murata-Electronics/SVK3A103AEA01B00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LTnmbpE16y67oAnySi57hMQ%3d%3d'><img title='Murata Electronics SVK3A103AEA01B00' alt='Murata Electronics SVK3A103AEA01B00' id=1585548211 src='/images/murata/sm/SVK3A103AEA01R00_SPL.jpg' /></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Murata-Electronics/SVK3A103AEA01B00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LTnmbpE16y67oAnySi57hMQ%3d%3d">81-SVK3A103AEA01B00</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Murata-Electronics/SVK3A103AEA01B00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LTnmbpE16y67oAnySi57hMQ%3d%3d">SVK3A103AEA01B00</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../murataelectronics">Murata Electronics</a>
- </td><td>板机接口移动感应器和位置传感器 SV3K Rotary Position Sensor - Bulk
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../murata-rotary-position-sensors">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Murata Electronics","81-SVK3A103AEA01B00 | SVK3A103AEA01B00"]);" href="http://www.murata.com/en-global/products/productdetail?partno=SVK3A103AEA01R00" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">483<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAlternativePackaging" title="备用包装 | 81-SVK3A103AEA01B00" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YTiUMo8H2TFu0sQlOqbjSUZmGvuGYjDxsiOGu%2fI9nzufN17kAouhAhlH5kO9B2ZfAA9Xs9L8ErQxLc0F3l%252bQd7mmEq3b%2f6iqQBKRKEvc52IkAX4mbtSdeaKaTSv5DNQpBpzqYAIeNuNMI8aZQndPRBc&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_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_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥11.934</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥9.009</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥7.3242</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,500);">500:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥6.1893</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,1000);">1,000:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Murata-Electronics/SVK3A103AEA01B00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LTnmbpE16y67oAnySi57hMQ%3d%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(23,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 23);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy" title="购买 SVK3A103AEA01B00" 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_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=l3aNjoEHcFBnGBulGNoJeA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=l3aNjoEHcFBnGBulGNoJeA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="912-KXTJ2-1009-PR" 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/Kionix/KXTJ2-1009-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK5nXtF%252bVolijTVLx6ZEs18A%3d%3d'><img title='Kionix KXTJ2-1009-PR' alt='Kionix KXTJ2-1009-PR' id=1464018566 src='/images/kionix/sm/KXTJ2_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/kionix/images/KXTJ2_SPL.JPG</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXTJ2-1009-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK5nXtF%252bVolijTVLx6ZEs18A%3d%3d">912-KXTJ2-1009-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXTJ2-1009-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK5nXtF%252bVolijTVLx6ZEs18A%3d%3d">KXTJ2-1009-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 2x2x0.9mm Low Power Accel
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxtj2">了解更多</a>
- </div>
- <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><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KXTJ2-1009-PR | KXTJ2-1009-PR"]);" href="http://www.mouser.com/ds/2/217/KXTJ2%20Sell%20Sheet-311079.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXTJ2-1009-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YTfYcj1bDhLjk0g5Nj1pTUNgC9dI5R8L%252b5Ylu%2fQM5CZ92BKDEaZih5VCjr6MpYcis9BSrgc7DZGfRxwkxr5lnL%2fcd4M1e%2fmD4fbAZduzmy4GWEC7y1rGrZboOw8fSVzOZiHVELQgTImlQ%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </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=China&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/RoHSCompliant.aspx?qs=bJHKFzVgYhzKa1cHLjT20Q%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzKa1cHLjT20Q%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXCJ9-1008-PR" 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/Kionix/KXCJ9-1008-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK4yUzxaov2osE73s5%252bEWw6Q%3d%3d'><img title='Kionix KXCJ9-1008-PR' alt='Kionix KXCJ9-1008-PR' id=1464018494 src='/images/kionix/sm/LGA-10_DSL.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/kionix/images/LGA-10_DSL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Kionix/KXCJ9-1008-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK4yUzxaov2osE73s5%252bEWw6Q%3d%3d">912-KXCJ9-1008-PR</a><br />
- <br />
- <br />
- 要购买完整 卷轴,请订购 500 的倍数:
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXCJ9-1008-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK4yUzxaov2osE73s5%252bEWw6Q%3d%3d">KXCJ9-1008-PR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
- </td><td>加速计 3x3x0.9mm Low Power Accel
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxcj9">了解更多</a>
- </div>
- <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><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Kionix","912-KXCJ9-1008-PR | KXCJ9-1008-PR"]);" href="http://www.mouser.com/ds/2/348/KXCJ9-1008%20Specifications%20Rev%205-844606.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">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAlternativePackaging" title="备用包装 | 912-KXCJ9-1008-PR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQUUtUaQovk3Ct%2fmVOtVg1FNdFEihG4WoEd6D2IPMJCje%252b1jC4xltOeyV72M4h0DB9TlI9JCp40YSRlX%252bGO2K7Oznmj55G9EqHyfijyCh4Oi1Lm1TFPxksnpCK%2fURnNh8kGOVvU6BEigg%3d%3d&TB_iframe=true&height=292&width=655" style="display:inline-block;width:100px;">备用包装</a>
- </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=China&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/RoHSCompliant.aspx?qs=bJHKFzVgYhxTsOZpAWXoCA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhxTsOZpAWXoCA%3d%3d" target="_blank">详细信息</a>
- </div>
- </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="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_126" class="first-last" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?No=3150">127</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Sensors/Motion-Position-Sensors/_/N-6g7q6/?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='/Sensors/Motion-Position-Sensors/Accelerometers/_/N-axgd7?P=1z0wuodZ1yzmm14Z1z0xtoo&pop=xajw' onclick="ga('send','event','Popular Search Refine Click','Motion & Position Sensors','LCC-8 + 125 C 3 V Accelerometers')">LCC-8 + 125 C 3 V 加速计</a> , <a href='/Sensors/Motion-Position-Sensors/Board-Mount-Motion-Position-Sensors/_/N-6g7qp?P=1z0sx03&pop=1egr' onclick="ga('send','event','Popular Search Refine Click','Motion & Position Sensors','TO-5 Board Mount Motion & Position Sensors')">TO-5 板机接口移动感应器和位置传感器</a> , <a href='/Sensors/Motion-Position-Sensors/Board-Mount-Motion-Position-Sensors/_/N-6g7qp/?P=1z0jo6x&pop=uo9p' onclick="ga('send','event','Popular Search Refine Click','Motion & Position Sensors','2 m Board Mount Motion & Position Sensors')">2 m 板机接口移动感应器和位置传感器</a> , <a href='/Sensors/Motion-Position-Sensors/Speed-Sensors/_/N-axg9f?P=1z0yzdx&pop=n8ym' onclick="ga('send','event','Popular Search Refine Click','Motion & Position Sensors','Cable Speed Sensors')">Cable 速度传感器</a> , <a href='/Sensors/Motion-Position-Sensors/Speed-Sensors/_/N-axg9f?P=1yz3bqh&pop=6p3u' onclick="ga('send','event','Popular Search Refine Click','Motion & Position Sensors','Hall Effect Speed Sensors')">Hall Effect 速度传感器</a> , <a href='/Sensors/Motion-Position-Sensors/Accelerometers/_/N-axgd7?P=1ynyo5tZ1z0y176&pop=dvd8' onclick="ga('send','event','Popular Search Refine Click','Motion & Position Sensors','SPI 3-axis Accelerometers')">SPI 3-axis 加速计</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">3160</span>
- <div id="disclaimer">
- 图像仅供参考<br/>请参阅产品规格</div>
- </div>
- <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Sensors/Motion-Position-Sensors" />
- <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[
- 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="TXWEB09|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>
|