163.html 265 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head id="ctl00_header">
  4. <!-- AppInternalsXpert BMX Integration Begin -->
  5. <script>
  6. if(!OPNET_ARXS){
  7. var OPNET_ARXS={startJS:Number(new Date()),
  8. clientId:'7496BECC1B8E33C4',appId:100040,
  9. collector:'perf.mouser.com',
  10. collectorHttpPort:80, collectorHttpsPort:443,
  11. sv:'0302',
  12. tag1:'', tag2:'', tag3:''};
  13. (function(){
  14. var w=window,l=w.addEventListener,m=w.attachEvent,
  15. d=document,s='script',t='load',o=OPNET_ARXS,
  16. z='-0b2c4d73f58414c86c7384150be8ca44',
  17. r=(('https:'===d.location.protocol)?
  18. 'https://953c27ce3b34cfb8cc56'+z+'.ssl':
  19. 'http://fb3f316d487bcc59f7ec'+z+'.r88')+
  20. '.cf1.rackcdn.com/opnet_browsermetrix.c.'+
  21. (o.ajax?'ajax.js':'js'),p=('onpagehide' in w),e=p?'pageshow':t,
  22. j=d.createElement(s),x=d.getElementsByTagName(s)[0],
  23. h=function(y){o.ldJS=new Date();o.per=y?y.persisted:null;},
  24. i=function(){o.ld=1;};o.cookie=d.cookie;d.cookie=
  25. '_op_aixPageId=0; path=/; expires='+(new Date(0)).toGMTString();
  26. o.cookieAfterDelete=d.cookie;j.async=1;j.src=r;
  27. if(l){l(e,h,false);if(p){l(t,i,false);}}else if(m)
  28. {m('on'+e,h);if(p){m('on'+t,i);}}
  29. if(o.sync){d.write('<'+s+' src=\''+r+'\'></'+s+'>');}
  30. else{x.parentNode.insertBefore(j,x);}
  31. })();}
  32. </script>
  33. <script>if(!OPNET_ARXS_PARAM){var OPNET_ARXS_PARAM={};} OPNET_ARXS_PARAM.pageId = 'a2_7ba82f96-3da5-418f-8a16-68b4c05dc86d-45084-422018';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. 运动与定位传感器 | Mouser
  37. </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" />
  38. <!-- BASE STYLE SHEET -->
  39. <link rel="shortcut icon" href="../../../../favicon.ico" /><link rel="alternate" type="application/rss+xml" title="RSS" href="../../../../rss/rss.xml" />
  40. <!--[if IE 7]>
  41. <link rel="stylesheet" type="text/css" href="../../../../css/ie7.css" />
  42. <![endif]-->
  43. <!--[if IE 8]>
  44. <link rel="stylesheet" type="text/css" href="../../../../css/ie8.css" />
  45. <![endif]-->
  46. <!--[if IE 9]>
  47. <link rel="stylesheet" type="text/css" href="../../../../css/ie9.css" />
  48. <![endif]-->
  49. <script type="text/javascript">
  50. function OpenBackordered(URL) {
  51. var MsgWindow;
  52. MsgWindow = window.open(URL, "MsgWindow", "scrollbars=1,height=500,width=650,menubar=0,resizable=1");
  53. }
  54. </script>
  55. <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]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA96AA68",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (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); })();
  61. (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});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '262-BMF055',
  65. 'name': 'IMUs - Inertial Measurement Units Absolute Orientation Empty 9-Axis Sensor',
  66. 'category': 'IMUs - Inertial Measurement Units',
  67. 'brand': 'Bosch Sensortec',
  68. 'variant': 'BMF055',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '511-LSM6DS33TR',
  74. 'name': 'IMUs - Inertial Measurement Units',
  75. 'category': 'IMUs - Inertial Measurement Units',
  76. 'brand': 'STMicroelectronics',
  77. 'variant': 'LSM6DS33TR',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '498-MC3610',
  83. 'name': 'Accelerometers 3 Axis Accelerometer',
  84. 'category': 'Accelerometers',
  85. 'brand': 'mCube',
  86. 'variant': 'MC3610',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '512-FIS1100',
  92. 'name': 'IMUs - Inertial Measurement Units Accel + Gyro 6DOF MEMS Sensor in LGA16',
  93. 'category': 'IMUs - Inertial Measurement Units',
  94. 'brand': 'Fairchild Semiconductor',
  95. 'variant': 'FIS1100',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '912-KX023-1025-FR',
  101. 'name': 'Accelerometers 3x3x0.9mm Accel with FIFO/FILO Buffer',
  102. 'category': 'Accelerometers',
  103. 'brand': 'Kionix',
  104. 'variant': 'KX023-1025-FR',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '912-KXTC9-2050-PR',
  110. 'name': 'Accelerometers Triaxis accel 3.3V analog low noise',
  111. 'category': 'Accelerometers',
  112. 'brand': 'Kionix',
  113. 'variant': 'KXTC9-2050-PR',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '912-KXR94-2283-PR',
  119. 'name': 'Accelerometers Triaxis accel 5.0V analog low noise',
  120. 'category': 'Accelerometers',
  121. 'brand': 'Kionix',
  122. 'variant': 'KXR94-2283-PR',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '912-KXR94-2050-PR',
  128. 'name': 'Accelerometers Triaxis accel 3.3V analog low noise',
  129. 'category': 'Accelerometers',
  130. 'brand': 'Kionix',
  131. 'variant': 'KXR94-2050-PR',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '912-KXCJK-1013-PR',
  137. 'name': 'Accelerometers 3x3x0.9mm 16-pin Low-Power Accel',
  138. 'category': 'Accelerometers',
  139. 'brand': 'Kionix',
  140. 'variant': 'KXCJK-1013-PR',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '511-AIS3624DQTR',
  146. 'name': 'Accelerometers Motion MEMS',
  147. 'category': 'Accelerometers',
  148. 'brand': 'STMicroelectronics',
  149. 'variant': 'AIS3624DQTR',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '912-KXD94-2802-PR',
  155. 'name': 'Accelerometers Triaxis accel 5.0V analog',
  156. 'category': 'Accelerometers',
  157. 'brand': 'Kionix',
  158. 'variant': 'KXD94-2802-PR',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '912-KXRB5-2050-PR',
  164. 'name': 'Accelerometers Triaxis accel 3.3V analog-mux low noise',
  165. 'category': 'Accelerometers',
  166. 'brand': 'Kionix',
  167. 'variant': 'KXRB5-2050-PR',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '511-LIS2DE12TR',
  173. 'name': 'Accelerometers MEMS digital output motion sensor: ultra low-power high performance 3-axes femto accelerometer',
  174. 'category': 'Accelerometers',
  175. 'brand': 'STMicroelectronics',
  176. 'variant': 'LIS2DE12TR',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '511-LIS3DETR',
  182. 'name': 'Accelerometers MEMS digital output motion sensor ultra low-power high performance 3-axes \u0026#34;nano\u0026#34; accelerometer',
  183. 'category': 'Accelerometers',
  184. 'brand': 'STMicroelectronics',
  185. 'variant': 'LIS3DETR',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '912-KX023-1025-PR',
  191. 'name': 'Accelerometers 3x3x0.9mm Accel with FIFO/FILO Buffer',
  192. 'category': 'Accelerometers',
  193. 'brand': 'Kionix',
  194. 'variant': 'KX023-1025-PR',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '912-KXCNL-1010-PR',
  200. 'name': 'Accelerometers 3x3x0.9mm Accel with Dual State Machines',
  201. 'category': 'Accelerometers',
  202. 'brand': 'Kionix',
  203. 'variant': 'KXCNL-1010-PR',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '912-KXTF9-2050-PR',
  209. 'name': 'Accelerometers Triaxis accel 3.3V digi w/motion detect',
  210. 'category': 'Accelerometers',
  211. 'brand': 'Kionix',
  212. 'variant': 'KXTF9-2050-PR',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '912-KXTIA-1006-PR',
  218. 'name': 'Accelerometers 3x3x0.9mm Accel with FIFO/FILO Buffer',
  219. 'category': 'Accelerometers',
  220. 'brand': 'Kionix',
  221. 'variant': 'KXTIA-1006-PR',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '912-KXTI9-1001-PR',
  227. 'name': 'Accelerometers 3x3x0.9mm Accel with FIFO/FILO Buffer',
  228. 'category': 'Accelerometers',
  229. 'brand': 'Kionix',
  230. 'variant': 'KXTI9-1001-PR',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '912-KX022-1020-PR',
  236. 'name': 'Accelerometers 2x2x0.9mm Accel with FIFO/FILO Buffer',
  237. 'category': 'Accelerometers',
  238. 'brand': 'Kionix',
  239. 'variant': 'KX022-1020-PR',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '912-KXTF9-4100-PR',
  245. 'name': 'Accelerometers Triaxis accel 1.8V digi w/motion detect',
  246. 'category': 'Accelerometers',
  247. 'brand': 'Kionix',
  248. 'variant': 'KXTF9-4100-PR',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '81-SVK3A103AEA01R00',
  254. 'name': 'Board Mount Motion \u0026 Position Sensors SV3K Rotary Position Sensor - Reel',
  255. 'category': 'Board Mount Motion \u0026 Position Sensors',
  256. 'brand': 'Murata Electronics',
  257. 'variant': 'SVK3A103AEA01R00',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '81-SVK3A103AEA01B00',
  263. 'name': 'Board Mount Motion \u0026 Position Sensors SV3K Rotary Position Sensor - Bulk',
  264. 'category': 'Board Mount Motion \u0026 Position Sensors',
  265. 'brand': 'Murata Electronics',
  266. 'variant': 'SVK3A103AEA01B00',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '912-KXTJ2-1009-PR',
  272. 'name': 'Accelerometers 2x2x0.9mm Low Power Accel',
  273. 'category': 'Accelerometers',
  274. 'brand': 'Kionix',
  275. 'variant': 'KXTJ2-1009-PR',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '912-KXCJ9-1008-PR',
  281. 'name': 'Accelerometers 3x3x0.9mm Low Power Accel',
  282. 'category': 'Accelerometers',
  283. 'brand': 'Kionix',
  284. 'variant': 'KXCJ9-1008-PR',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','Bh7QnMUrbRz1es0SaBqGZsoghQ/e2ZP/SRjhHZ7AHI0=');
  290. ga('set','dimension31','fb0d61f4-bfae-47c6-ae66-f89f7ad8ff1e');
  291. ga('set','dimension13','163AA125AA96AA68');
  292. ga('set','metric2',3160);
  293. ga('set','dimension5','Motion \u0026 Position Sensors');
  294. ga('set','dimension48','6g7q6');
  295. ga('set','dimension3','Refine');
  296. ga('set','dimension55','Products');
  297. ga('send', 'pageview');
  298. </script>
  299. <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&amp;type=css&amp;fileSet=CSS_Base&amp;lang=zh-CN" rel="stylesheet" type="text/css" /><link href="../../../../css/style.axd?v=3.0.20160304.2&amp;fileSet=Css_Search&amp;type=css&amp;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>
  300. <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
  301. <script src='../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
  302. <script src='../../../../flash/js/empty.file.js' type="text/javascript"></script>
  303. <script src='../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
  304. <script src='../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
  305. <script src='../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
  306. <!--[if lt IE 9]>
  307. <script src='../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
  308. <![endif]-->
  309. <form method="post" action="/Sensors/Motion-Position-Sensors/_/N-6g7q6/" id="aspnetForm">
  310. <div class="aspNetHidden">
  311. <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
  312. <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
  313. <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" />
  314. <input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
  315. </div>
  316. <script type="text/javascript">
  317. //<![CDATA[
  318. var theForm = document.forms['aspnetForm'];
  319. if (!theForm) {
  320. theForm = document.aspnetForm;
  321. }
  322. function __doPostBack(eventTarget, eventArgument) {
  323. if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
  324. theForm.__EVENTTARGET.value = eventTarget;
  325. theForm.__EVENTARGUMENT.value = eventArgument;
  326. theForm.submit();
  327. }
  328. }
  329. //]]>
  330. </script>
  331. <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZIfBoSL8TZnsnOFihh6T3B3-ZDc9vWAo-Dvo5VSdzj9CkFL2Zg2&amp;t=635802997220000000" type="text/javascript"></script>
  332. <script type="text/javascript">
  333. //<![CDATA[
  334. var lasttemplateid='10834206';
  335. function attributecount() { return true; }
  336. var subdomainname = '.mouser.cn';
  337. var lang = 'zh-CN';
  338. var country = 'CN';
  339. var shippingCountry = 'CN';
  340. var usdSubdomain = 'www';
  341. var subdomain = 'cn2';
  342. var navids='10834206';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
  343. 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');
  344. }
  345. function GenerateClientID(prefix, i, suffix) {
  346. if (i < 10) { return prefix + '0' + String(i) + suffix; }
  347. else { return prefix + String(i) + suffix; }
  348. }
  349. var checked = false;
  350. function SelectAll() {
  351. checked = !checked;
  352. var i = 3;
  353. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  354. while (i < 29) {
  355. if (chkSelect != null) chkSelect.checked = checked;
  356. i = i + 1;
  357. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  358. }
  359. }
  360. function IsAllChecked(checked) {
  361. var i = 3;
  362. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  363. while (i < 29) {
  364. if (chkSelect != null && chkSelect.checked != checked) return false;
  365. i = i + 1;
  366. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  367. }
  368. return true;
  369. }
  370. function IsAnyChecked(checked) {
  371. return !IsAllChecked(!checked);
  372. }
  373. function SelectRow(row, checked) {
  374. document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
  375. }
  376. function RowSelected(index, checked) { }
  377. function GetQuantityTextboxByRow(row) {
  378. return GetQuantityTextboxByIndex(row + 2);
  379. }
  380. function GetQuantityTextboxByIndex(index) {
  381. return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
  382. }
  383. function SelectQuantity(row, quantity) {
  384. txtQuantity = GetQuantityTextboxByRow(row);
  385. if (txtQuantity == null) { return; }
  386. txtQuantity.value = quantity;
  387. SelectRow(row, true);
  388. }
  389. var qtyRegEx = /^([0]|\s)*$/;
  390. function IsQuantityEmptyOrZero(quantity) {
  391. return qtyRegEx.test(quantity);
  392. }
  393. function QuantityChanged(row, quantity) {
  394. SelectRow(row, !IsQuantityEmptyOrZero(quantity));
  395. }
  396. var QuantityRowSelectedBase = RowSelected;
  397. function QuantityRowSelected(index, checked) {
  398. QuantityRowSelectedBase(index, checked);
  399. txtQuantity = GetQuantityTextboxByIndex(index);
  400. if (txtQuantity == null) { return; }
  401. if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
  402. else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
  403. }
  404. RowSelected = QuantityRowSelected;
  405. //]]>
  406. </script>
  407. <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&amp;t=5f9d5645" type="text/javascript"></script>
  408. <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&amp;t=5f9d5645" type="text/javascript"></script>
  409. <div id="cookie-notification-bar">
  410. </div>
  411. <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
  412. <div id="wideGab" class="wideGab">
  413. <div id="ctl00_globalActionBar" class="global-action-bar">
  414. <div id="gab-container" class="container">
  415. <div id="contact" class="row">
  416. <div class="topPadding col-xs-6">
  417. <div class="inline-block">
  418. <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
  419. <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>&nbsp;
  420. 400-821-6111</a><span id="xqystvxeaxesuf"><a rel="file" style="display: none;" href="beuvdedusduqsxwbzebzy.html">zrcuqbtxdtwatvcqccqdzr</a></span>
  421. &nbsp;&nbsp;&nbsp;&nbsp;<span class="pipe">|</span>&nbsp;&nbsp;&nbsp;&nbsp;
  422. <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
  423. 反馈</a>
  424. </div>
  425. <span class="qqIcon inline-block">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
  426. </span>&nbsp;&nbsp;
  427. </div>
  428. <div class="col-xs-6 align-right">
  429. <div id="tdImg" class="inline-block topPadding9px">
  430. <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" class="smallgrey">
  431. <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
  432. <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
  433. </div>
  434. <div class="topPadding inline-block">
  435. <span class="pipe">|</span>&nbsp;&nbsp;&nbsp;
  436. <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDXBvX8gUo%2fLury2Ktfcih%2fsT3BxTrC%2fdaQfV5AfAhZ7wPFyVuaIRgJ8kYaYj2jvfWw%3d%3d">更改国家</a>
  437. <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>
  438. <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
  439. <span id="ctl00_gab1_lbl1">RMB</span>
  440. </div>
  441. </div>
  442. </div>
  443. </div>
  444. <div style="clear: both;"></div>
  445. <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
  446. class="thickbox"></a>
  447. <div id="divCurrencyPopup" class="currency-popup">
  448. <div class="currency-close">
  449. <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();">&nbsp;</a>
  450. </div>
  451. <div>
  452. <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../images/international/flags/cn2.gif" alt="中国" />&nbsp;<span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
  453. <br/>
  454. <div style="padding: 0 20px 0 20px">
  455. <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
  456. <br />
  457. <table width="95%">
  458. <tr>
  459. <td width="20%">
  460. <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
  461. </td>
  462. <td>
  463. <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
  464. <br/>
  465. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
  466. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
  467. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
  468. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
  469. </td>
  470. </tr>
  471. </table>
  472. </div>
  473. </div>
  474. </div>
  475. <div id="cartDialog" class="CartDialog" style="display: none;">
  476. <table id="miniCartOnly">
  477. <tr id="divall">
  478. <td id="tdCart">
  479. <table style="width: 100%; padding: 0px; border: 0px">
  480. <tr>
  481. <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
  482. <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
  483. </td>
  484. <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
  485. <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
  486. </td>
  487. </tr>
  488. </table>
  489. <table id="tableMiniCartItms">
  490. <tr id="trCart">
  491. <td>
  492. <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  493. <table id="tblMiniCart">
  494. <thead>
  495. <tr>
  496. <th class="miniCartColumn">制造商</th>
  497. <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
  498. <th class="miniCartColumn MiniCartHdBg">数量</th>
  499. <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
  500. </tr>
  501. </thead>
  502. </table>
  503. <script type="text/javascript">
  504. var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
  505. var currentGuid = 'fb0d61f4-bfae-47c6-ae66-f89f7ad8ff1e';
  506. var currentCountryCode = 'CN';
  507. var currentCurrencyCode= 'RMB';
  508. var currencyCulture = 'zh-CN';
  509. var cultureCode = 'zh-CN';
  510. var customerID = '';
  511. </script>
  512. <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  513. </td>
  514. </tr>
  515. </table>
  516. <div style="display: none; padding-top: 10px" id="divSingleItem">
  517. <table id="tblSingeItem">
  518. <tr>
  519. <!-- Here goes the single item -->
  520. <td style="padding-right: 15px">
  521. <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
  522. <td style="align: right; padding-right: 2px" id="tdSingleItms">
  523. <div id="divAll">
  524. <div id="wrapper">
  525. <div id="divLbl">
  526. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
  527. </div>
  528. <div id="divHyp">
  529. </div>
  530. </div>
  531. <div id="divRest">
  532. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
  533. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
  534. <br />
  535. <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
  536. </div>
  537. </div>
  538. </td>
  539. </tr>
  540. </table>
  541. </div>
  542. <div id="divForCart" class="divMsgLnkTotal" style="display: none">
  543. <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
  544. <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
  545. <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
  546. <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
  547. <a onclick="javascript:return MiniCart.SendToCartPage(&#39;Cart Hover&#39;,&#39;View Cart Button&#39;);" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$linkToCartAtMiniCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  548. </div>
  549. </div>
  550. </td>
  551. <td style="display: none" id="trCartSubTotal">
  552. <table class="tblMiniCartSub">
  553. <tr>
  554. <td align="right" style="padding-bottom: 5px; padding-top: 2px">
  555. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
  556. <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
  557. </td>
  558. </tr>
  559. <tr>
  560. <td align="right" style="padding-bottom: 5px">
  561. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
  562. </td>
  563. </tr>
  564. <tr>
  565. <td align="left" style="padding-bottom: 5px">
  566. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
  567. </td>
  568. </tr>
  569. <tr>
  570. <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
  571. <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack(&#39;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune&#39;,&#39;&#39;)" style="color:White;text-decoration:none;">继续购物</a>
  572. <a onclick="return MiniCart.SendToCartPage(&#39;Add to Cart Modal&#39;,&#39;View Cart&#39;);" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  573. </td>
  574. </tr>
  575. </table>
  576. <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
  577. </td>
  578. </tr>
  579. <tr id="trHideModalCheckBox" style="display: none">
  580. <td colspan="2">
  581. <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
  582. </td>
  583. </tr>
  584. </table>
  585. <script type="text/javascript">
  586. $(document).ready(function () {
  587. MiniCart.source = 'refine';
  588. });
  589. </script>
  590. </div>
  591. <script type="text/javascript">
  592. function OpenCurrencyPopup() {
  593. $("#tblink").trigger('click');
  594. }
  595. function CloseCurrencyPopup() {
  596. var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
  597. var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
  598. if (ddlCurrency != null && hidCurrencyValue != null) {
  599. ddlCurrency.selectedIndex = hidCurrencyValue.value;
  600. }
  601. window.location.reload();
  602. }
  603. </script>
  604. </div>
  605. </div>
  606. <div id="wideHeader" class="wideHeader">
  607. <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
  608. <div id="search" class="row">
  609. <div id="logo" class='col-xs-4'>
  610. <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
  611. </div>
  612. <div id="search-block" class="col-xs-4">
  613. <div id="search-title">
  614. 物料编号/关键字
  615. </div>
  616. <div id="search-bar">
  617. <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_NavHeader_btn1&#39;)">
  618. <div id="searchPartNumberBox" class="search-box inline-block">
  619. <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
  620. <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
  621. </div>
  622. <div class="inline-block">
  623. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
  624. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
  625. </div>
  626. </div>
  627. </div>
  628. </div>
  629. <div id="account" class="col-xs-4 align-right">
  630. <ul>
  631. <li>
  632. </li>
  633. <li>
  634. <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDXBvX8gUo%2fLury2Ktfcih%2fsT3BxTrC%2fdaQfV5AfAhZ7wPFyVuaIRgJ8kYaYj2jvfWw%3d%3d">登录</a>
  635. </li>
  636. <li>
  637. </li>
  638. <li>
  639. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  643. </li>
  644. <li>
  645. <!-- Mush:TBC -->
  646. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  647. </li>
  648. </ul>
  649. </div>
  650. </div>
  651. <div id="navArea" class="row">
  652. <div class="col-xs-12">
  653. <div id="navMain" class="inline-block">
  654. <div class="navbar">
  655. <ul class="topnav">
  656. <li>
  657. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  658. <ul class="subnav" id="subnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  661. </li>
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  670. </li>
  671. </ul>
  672. </li>
  673. <li>
  674. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  675. <ul class="subnav" id="subnav">
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  678. </li>
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  687. </li>
  688. </ul>
  689. </li>
  690. <li>
  691. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  692. <ul class="subnav" id="subnav">
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  695. </li>
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  725. </li>
  726. </ul>
  727. </li>
  728. <li>
  729. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  730. <ul class="subnav" id="subnav">
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  733. </li>
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  760. </li>
  761. </ul>
  762. </li>
  763. <li>
  764. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  765. <ul class="subnav" id="subnav">
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  768. </li>
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  777. </li>
  778. </ul>
  779. </li>
  780. <li>
  781. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  782. <ul class="subnav" id="subnav">
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  785. </li>
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  797. </li>
  798. </ul>
  799. </li>
  800. </ul>
  801. </div>
  802. </div>
  803. <div class="onlineCatalog inline-block">
  804. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  805. </div>
  806. </div>
  807. </div>
  808. </div>
  809. <div style="visibility: hidden; height: 0px;">
  810. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  811. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  812. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  813. </div>
  814. <script type="text/javascript">
  815. $(document).ready(function () {
  816. //* change to html5 catalog if javascript is enabled *
  817. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  818. });
  819. </script>
  820. <script type="text/javascript" src='../../../../javascript/genLib.js'></script>
  821. </div>
  822. <div id="ctl00_divWide" class="divWide">
  823. <link rel="stylesheet" type="text/css" href='../../../../css/fontawesome/css/font-awesome.min.css' />
  824. <br />
  825. <strong></strong>
  826. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  827. <strong>></strong>
  828. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-5gej/" style="font-size: 9pt; font-weight: bold;">传感器</a>
  829. <strong>></strong>
  830. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">运动与定位传感器</a>
  831. <hr />
  832. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  833. <div class="categorySearchLimits">
  834. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  835. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<span title="传感器"><input id="ctl00_ContentMain_uc1_chkbx254539|Sensors" type="checkbox" name="ctl00$ContentMain$uc1$chkbx254539|Sensors" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx10834206|Motion &amp; Position Sensors&#39;).checked = false;" /></span>&nbsp;<b>传感器</b>&nbsp;&#62;&nbsp;<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(&#39;ctl00_ContentMain_uc1_chkbx254539|Sensors&#39;).checked = true;" /></span>&nbsp;<b>运动与定位传感器</b>
  836. </div>
  837. </div>
  838. </div>
  839. <table border="0" width="100%">
  840. <tr>
  841. <td>
  842. <div id="ctl00_ContentMain_pnl3">
  843. <div id="category-top" class="category-content">
  844. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1>运动与定位传感器</h1></a>
  845. <img id="ctl00_ContentMain_imageCat" class="category-img" src="../../../../images/DisplayCategories/10834206.png" alt="运动与定位传感器" />
  846. <!--Marketing Content-->
  847. <table id="ctl00_ContentMain_tbl5">
  848. <tr>
  849. <td>
  850. <div class="marketing-content2">
  851. <strong>Motion Sensors</strong>&nbsp;&amp; <strong>Position Sensors</strong> are available at Mouser Electronics from industry leading manufacturers. Mouser is an authorized distributor for many motion &amp; position sensor manufacturers including Avago, GE, Honeywell, Maxim Integrated, NXP, Optek, Texas Instruments &amp; more. Please view our large selection of motion sensors &amp; position sensors below.
  852. </div>
  853. </td>
  854. </tr>
  855. </table>
  856. <div id="ctl00_ContentMain_refinemfglogo">
  857. </div>
  858. </div><!--.category-content-->
  859. </div>
  860. </td>
  861. </tr>
  862. <tr>
  863. <td>
  864. </td>
  865. </tr>
  866. <tr>
  867. <td>
  868. <div id="refine-page2">
  869. </div>
  870. </td>
  871. </tr>
  872. </table>
  873. <div id="ctl00_ContentMain_divTabs" class="row">
  874. <div class="col-xs-12">
  875. <div id="tabsNavigation" >
  876. <ul>
  877. <li id="ctl00_ContentMain_liProductsTab" class="active">
  878. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(3,160)</span></a>
  879. </li>
  880. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  881. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Motion &amp; Position Sensors&#39;);" href="../../Datasheets/_/N-6g7q6">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(756)</span></a>
  882. </li>
  883. <li id="ctl00_ContentMain_liImagesTab" class="">
  884. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Motion &amp; Position Sensors&#39;);" href="../../Images/_/N-6g7q6">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(467)</span></a>
  885. </li>
  886. <li id="ctl00_ContentMain_liNewestTab" class="">
  887. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Motion &amp; Position Sensors&#39;);" href="../../Newest-Products/_/N-6g7q6">最新产品</a>
  888. </li>
  889. </ul>
  890. </div>
  891. </div>
  892. </div>
  893. <div id="tabDivs" class="tab-divs">
  894. <!-- Hide the View links if javascript is disabled -->
  895. <noscript>
  896. <style type="text/css">.list-visual{display:none;}</style>
  897. </noscript>
  898. <div id="CategoryControlTop">
  899. <table class="table-categories">
  900. <tr><td valign="top">
  901. <input type="hidden" name="ctl00$ContentMain$uc6$listCategories$ctl01$hdnCatID" id="ctl00_ContentMain_uc6_listCategories_ctl01_hdnCatID" value="10834206" />
  902. <div class="topCatTitle">
  903. <div class="col-xs-8 no-left-pad">
  904. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkCategory" class="SearchResultsTopLevelCategory" href="./"><h2>运动与定位传感器类型</h2></a>
  905. </div>
  906. <div class="text-right">
  907. <div class="list-visual">
  908. <ul>
  909. <li class="right-border active">
  910. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;List&#39;, &#39;Motion &amp; Position Sensors&#39;); SwitchListView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkListView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkListView&#39;,&#39;&#39;)">
  911. <i class="fa fa-th-list"></i>&nbsp;列表</a>
  912. </li>
  913. <li>
  914. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;Visual&#39;, &#39;Motion &amp; Position Sensors&#39;); SwitchVisualView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkVisualView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkVisualView&#39;,&#39;&#39;)">
  915. <i class="fa fa-th-large"></i>&nbsp;目视</a>
  916. </li>
  917. </ul>
  918. </div>
  919. </div>
  920. </div>
  921. <ul class="sub-cats">
  922. <table id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories" cellspacing="0" style="width:100%;border-collapse:collapse;">
  923. <tr>
  924. <td>
  925. <li class="sub-cat">
  926. <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 = &quot;none&quot;" src="../../../../images/DisplayCategories/18357019.png" alt="Accelerometers" /></div>
  927. <div class="div-cat-title">
  928. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Accelerometers/_/N-axgd7/"><h3>加速计</h3></a>
  929. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lblRecordCount">504</span>)</span>
  930. </div>
  931. </li>
  932. </td><td>
  933. <li class="sub-cat">
  934. <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 = &quot;none&quot;" src="../../../../images/DisplayCategories/20700990.png" alt="IMUs - Inertial Measurement Units" /></div>
  935. <div class="div-cat-title">
  936. <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>
  937. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lblRecordCount">44</span>)</span>
  938. </div>
  939. </li>
  940. </td><td>
  941. <li class="sub-cat">
  942. <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 = &quot;none&quot;" src="../../../../images/DisplayCategories/18356883.png" alt="Speed Sensors" /></div>
  943. <div class="div-cat-title">
  944. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Speed-Sensors/_/N-axg9f/"><h3>速度传感器</h3></a>
  945. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_lblRecordCount">365</span>)</span>
  946. </div>
  947. </li>
  948. </td>
  949. </tr><tr>
  950. <td>
  951. <li class="sub-cat">
  952. <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 = &quot;none&quot;" src="../../../../images/DisplayCategories/10834225.png" alt="Board Mount Motion &amp; Position Sensors" /></div>
  953. <div class="div-cat-title">
  954. <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>
  955. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lblRecordCount">299</span>)</span>
  956. </div>
  957. </li>
  958. </td><td>
  959. <li class="sub-cat">
  960. <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 = &quot;none&quot;" src="../../../../images/DisplayCategories/20735539.png" alt="Inclinometers" /></div>
  961. <div class="div-cat-title">
  962. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Inclinometers/_/N-ccfn7/"><h3>测斜计</h3></a>
  963. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lblRecordCount">43</span>)</span>
  964. </div>
  965. </li>
  966. </td><td>
  967. <li class="sub-cat">
  968. <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 = &quot;none&quot;" src="../../../../images/DisplayCategories/22777831.png" alt="Tilt Switches" /></div>
  969. <div class="div-cat-title">
  970. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Tilt-Switches/_/N-dk7hj/"><h3>倾斜开关</h3></a>
  971. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_lblRecordCount">47</span>)</span>
  972. </div>
  973. </li>
  974. </td>
  975. </tr><tr>
  976. <td>
  977. <li class="sub-cat">
  978. <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 = &quot;none&quot;" src="../../../../images/DisplayCategories/18356833.png" alt="Gyroscopes" /></div>
  979. <div class="div-cat-title">
  980. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Gyroscopes/_/N-axg81/"><h3>螺旋仪</h3></a>
  981. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lblRecordCount">85</span>)</span>
  982. </div>
  983. </li>
  984. </td><td>
  985. <li class="sub-cat">
  986. <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 = &quot;none&quot;" src="../../../../images/DisplayCategories/10834217.png" alt="Industrial Motion &amp; Position Sensors" /></div>
  987. <div class="div-cat-title">
  988. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Industrial-Motion-Position-Sensors/_/N-6g7qh/"><h3>工业移动感应器和位置传感器</h3></a>
  989. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_lblRecordCount">1,725</span>)</span>
  990. </div>
  991. </li>
  992. </td><td>
  993. <li class="sub-cat">
  994. <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 = &quot;none&quot;" src="../../../../images/DisplayCategories/20735577.png" alt="Vibration Sensors" /></div>
  995. <div class="div-cat-title">
  996. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl08_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Vibration-Sensors/_/N-ccfo9/"><h3>振动传感器</h3></a>
  997. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl08_lblRecordCount">48</span>)</span>
  998. </div>
  999. </li>
  1000. </td>
  1001. </tr>
  1002. </table></ul>
  1003. </td></tr></table>
  1004. <div id="search-left-col">
  1005. </div>
  1006. </div>
  1007. <script type="text/javascript">
  1008. //<![CDATA[
  1009. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  1010. //]]>
  1011. </script>
  1012. <div id="ctl00_ContentMain_liProducts">
  1013. <div id="refineSearchDiv">
  1014. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  1015. <div id="refine-keyword-search-2">
  1016. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  1017. <div id="boxPartSearch2">
  1018. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  1019. <tr>
  1020. <td rowspan="3" style="vertical-align: middle">
  1021. <div id="searchPartNumberBox" class="search-box" >
  1022. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  1023. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  1024. </div>
  1025. </td>
  1026. </tr>
  1027. <tr>
  1028. <td class="chk-Search">
  1029. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  1030. </td>
  1031. </tr>
  1032. <tr>
  1033. <td class="chk-Search">
  1034. <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>
  1035. </td>
  1036. </tr>
  1037. </table>
  1038. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  1039. </div>
  1040. <script type="text/javascript" src='../../../../flash/js/Placeholders.min.js'></script>
  1041. <script type="text/javascript" src='../../../../flash/js/watermark.js'></script>
  1042. </div>
  1043. </div>
  1044. <div id="refine-mfg-select-2">
  1045. <div id="ctl00_ContentMain_uc3_BoxManufacturer" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc3_btnSelectManufacturer&#39;)">
  1046. <div id="boxSuppliers">
  1047. <table id="ctl00_ContentMain_uc3_tblSuppliers" class="tblSuppliers2">
  1048. <tr>
  1049. <td valign="middle" align="left">
  1050. <table cellspacing="0" cellpadding="0" width="100%">
  1051. <tr>
  1052. <td style="vertical-align: middle;">
  1053. <select name="ctl00$ContentMain$uc3$ddlManufacturer" id="ctl00_ContentMain_uc3_ddlManufacturer" class="default">
  1054. <option selected="selected" value="0">所有制造商</option>
  1055. <option value="4294759271">Alpha (Taiwan) (3)</option>
  1056. <option value="4294759270">ALPS (19)</option>
  1057. <option value="4291852130">ams (32)</option>
  1058. <option value="4290538360">Analog Devices Inc. (148)</option>
  1059. <option value="4292858401">BEI Sensors (32)</option>
  1060. <option value="4267065231">Bosch (15)</option>
  1061. <option value="4294759693">Bourns (43)</option>
  1062. <option value="4294758777">C&amp;K Components (10)</option>
  1063. <option value="4288434773">CHERRY (21)</option>
  1064. <option value="4288463162">Diodes Incorporated (2)</option>
  1065. <option value="4291156561">ELMOS (4)</option>
  1066. <option value="4294759258">E-Switch (2)</option>
  1067. <option value="4294759249">ETI Systems (1)</option>
  1068. <option value="4294759187">Fairchild Semiconductor (7)</option>
  1069. <option value="4293998581">Freescale / NXP (172)</option>
  1070. <option value="4291607133">Gravitech (3)</option>
  1071. <option value="4287829429">Grayhill (2)</option>
  1072. <option value="4294424657">Honeywell (1,463)</option>
  1073. <option value="4294759026">Infineon (2)</option>
  1074. <option value="4292803520">Kionix (75)</option>
  1075. <option value="4293984106">Knowles (7)</option>
  1076. <option value="4294759313">Littelfuse (7)</option>
  1077. <option value="4285139929">mCube (9)</option>
  1078. <option value="4273581899">Melexis (46)</option>
  1079. <option value="4292755921">MikroElektronika (1)</option>
  1080. <option value="4294759241">Murata (94)</option>
  1081. <option value="4294758758">NJR (1)</option>
  1082. <option value="4294012386">NKK Switches (3)</option>
  1083. <option value="4294758971">NXP (179)</option>
  1084. <option value="4294759010">Omron (9)</option>
  1085. <option value="4294758778">OncQue (32)</option>
  1086. <option value="4292890524">Panasonic (197)</option>
  1087. <option value="4294758655">Parallax (9)</option>
  1088. <option value="4294759160">Piher (8)</option>
  1089. <option value="4290079589">Plessey Semiconductors (4)</option>
  1090. <option value="4292733687">Raychem / TE Connectivity (1)</option>
  1091. <option value="4294005660">ROHM Semiconductor (3)</option>
  1092. <option value="4292984436">Spectra Symbol (12)</option>
  1093. <option value="4294764375">STMicroelectronics (85)</option>
  1094. <option value="4292733690">TE Connectivity (131)</option>
  1095. <option value="4294758568">Toshiba (1)</option>
  1096. <option value="4285624292">TT Electronics (413)</option>
  1097. <option value="4294759685">Vishay (18)</option>
  1098. <option value="4283162860">Xsens (6)</option>
  1099. <option value="4294759235">ZiLOG (1)</option>
  1100. </select>
  1101. </td>
  1102. <td style="vertical-align: middle;">
  1103. <input type="submit" name="ctl00$ContentMain$uc3$btnSelectManufacturer" value="确定" onclick="return attributecount();" id="ctl00_ContentMain_uc3_btnSelectManufacturer" title="确定" class="button" />
  1104. </td>
  1105. </tr>
  1106. </table>
  1107. </td>
  1108. </tr>
  1109. </table>
  1110. </div>
  1111. </div>
  1112. </div>
  1113. <div class="clear">
  1114. </div>
  1115. </div>
  1116. <div id="refine-mfg-logo2">
  1117. </div>
  1118. </div>
  1119. <br />
  1120. <table border="0" width="100%">
  1121. <tr>
  1122. <td>
  1123. </td>
  1124. </tr>
  1125. <tr>
  1126. <td>
  1127. <!--- Search Features --->
  1128. </td>
  1129. </tr>
  1130. <tr>
  1131. <td>
  1132. <div id="refine-page">
  1133. </div>
  1134. </td>
  1135. </tr>
  1136. <tr>
  1137. <td class="refine-show-products">
  1138. <span class="redtextb">
  1139. </span> <span class="redtextb">
  1140. </span> <span class="redtextb">
  1141. </span> <span class="redtextb">
  1142. </span>
  1143. <span class="redtextb">
  1144. </span>
  1145. </td>
  1146. </tr>
  1147. <tr>
  1148. <td>
  1149. </td>
  1150. </tr>
  1151. <tr>
  1152. <td>
  1153. <!--- Special Order Parts New --->
  1154. <!-- SOP Section 1 -->
  1155. </td>
  1156. </tr>
  1157. </table>
  1158. <div id="searchResultsTbl">
  1159. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  1160. <tr>
  1161. <td class="tdSearchResultsPagingTop">
  1162. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  1163. <tr>
  1164. <td>
  1165. <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" />
  1166. </td>
  1167. <td>
  1168. <input type="submit" name="ctl00$ContentMain$btn2" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) &amp;&amp; 0 == 0) { alert(&#39;请选择您希望对比的产品。&#39;); return false; };" id="ctl00_ContentMain_btn2" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
  1169. </td>
  1170. <td>
  1171. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  1172. </td>
  1173. <td style="padding-left: 40px;">
  1174. <div class="floatrightpager">
  1175. <span class="bold">
  1176. 页面:
  1177. </span>
  1178. <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>
  1179. </div>
  1180. </td>
  1181. </tr>
  1182. </table>
  1183. </td>
  1184. </tr>
  1185. <tr>
  1186. <td>
  1187. <div>
  1188. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  1189. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  1190. <th class="td-select" scope="col" style="width:35px;">
  1191. 选择
  1192. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  1193. </th><th scope="col">制造商 零件编号
  1194. </th><th scope="col">制造商
  1195. </th><th scope="col">描述
  1196. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../Images/Search/pdf.gif" alt="文件" />
  1197. </th><th scope="col">供货情况
  1198. </th><th scope="col">单价(含17%增值税)
  1199. <br />
  1200. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  1201. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  1202. </th>
  1203. </tr><tr class="SearchResultsSortCell">
  1204. <td class="td-select" align="center"></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl11&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 Mouser 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl13&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 Mouser 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Ascending&#39;); return false;" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl02_ctl15" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl15&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl17&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl19&#39;,&#39;&#39;)"><img title="按 制造商 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl21&#39;,&#39;&#39;)"><img title="按 制造商 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Default>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl23&#39;,&#39;&#39;)"><img title="按 供货情况 Ascending 排序" src="../../../../Images/Search/btn_ActiveSort_Up.jpg" alt="按 供货情况 Ascending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl25&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 单价(含17%增值税) Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl27&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td>
  1205. </tr><tr class="SearchResultsRowOdd" data-partnumber="262-BMF055" data-index="3">
  1206. <td class="td-select" align="center">
  1207. <div style="padding: 5px 5px 0 5px;">
  1208. <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>
  1209. </div>
  1210. </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>
  1211. <div style="text-align:left;">
  1212. <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 />
  1213. <br />
  1214. <br />
  1215. 要购买完整 卷轴,请订购 4000 的倍数:
  1216. </div></td><td>
  1217. <div class="mfrDiv">
  1218. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bosch-Sensortec/BMF055/?qs=sGAEpiMZZMs0JOhy9PM0UVimaW%252bJf89Z%252byXEirxDkYIS9UxgcDZVng%3d%3d">BMF055</a><br />
  1219. <br />
  1220. <div style="width: 100%; text-align: center;">
  1221. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1222. </div>
  1223. <div style="width: 100%; text-align: center;">
  1224. </div>
  1225. </div>
  1226. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../bosch-sensortec">Bosch Sensortec</a>
  1227. </td><td>IMU-惯性测量单元 Absolute Orientation Empty 9-Axis Sensor
  1228. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1229. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../bosch-sensortec-bmf055-motion-sensor">了解更多</a>
  1230. </div>
  1231. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1232. </div>
  1233. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Bosch Sensortec&quot;,&quot;262-BMF055 | BMF055&quot;]);" href="http://www.mouser.com/ds/2/783/151002_BMF055_Flyer_10-786469.pdf" target="_blank">数据表</a>
  1234. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">7,839<br/>有库存</span>
  1235. <table>
  1236. <tr align="center">
  1237. <td style="padding-top: 5px">
  1238. </td>
  1239. </tr>
  1240. <tr align="center">
  1241. <td style="padding-top: 5px; padding-bottom: 5px">
  1242. </td>
  1243. </tr>
  1244. </table></td><td>
  1245. <table class="PriceBreaks" cellspacing="0" border="0">
  1246. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1247. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1248. </td>
  1249. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1250. </td>
  1251. </tr>
  1252. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1253. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1254. 剪切带
  1255. </td>
  1256. </tr>
  1257. <tr>
  1258. <td class="PriceBreakQuantity">
  1259. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  1260. </td>
  1261. <td class="PriceBreakPrice">
  1262. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥84.6378</span>
  1263. </td>
  1264. </tr>
  1265. <tr>
  1266. <td class="PriceBreakQuantity">
  1267. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,5);">5:</a>
  1268. </td>
  1269. <td class="PriceBreakPrice">
  1270. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥80.6247</span>
  1271. </td>
  1272. </tr>
  1273. <tr>
  1274. <td class="PriceBreakQuantity">
  1275. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  1276. </td>
  1277. <td class="PriceBreakPrice">
  1278. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥79.092</span>
  1279. </td>
  1280. </tr>
  1281. <tr>
  1282. <td class="PriceBreakQuantity">
  1283. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  1284. </td>
  1285. <td class="PriceBreakPrice">
  1286. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥73.1601</span>
  1287. </td>
  1288. </tr>
  1289. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1290. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1291. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(1,50);">50:</a>
  1292. </td>
  1293. <td class="PriceBreakPrice">
  1294. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Bosch-Sensortec/BMF055/?qs=sGAEpiMZZMs0JOhy9PM0UVimaW%252bJf89Z%252byXEirxDkYIS9UxgcDZVng%3d%3d">查看</a>
  1295. </td>
  1296. </tr>
  1297. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  1298. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1299. </td>
  1300. </tr>
  1301. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReel">
  1302. <td class="PriceBreakQuantity">
  1303. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(1,4000);" style="white-space: nowrap">4,000:</a>
  1304. </td>
  1305. <td class="PriceBreakPrice">
  1306. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥55.9845</span>
  1307. </td>
  1308. </tr>
  1309. <tr>
  1310. <td><br /></td>
  1311. </tr>
  1312. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1313. <td colspan="2" style="text-align: center;">
  1314. <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>
  1315. </td>
  1316. </tr>
  1317. </table>
  1318. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy&#39;)">
  1319. <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 />
  1320. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 1);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy" title="购买 BMF055" class="buy-button" /><br />
  1321. <table cellspacing="0" border="0" style="width: 100%;">
  1322. <tr>
  1323. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1324. 最低:
  1325. </td>
  1326. <td style="padding-left: 2px; text-align: left;">
  1327. 1
  1328. </td>
  1329. </tr>
  1330. <tr>
  1331. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1332. 多个:
  1333. </td>
  1334. <td style="padding-left: 2px; text-align: left;">
  1335. 1
  1336. </td>
  1337. </tr>
  1338. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_trReel">
  1339. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1340. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(1,4000);">卷轴</a>:
  1341. </td>
  1342. <td style="padding-left: 2px; text-align: left;">
  1343. <em class="SearchResultsReel">
  1344. 4,000
  1345. </em>
  1346. </td>
  1347. </tr>
  1348. </table>
  1349. </div>
  1350. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  1351. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1352. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=4Yl85YvZwrjP3YvVvLSNDQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=4Yl85YvZwrjP3YvVvLSNDQ%3d%3d" target="_blank">详细信息</a>
  1353. </div>
  1354. </td>
  1355. </tr><tr class="SearchResultsRowEven" data-partnumber="511-LSM6DS33TR" data-index="4">
  1356. <td class="td-select" align="center">
  1357. <div style="padding: 5px 5px 0 5px;">
  1358. <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>
  1359. </div>
  1360. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/LGA_16_t.jpg</div></a></td><td>
  1361. <div style="text-align:left;">
  1362. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/LSM6DS33TR/?qs=sGAEpiMZZMs0JOhy9PM0Ucc%252bByJlo6gDxNbwQI6TLhWzjXGbBL1V4w%3d%3d">511-LSM6DS33TR</a><br />
  1363. <br />
  1364. <br />
  1365. </div></td><td>
  1366. <div class="mfrDiv">
  1367. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/LSM6DS33TR/?qs=sGAEpiMZZMs0JOhy9PM0Ucc%252bByJlo6gDxNbwQI6TLhWzjXGbBL1V4w%3d%3d">LSM6DS33TR</a><br />
  1368. <br />
  1369. <div style="width: 100%; text-align: center;">
  1370. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1371. </div>
  1372. <div style="width: 100%; text-align: center;">
  1373. </div>
  1374. </div>
  1375. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
  1376. </td><td>IMU-惯性测量单元
  1377. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1378. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../stm-lsm6ds3">了解更多</a>
  1379. </div>
  1380. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1381. </div>
  1382. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;STMicroelectronics&quot;,&quot;511-LSM6DS33TR | LSM6DS33TR&quot;]);" href="http://www.mouser.com/ds/2/389/DM00157718-770651.pdf" target="_blank">数据表</a>
  1383. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">4,374<br/>有库存</span>
  1384. <table>
  1385. <tr align="center">
  1386. <td style="padding-top: 5px">
  1387. </td>
  1388. </tr>
  1389. <tr align="center">
  1390. <td style="padding-top: 5px; padding-bottom: 5px">
  1391. </td>
  1392. </tr>
  1393. </table></td><td>
  1394. <table class="PriceBreaks" cellspacing="0" border="0">
  1395. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1396. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1397. </td>
  1398. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1399. </td>
  1400. </tr>
  1401. <tr>
  1402. <td class="PriceBreakQuantity">
  1403. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  1404. </td>
  1405. <td class="PriceBreakPrice">
  1406. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥32.7249</span>
  1407. </td>
  1408. </tr>
  1409. <tr>
  1410. <td class="PriceBreakQuantity">
  1411. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  1412. </td>
  1413. <td class="PriceBreakPrice">
  1414. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥27.7992</span>
  1415. </td>
  1416. </tr>
  1417. <tr>
  1418. <td class="PriceBreakQuantity">
  1419. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  1420. </td>
  1421. <td class="PriceBreakPrice">
  1422. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥24.102</span>
  1423. </td>
  1424. </tr>
  1425. <tr>
  1426. <td class="PriceBreakQuantity">
  1427. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,250);">250:</a>
  1428. </td>
  1429. <td class="PriceBreakPrice">
  1430. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥22.8735</span>
  1431. </td>
  1432. </tr>
  1433. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1434. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1435. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(2,500);">500:</a>
  1436. </td>
  1437. <td class="PriceBreakPrice">
  1438. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/STMicroelectronics/LSM6DS33TR/?qs=sGAEpiMZZMs0JOhy9PM0Ucc%252bByJlo6gDxNbwQI6TLhWzjXGbBL1V4w%3d%3d">查看</a>
  1439. </td>
  1440. </tr>
  1441. <tr>
  1442. <td><br /></td>
  1443. </tr>
  1444. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1445. <td colspan="2" style="text-align: center;">
  1446. </td>
  1447. </tr>
  1448. </table>
  1449. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy&#39;)">
  1450. <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 />
  1451. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 2);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy" title="购买 LSM6DS33TR" class="buy-button" /><br />
  1452. <table cellspacing="0" border="0" style="width: 100%;">
  1453. <tr>
  1454. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1455. 最低:
  1456. </td>
  1457. <td style="padding-left: 2px; text-align: left;">
  1458. 1
  1459. </td>
  1460. </tr>
  1461. <tr>
  1462. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1463. 多个:
  1464. </td>
  1465. <td style="padding-left: 2px; text-align: left;">
  1466. 1
  1467. </td>
  1468. </tr>
  1469. </table>
  1470. </div>
  1471. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  1472. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1473. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=mSVPq9GJGDeVoyYkK3Ej2w%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=mSVPq9GJGDeVoyYkK3Ej2w%3d%3d" target="_blank">详细信息</a>
  1474. </div>
  1475. </td>
  1476. </tr><tr class="SearchResultsRowOdd" data-partnumber="498-MC3610" data-index="5">
  1477. <td class="td-select" align="center">
  1478. <div style="padding: 5px 5px 0 5px;">
  1479. <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>
  1480. </div>
  1481. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mcube/images/MC3610_SPL.jpg</div></a></td><td>
  1482. <div style="text-align:left;">
  1483. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/mCube/MC3610/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq472eaiB54Ms29OxdFma%252besg%3d%3d">498-MC3610</a><br />
  1484. <br />
  1485. <br />
  1486. 要购买完整 卷轴,请订购 5000 的倍数:
  1487. </div></td><td>
  1488. <div class="mfrDiv">
  1489. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/mCube/MC3610/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq472eaiB54Ms29OxdFma%252besg%3d%3d">MC3610</a><br />
  1490. <br />
  1491. <div style="width: 100%; text-align: center;">
  1492. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1493. </div>
  1494. <div style="width: 100%; text-align: center;">
  1495. </div>
  1496. </div>
  1497. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../mcube">mCube</a>
  1498. </td><td>加速计 3 Axis Accelerometer
  1499. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1500. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../mcube-mc3610-accelerometers">了解更多</a>
  1501. </div>
  1502. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1503. </div>
  1504. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;mCube&quot;,&quot;498-MC3610 | MC3610&quot;]);" href="http://www.mouser.com/ds/2/693/MC3610-Preliminary-Datasheet-APS-048-0042v1.3-736599.pdf" target="_blank">数据表</a>
  1505. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">4,652<br/>有库存</span>
  1506. <table>
  1507. <tr align="center">
  1508. <td style="padding-top: 5px">
  1509. </td>
  1510. </tr>
  1511. <tr align="center">
  1512. <td style="padding-top: 5px; padding-bottom: 5px">
  1513. </td>
  1514. </tr>
  1515. </table></td><td>
  1516. <table class="PriceBreaks" cellspacing="0" border="0">
  1517. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1518. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1519. </td>
  1520. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1521. </td>
  1522. </tr>
  1523. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1524. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1525. 剪切带
  1526. </td>
  1527. </tr>
  1528. <tr>
  1529. <td class="PriceBreakQuantity">
  1530. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  1531. </td>
  1532. <td class="PriceBreakPrice">
  1533. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥20.3346</span>
  1534. </td>
  1535. </tr>
  1536. <tr>
  1537. <td class="PriceBreakQuantity">
  1538. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  1539. </td>
  1540. <td class="PriceBreakPrice">
  1541. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥18.486</span>
  1542. </td>
  1543. </tr>
  1544. <tr>
  1545. <td class="PriceBreakQuantity">
  1546. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  1547. </td>
  1548. <td class="PriceBreakPrice">
  1549. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥17.0937</span>
  1550. </td>
  1551. </tr>
  1552. <tr>
  1553. <td class="PriceBreakQuantity">
  1554. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  1555. </td>
  1556. <td class="PriceBreakPrice">
  1557. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥15.7131</span>
  1558. </td>
  1559. </tr>
  1560. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1561. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1562. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(3,250);">250:</a>
  1563. </td>
  1564. <td class="PriceBreakPrice">
  1565. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/mCube/MC3610/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq472eaiB54Ms29OxdFma%252besg%3d%3d">查看</a>
  1566. </td>
  1567. </tr>
  1568. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  1569. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1570. </td>
  1571. </tr>
  1572. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trReel">
  1573. <td class="PriceBreakQuantity">
  1574. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(3,5000);" style="white-space: nowrap">5,000:</a>
  1575. </td>
  1576. <td class="PriceBreakPrice">
  1577. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥11.3256</span>
  1578. </td>
  1579. </tr>
  1580. <tr>
  1581. <td><br /></td>
  1582. </tr>
  1583. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1584. <td colspan="2" style="text-align: center;">
  1585. </td>
  1586. </tr>
  1587. </table>
  1588. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy&#39;)">
  1589. <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 />
  1590. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 3);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy" title="购买 MC3610" class="buy-button" /><br />
  1591. <table cellspacing="0" border="0" style="width: 100%;">
  1592. <tr>
  1593. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1594. 最低:
  1595. </td>
  1596. <td style="padding-left: 2px; text-align: left;">
  1597. 1
  1598. </td>
  1599. </tr>
  1600. <tr>
  1601. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1602. 多个:
  1603. </td>
  1604. <td style="padding-left: 2px; text-align: left;">
  1605. 1
  1606. </td>
  1607. </tr>
  1608. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_trReel">
  1609. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1610. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(3,5000);">卷轴</a>:
  1611. </td>
  1612. <td style="padding-left: 2px; text-align: left;">
  1613. <em class="SearchResultsReel">
  1614. 5,000
  1615. </em>
  1616. </td>
  1617. </tr>
  1618. </table>
  1619. </div>
  1620. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  1621. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1622. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=sFsc%2fj2a1wXQN3y%252bax%252byXw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=sFsc%2fj2a1wXQN3y%252bax%252byXw%3d%3d" target="_blank">详细信息</a>
  1623. </div>
  1624. </td>
  1625. </tr><tr class="SearchResultsRowEven" data-partnumber="512-FIS1100" data-index="6">
  1626. <td class="td-select" align="center">
  1627. <div style="padding: 5px 5px 0 5px;">
  1628. <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>
  1629. </div>
  1630. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/LGA_16_t.jpg</div></a></td><td>
  1631. <div style="text-align:left;">
  1632. <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 />
  1633. <br />
  1634. <br />
  1635. 要购买完整 卷轴,请订购 3000 的倍数:
  1636. </div></td><td>
  1637. <div class="mfrDiv">
  1638. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Fairchild-Semiconductor/FIS1100/?qs=sGAEpiMZZMs0JOhy9PM0UUCtpP03podUVhTLb%2fZ%2fwWJ%2f6fi4SRAvhQ%3d%3d">FIS1100</a><br />
  1639. <br />
  1640. <div style="width: 100%; text-align: center;">
  1641. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1642. </div>
  1643. <div style="width: 100%; text-align: center;">
  1644. </div>
  1645. </div>
  1646. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../Fairchild-Semiconductor">Fairchild Semiconductor</a>
  1647. </td><td>IMU-惯性测量单元 Accel + Gyro 6DOF MEMS Sensor in LGA16
  1648. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1649. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../fairchild-fis1100-imu">了解更多</a>
  1650. </div>
  1651. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1652. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  1653. </div>
  1654. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Fairchild Semiconductor&quot;,&quot;512-FIS1100 | FIS1100&quot;]);" href="http://www.mouser.com/ds/2/149/FIS1100-611030.pdf" target="_blank">数据表</a>
  1655. </td><td>
  1656. <table>
  1657. <tr align="center">
  1658. <td style="padding-top: 5px">
  1659. </td>
  1660. </tr>
  1661. <tr align="center">
  1662. <td style="padding-top: 5px; padding-bottom: 5px">
  1663. </td>
  1664. </tr>
  1665. </table></td><td>
  1666. </td><td class="SearchResultsBuyColumn">
  1667. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_pnlRestricted">
  1668. <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>
  1669. </div>
  1670. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  1671. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1672. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=ucjR9gTF43qm0omnKADPhw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=ucjR9gTF43qm0omnKADPhw%3d%3d" target="_blank">详细信息</a>
  1673. </div>
  1674. </td>
  1675. </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KX023-1025-FR" data-index="7">
  1676. <td class="td-select" align="center">
  1677. <div style="padding: 5px 5px 0 5px;">
  1678. <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>
  1679. </div>
  1680. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/LGA-16_DSL.jpg</div></a></td><td>
  1681. <div style="text-align:left;">
  1682. <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 />
  1683. <br />
  1684. <br />
  1685. 要购买完整 卷轴,请订购 1000 的倍数:
  1686. </div></td><td>
  1687. <div class="mfrDiv">
  1688. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KX023-1025-FR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKEltxkTQdzJvWkfjwV1YeBQ%3d%3d">KX023-1025-FR</a><br />
  1689. <br />
  1690. <div style="width: 100%; text-align: center;">
  1691. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1692. </div>
  1693. <div style="width: 100%; text-align: center;">
  1694. </div>
  1695. </div>
  1696. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  1697. </td><td>加速计 3x3x0.9mm Accel with FIFO/FILO Buffer
  1698. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1699. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kx023">了解更多</a>
  1700. </div>
  1701. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1702. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  1703. </div>
  1704. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KX023-1025-FR | KX023-1025-FR&quot;]);" href="http://www.mouser.com/ds/2/217/KX023%20Sell%20Sheet_0-542331.pdf" target="_blank">数据表</a>
  1705. </td><td>
  1706. <table>
  1707. <tr align="center">
  1708. <td style="padding-top: 5px">
  1709. </td>
  1710. </tr>
  1711. <tr align="center">
  1712. <td style="padding-top: 5px; padding-bottom: 5px">
  1713. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  1714. </td>
  1715. </tr>
  1716. </table></td><td>
  1717. </td><td class="SearchResultsBuyColumn">
  1718. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlRestricted">
  1719. <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>
  1720. </div>
  1721. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  1722. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1723. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhwebGHlBsaJvQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhwebGHlBsaJvQ%3d%3d" target="_blank">详细信息</a>
  1724. </div>
  1725. </td>
  1726. </tr><tr class="SearchResultsRowEven" data-partnumber="912-KXTC9-2050-PR" data-index="8">
  1727. <td class="td-select" align="center">
  1728. <div style="padding: 5px 5px 0 5px;">
  1729. <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>
  1730. </div>
  1731. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/KXTC9_SPL.jpg</div></a></td><td>
  1732. <div style="text-align:left;">
  1733. <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 />
  1734. <br />
  1735. <br />
  1736. 要购买完整 卷轴,请订购 500 的倍数:
  1737. </div></td><td>
  1738. <div class="mfrDiv">
  1739. <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 />
  1740. <br />
  1741. <div style="width: 100%; text-align: center;">
  1742. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1743. </div>
  1744. <div style="width: 100%; text-align: center;">
  1745. </div>
  1746. </div>
  1747. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  1748. </td><td>加速计 Triaxis accel 3.3V analog low noise
  1749. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1750. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxtc9">了解更多</a>
  1751. </div>
  1752. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1753. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  1754. </div>
  1755. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXTC9-2050-PR | KXTC9-2050-PR&quot;]);" href="http://www.mouser.com/ds/2/348/KXTC9-2050%20Specifications%20Rev%202-845092.pdf" target="_blank">数据表</a>
  1756. </td><td>
  1757. <table>
  1758. <tr align="center">
  1759. <td style="padding-top: 5px">
  1760. </td>
  1761. </tr>
  1762. <tr align="center">
  1763. <td style="padding-top: 5px; padding-bottom: 5px">
  1764. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  1765. </td>
  1766. </tr>
  1767. </table></td><td>
  1768. </td><td class="SearchResultsBuyColumn">
  1769. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_pnlRestricted">
  1770. <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>
  1771. </div>
  1772. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  1773. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1774. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzELGOuoj%2fe5g%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzELGOuoj%2fe5g%3d%3d" target="_blank">详细信息</a>
  1775. </div>
  1776. </td>
  1777. </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXR94-2283-PR" data-index="9">
  1778. <td class="td-select" align="center">
  1779. <div style="padding: 5px 5px 0 5px;">
  1780. <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>
  1781. </div>
  1782. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/kxr94_SPL.jpg</div></a></td><td>
  1783. <div style="text-align:left;">
  1784. <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 />
  1785. <br />
  1786. <br />
  1787. 要购买完整 卷轴,请订购 500 的倍数:
  1788. </div></td><td>
  1789. <div class="mfrDiv">
  1790. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXR94-2283-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK5W9NWN1BOwEFZyMgfZp59A%3d%3d">KXR94-2283-PR</a><br />
  1791. <br />
  1792. <div style="width: 100%; text-align: center;">
  1793. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1794. </div>
  1795. <div style="width: 100%; text-align: center;">
  1796. </div>
  1797. </div>
  1798. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  1799. </td><td>加速计 Triaxis accel 5.0V analog low noise
  1800. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1801. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxd94">了解更多</a>
  1802. </div>
  1803. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1804. </div>
  1805. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXR94-2283-PR | KXR94-2283-PR&quot;]);" href="http://www.mouser.com/ds/2/348/KXR94-2283%20Specifications%20Rev%202-844622.pdf" target="_blank">数据表</a>
  1806. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">1,000<br/>有库存</span>
  1807. <table>
  1808. <tr align="center">
  1809. <td style="padding-top: 5px">
  1810. </td>
  1811. </tr>
  1812. <tr align="center">
  1813. <td style="padding-top: 5px; padding-bottom: 5px">
  1814. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  1815. </td>
  1816. </tr>
  1817. </table></td><td>
  1818. <table class="PriceBreaks" cellspacing="0" border="0">
  1819. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1820. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1821. </td>
  1822. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1823. </td>
  1824. </tr>
  1825. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1826. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1827. 剪切带
  1828. </td>
  1829. </tr>
  1830. <tr>
  1831. <td class="PriceBreakQuantity">
  1832. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  1833. </td>
  1834. <td class="PriceBreakPrice">
  1835. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥75.465</span>
  1836. </td>
  1837. </tr>
  1838. <tr>
  1839. <td class="PriceBreakQuantity">
  1840. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  1841. </td>
  1842. <td class="PriceBreakPrice">
  1843. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥67.6962</span>
  1844. </td>
  1845. </tr>
  1846. <tr>
  1847. <td class="PriceBreakQuantity">
  1848. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  1849. </td>
  1850. <td class="PriceBreakPrice">
  1851. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥61.1442</span>
  1852. </td>
  1853. </tr>
  1854. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_trReelHeader">
  1855. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1856. 卷轴
  1857. </td>
  1858. </tr>
  1859. <tr>
  1860. <td class="PriceBreakQuantity">
  1861. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,500);">500:</a>
  1862. </td>
  1863. <td class="PriceBreakPrice">
  1864. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥61.1442</span>
  1865. </td>
  1866. </tr>
  1867. <tr>
  1868. <td class="PriceBreakQuantity">
  1869. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(7,1000);">1,000:</a>
  1870. </td>
  1871. <td class="PriceBreakPrice">
  1872. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥44.2845</span>
  1873. </td>
  1874. </tr>
  1875. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  1876. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1877. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,4000);">4,000:</a>
  1878. </td>
  1879. <td class="PriceBreakPrice">
  1880. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Kionix/KXR94-2283-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK5W9NWN1BOwEFZyMgfZp59A%3d%3d">查看</a>
  1881. </td>
  1882. </tr>
  1883. <tr>
  1884. <td><br /></td>
  1885. </tr>
  1886. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  1887. <td colspan="2" style="text-align: center;">
  1888. </td>
  1889. </tr>
  1890. </table>
  1891. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy&#39;)">
  1892. <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 />
  1893. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 7);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy" title="购买 KXR94-2283-PR" class="buy-button" /><br />
  1894. <table cellspacing="0" border="0" style="width: 100%;">
  1895. <tr>
  1896. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1897. 最低:
  1898. </td>
  1899. <td style="padding-left: 2px; text-align: left;">
  1900. 1
  1901. </td>
  1902. </tr>
  1903. <tr>
  1904. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1905. 多个:
  1906. </td>
  1907. <td style="padding-left: 2px; text-align: left;">
  1908. 1
  1909. </td>
  1910. </tr>
  1911. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_trReel">
  1912. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1913. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(7,500);">卷轴</a>:
  1914. </td>
  1915. <td style="padding-left: 2px; text-align: left;">
  1916. <em class="SearchResultsReel">
  1917. 500
  1918. </em>
  1919. </td>
  1920. </tr>
  1921. </table>
  1922. </div>
  1923. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  1924. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1925. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhy3T2JMHsBfFA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhy3T2JMHsBfFA%3d%3d" target="_blank">详细信息</a>
  1926. </div>
  1927. </td>
  1928. </tr><tr class="SearchResultsRowEven" data-partnumber="912-KXR94-2050-PR" data-index="10">
  1929. <td class="td-select" align="center">
  1930. <div style="padding: 5px 5px 0 5px;">
  1931. <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>
  1932. </div>
  1933. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/kxr94_SPL.jpg</div></a></td><td>
  1934. <div style="text-align:left;">
  1935. <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 />
  1936. <br />
  1937. <br />
  1938. 要购买完整 卷轴,请订购 500 的倍数:
  1939. </div></td><td>
  1940. <div class="mfrDiv">
  1941. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXR94-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKWWCwP5UvEt1FISwZsC60Rg%3d%3d">KXR94-2050-PR</a><br />
  1942. <br />
  1943. <div style="width: 100%; text-align: center;">
  1944. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1945. </div>
  1946. <div style="width: 100%; text-align: center;">
  1947. </div>
  1948. </div>
  1949. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  1950. </td><td>加速计 Triaxis accel 3.3V analog low noise
  1951. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1952. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxd94">了解更多</a>
  1953. </div>
  1954. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1955. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  1956. </div>
  1957. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXR94-2050-PR | KXR94-2050-PR&quot;]);" href="http://www.mouser.com/ds/2/348/KXR94-2050%20Specifications%20Rev%203-844615.pdf" target="_blank">数据表</a>
  1958. </td><td>
  1959. <table>
  1960. <tr align="center">
  1961. <td style="padding-top: 5px">
  1962. </td>
  1963. </tr>
  1964. <tr align="center">
  1965. <td style="padding-top: 5px; padding-bottom: 5px">
  1966. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  1967. </td>
  1968. </tr>
  1969. </table></td><td>
  1970. </td><td class="SearchResultsBuyColumn">
  1971. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlRestricted">
  1972. <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>
  1973. </div>
  1974. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  1975. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1976. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzzl6F6lEZ5uA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzzl6F6lEZ5uA%3d%3d" target="_blank">详细信息</a>
  1977. </div>
  1978. </td>
  1979. </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXCJK-1013-PR" data-index="11">
  1980. <td class="td-select" align="center">
  1981. <div style="padding: 5px 5px 0 5px;">
  1982. <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>
  1983. </div>
  1984. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/LGA-16_DSL.jpg</div></a></td><td>
  1985. <div style="text-align:left;">
  1986. <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 />
  1987. <br />
  1988. <br />
  1989. 要购买完整 卷轴,请订购 500 的倍数:
  1990. </div></td><td>
  1991. <div class="mfrDiv">
  1992. <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 />
  1993. <br />
  1994. <div style="width: 100%; text-align: center;">
  1995. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1996. </div>
  1997. <div style="width: 100%; text-align: center;">
  1998. </div>
  1999. </div>
  2000. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  2001. </td><td>加速计 3x3x0.9mm 16-pin Low-Power Accel
  2002. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2003. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxcjk">了解更多</a>
  2004. </div>
  2005. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2006. </div>
  2007. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXCJK-1013-PR | KXCJK-1013-PR&quot;]);" href="http://www.mouser.com/ds/2/348/KXCJK-1013%20Specifications%20Rev%202-844751.pdf" target="_blank">数据表</a>
  2008. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">1,407<br/>有库存</span>
  2009. <table>
  2010. <tr align="center">
  2011. <td style="padding-top: 5px">
  2012. </td>
  2013. </tr>
  2014. <tr align="center">
  2015. <td style="padding-top: 5px; padding-bottom: 5px">
  2016. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2017. </td>
  2018. </tr>
  2019. </table></td><td>
  2020. <table class="PriceBreaks" cellspacing="0" border="0">
  2021. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2022. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2023. </td>
  2024. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2025. </td>
  2026. </tr>
  2027. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2028. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2029. 剪切带
  2030. </td>
  2031. </tr>
  2032. <tr>
  2033. <td class="PriceBreakQuantity">
  2034. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  2035. </td>
  2036. <td class="PriceBreakPrice">
  2037. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥22.3353</span>
  2038. </td>
  2039. </tr>
  2040. <tr>
  2041. <td class="PriceBreakQuantity">
  2042. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
  2043. </td>
  2044. <td class="PriceBreakPrice">
  2045. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥20.1708</span>
  2046. </td>
  2047. </tr>
  2048. <tr>
  2049. <td class="PriceBreakQuantity">
  2050. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,100);">100:</a>
  2051. </td>
  2052. <td class="PriceBreakPrice">
  2053. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥16.2513</span>
  2054. </td>
  2055. </tr>
  2056. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_trReelHeader">
  2057. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2058. 卷轴
  2059. </td>
  2060. </tr>
  2061. <tr>
  2062. <td class="PriceBreakQuantity">
  2063. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,500);">500:</a>
  2064. </td>
  2065. <td class="PriceBreakPrice">
  2066. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥16.2513</span>
  2067. </td>
  2068. </tr>
  2069. <tr>
  2070. <td class="PriceBreakQuantity">
  2071. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(9,1000);">1,000:</a>
  2072. </td>
  2073. <td class="PriceBreakPrice">
  2074. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥10.4013</span>
  2075. </td>
  2076. </tr>
  2077. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  2078. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2079. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(9,4000);">4,000:</a>
  2080. </td>
  2081. <td class="PriceBreakPrice">
  2082. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Kionix/KXCJK-1013-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK0IDYPm13Nd%2f6%2fneHLgPMdA%3d%3d">查看</a>
  2083. </td>
  2084. </tr>
  2085. <tr>
  2086. <td><br /></td>
  2087. </tr>
  2088. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2089. <td colspan="2" style="text-align: center;">
  2090. </td>
  2091. </tr>
  2092. </table>
  2093. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy&#39;)">
  2094. <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 />
  2095. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 9);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy" title="购买 KXCJK-1013-PR" class="buy-button" /><br />
  2096. <table cellspacing="0" border="0" style="width: 100%;">
  2097. <tr>
  2098. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2099. 最低:
  2100. </td>
  2101. <td style="padding-left: 2px; text-align: left;">
  2102. 1
  2103. </td>
  2104. </tr>
  2105. <tr>
  2106. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2107. 多个:
  2108. </td>
  2109. <td style="padding-left: 2px; text-align: left;">
  2110. 1
  2111. </td>
  2112. </tr>
  2113. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_trReel">
  2114. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2115. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(9,500);">卷轴</a>:
  2116. </td>
  2117. <td style="padding-left: 2px; text-align: left;">
  2118. <em class="SearchResultsReel">
  2119. 500
  2120. </em>
  2121. </td>
  2122. </tr>
  2123. </table>
  2124. </div>
  2125. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  2126. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2127. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhxncVsYfbs66Q%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhxncVsYfbs66Q%3d%3d" target="_blank">详细信息</a>
  2128. </div>
  2129. </td>
  2130. </tr><tr class="SearchResultsRowEven" data-partnumber="511-AIS3624DQTR" data-index="12">
  2131. <td class="td-select" align="center">
  2132. <div style="padding: 5px 5px 0 5px;">
  2133. <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>
  2134. </div>
  2135. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/QFN_24_EP_t.jpg</div></a></td><td>
  2136. <div style="text-align:left;">
  2137. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/AIS3624DQTR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFw9sqF8GTr8M%3d">511-AIS3624DQTR</a><br />
  2138. <br />
  2139. <br />
  2140. </div></td><td>
  2141. <div class="mfrDiv">
  2142. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/AIS3624DQTR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFw9sqF8GTr8M%3d">AIS3624DQTR</a><br />
  2143. <br />
  2144. <div style="width: 100%; text-align: center;">
  2145. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2146. </div>
  2147. <div style="width: 100%; text-align: center;">
  2148. </div>
  2149. </div>
  2150. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
  2151. </td><td>加速计 Motion MEMS
  2152. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2153. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../stm-ais3624dq-accelerometer">了解更多</a>
  2154. </div>
  2155. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2156. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2157. </div>
  2158. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;STMicroelectronics&quot;,&quot;511-AIS3624DQTR | AIS3624DQTR&quot;]);" href="http://www.mouser.com/ds/2/389/DM00115750-608015.pdf" target="_blank">数据表</a>
  2159. </td><td>
  2160. <table>
  2161. <tr align="center">
  2162. <td style="padding-top: 5px">
  2163. </td>
  2164. </tr>
  2165. <tr align="center">
  2166. <td style="padding-top: 5px; padding-bottom: 5px">
  2167. </td>
  2168. </tr>
  2169. </table></td><td>
  2170. </td><td class="SearchResultsBuyColumn">
  2171. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_pnlRestricted">
  2172. <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>
  2173. </div>
  2174. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  2175. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2176. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=0qZzwMB2JhXhfWllp9dcJg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=0qZzwMB2JhXhfWllp9dcJg%3d%3d" target="_blank">详细信息</a>
  2177. </div>
  2178. </td>
  2179. </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXD94-2802-PR" data-index="13">
  2180. <td class="td-select" align="center">
  2181. <div style="padding: 5px 5px 0 5px;">
  2182. <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>
  2183. </div>
  2184. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/kxd94_SPL.jpg</div></a></td><td>
  2185. <div style="text-align:left;">
  2186. <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 />
  2187. <br />
  2188. <br />
  2189. 要购买完整 卷轴,请订购 500 的倍数:
  2190. </div></td><td>
  2191. <div class="mfrDiv">
  2192. <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 />
  2193. <br />
  2194. <div style="width: 100%; text-align: center;">
  2195. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2196. </div>
  2197. <div style="width: 100%; text-align: center;">
  2198. </div>
  2199. </div>
  2200. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  2201. </td><td>加速计 Triaxis accel 5.0V analog
  2202. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2203. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxd94">了解更多</a>
  2204. </div>
  2205. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2206. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2207. </div>
  2208. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXD94-2802-PR | KXD94-2802-PR&quot;]);" href="http://www.mouser.com/ds/2/348/KXD94-2802%20Specifications%20Rev%202-844537.pdf" target="_blank">数据表</a>
  2209. </td><td>
  2210. <table>
  2211. <tr align="center">
  2212. <td style="padding-top: 5px">
  2213. </td>
  2214. </tr>
  2215. <tr align="center">
  2216. <td style="padding-top: 5px; padding-bottom: 5px">
  2217. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2218. </td>
  2219. </tr>
  2220. </table></td><td>
  2221. </td><td class="SearchResultsBuyColumn">
  2222. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlRestricted">
  2223. <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>
  2224. </div>
  2225. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  2226. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2227. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhxHqmQOZkQYow%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhxHqmQOZkQYow%3d%3d" target="_blank">详细信息</a>
  2228. </div>
  2229. </td>
  2230. </tr><tr class="SearchResultsRowEven" data-partnumber="912-KXRB5-2050-PR" data-index="14">
  2231. <td class="td-select" align="center">
  2232. <div style="padding: 5px 5px 0 5px;">
  2233. <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>
  2234. </div>
  2235. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/KXRB5_SPL.jpg</div></a></td><td>
  2236. <div style="text-align:left;">
  2237. <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 />
  2238. <br />
  2239. <br />
  2240. 要购买完整 卷轴,请订购 500 的倍数:
  2241. </div></td><td>
  2242. <div class="mfrDiv">
  2243. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXRB5-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK6LQHTyhMTYrY3c5ytjU4LQ%3d%3d">KXRB5-2050-PR</a><br />
  2244. <br />
  2245. <div style="width: 100%; text-align: center;">
  2246. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2247. </div>
  2248. <div style="width: 100%; text-align: center;">
  2249. </div>
  2250. </div>
  2251. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  2252. </td><td>加速计 Triaxis accel 3.3V analog-mux low noise
  2253. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2254. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxrb5">了解更多</a>
  2255. </div>
  2256. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2257. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2258. </div>
  2259. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXRB5-2050-PR | KXRB5-2050-PR&quot;]);" href="http://www.mouser.com/ds/2/348/KXRB5-2050%20Specifications%20Rev%202-844619.pdf" target="_blank">数据表</a>
  2260. </td><td>
  2261. <table>
  2262. <tr align="center">
  2263. <td style="padding-top: 5px">
  2264. </td>
  2265. </tr>
  2266. <tr align="center">
  2267. <td style="padding-top: 5px; padding-bottom: 5px">
  2268. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2269. </td>
  2270. </tr>
  2271. </table></td><td>
  2272. </td><td class="SearchResultsBuyColumn">
  2273. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_pnlRestricted">
  2274. <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>
  2275. </div>
  2276. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  2277. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2278. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhyQ9kd5KEBVXg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhyQ9kd5KEBVXg%3d%3d" target="_blank">详细信息</a>
  2279. </div>
  2280. </td>
  2281. </tr><tr class="SearchResultsRowOdd" data-partnumber="511-LIS2DE12TR" data-index="15">
  2282. <td class="td-select" align="center">
  2283. <div style="padding: 5px 5px 0 5px;">
  2284. <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>
  2285. </div>
  2286. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/LGA_12_SPL.jpg</div></a></td><td>
  2287. <div style="text-align:left;">
  2288. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/LIS2DE12TR/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq4zRPV%252bsKP5rJGYPJ7VO8NWw%3d%3d">511-LIS2DE12TR</a><br />
  2289. <br />
  2290. <br />
  2291. </div></td><td>
  2292. <div class="mfrDiv">
  2293. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/LIS2DE12TR/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq4zRPV%252bsKP5rJGYPJ7VO8NWw%3d%3d">LIS2DE12TR</a><br />
  2294. <br />
  2295. <div style="width: 100%; text-align: center;">
  2296. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2297. </div>
  2298. <div style="width: 100%; text-align: center;">
  2299. </div>
  2300. </div>
  2301. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
  2302. </td><td>加速计 MEMS digital output motion sensor: ultra low-power high performance 3-axes femto accelerometer
  2303. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2304. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../stm-lis2dh">了解更多</a>
  2305. </div>
  2306. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2307. </div>
  2308. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;STMicroelectronics&quot;,&quot;511-LIS2DE12TR | LIS2DE12TR&quot;]);" href="http://www.mouser.com/ds/2/389/DM00153214-766560.pdf" target="_blank">数据表</a>
  2309. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">1,309<br/>有库存</span>
  2310. <table>
  2311. <tr align="center">
  2312. <td style="padding-top: 5px">
  2313. </td>
  2314. </tr>
  2315. <tr align="center">
  2316. <td style="padding-top: 5px; padding-bottom: 5px">
  2317. </td>
  2318. </tr>
  2319. </table></td><td>
  2320. <table class="PriceBreaks" cellspacing="0" border="0">
  2321. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2322. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2323. </td>
  2324. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2325. </td>
  2326. </tr>
  2327. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2328. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2329. 剪切带
  2330. </td>
  2331. </tr>
  2332. <tr>
  2333. <td class="PriceBreakQuantity">
  2334. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  2335. </td>
  2336. <td class="PriceBreakPrice">
  2337. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥11.4777</span>
  2338. </td>
  2339. </tr>
  2340. <tr>
  2341. <td class="PriceBreakQuantity">
  2342. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  2343. </td>
  2344. <td class="PriceBreakPrice">
  2345. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥9.7812</span>
  2346. </td>
  2347. </tr>
  2348. <tr>
  2349. <td class="PriceBreakQuantity">
  2350. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  2351. </td>
  2352. <td class="PriceBreakPrice">
  2353. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥7.5114</span>
  2354. </td>
  2355. </tr>
  2356. <tr>
  2357. <td class="PriceBreakQuantity">
  2358. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,500);">500:</a>
  2359. </td>
  2360. <td class="PriceBreakPrice">
  2361. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥6.6456</span>
  2362. </td>
  2363. </tr>
  2364. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2365. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2366. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(13,1000);">1,000:</a>
  2367. </td>
  2368. <td class="PriceBreakPrice">
  2369. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/STMicroelectronics/LIS2DE12TR/?qs=sGAEpiMZZMs0JOhy9PM0USkrDUgF6rq4zRPV%252bsKP5rJGYPJ7VO8NWw%3d%3d">查看</a>
  2370. </td>
  2371. </tr>
  2372. <tr>
  2373. <td><br /></td>
  2374. </tr>
  2375. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2376. <td colspan="2" style="text-align: center;">
  2377. </td>
  2378. </tr>
  2379. </table>
  2380. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy&#39;)">
  2381. <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 />
  2382. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 13);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy" title="购买 LIS2DE12TR" class="buy-button" /><br />
  2383. <table cellspacing="0" border="0" style="width: 100%;">
  2384. <tr>
  2385. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2386. 最低:
  2387. </td>
  2388. <td style="padding-left: 2px; text-align: left;">
  2389. 1
  2390. </td>
  2391. </tr>
  2392. <tr>
  2393. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2394. 多个:
  2395. </td>
  2396. <td style="padding-left: 2px; text-align: left;">
  2397. 1
  2398. </td>
  2399. </tr>
  2400. </table>
  2401. </div>
  2402. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  2403. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2404. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Mdf5GwH50iSecVNnMYmB2w%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=Mdf5GwH50iSecVNnMYmB2w%3d%3d" target="_blank">详细信息</a>
  2405. </div>
  2406. </td>
  2407. </tr><tr class="SearchResultsRowEven" data-partnumber="511-LIS3DETR" data-index="16">
  2408. <td class="td-select" align="center">
  2409. <div style="padding: 5px 5px 0 5px;">
  2410. <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>
  2411. </div>
  2412. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/LGA_16_t.jpg</div></a></td><td>
  2413. <div style="text-align:left;">
  2414. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/LIS3DETR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFyMFnyWNJ4Vs%3d">511-LIS3DETR</a><br />
  2415. <br />
  2416. <br />
  2417. </div></td><td>
  2418. <div class="mfrDiv">
  2419. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/LIS3DETR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFyMFnyWNJ4Vs%3d">LIS3DETR</a><br />
  2420. <br />
  2421. <div style="width: 100%; text-align: center;">
  2422. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2423. </div>
  2424. <div style="width: 100%; text-align: center;">
  2425. </div>
  2426. </div>
  2427. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
  2428. </td><td>加速计 MEMS digital output motion sensor ultra low-power high performance 3-axes &#34;nano&#34; accelerometer
  2429. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2430. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../stmicrolis3dh">了解更多</a>
  2431. </div>
  2432. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2433. </div>
  2434. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;STMicroelectronics&quot;,&quot;511-LIS3DETR | LIS3DETR&quot;]);" href="http://www.mouser.com/ds/2/389/DM00066267-771679.pdf" target="_blank">数据表</a>
  2435. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">1,751<br/>有库存</span>
  2436. <table>
  2437. <tr align="center">
  2438. <td style="padding-top: 5px">
  2439. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/STMicroelectronics/LIS3DETR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFyMFnyWNJ4Vs%3d">更多信息可用 </a>
  2440. </td>
  2441. </tr>
  2442. <tr align="center">
  2443. <td style="padding-top: 5px; padding-bottom: 5px">
  2444. </td>
  2445. </tr>
  2446. </table></td><td>
  2447. <table class="PriceBreaks" cellspacing="0" border="0">
  2448. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2449. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2450. </td>
  2451. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2452. </td>
  2453. </tr>
  2454. <tr>
  2455. <td class="PriceBreakQuantity">
  2456. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  2457. </td>
  2458. <td class="PriceBreakPrice">
  2459. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥11.0916</span>
  2460. </td>
  2461. </tr>
  2462. <tr>
  2463. <td class="PriceBreakQuantity">
  2464. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,10);">10:</a>
  2465. </td>
  2466. <td class="PriceBreakPrice">
  2467. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥9.477</span>
  2468. </td>
  2469. </tr>
  2470. <tr>
  2471. <td class="PriceBreakQuantity">
  2472. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
  2473. </td>
  2474. <td class="PriceBreakPrice">
  2475. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥7.3008</span>
  2476. </td>
  2477. </tr>
  2478. <tr>
  2479. <td class="PriceBreakQuantity">
  2480. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,500);">500:</a>
  2481. </td>
  2482. <td class="PriceBreakPrice">
  2483. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥6.4584</span>
  2484. </td>
  2485. </tr>
  2486. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2487. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2488. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(14,1000);">1,000:</a>
  2489. </td>
  2490. <td class="PriceBreakPrice">
  2491. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/STMicroelectronics/LIS3DETR/?qs=sGAEpiMZZMs0JOhy9PM0UXreDjHUH0ZFyMFnyWNJ4Vs%3d">查看</a>
  2492. </td>
  2493. </tr>
  2494. <tr>
  2495. <td><br /></td>
  2496. </tr>
  2497. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2498. <td colspan="2" style="text-align: center;">
  2499. </td>
  2500. </tr>
  2501. </table>
  2502. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy&#39;)">
  2503. <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 />
  2504. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 14);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy" title="购买 LIS3DETR" class="buy-button" /><br />
  2505. <table cellspacing="0" border="0" style="width: 100%;">
  2506. <tr>
  2507. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2508. 最低:
  2509. </td>
  2510. <td style="padding-left: 2px; text-align: left;">
  2511. 1
  2512. </td>
  2513. </tr>
  2514. <tr>
  2515. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2516. 多个:
  2517. </td>
  2518. <td style="padding-left: 2px; text-align: left;">
  2519. 1
  2520. </td>
  2521. </tr>
  2522. </table>
  2523. </div>
  2524. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  2525. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2526. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=dbh0SxNh4v57cvALbunsDg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=dbh0SxNh4v57cvALbunsDg%3d%3d" target="_blank">详细信息</a>
  2527. </div>
  2528. </td>
  2529. </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KX023-1025-PR" data-index="17">
  2530. <td class="td-select" align="center">
  2531. <div style="padding: 5px 5px 0 5px;">
  2532. <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>
  2533. </div>
  2534. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/LGA-16_DSL.jpg</div></a></td><td>
  2535. <div style="text-align:left;">
  2536. <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 />
  2537. <br />
  2538. <br />
  2539. 要购买完整 卷轴,请订购 500 的倍数:
  2540. </div></td><td>
  2541. <div class="mfrDiv">
  2542. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KX023-1025-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK6xaqNKn6j7gzLKqpumDDHg%3d%3d">KX023-1025-PR</a><br />
  2543. <br />
  2544. <div style="width: 100%; text-align: center;">
  2545. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2546. </div>
  2547. <div style="width: 100%; text-align: center;">
  2548. </div>
  2549. </div>
  2550. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  2551. </td><td>加速计 3x3x0.9mm Accel with FIFO/FILO Buffer
  2552. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2553. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kx023">了解更多</a>
  2554. </div>
  2555. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2556. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2557. </div>
  2558. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KX023-1025-PR | KX023-1025-PR&quot;]);" href="http://www.mouser.com/ds/2/217/KX023%20Sell%20Sheet_0-542331.pdf" target="_blank">数据表</a>
  2559. </td><td>
  2560. <table>
  2561. <tr align="center">
  2562. <td style="padding-top: 5px">
  2563. </td>
  2564. </tr>
  2565. <tr align="center">
  2566. <td style="padding-top: 5px; padding-bottom: 5px">
  2567. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2568. </td>
  2569. </tr>
  2570. </table></td><td>
  2571. </td><td class="SearchResultsBuyColumn">
  2572. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_pnlRestricted">
  2573. <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>
  2574. </div>
  2575. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  2576. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2577. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhx8jOndLWj%2fhg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhx8jOndLWj%2fhg%3d%3d" target="_blank">详细信息</a>
  2578. </div>
  2579. </td>
  2580. </tr><tr class="SearchResultsRowEven" data-partnumber="912-KXCNL-1010-PR" data-index="18">
  2581. <td class="td-select" align="center">
  2582. <div style="padding: 5px 5px 0 5px;">
  2583. <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>
  2584. </div>
  2585. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/LGA-16_DSL.jpg</div></a></td><td>
  2586. <div style="text-align:left;">
  2587. <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 />
  2588. <br />
  2589. <br />
  2590. 要购买完整 卷轴,请订购 500 的倍数:
  2591. </div></td><td>
  2592. <div class="mfrDiv">
  2593. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXCNL-1010-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKr5fwhEijmWtRIXF0ZJnjAQ%3d%3d">KXCNL-1010-PR</a><br />
  2594. <br />
  2595. <div style="width: 100%; text-align: center;">
  2596. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2597. </div>
  2598. <div style="width: 100%; text-align: center;">
  2599. </div>
  2600. </div>
  2601. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  2602. </td><td>加速计 3x3x0.9mm Accel with Dual State Machines
  2603. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2604. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxcnl">了解更多</a>
  2605. </div>
  2606. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2607. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2608. </div>
  2609. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXCNL-1010-PR | KXCNL-1010-PR&quot;]);" href="http://www.mouser.com/ds/2/348/KXCNL-1010%20Specification%20Rev%203-844609.pdf" target="_blank">数据表</a>
  2610. </td><td>
  2611. <table>
  2612. <tr align="center">
  2613. <td style="padding-top: 5px">
  2614. </td>
  2615. </tr>
  2616. <tr align="center">
  2617. <td style="padding-top: 5px; padding-bottom: 5px">
  2618. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2619. </td>
  2620. </tr>
  2621. </table></td><td>
  2622. </td><td class="SearchResultsBuyColumn">
  2623. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlRestricted">
  2624. <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>
  2625. </div>
  2626. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  2627. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2628. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzBDtfjh4xw0Q%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzBDtfjh4xw0Q%3d%3d" target="_blank">详细信息</a>
  2629. </div>
  2630. </td>
  2631. </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXTF9-2050-PR" data-index="19">
  2632. <td class="td-select" align="center">
  2633. <div style="padding: 5px 5px 0 5px;">
  2634. <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>
  2635. </div>
  2636. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/KXTF9_SPL.jpg</div></a></td><td>
  2637. <div style="text-align:left;">
  2638. <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 />
  2639. <br />
  2640. <br />
  2641. 要购买完整 卷轴,请订购 500 的倍数:
  2642. </div></td><td>
  2643. <div class="mfrDiv">
  2644. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Kionix/KXTF9-2050-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgKp29kpKqjYk7lIf6Wfaan4g%3d%3d">KXTF9-2050-PR</a><br />
  2645. <br />
  2646. <div style="width: 100%; text-align: center;">
  2647. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2648. </div>
  2649. <div style="width: 100%; text-align: center;">
  2650. </div>
  2651. </div>
  2652. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  2653. </td><td>加速计 Triaxis accel 3.3V digi w/motion detect
  2654. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2655. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxtf9">了解更多</a>
  2656. </div>
  2657. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2658. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2659. </div>
  2660. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXTF9-2050-PR | KXTF9-2050-PR&quot;]);" href="http://www.mouser.com/ds/2/348/KXTF9-2050%20Specifications%20Rev%207-844637.pdf" target="_blank">数据表</a>
  2661. </td><td>
  2662. <table>
  2663. <tr align="center">
  2664. <td style="padding-top: 5px">
  2665. </td>
  2666. </tr>
  2667. <tr align="center">
  2668. <td style="padding-top: 5px; padding-bottom: 5px">
  2669. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2670. </td>
  2671. </tr>
  2672. </table></td><td>
  2673. </td><td class="SearchResultsBuyColumn">
  2674. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlRestricted">
  2675. <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>
  2676. </div>
  2677. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  2678. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2679. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhx%252bztVEEEJC6A%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhx%252bztVEEEJC6A%3d%3d" target="_blank">详细信息</a>
  2680. </div>
  2681. </td>
  2682. </tr><tr class="SearchResultsRowEven" data-partnumber="912-KXTIA-1006-PR" data-index="20">
  2683. <td class="td-select" align="center">
  2684. <div style="padding: 5px 5px 0 5px;">
  2685. <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>
  2686. </div>
  2687. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/KXTIA_SPL.jpg</div></a></td><td>
  2688. <div style="text-align:left;">
  2689. <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 />
  2690. <br />
  2691. <br />
  2692. 要购买完整 卷轴,请订购 500 的倍数:
  2693. </div></td><td>
  2694. <div class="mfrDiv">
  2695. <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 />
  2696. <br />
  2697. <div style="width: 100%; text-align: center;">
  2698. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2699. </div>
  2700. <div style="width: 100%; text-align: center;">
  2701. </div>
  2702. </div>
  2703. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  2704. </td><td>加速计 3x3x0.9mm Accel with FIFO/FILO Buffer
  2705. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2706. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxtia">了解更多</a>
  2707. </div>
  2708. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2709. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2710. </div>
  2711. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXTIA-1006-PR | KXTIA-1006-PR&quot;]);" href="http://www.mouser.com/ds/2/348/KXTIA-1006%20Specifications%20Rev%204-844587.pdf" target="_blank">数据表</a>
  2712. </td><td>
  2713. <table>
  2714. <tr align="center">
  2715. <td style="padding-top: 5px">
  2716. </td>
  2717. </tr>
  2718. <tr align="center">
  2719. <td style="padding-top: 5px; padding-bottom: 5px">
  2720. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2721. </td>
  2722. </tr>
  2723. </table></td><td>
  2724. </td><td class="SearchResultsBuyColumn">
  2725. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_pnlRestricted">
  2726. <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>
  2727. </div>
  2728. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  2729. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2730. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzIf7DDQjz9vQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzIf7DDQjz9vQ%3d%3d" target="_blank">详细信息</a>
  2731. </div>
  2732. </td>
  2733. </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXTI9-1001-PR" data-index="21">
  2734. <td class="td-select" align="center">
  2735. <div style="padding: 5px 5px 0 5px;">
  2736. <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>
  2737. </div>
  2738. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/KXTI9_SPL.jpg</div></a></td><td>
  2739. <div style="text-align:left;">
  2740. <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 />
  2741. <br />
  2742. <br />
  2743. 要购买完整 卷轴,请订购 500 的倍数:
  2744. </div></td><td>
  2745. <div class="mfrDiv">
  2746. <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 />
  2747. <br />
  2748. <div style="width: 100%; text-align: center;">
  2749. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2750. </div>
  2751. <div style="width: 100%; text-align: center;">
  2752. </div>
  2753. </div>
  2754. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  2755. </td><td>加速计 3x3x0.9mm Accel with FIFO/FILO Buffer
  2756. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2757. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxti9">了解更多</a>
  2758. </div>
  2759. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2760. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2761. </div>
  2762. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXTI9-1001-PR | KXTI9-1001-PR&quot;]);" href="http://www.mouser.com/ds/2/348/KXTI9-1001%20Specifications%20Rev%203-844915.pdf" target="_blank">数据表</a>
  2763. </td><td>
  2764. <table>
  2765. <tr align="center">
  2766. <td style="padding-top: 5px">
  2767. </td>
  2768. </tr>
  2769. <tr align="center">
  2770. <td style="padding-top: 5px; padding-bottom: 5px">
  2771. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2772. </td>
  2773. </tr>
  2774. </table></td><td>
  2775. </td><td class="SearchResultsBuyColumn">
  2776. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_pnlRestricted">
  2777. <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>
  2778. </div>
  2779. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  2780. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2781. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhxYpsL9muboaA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhxYpsL9muboaA%3d%3d" target="_blank">详细信息</a>
  2782. </div>
  2783. </td>
  2784. </tr><tr class="SearchResultsRowEven" data-partnumber="912-KX022-1020-PR" data-index="22">
  2785. <td class="td-select" align="center">
  2786. <div style="padding: 5px 5px 0 5px;">
  2787. <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>
  2788. </div>
  2789. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/LGA-12_DSL.jpg</div></a></td><td>
  2790. <div style="text-align:left;">
  2791. <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 />
  2792. <br />
  2793. <br />
  2794. 要购买完整 卷轴,请订购 500 的倍数:
  2795. </div></td><td>
  2796. <div class="mfrDiv">
  2797. <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 />
  2798. <br />
  2799. <div style="width: 100%; text-align: center;">
  2800. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2801. </div>
  2802. <div style="width: 100%; text-align: center;">
  2803. </div>
  2804. </div>
  2805. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  2806. </td><td>加速计 2x2x0.9mm Accel with FIFO/FILO Buffer
  2807. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2808. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kx022">了解更多</a>
  2809. </div>
  2810. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2811. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2812. </div>
  2813. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KX022-1020-PR | KX022-1020-PR&quot;]);" href="http://www.mouser.com/ds/2/217/KX022%20Sell%20Sheet-542346.pdf" target="_blank">数据表</a>
  2814. </td><td>
  2815. <table>
  2816. <tr align="center">
  2817. <td style="padding-top: 5px">
  2818. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/Kionix/KX022-1020-PR/?qs=sGAEpiMZZMs0JOhy9PM0UfYtMyofvtgK%252bMCQ9tP8x7FR%252bBdkMOCUhg%3d%3d">更多信息可用 </a>
  2819. </td>
  2820. </tr>
  2821. <tr align="center">
  2822. <td style="padding-top: 5px; padding-bottom: 5px">
  2823. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2824. </td>
  2825. </tr>
  2826. </table></td><td>
  2827. </td><td class="SearchResultsBuyColumn">
  2828. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_pnlRestricted">
  2829. <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>
  2830. </div>
  2831. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  2832. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2833. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhyraHIhuC%2fGbA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhyraHIhuC%2fGbA%3d%3d" target="_blank">详细信息</a>
  2834. </div>
  2835. </td>
  2836. </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXTF9-4100-PR" data-index="23">
  2837. <td class="td-select" align="center">
  2838. <div style="padding: 5px 5px 0 5px;">
  2839. <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>
  2840. </div>
  2841. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/KXTF9_SPL.jpg</div></a></td><td>
  2842. <div style="text-align:left;">
  2843. <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 />
  2844. <br />
  2845. <br />
  2846. 要购买完整 卷轴,请订购 500 的倍数:
  2847. </div></td><td>
  2848. <div class="mfrDiv">
  2849. <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 />
  2850. <br />
  2851. <div style="width: 100%; text-align: center;">
  2852. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2853. </div>
  2854. <div style="width: 100%; text-align: center;">
  2855. </div>
  2856. </div>
  2857. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  2858. </td><td>加速计 Triaxis accel 1.8V digi w/motion detect
  2859. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2860. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxtf9">了解更多</a>
  2861. </div>
  2862. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2863. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2864. </div>
  2865. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXTF9-4100-PR | KXTF9-4100-PR&quot;]);" href="http://www.mouser.com/ds/2/348/KXTF9-4100%20Specifications%20Rev%206-844576.pdf" target="_blank">数据表</a>
  2866. </td><td>
  2867. <table>
  2868. <tr align="center">
  2869. <td style="padding-top: 5px">
  2870. </td>
  2871. </tr>
  2872. <tr align="center">
  2873. <td style="padding-top: 5px; padding-bottom: 5px">
  2874. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2875. </td>
  2876. </tr>
  2877. </table></td><td>
  2878. </td><td class="SearchResultsBuyColumn">
  2879. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_pnlRestricted">
  2880. <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>
  2881. </div>
  2882. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  2883. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2884. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhwoycVOOM8PNQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhwoycVOOM8PNQ%3d%3d" target="_blank">详细信息</a>
  2885. </div>
  2886. </td>
  2887. </tr><tr class="SearchResultsRowEven" data-partnumber="81-SVK3A103AEA01R00" data-index="24">
  2888. <td class="td-select" align="center">
  2889. <div style="padding: 5px 5px 0 5px;">
  2890. <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>
  2891. </div>
  2892. </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>
  2893. <div style="text-align:left;">
  2894. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Murata-Electronics/SVK3A103AEA01R00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LuYY6s5WgIQLBIcdozXB1Eg%3d%3d">81-SVK3A103AEA01R00</a><br />
  2895. <br />
  2896. <br />
  2897. 要购买完整 卷轴,请订购 1000 的倍数:
  2898. </div></td><td>
  2899. <div class="mfrDiv">
  2900. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Murata-Electronics/SVK3A103AEA01R00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LuYY6s5WgIQLBIcdozXB1Eg%3d%3d">SVK3A103AEA01R00</a><br />
  2901. <br />
  2902. <div style="width: 100%; text-align: center;">
  2903. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2904. </div>
  2905. <div style="width: 100%; text-align: center;">
  2906. </div>
  2907. </div>
  2908. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../murataelectronics">Murata Electronics</a>
  2909. </td><td>板机接口移动感应器和位置传感器 SV3K Rotary Position Sensor - Reel
  2910. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2911. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../murata-rotary-position-sensors">了解更多</a>
  2912. </div>
  2913. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2914. </div>
  2915. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Murata Electronics&quot;,&quot;81-SVK3A103AEA01R00 | SVK3A103AEA01R00&quot;]);" href="http://www.murata.com/en-global/products/productdetail?partno=SVK3A103AEA01R00" target="_blank">数据表</a>
  2916. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">948<br/>有库存</span>
  2917. <table>
  2918. <tr align="center">
  2919. <td style="padding-top: 5px">
  2920. </td>
  2921. </tr>
  2922. <tr align="center">
  2923. <td style="padding-top: 5px; padding-bottom: 5px">
  2924. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAlternativePackaging" title="备用包装 | 81-SVK3A103AEA01R00" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YTiUMo8H2TFu0sQlOqbjSUZSQzVW3mx4akK%2fUEc4QdN647PLpHwcnmzJH%2fjRFF23QATnXBh9HOrYVfjzf02wXWNgMxuQDRe0SbfbmJYP1fY2umbVPRobr21xkfvA0V0FN8N9gAE40Afr027q8X2EFWK&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2925. </td>
  2926. </tr>
  2927. </table></td><td>
  2928. <table class="PriceBreaks" cellspacing="0" border="0">
  2929. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2930. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2931. </td>
  2932. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2933. </td>
  2934. </tr>
  2935. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2936. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2937. 剪切带
  2938. </td>
  2939. </tr>
  2940. <tr>
  2941. <td class="PriceBreakQuantity">
  2942. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  2943. </td>
  2944. <td class="PriceBreakPrice">
  2945. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥17.0937</span>
  2946. </td>
  2947. </tr>
  2948. <tr>
  2949. <td class="PriceBreakQuantity">
  2950. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  2951. </td>
  2952. <td class="PriceBreakPrice">
  2953. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.0152</span>
  2954. </td>
  2955. </tr>
  2956. <tr>
  2957. <td class="PriceBreakQuantity">
  2958. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  2959. </td>
  2960. <td class="PriceBreakPrice">
  2961. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.3187</span>
  2962. </td>
  2963. </tr>
  2964. <tr>
  2965. <td class="PriceBreakQuantity">
  2966. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,500);">500:</a>
  2967. </td>
  2968. <td class="PriceBreakPrice">
  2969. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6401</span>
  2970. </td>
  2971. </tr>
  2972. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2973. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2974. 卷轴
  2975. </td>
  2976. </tr>
  2977. <tr>
  2978. <td class="PriceBreakQuantity">
  2979. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(22,1000);">1,000:</a>
  2980. </td>
  2981. <td class="PriceBreakPrice">
  2982. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥6.1893</span>
  2983. </td>
  2984. </tr>
  2985. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  2986. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2987. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(22,2000);">2,000:</a>
  2988. </td>
  2989. <td class="PriceBreakPrice">
  2990. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Murata-Electronics/SVK3A103AEA01R00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LuYY6s5WgIQLBIcdozXB1Eg%3d%3d">查看</a>
  2991. </td>
  2992. </tr>
  2993. <tr>
  2994. <td><br /></td>
  2995. </tr>
  2996. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2997. <td colspan="2" style="text-align: center;">
  2998. </td>
  2999. </tr>
  3000. </table>
  3001. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy&#39;)">
  3002. <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 />
  3003. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 22);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy" title="购买 SVK3A103AEA01R00" class="buy-button" /><br />
  3004. <table cellspacing="0" border="0" style="width: 100%;">
  3005. <tr>
  3006. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3007. 最低:
  3008. </td>
  3009. <td style="padding-left: 2px; text-align: left;">
  3010. 1
  3011. </td>
  3012. </tr>
  3013. <tr>
  3014. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3015. 多个:
  3016. </td>
  3017. <td style="padding-left: 2px; text-align: left;">
  3018. 1
  3019. </td>
  3020. </tr>
  3021. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_trReel">
  3022. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3023. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(22,1000);">卷轴</a>:
  3024. </td>
  3025. <td style="padding-left: 2px; text-align: left;">
  3026. <em class="SearchResultsReel">
  3027. 1,000
  3028. </em>
  3029. </td>
  3030. </tr>
  3031. </table>
  3032. </div>
  3033. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  3034. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3035. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=l3aNjoEHcFD1tt3i%252bEG74w%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=l3aNjoEHcFD1tt3i%252bEG74w%3d%3d" target="_blank">详细信息</a>
  3036. </div>
  3037. </td>
  3038. </tr><tr class="SearchResultsRowOdd" data-partnumber="81-SVK3A103AEA01B00" data-index="25">
  3039. <td class="td-select" align="center">
  3040. <div style="padding: 5px 5px 0 5px;">
  3041. <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>
  3042. </div>
  3043. </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>
  3044. <div style="text-align:left;">
  3045. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Murata-Electronics/SVK3A103AEA01B00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LTnmbpE16y67oAnySi57hMQ%3d%3d">81-SVK3A103AEA01B00</a><br />
  3046. <br />
  3047. <br />
  3048. </div></td><td>
  3049. <div class="mfrDiv">
  3050. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Murata-Electronics/SVK3A103AEA01B00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LTnmbpE16y67oAnySi57hMQ%3d%3d">SVK3A103AEA01B00</a><br />
  3051. <br />
  3052. <div style="width: 100%; text-align: center;">
  3053. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3054. </div>
  3055. <div style="width: 100%; text-align: center;">
  3056. </div>
  3057. </div>
  3058. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../murataelectronics">Murata Electronics</a>
  3059. </td><td>板机接口移动感应器和位置传感器 SV3K Rotary Position Sensor - Bulk
  3060. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3061. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../murata-rotary-position-sensors">了解更多</a>
  3062. </div>
  3063. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3064. </div>
  3065. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Murata Electronics&quot;,&quot;81-SVK3A103AEA01B00 | SVK3A103AEA01B00&quot;]);" href="http://www.murata.com/en-global/products/productdetail?partno=SVK3A103AEA01R00" target="_blank">数据表</a>
  3066. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">483<br/>有库存</span>
  3067. <table>
  3068. <tr align="center">
  3069. <td style="padding-top: 5px">
  3070. </td>
  3071. </tr>
  3072. <tr align="center">
  3073. <td style="padding-top: 5px; padding-bottom: 5px">
  3074. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAlternativePackaging" title="备用包装 | 81-SVK3A103AEA01B00" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YTiUMo8H2TFu0sQlOqbjSUZmGvuGYjDxsiOGu%2fI9nzufN17kAouhAhlH5kO9B2ZfAA9Xs9L8ErQxLc0F3l%252bQd7mmEq3b%2f6iqQBKRKEvc52IkAX4mbtSdeaKaTSv5DNQpBpzqYAIeNuNMI8aZQndPRBc&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3075. </td>
  3076. </tr>
  3077. </table></td><td>
  3078. <table class="PriceBreaks" cellspacing="0" border="0">
  3079. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3080. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3081. </td>
  3082. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3083. </td>
  3084. </tr>
  3085. <tr>
  3086. <td class="PriceBreakQuantity">
  3087. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  3088. </td>
  3089. <td class="PriceBreakPrice">
  3090. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥11.934</span>
  3091. </td>
  3092. </tr>
  3093. <tr>
  3094. <td class="PriceBreakQuantity">
  3095. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  3096. </td>
  3097. <td class="PriceBreakPrice">
  3098. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥9.009</span>
  3099. </td>
  3100. </tr>
  3101. <tr>
  3102. <td class="PriceBreakQuantity">
  3103. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
  3104. </td>
  3105. <td class="PriceBreakPrice">
  3106. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥7.3242</span>
  3107. </td>
  3108. </tr>
  3109. <tr>
  3110. <td class="PriceBreakQuantity">
  3111. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,500);">500:</a>
  3112. </td>
  3113. <td class="PriceBreakPrice">
  3114. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥6.1893</span>
  3115. </td>
  3116. </tr>
  3117. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3118. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3119. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,1000);">1,000:</a>
  3120. </td>
  3121. <td class="PriceBreakPrice">
  3122. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Murata-Electronics/SVK3A103AEA01B00/?qs=sGAEpiMZZMs0JOhy9PM0Uc%2f5IL3NmJ5LTnmbpE16y67oAnySi57hMQ%3d%3d">查看</a>
  3123. </td>
  3124. </tr>
  3125. <tr>
  3126. <td><br /></td>
  3127. </tr>
  3128. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3129. <td colspan="2" style="text-align: center;">
  3130. </td>
  3131. </tr>
  3132. </table>
  3133. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy&#39;)">
  3134. <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 />
  3135. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 23);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy" title="购买 SVK3A103AEA01B00" class="buy-button" /><br />
  3136. <table cellspacing="0" border="0" style="width: 100%;">
  3137. <tr>
  3138. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3139. 最低:
  3140. </td>
  3141. <td style="padding-left: 2px; text-align: left;">
  3142. 1
  3143. </td>
  3144. </tr>
  3145. <tr>
  3146. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3147. 多个:
  3148. </td>
  3149. <td style="padding-left: 2px; text-align: left;">
  3150. 1
  3151. </td>
  3152. </tr>
  3153. </table>
  3154. </div>
  3155. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  3156. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3157. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=l3aNjoEHcFBnGBulGNoJeA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=l3aNjoEHcFBnGBulGNoJeA%3d%3d" target="_blank">详细信息</a>
  3158. </div>
  3159. </td>
  3160. </tr><tr class="SearchResultsRowEven" data-partnumber="912-KXTJ2-1009-PR" data-index="26">
  3161. <td class="td-select" align="center">
  3162. <div style="padding: 5px 5px 0 5px;">
  3163. <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>
  3164. </div>
  3165. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/KXTJ2_SPL.JPG</div></a></td><td>
  3166. <div style="text-align:left;">
  3167. <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 />
  3168. <br />
  3169. <br />
  3170. 要购买完整 卷轴,请订购 500 的倍数:
  3171. </div></td><td>
  3172. <div class="mfrDiv">
  3173. <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 />
  3174. <br />
  3175. <div style="width: 100%; text-align: center;">
  3176. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3177. </div>
  3178. <div style="width: 100%; text-align: center;">
  3179. </div>
  3180. </div>
  3181. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  3182. </td><td>加速计 2x2x0.9mm Low Power Accel
  3183. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3184. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxtj2">了解更多</a>
  3185. </div>
  3186. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3187. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3188. </div>
  3189. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXTJ2-1009-PR | KXTJ2-1009-PR&quot;]);" href="http://www.mouser.com/ds/2/217/KXTJ2%20Sell%20Sheet-311079.pdf" target="_blank">数据表</a>
  3190. </td><td>
  3191. <table>
  3192. <tr align="center">
  3193. <td style="padding-top: 5px">
  3194. </td>
  3195. </tr>
  3196. <tr align="center">
  3197. <td style="padding-top: 5px; padding-bottom: 5px">
  3198. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3199. </td>
  3200. </tr>
  3201. </table></td><td>
  3202. </td><td class="SearchResultsBuyColumn">
  3203. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_pnlRestricted">
  3204. <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>
  3205. </div>
  3206. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  3207. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3208. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzKa1cHLjT20Q%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhzKa1cHLjT20Q%3d%3d" target="_blank">详细信息</a>
  3209. </div>
  3210. </td>
  3211. </tr><tr class="SearchResultsRowOdd" data-partnumber="912-KXCJ9-1008-PR" data-index="27">
  3212. <td class="td-select" align="center">
  3213. <div style="padding: 5px 5px 0 5px;">
  3214. <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>
  3215. </div>
  3216. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/kionix/images/LGA-10_DSL.jpg</div></a></td><td>
  3217. <div style="text-align:left;">
  3218. <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 />
  3219. <br />
  3220. <br />
  3221. 要购买完整 卷轴,请订购 500 的倍数:
  3222. </div></td><td>
  3223. <div class="mfrDiv">
  3224. <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 />
  3225. <br />
  3226. <div style="width: 100%; text-align: center;">
  3227. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3228. </div>
  3229. <div style="width: 100%; text-align: center;">
  3230. </div>
  3231. </div>
  3232. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../kionix">Kionix</a>
  3233. </td><td>加速计 3x3x0.9mm Low Power Accel
  3234. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3235. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../kionix-kxcj9">了解更多</a>
  3236. </div>
  3237. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3238. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3239. </div>
  3240. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Kionix&quot;,&quot;912-KXCJ9-1008-PR | KXCJ9-1008-PR&quot;]);" href="http://www.mouser.com/ds/2/348/KXCJ9-1008%20Specifications%20Rev%205-844606.pdf" target="_blank">数据表</a>
  3241. </td><td>
  3242. <table>
  3243. <tr align="center">
  3244. <td style="padding-top: 5px">
  3245. </td>
  3246. </tr>
  3247. <tr align="center">
  3248. <td style="padding-top: 5px; padding-bottom: 5px">
  3249. <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&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3250. </td>
  3251. </tr>
  3252. </table></td><td>
  3253. </td><td class="SearchResultsBuyColumn">
  3254. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_pnlRestricted">
  3255. <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>
  3256. </div>
  3257. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  3258. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3259. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhxTsOZpAWXoCA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bJHKFzVgYhxTsOZpAWXoCA%3d%3d" target="_blank">详细信息</a>
  3260. </div>
  3261. </td>
  3262. </tr>
  3263. </table>
  3264. </div>
  3265. </td>
  3266. </tr>
  3267. <tr>
  3268. <td class="tdSearchResultsPagingBottom">
  3269. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  3270. <tr>
  3271. <td>
  3272. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  3273. </td>
  3274. <td>
  3275. <input type="submit" name="ctl00$ContentMain$btn4" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) &amp;&amp; 0 == 0) { alert(&#39;请选择您希望对比的产品。&#39;); return false; };" id="ctl00_ContentMain_btn4" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
  3276. </td>
  3277. <td>
  3278. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  3279. </td>
  3280. <td style="padding-left: 40px;">
  3281. <div class="floatrightpager">
  3282. <span class="bold">
  3283. 页面:
  3284. </span>
  3285. <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>
  3286. </div>
  3287. </td>
  3288. </tr>
  3289. </table>
  3290. </td>
  3291. </tr>
  3292. <tr>
  3293. <td>
  3294. <!--- Search Tips --->
  3295. </td>
  3296. </tr>
  3297. <tr>
  3298. <td>
  3299. <!-- SOP Section 2 -->
  3300. </td>
  3301. </tr>
  3302. </table>
  3303. </div>
  3304. </div><!-- #liProducts-->
  3305. <!-- Datasheets tab -->
  3306. <!-- #liDatasheets-->
  3307. <!-- Images tab -->
  3308. <!-- #liImages-->
  3309. <!-- Newest Products tab -->
  3310. <!-- #liProducts-->
  3311. </div>
  3312. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  3313. <div>
  3314. <span class="popular-searches-label">热门搜索:</span>
  3315. <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>
  3316. </div>
  3317. </div>
  3318. <div style="visibility: hidden;">
  3319. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  3320. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  3321. <span id="SearchResultCount">3160</span>
  3322. <div id="disclaimer">
  3323. 图像仅供参考<br/>请参阅产品规格</div>
  3324. </div>
  3325. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Sensors/Motion-Position-Sensors" />
  3326. <script type="text/javascript" src='../../../../javascript/ProductImage.js'></script>
  3327. <script type="text/javascript" src='../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  3328. <script type="text/javascript" src='../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  3329. <!--[if gte IE 9]><!-->
  3330. <script type="text/javascript" src='../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  3331. <!--<![endif]-->
  3332. <!--[if lt IE 9]>
  3333. <script type="text/javascript" src='../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  3334. <![endif]-->
  3335. <script type="text/javascript" src='../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  3336. <script type="text/javascript">
  3337. var subdomain = 'cn2';
  3338. </script>
  3339. </div>
  3340. <div class="aspNetHidden">
  3341. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  3342. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  3343. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  3344. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  3345. </div>
  3346. <script type="text/javascript">
  3347. //<![CDATA[
  3348. var mfrIDsArray = new Array;
  3349. //]]>
  3350. </script>
  3351. <script src='../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  3352. <script type="text/javascript">
  3353. //<![CDATA[
  3354. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  3355. </script>
  3356. <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>
  3357. <script type="text/javascript">
  3358. //<![CDATA[
  3359. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  3360. //]]>
  3361. </script>
  3362. <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>
  3363. <script type="text/javascript">
  3364. //<![CDATA[
  3365. theForm.oldSubmit = theForm.submit;
  3366. theForm.submit = WebForm_SaveScrollPositionSubmit;
  3367. theForm.oldOnSubmit = theForm.onsubmit;
  3368. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  3369. //]]>
  3370. </script>
  3371. </form>
  3372. <div id="content-container2" class="hidden">
  3373. <div id="content-fixed-width2" class="content-fixed-width">
  3374. </div>
  3375. </div>
  3376. <div id="wideFooter" class="wideFooter">
  3377. <div id="footer" class="container">
  3378. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB09|20160304.2" />
  3379. <div id="ft_table1">
  3380. <div class="row">
  3381. <div class="col-xs-12">
  3382. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  3383. <div class="floatleft padding5right">
  3384. <strong class="h3">
  3385. 快速电子邮件注册</strong>&nbsp;&nbsp;
  3386. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  3387. </div>
  3388. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  3389. 提交
  3390. </a>
  3391. </div>
  3392. <div id="ft_icons" class="ft_icons">
  3393. <div id="ft_social">
  3394. <a id="ctl00_Footer1_lnkWechat" title="微信" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Wechat&#39;,&#39;http://www.mouser.cn/wechat&#39;);" href="http://www.mouser.cn/wechat"><div id="ctl00_Footer1_imgWechat" class="ico-social wechat"></div></a>
  3395. <a id="ctl00_Footer1_lnkYouKu" title="优酷" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;YouKu&#39;,&#39;http://i.youku.com/mouserelectronics&#39;);" href="http://i.youku.com/mouserelectronics" target="_blank"><div id="ctl00_Footer1_imgYouKu" class="ico-social youku"></div></a>
  3396. <a id="ctl00_Footer1_lnkWeibo" title="新浪微博" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Sina Weibo&#39;,&#39;http://www.weibo.com/u/2498646920&#39;);" href="http://www.weibo.com/u/2498646920" target="_blank"><div id="ctl00_Footer1_imgWeigo" class="ico-social weibo"></div></a>
  3397. <a id="ctl00_Footer1_lnkFB" title="facebook" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;facebook&#39;,&#39;http://www.facebook.com/mouserelectronics&#39;);" href="http://www.facebook.com/mouserelectronics" target="_blank">
  3398. <div class="ico-social fb"></div>
  3399. </a>
  3400. <a id="ctl00_Footer1_lnkTw" title="Twitter" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Twitter&#39;,&#39;http://www.twitter.com/mouserelec&#39;);" href="http://www.twitter.com/mouserelec" target="_blank">
  3401. <div class="ico-social tw"></div>
  3402. </a>
  3403. <a id="ctl00_Footer1_lnkRSS" title="RSS" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;RSS&#39;,&#39;http://www.mouser.cn/rssfeeds&#39;);" href="http://www.mouser.cn/rssfeeds" target="_blank">
  3404. <div class="ico-social rss"></div>
  3405. </a>
  3406. <a id="ctl00_Footer1_lnkYT" title="YouTube" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;YouTube&#39;,&#39;http://www.youtube.com/mouserelec&#39;);" href="http://www.youtube.com/mouserelec" target="_blank">
  3407. <div class="ico-social yt"></div>
  3408. </a>
  3409. <a id="ctl00_Footer1_lnkGp" title="Google+" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Google+&#39;,&#39;http://google.com/+MouserElec&#39;);" href="http://google.com/+MouserElec" target="_blank">
  3410. <div class="ico-social gp"></div>
  3411. </a>
  3412. <a id="ctl00_Footer1_lnkLn" title="LinkedIn" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;LinkedIn&#39;,&#39;http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT&#39;);" href="http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT" target="_blank">
  3413. <div class="ico-social ln"></div>
  3414. </a>
  3415. <a id="ctl00_Footer1_lnkSb" title="订阅中心" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Subscription Center&#39;,&#39;http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx&#39;);" href="http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx">
  3416. <div class="ico-social sb"></div>
  3417. </a>
  3418. <a id="ctl00_Footer1_lnkBlog" title="Mouser博客" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Mouser Blog&#39;,&#39;http://www.mouser.cn/blog&#39;);" href="http://www.mouser.cn/blog">
  3419. <div class="ico-social blog"></div>
  3420. </a>
  3421. </div>
  3422. </div>
  3423. </div>
  3424. </div>
  3425. </div>
  3426. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  3427. <div class="ft_wrapper">
  3428. <div id="ft_links" class="row">
  3429. <div class="col-xs-3 paddingBtm10 hidden-xs">
  3430. <strong class="paddingTopBtm10 inline-block">
  3431. 公司</strong>
  3432. <ul>
  3433. <li>
  3434. <a id="ctl00_Footer1_lnk26" href="../../../../aboutus/">关于我们</a></li>
  3435. <li>
  3436. <a id="ctl00_Footer1_lnk28" href="../../../../educationalsales/">教育销售</a></li>
  3437. <li>
  3438. <a id="ctl00_Footer1_lnk31" href="../../../../pressroom/">新闻中心</a></li>
  3439. <li>
  3440. <a id="ctl00_Footer1_lnk32" href="../../../../careers/">Mouser 工作机会</a></li>
  3441. <li>
  3442. <a id="ctl00_Footer1_lnk29" href="../../../../quality/">品质保证</a></li>
  3443. <li>
  3444. <a id="ctl00_Footer1_lnk30" href="../../../../environmental/">环境保护</a></li>
  3445. </ul>
  3446. </div>
  3447. <div class="col-xs-3 hidden-xs">
  3448. <strong class="paddingTopBtm10 inline-block">
  3449. 快速链接</strong>
  3450. <ul>
  3451. <li><a id="A7" href="/blog">
  3452. Mouser博客</a></li>
  3453. <li>
  3454. <a id="ctl00_Footer1_hlnk1" href="../../../../new/">最新产品</a></li>
  3455. <li>
  3456. <a id="ctl00_Footer1_hlnk2" href="../../../../new/products/">新产品</a></li>
  3457. <li>
  3458. <a id="ctl00_Footer1_hlnk3" href="../../../../applications/">新技术</a></li>
  3459. </ul>
  3460. </div>
  3461. <div class="col-xs-12 col-sm-3">
  3462. <strong class="paddingTopBtm10 inline-block">
  3463. 支持</strong>
  3464. <ul>
  3465. <li><a id="A3" href="/feedback.aspx">
  3466. 反馈</a></li>
  3467. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  3468. 帮助</a></li>
  3469. <li>
  3470. <a id="ctl00_Footer1_lnk27" href="../../../../contact/">联系我们</a></li>
  3471. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  3472. 浏览器支持</a></li>
  3473. <li><a id="A6" href="/cookie-policy/">
  3474. Cookie政策</a></li>
  3475. </ul>
  3476. </div>
  3477. <div class="col-xs-12 col-sm-3">
  3478. <strong class="paddingTopBtm10 inline-block">
  3479. 昴氏(上海)电子贸易有限公司</strong>
  3480. <ul>
  3481. <li>
  3482. <h4>
  3483. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  3484. </li>
  3485. </ul>
  3486. </div>
  3487. </div>
  3488. </div>
  3489. </div>
  3490. <div class="row">
  3491. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  3492. <div id="ft_copy">
  3493. <span class="ft_terms">
  3494. <a id="A1" href="/privacypolicy/">
  3495. 隐私政策</a>
  3496. &nbsp;&nbsp;|&nbsp;&nbsp;
  3497. <a id="href3" href="/saleterms/">
  3498. 销售条款</a>
  3499. <br />
  3500. </span>
  3501. <span class="ft_copyright">
  3502. 版权所有©2016 Mouser Electronics, Inc
  3503. |
  3504. 沪ICP备15042575号-1
  3505. <br />
  3506. </span>
  3507. <span class="ft_trade">
  3508. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  3509. </span>
  3510. <span class="ft_hq">
  3511. Corporate headquarters and logistics center in Mansfield, Texas USA.
  3512. </span>
  3513. <br />
  3514. <span class="ft_ClassicMobile">
  3515. <strong>
  3516. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../m_Home.aspx">通过移动设备查看</a></strong>
  3517. </span>
  3518. </div>
  3519. </div>
  3520. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  3521. <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>
  3522. <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>
  3523. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  3524. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  3525. </a>
  3526. <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(&#39;Copying Prohibited by Law&#39;); return false;" src="//seal.qualys.com/sealserv/seal.gif?i=c8b29c82-965e-403b-956c-c855241927bb" alt="Qualys Secure Seal" style="border-style:None;" /></a>
  3527. <a id="ctl00_Footer1_Hyperlink1" class="ft_cert_padding ft_sgs" href="http://www.sgs.gov.cn/lz/licenseLink.do?method=licenceView&amp;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;" />&nbsp;&nbsp;&nbsp;
  3528. </a>
  3529. </div>
  3530. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  3531. <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>
  3532. <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>
  3533. <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>
  3534. <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>
  3535. </div>
  3536. </div>
  3537. <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>
  3538. <script type="text/javascript">
  3539. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  3540. </script>
  3541. </div>
  3542. </div>
  3543. <script src="../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  3544. <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>
  3545. </body>
  3546. </html>