74.html 254 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581
  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_17d58f55-47d3-4be8-9a73-ea9243ce7212-37156-309614';</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","1H47r87fKkNeqOmSreee/XemU26OlPV8xB57sfnNIX8=",2]);_gaq.push(["_setCustomVar",31,"Cart","d944813d-167c-48d2-a467-2902e18c0b16",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA126AA195",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': '630-QFBR-S01EK001Z',
  65. 'name': 'Fiber Optic Development Tools OPI development Kit',
  66. 'category': 'Fiber Optic Development Tools',
  67. 'brand': 'Avago Technologies',
  68. 'variant': 'QFBR-S01EK001Z',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '653-B5TE001SG',
  74. 'name': 'Optical Sensor Development Tools HVC-P1 Demo Kit, Module \u0026 Eval Board',
  75. 'category': 'Optical Sensor Development Tools',
  76. 'brand': 'Omron Electronics',
  77. 'variant': 'B5T-E-001-S(G)',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '841-LCD8000-43T',
  83. 'name': 'Display Development Tools 4.3 LCD Panel to Support i.MX 6UltraLite Eval Kit',
  84. 'category': 'Display Development Tools',
  85. 'brand': 'NXP / Freescale',
  86. 'variant': 'LCD8000-43T',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '630-AFBR0549Z',
  92. 'name': 'Fiber Optic Development Tools HFBR-1414PTZ AFBR-2418TZ EV. KIT',
  93. 'category': 'Fiber Optic Development Tools',
  94. 'brand': 'Avago Technologies',
  95. 'variant': 'AFBR-0549Z',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '595-LPDLCR2010EVMPCB',
  101. 'name': 'Display Development Tools',
  102. 'category': 'Display Development Tools',
  103. 'brand': 'Texas Instruments',
  104. 'variant': 'DLPDLCR2010EVM-PCB',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '634-115XOPT-EXP-EVB',
  110. 'name': 'Optical Sensor Development Tools Si1153 Expansion Board',
  111. 'category': 'Optical Sensor Development Tools',
  112. 'brand': 'Silicon Labs',
  113. 'variant': '115XOPT-EXP-EVB',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '511-STEVAL-ILL076V1',
  119. 'name': 'LED Lighting Development Tools 40W 220V input flyback converter based on HVLED001 quasi resonantA Flyback controller (SLIM form factor)',
  120. 'category': 'LED Lighting Development Tools',
  121. 'brand': 'STMicroelectronics',
  122. 'variant': 'STEVAL-ILL076V1',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '634-SI1147-M01-EVB',
  128. 'name': 'Optical Sensor Development Tools Sensor toolstick Eval Board',
  129. 'category': 'Optical Sensor Development Tools',
  130. 'brand': 'Silicon Labs',
  131. 'variant': 'Si1147-M01-EVB',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '634-SI1143-M01-EVB',
  137. 'name': 'Optical Sensor Development Tools Sensor toolstick Eval Board',
  138. 'category': 'Optical Sensor Development Tools',
  139. 'brand': 'Silicon Labs',
  140. 'variant': 'Si1143-M01-EVB',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '630-AFBR0550Z',
  146. 'name': 'Fiber Optic Development Tools HFBR-1414PTZ AFBR-2419TZ EV.KIT',
  147. 'category': 'Fiber Optic Development Tools',
  148. 'brand': 'Avago Technologies',
  149. 'variant': 'AFBR-0550Z',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '511-STEVAL-ILL067V1',
  155. 'name': 'LED Lighting Development Tools Six-channel ALED7707-based LED driver with embedded boost converter for automotive interior lighting and TFT backlightin',
  156. 'category': 'LED Lighting Development Tools',
  157. 'brand': 'STMicroelectronics',
  158. 'variant': 'STEVAL-ILL067V1',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '511-STEVAL-ILL072V1',
  164. 'name': 'LED Lighting Development Tools Single channel, 1 A automotive LED driver with boost controller for interior/exterior lights',
  165. 'category': 'LED Lighting Development Tools',
  166. 'brand': 'STMicroelectronics',
  167. 'variant': 'STEVAL-ILL072V1',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '511-STEVAL-ILL075V1',
  173. 'name': 'LED Lighting Development Tools STLUX385A evaluation board',
  174. 'category': 'LED Lighting Development Tools',
  175. 'brand': 'STMicroelectronics',
  176. 'variant': 'STEVAL-ILL075V1',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '511-STEVAL-ILL084V1',
  182. 'name': 'LED Lighting Development Tools 0.5 A, floating boost LED driver board based on the LED6000',
  183. 'category': 'LED Lighting Development Tools',
  184. 'brand': 'STMicroelectronics',
  185. 'variant': 'STEVAL-ILL084V1',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '584-EVAL-CN0370-PMDZ',
  191. 'name': 'LED Lighting Development Tools CN0368 Evaluation Board',
  192. 'category': 'LED Lighting Development Tools',
  193. 'brand': 'Analog Devices',
  194. 'variant': 'EVAL-CN0370-PMDZ',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '511-STEVAL-ILL073V1',
  200. 'name': 'LED Lighting Development Tools RGB LED driver for automotive lighting based on ALED1642GW and STM8A',
  201. 'category': 'LED Lighting Development Tools',
  202. 'brand': 'STMicroelectronics',
  203. 'variant': 'STEVAL-ILL073V1',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '511-STEVAL-ILL077V1',
  209. 'name': 'LED Lighting Development Tools 60 W, digital 3-LED channel evaluation board with STNRG388A-controlled current regulation and dimming',
  210. 'category': 'LED Lighting Development Tools',
  211. 'brand': 'STMicroelectronics',
  212. 'variant': 'STEVAL-ILL077V1',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '595-DLPLCR4500EVM',
  218. 'name': 'Display Development Tools DLP Lightcrafter 4500',
  219. 'category': 'Display Development Tools',
  220. 'brand': 'Texas Instruments',
  221. 'variant': 'DLPLCR4500EVM',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '595-DLPLCR6500EVM',
  227. 'name': 'Display Development Tools DLP LightCrafter6500 Evaluation Module',
  228. 'category': 'Display Development Tools',
  229. 'brand': 'Texas Instruments',
  230. 'variant': 'DLPLCR6500EVM',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '595-DLPNIRNANOEVM',
  236. 'name': 'Display Development Tools DLP LightCrafter',
  237. 'category': 'Display Development Tools',
  238. 'brand': 'Texas Instruments',
  239. 'variant': 'DLPNIRNANOEVM',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '595-DLPLCR9000EVM',
  245. 'name': 'Display Development Tools DLP LightCrafter9000 Evaluation Module',
  246. 'category': 'Display Development Tools',
  247. 'brand': 'Texas Instruments',
  248. 'variant': 'DLPLCR9000EVM',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '508-FDB-1043',
  254. 'name': 'Fiber Optic Development Tools Breakout Eval Brd C.wr/CXP 1-12.5Gbps',
  255. 'category': 'Fiber Optic Development Tools',
  256. 'brand': 'Finisar',
  257. 'variant': 'FDB-1043',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '971-SK-70DT',
  263. 'name': 'Display Development Tools 7\" TFT LCD Touch starter kit',
  264. 'category': 'Display Development Tools',
  265. 'brand': '4D Systems',
  266. 'variant': 'SK-70DT',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '595-BBEXPDTC70',
  272. 'name': 'Display Development Tools 7\" LCD 1024X600 CAPACITIVE TOUCH',
  273. 'category': 'Display Development Tools',
  274. 'brand': 'SVTronics',
  275. 'variant': 'BBEXPDTC70',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '971-SK-70DT-AR',
  281. 'name': 'Display Development Tools uLCD---70DT---AR w/ uSD-2GB and uUSB-PA5',
  282. 'category': 'Display Development Tools',
  283. 'brand': '4D Systems',
  284. 'variant': 'SK-70DT-AR',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','1H47r87fKkNeqOmSreee/XemU26OlPV8xB57sfnNIX8=');
  290. ga('set','dimension31','d944813d-167c-48d2-a467-2902e18c0b16');
  291. ga('set','dimension13','163AA125AA126AA195');
  292. ga('set','metric2',1361);
  293. ga('set','dimension5','Optoelectronic Development Tools');
  294. ga('set','dimension48','cy1yi');
  295. ga('set','dimension3','Refine');
  296. ga('set','dimension55','Products');
  297. ga('send', 'pageview');
  298. </script>
  299. <link href="http://www.mouser.cn/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi" rel="canonical" content="http://www.mouser.cn/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi" /><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/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" /><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#yxezcaswaauztuaqaww{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="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" 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='21744234';
  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='21744234';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><a href="xxrrtbuu.html" style="display: none;" rel="file" id="yxezcaswaauztuaqaww">ubqtbausacydzezvysubqtb</a>
  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=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLi6xMa6urJNMFeCH57xYnynDWyR707P1vB%252bmg9DGjEnQl0BFTa%252bZBkw16J6bI%252bNIZbRa4UhUwPPbXuM84cecPodu%2f5oQt6VhfKQWvPFZzuq4%3d">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLi6xMa6urJNMFeCH57xYnynDWyR707P1vB%252bmg9DGjEnQl0BFTa%252bZBkw16J6bI%252bNIZbRa4UhUwPPbXuM84cecPodu%2f5oQt6VhfKQWvPFZzuq4%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 = 'd944813d-167c-48d2-a467-2902e18c0b16';
  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=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLi6xMa6urJNMFeCH57xYnynDWyR707P1vB%252bmg9DGjEnQl0BFTa%252bZBkw16J6bI%252bNIZbRa4UhUwPPbXuM84cecPodu%2f5oQt6VhfKQWvPFZzuq4%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" href="../../../../_/N-5gcb/" style="font-size: 9pt; font-weight: bold;">半导体</a>
  829. <strong>></strong>
  830. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-6hpeq/" style="font-size: 9pt; font-weight: bold;">工程技术开发工具</a>
  831. <strong>></strong>
  832. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">光电开发工具</a>
  833. <hr />
  834. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  835. <div class="categorySearchLimits">
  836. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  837. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<span title="半导体"><input id="ctl00_ContentMain_uc1_chkbx254459|Semiconductors" type="checkbox" name="ctl00$ContentMain$uc1$chkbx254459|Semiconductors" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx10903778|Engineering Development Tools&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx21744234|Optoelectronic Development Tools&#39;).checked = false;" /></span>&nbsp;<b>半导体</b>&nbsp;&#62;&nbsp;<span title="工程技术开发工具"><input id="ctl00_ContentMain_uc1_chkbx10903778|Engineering Development Tools" type="checkbox" name="ctl00$ContentMain$uc1$chkbx10903778|Engineering Development Tools" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx21744234|Optoelectronic Development Tools&#39;).checked = false;" /></span>&nbsp;<b>工程技术开发工具</b>&nbsp;&#62;&nbsp;<span title="光电开发工具"><input id="ctl00_ContentMain_uc1_chkbx21744234|Optoelectronic Development Tools" type="checkbox" name="ctl00$ContentMain$uc1$chkbx21744234|Optoelectronic Development Tools" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx10903778|Engineering Development Tools&#39;).checked = true;" /></span>&nbsp;<b>光电开发工具</b>
  838. </div>
  839. </div>
  840. </div>
  841. <table border="0" width="100%">
  842. <tr>
  843. <td>
  844. <div id="ctl00_ContentMain_pnl3">
  845. <div id="category-top" class="category-content">
  846. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1>光电开发工具</h1></a>
  847. <!--Marketing Content-->
  848. <div id="ctl00_ContentMain_refinemfglogo">
  849. </div>
  850. </div><!--.category-content-->
  851. </div>
  852. </td>
  853. </tr>
  854. <tr>
  855. <td>
  856. </td>
  857. </tr>
  858. <tr>
  859. <td>
  860. <div id="refine-page2">
  861. </div>
  862. </td>
  863. </tr>
  864. </table>
  865. <div id="ctl00_ContentMain_divTabs" class="row">
  866. <div class="col-xs-12">
  867. <div id="tabsNavigation" >
  868. <ul>
  869. <li id="ctl00_ContentMain_liProductsTab" class="active">
  870. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(1,361)</span></a>
  871. </li>
  872. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  873. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Optoelectronic Development Tools&#39;);" href="../../Datasheets/_/N-cy1yi">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(872)</span></a>
  874. </li>
  875. <li id="ctl00_ContentMain_liImagesTab" class="">
  876. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Optoelectronic Development Tools&#39;);" href="../../Images/_/N-cy1yi">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(773)</span></a>
  877. </li>
  878. <li id="ctl00_ContentMain_liNewestTab" class="">
  879. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Optoelectronic Development Tools&#39;);" href="../../Newest-Products/_/N-cy1yi">最新产品</a>
  880. </li>
  881. </ul>
  882. </div>
  883. </div>
  884. </div>
  885. <div id="tabDivs" class="tab-divs">
  886. <!-- Hide the View links if javascript is disabled -->
  887. <noscript>
  888. <style type="text/css">.list-visual{display:none;}</style>
  889. </noscript>
  890. <div id="CategoryControlTop">
  891. <table class="table-categories">
  892. <tr><td valign="top">
  893. <input type="hidden" name="ctl00$ContentMain$uc6$listCategories$ctl01$hdnCatID" id="ctl00_ContentMain_uc6_listCategories_ctl01_hdnCatID" value="21744234" />
  894. <div class="topCatTitle">
  895. <div class="col-xs-8 no-left-pad">
  896. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkCategory" class="SearchResultsTopLevelCategory" href="./"><h2>光电开发工具类型</h2></a>
  897. </div>
  898. <div class="text-right">
  899. <div class="list-visual">
  900. <ul>
  901. <li class="right-border active">
  902. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;List&#39;, &#39;Optoelectronic Development Tools&#39;); SwitchListView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkListView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkListView&#39;,&#39;&#39;)">
  903. <i class="fa fa-th-list"></i>&nbsp;列表</a>
  904. </li>
  905. <li>
  906. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;Visual&#39;, &#39;Optoelectronic Development Tools&#39;); SwitchVisualView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkVisualView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkVisualView&#39;,&#39;&#39;)">
  907. <i class="fa fa-th-large"></i>&nbsp;目视</a>
  908. </li>
  909. </ul>
  910. </div>
  911. </div>
  912. </div>
  913. <ul class="sub-cats">
  914. <table id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories" cellspacing="0" style="width:100%;border-collapse:collapse;">
  915. <tr>
  916. <td>
  917. <li class="sub-cat">
  918. <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/21744248.png" alt="Display Development Tools" /></div>
  919. <div class="div-cat-title">
  920. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Display-Development-Tools/_/N-cy1yw/"><h3>显示开发工具</h3></a>
  921. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lblRecordCount">414</span>)</span>
  922. </div>
  923. </li>
  924. </td><td>
  925. <li class="sub-cat">
  926. <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/21744333.png" alt="LED Lighting Development Tools" /></div>
  927. <div class="div-cat-title">
  928. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../LED-Lighting-Development-Tools/_/N-cy219/"><h3>LED 照明开发工具</h3></a>
  929. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lblRecordCount">637</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/21744379.png" alt="Optical Sensor Development Tools" /></div>
  935. <div class="div-cat-title">
  936. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Optical-Sensor-Development-Tools/_/N-cy22j/"><h3>光学传感器开发工具</h3></a>
  937. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lblRecordCount">244</span>)</span>
  938. </div>
  939. </li>
  940. </td>
  941. </tr><tr>
  942. <td>
  943. <li class="sub-cat">
  944. <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/21744296.png" alt="Fiber Optic Development Tools" /></div>
  945. <div class="div-cat-title">
  946. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Fiber-Optic-Development-Tools/_/N-cy208/"><h3>光学纤维开发工具</h3></a>
  947. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lblRecordCount">66</span>)</span>
  948. </div>
  949. </li>
  950. </td><td></td><td></td>
  951. </tr>
  952. </table></ul>
  953. </td></tr></table>
  954. <div id="search-left-col">
  955. </div>
  956. </div>
  957. <script type="text/javascript">
  958. //<![CDATA[
  959. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  960. //]]>
  961. </script>
  962. <div id="ctl00_ContentMain_liProducts">
  963. <div id="refineSearchDiv">
  964. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  965. <div id="refine-keyword-search-2">
  966. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  967. <div id="boxPartSearch2">
  968. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  969. <tr>
  970. <td rowspan="3" style="vertical-align: middle">
  971. <div id="searchPartNumberBox" class="search-box" >
  972. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  973. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  974. </div>
  975. </td>
  976. </tr>
  977. <tr>
  978. <td class="chk-Search">
  979. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  980. </td>
  981. </tr>
  982. <tr>
  983. <td class="chk-Search">
  984. <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>
  985. </td>
  986. </tr>
  987. </table>
  988. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  989. </div>
  990. <script type="text/javascript" src='../../../../../flash/js/Placeholders.min.js'></script>
  991. <script type="text/javascript" src='../../../../../flash/js/watermark.js'></script>
  992. </div>
  993. </div>
  994. <div id="refine-mfg-select-2">
  995. <div id="ctl00_ContentMain_uc3_BoxManufacturer" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc3_btnSelectManufacturer&#39;)">
  996. <div id="boxSuppliers">
  997. <table id="ctl00_ContentMain_uc3_tblSuppliers" class="tblSuppliers2">
  998. <tr>
  999. <td valign="middle" align="left">
  1000. <table cellspacing="0" cellpadding="0" width="100%">
  1001. <tr>
  1002. <td style="vertical-align: middle;">
  1003. <select name="ctl00$ContentMain$uc3$ddlManufacturer" id="ctl00_ContentMain_uc3_ddlManufacturer" class="default">
  1004. <option selected="selected" value="0">所有制造商</option>
  1005. <option value="4292488353">4D Systems (44)</option>
  1006. <option value="4274387497">Adafruit (98)</option>
  1007. <option value="4292487161">ADLINK Technology (12)</option>
  1008. <option value="4291852130">ams (70)</option>
  1009. <option value="4294759198">Amulet Technologies (5)</option>
  1010. <option value="4290538360">Analog Devices Inc. (21)</option>
  1011. <option value="4292821466">Arduino (7)</option>
  1012. <option value="4294759229">Atmel (36)</option>
  1013. <option value="4294759247">Avago Technologies (25)</option>
  1014. <option value="4290656814">Boundary Devices (2)</option>
  1015. <option value="4294449078">Cirrus Logic (4)</option>
  1016. <option value="4273220404">CMOSIS (7)</option>
  1017. <option value="4292733696">Cree, Inc. (14)</option>
  1018. <option value="4292779773">Critical Link (1)</option>
  1019. <option value="4294014452">Cypress Semiconductor (1)</option>
  1020. <option value="4294759248">Dialight (1)</option>
  1021. <option value="4294759230">Digi International (1)</option>
  1022. <option value="4282698358">Digilent (7)</option>
  1023. <option value="4294759215">Digital View (28)</option>
  1024. <option value="4294759176">Displaytech (4)</option>
  1025. <option value="4294027454">ELECTRONIC ASSEMBLY (15)</option>
  1026. <option value="4291156561">ELMOS (1)</option>
  1027. <option value="4292766022">Embedded Artists (4)</option>
  1028. <option value="4292828383">Epson (22)</option>
  1029. <option value="4294014054">Exar (7)</option>
  1030. <option value="4294759187">Fairchild Semiconductor (8)</option>
  1031. <option value="4290462436">Finisar (30)</option>
  1032. <option value="4293998581">Freescale / NXP (14)</option>
  1033. <option value="4294759009">FTDI (6)</option>
  1034. <option value="4294758988">Fujitsu (3)</option>
  1035. <option value="4294409272">Future Designs, Inc. (FDI) (10)</option>
  1036. <option value="4292700835">GHI Electronics (4)</option>
  1037. <option value="4294758149">Glenair (2)</option>
  1038. <option value="4291607133">Gravitech (10)</option>
  1039. <option value="4291847519">Heatron (4)</option>
  1040. <option value="4294759026">Infineon (4)</option>
  1041. <option value="4292859497">Inspired LED (1)</option>
  1042. <option value="4292499325">Intersil (56)</option>
  1043. <option value="4294758587">ISSI (4)</option>
  1044. <option value="4288985402">Ka-Ro electronics (2)</option>
  1045. <option value="4294758842">Lattice (2)</option>
  1046. <option value="4292825949">Luminus Devices (4)</option>
  1047. <option value="4291596096">Maxim Integrated (48)</option>
  1048. <option value="4273581899">Melexis (6)</option>
  1049. <option value="4290943608">Micrel / Microchip (8)</option>
  1050. <option value="4294758776">Microchip (43)</option>
  1051. <option value="4292755921">MikroElektronika (34)</option>
  1052. <option value="4292765876">Mitsubishi Electric (6)</option>
  1053. <option value="4292703012">Monolithic Power Systems (MPS) (1)</option>
  1054. <option value="4294758755">Newhaven Display (11)</option>
  1055. <option value="4294012386">NKK Switches (4)</option>
  1056. <option value="4294755166">Noritake (7)</option>
  1057. <option value="4294758971">NXP (52)</option>
  1058. <option value="4292825757">Olimex Ltd. (9)</option>
  1059. <option value="4294759010">Omron (1)</option>
  1060. <option value="4294759663">ON Semiconductor (147)</option>
  1061. <option value="4293994460">Osram Opto Semiconductor (1)</option>
  1062. <option value="4292890524">Panasonic (1)</option>
  1063. <option value="4294758655">Parallax (13)</option>
  1064. <option value="4294758653">Power Integrations (14)</option>
  1065. <option value="4294763909">Rabbit Semiconductor (1)</option>
  1066. <option value="4294576709">Radiall (1)</option>
  1067. <option value="4292363108">RECOM (2)</option>
  1068. <option value="4273832515">Seeed Studio (49)</option>
  1069. <option value="4294764024">Sharp Microelectronics (3)</option>
  1070. <option value="4294763905">Silicon Laboratories (11)</option>
  1071. <option value="4294764375">STMicroelectronics (96)</option>
  1072. <option value="4287814258">SVTronics (3)</option>
  1073. <option value="4290847695">TechNexion (2)</option>
  1074. <option value="4294759686">Texas Instruments (186)</option>
  1075. <option value="4285624292">TT Electronics (5)</option>
  1076. <option value="4294758824">VCC (1)</option>
  1077. <option value="4294759685">Vishay (1)</option>
  1078. <option value="4292713940">Western Design Center (WDC) (2)</option>
  1079. <option value="4292495909">ZMDI (13)</option>
  1080. </select>
  1081. </td>
  1082. <td style="vertical-align: middle;">
  1083. <input type="submit" name="ctl00$ContentMain$uc3$btnSelectManufacturer" value="确定" onclick="return attributecount();" id="ctl00_ContentMain_uc3_btnSelectManufacturer" title="确定" class="button" />
  1084. </td>
  1085. </tr>
  1086. </table>
  1087. </td>
  1088. </tr>
  1089. </table>
  1090. </div>
  1091. </div>
  1092. </div>
  1093. <div class="clear">
  1094. </div>
  1095. </div>
  1096. <div id="refine-mfg-logo2">
  1097. </div>
  1098. </div>
  1099. <br />
  1100. <table border="0" width="100%">
  1101. <tr>
  1102. <td>
  1103. </td>
  1104. </tr>
  1105. <tr>
  1106. <td>
  1107. <!--- Search Features --->
  1108. </td>
  1109. </tr>
  1110. <tr>
  1111. <td>
  1112. <div id="refine-page">
  1113. </div>
  1114. </td>
  1115. </tr>
  1116. <tr>
  1117. <td class="refine-show-products">
  1118. <span class="redtextb">
  1119. </span> <span class="redtextb">
  1120. </span> <span class="redtextb">
  1121. </span> <span class="redtextb">
  1122. </span>
  1123. <span class="redtextb">
  1124. </span>
  1125. </td>
  1126. </tr>
  1127. <tr>
  1128. <td>
  1129. </td>
  1130. </tr>
  1131. <tr>
  1132. <td>
  1133. <!--- Special Order Parts New --->
  1134. <!-- SOP Section 1 -->
  1135. </td>
  1136. </tr>
  1137. </table>
  1138. <div id="searchResultsTbl">
  1139. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  1140. <tr>
  1141. <td class="tdSearchResultsPagingTop">
  1142. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  1143. <tr>
  1144. <td>
  1145. <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" />
  1146. </td>
  1147. <td>
  1148. <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" />
  1149. </td>
  1150. <td>
  1151. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  1152. </td>
  1153. <td style="padding-left: 40px;">
  1154. <div class="floatrightpager">
  1155. <span class="bold">
  1156. 页面:
  1157. </span>
  1158. <span id="ctl00_ContentMain_PagerTop"><span id="ctl00_ContentMain_PagerTop_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerTop_1" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_54" class="first-last" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=1350">55</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=25">下一页</a></span>
  1159. </div>
  1160. </td>
  1161. </tr>
  1162. </table>
  1163. </td>
  1164. </tr>
  1165. <tr>
  1166. <td>
  1167. <div>
  1168. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  1169. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  1170. <th class="td-select" scope="col" style="width:35px;">
  1171. 选择
  1172. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  1173. </th><th scope="col">制造商 零件编号
  1174. </th><th scope="col">制造商
  1175. </th><th scope="col">描述
  1176. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../Images/Search/pdf.gif" alt="文件" />
  1177. </th><th scope="col">供货情况
  1178. </th><th scope="col">单价(含17%增值税)
  1179. <br />
  1180. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  1181. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  1182. </th>
  1183. </tr><tr class="SearchResultsSortCell">
  1184. <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>
  1185. </tr><tr class="SearchResultsRowOdd" data-partnumber="630-QFBR-S01EK001Z" data-index="3">
  1186. <td class="td-select" align="center">
  1187. <div style="padding: 5px 5px 0 5px;">
  1188. <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>
  1189. </div>
  1190. </td><td><a href='/ProductDetail/Avago-Technologies/QFBR-S01EK001Z/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fU%2f2EzzeU6phmfbyrGRo0Jne5%2fWJdx5hg%3d%3d'><img title='Avago Technologies QFBR-S01EK001Z' alt='Avago Technologies QFBR-S01EK001Z' id=1481172489 src='/images/avagotechnologies/sm/QFBR-S01EK001Z_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/avagotechnologies/images/QFBR-S01EK001Z_DSL.JPG</div></a></td><td>
  1191. <div style="text-align:left;">
  1192. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Avago-Technologies/QFBR-S01EK001Z/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fU%2f2EzzeU6phmfbyrGRo0Jne5%2fWJdx5hg%3d%3d">630-QFBR-S01EK001Z</a><br />
  1193. <br />
  1194. <br />
  1195. </div></td><td>
  1196. <div class="mfrDiv">
  1197. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Avago-Technologies/QFBR-S01EK001Z/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fU%2f2EzzeU6phmfbyrGRo0Jne5%2fWJdx5hg%3d%3d">QFBR-S01EK001Z</a><br />
  1198. <br />
  1199. <div style="width: 100%; text-align: center;">
  1200. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1201. </div>
  1202. <div style="width: 100%; text-align: center;">
  1203. </div>
  1204. </div>
  1205. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../Avago-Technologies">Avago Technologies</a>
  1206. </td><td>光学纤维开发工具 OPI development Kit
  1207. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1208. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../avago-qfbr-s01in001z-interrogator">了解更多</a>
  1209. </div>
  1210. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1211. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  1212. </div>
  1213. </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;Avago Technologies&quot;,&quot;630-QFBR-S01EK001Z | QFBR-S01EK001Z&quot;]);" href="http://www.mouser.com/ds/2/38/avagotech_QFBR-S01EK001Z_Dev%20Kit-771142.pdf" target="_blank">数据表</a>
  1214. </td><td>
  1215. <table>
  1216. <tr align="center">
  1217. <td style="padding-top: 5px">
  1218. </td>
  1219. </tr>
  1220. <tr align="center">
  1221. <td style="padding-top: 5px; padding-bottom: 5px">
  1222. </td>
  1223. </tr>
  1224. </table></td><td>
  1225. </td><td class="SearchResultsBuyColumn">
  1226. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_pnlRestricted">
  1227. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_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>
  1228. </div>
  1229. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  1230. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1231. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Cw0frhkvDEI6T%2fbk23IOGg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Cw0frhkvDEI6T%2fbk23IOGg%3d%3d" target="_blank">详细信息</a>
  1232. </div>
  1233. </td>
  1234. </tr><tr class="SearchResultsRowEven" data-partnumber="653-B5TE001SG" data-index="4">
  1235. <td class="td-select" align="center">
  1236. <div style="padding: 5px 5px 0 5px;">
  1237. <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>
  1238. </div>
  1239. </td><td><a href='/ProductDetail/Omron-Electronics/B5T-E-001-SG/?qs=sGAEpiMZZMuD4PtVTHYOZ4YwvM1F6%252b%252byody8PKux7NV6WbYNJWKcdQ%3d%3d'><img title='Omron Electronics B5T-E-001-S(G)' alt='Omron Electronics B5T-E-001-S(G)' id=1447069899 src='/images/omron/sm/B5T-001001_G_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/omron/images/B5T-001001_G_DSL.jpg</div></a></td><td>
  1240. <div style="text-align:left;">
  1241. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Omron-Electronics/B5T-E-001-SG/?qs=sGAEpiMZZMuD4PtVTHYOZ4YwvM1F6%252b%252byody8PKux7NV6WbYNJWKcdQ%3d%3d">653-B5TE001SG</a><br />
  1242. <br />
  1243. <br />
  1244. </div></td><td>
  1245. <div class="mfrDiv">
  1246. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Omron-Electronics/B5T-E-001-SG/?qs=sGAEpiMZZMuD4PtVTHYOZ4YwvM1F6%252b%252byody8PKux7NV6WbYNJWKcdQ%3d%3d">B5T-E-001-S(G)</a><br />
  1247. <br />
  1248. <div style="width: 100%; text-align: center;">
  1249. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1250. </div>
  1251. <div style="width: 100%; text-align: center;">
  1252. </div>
  1253. </div>
  1254. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../omronelectronics">Omron Electronics</a>
  1255. </td><td>光学传感器开发工具 HVC-P1 Demo Kit, Module & Eval Board
  1256. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1257. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../omron-b5t-hvc-sensor/">了解更多</a>
  1258. </div>
  1259. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1260. </div>
  1261. </td><td>
  1262. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">17<br/>有库存</span>
  1263. <table>
  1264. <tr align="center">
  1265. <td style="padding-top: 5px">
  1266. </td>
  1267. </tr>
  1268. <tr align="center">
  1269. <td style="padding-top: 5px; padding-bottom: 5px">
  1270. </td>
  1271. </tr>
  1272. </table></td><td>
  1273. <table class="PriceBreaks" cellspacing="0" border="0">
  1274. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1275. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1276. </td>
  1277. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1278. </td>
  1279. </tr>
  1280. <tr>
  1281. <td class="PriceBreakQuantity">
  1282. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  1283. </td>
  1284. <td class="PriceBreakPrice">
  1285. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥5,775.705</span>
  1286. </td>
  1287. </tr>
  1288. <tr>
  1289. <td class="PriceBreakQuantity">
  1290. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,5);">5:</a>
  1291. </td>
  1292. <td class="PriceBreakPrice">
  1293. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5,634.8604</span>
  1294. </td>
  1295. </tr>
  1296. <tr>
  1297. <td><br /></td>
  1298. </tr>
  1299. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_trMouserReel">
  1300. <td colspan="2" style="text-align: center;">
  1301. </td>
  1302. </tr>
  1303. </table>
  1304. </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;)">
  1305. <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 />
  1306. <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="购买 B5T-E-001-S(G)" class="buy-button" /><br />
  1307. <table cellspacing="0" border="0" style="width: 100%;">
  1308. <tr>
  1309. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1310. 最低:
  1311. </td>
  1312. <td style="padding-left: 2px; text-align: left;">
  1313. 1
  1314. </td>
  1315. </tr>
  1316. <tr>
  1317. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1318. 多个:
  1319. </td>
  1320. <td style="padding-left: 2px; text-align: left;">
  1321. 1
  1322. </td>
  1323. </tr>
  1324. </table>
  1325. </div>
  1326. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  1327. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1328. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=G%2fKXasWmXEY51q40UMQIMg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=G%2fKXasWmXEY51q40UMQIMg%3d%3d" target="_blank">详细信息</a>
  1329. </div>
  1330. </td>
  1331. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-LCD8000-43T" data-index="5">
  1332. <td class="td-select" align="center">
  1333. <div style="padding: 5px 5px 0 5px;">
  1334. <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>
  1335. </div>
  1336. </td><td></td><td>
  1337. <div style="text-align:left;">
  1338. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/NXP-Freescale/LCD8000-43T/?qs=sGAEpiMZZMuD4PtVTHYOZ5b7rq8ALvm42qpxSWBk9T7FOoYbHknEaw%3d%3d">841-LCD8000-43T</a><br />
  1339. <br />
  1340. <br />
  1341. </div></td><td>
  1342. <div class="mfrDiv">
  1343. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/NXP-Freescale/LCD8000-43T/?qs=sGAEpiMZZMuD4PtVTHYOZ5b7rq8ALvm42qpxSWBk9T7FOoYbHknEaw%3d%3d">LCD8000-43T</a><br />
  1344. <br />
  1345. <div style="width: 100%; text-align: center;">
  1346. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1347. </div>
  1348. <div style="width: 100%; text-align: center;">
  1349. </div>
  1350. </div>
  1351. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  1352. </td><td>显示开发工具 4.3 LCD Panel to Support i.MX 6UltraLite Eval Kit
  1353. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1354. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../freescale-imx6-ultralite">了解更多</a>
  1355. </div>
  1356. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1357. </div>
  1358. </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;NXP / Freescale&quot;,&quot;841-LCD8000-43T | LCD8000-43T&quot;]);" href="http://www.mouser.com/ds/2/161/IMX6ULEVKHUG-770073.pdf" target="_blank">数据表</a>
  1359. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">27<br/>有库存</span>
  1360. <table>
  1361. <tr align="center">
  1362. <td style="padding-top: 5px">
  1363. </td>
  1364. </tr>
  1365. <tr align="center">
  1366. <td style="padding-top: 5px; padding-bottom: 5px">
  1367. </td>
  1368. </tr>
  1369. </table></td><td>
  1370. <table class="PriceBreaks" cellspacing="0" border="0">
  1371. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1372. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1373. </td>
  1374. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1375. </td>
  1376. </tr>
  1377. <tr>
  1378. <td class="PriceBreakQuantity">
  1379. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  1380. </td>
  1381. <td class="PriceBreakPrice">
  1382. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥770.094</span>
  1383. </td>
  1384. </tr>
  1385. <tr>
  1386. <td><br /></td>
  1387. </tr>
  1388. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  1389. <td colspan="2" style="text-align: center;">
  1390. </td>
  1391. </tr>
  1392. </table>
  1393. </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;)">
  1394. <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 />
  1395. <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="购买 LCD8000-43T" class="buy-button" /><br />
  1396. <table cellspacing="0" border="0" style="width: 100%;">
  1397. <tr>
  1398. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1399. 最低:
  1400. </td>
  1401. <td style="padding-left: 2px; text-align: left;">
  1402. 1
  1403. </td>
  1404. </tr>
  1405. <tr>
  1406. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1407. 多个:
  1408. </td>
  1409. <td style="padding-left: 2px; text-align: left;">
  1410. 1
  1411. </td>
  1412. </tr>
  1413. </table>
  1414. </div>
  1415. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  1416. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1417. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=p8nhlIi%2fPVrwF7AEGq2sCw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=p8nhlIi%2fPVrwF7AEGq2sCw%3d%3d" target="_blank">详细信息</a>
  1418. </div>
  1419. </td>
  1420. </tr><tr class="SearchResultsRowEven" data-partnumber="630-AFBR0549Z" data-index="6">
  1421. <td class="td-select" align="center">
  1422. <div style="padding: 5px 5px 0 5px;">
  1423. <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>
  1424. </div>
  1425. </td><td><a href='/ProductDetail/Avago-Technologies/AFBR-0549Z/?qs=sGAEpiMZZMuD4PtVTHYOZz4Bpkfy62vz2HlK3LlbRNl95%252bhX6mz9ug%3d%3d'><img title='Avago Technologies AFBR-0549Z' alt='Avago Technologies AFBR-0549Z' id=1459999701 src='/images/avagotechnologies/sm/AFBR_05xxZ_board_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/avagotechnologies/images/AFBR_05xxZ_board_DSL.jpg</div></a></td><td>
  1426. <div style="text-align:left;">
  1427. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Avago-Technologies/AFBR-0549Z/?qs=sGAEpiMZZMuD4PtVTHYOZz4Bpkfy62vz2HlK3LlbRNl95%252bhX6mz9ug%3d%3d">630-AFBR0549Z</a><br />
  1428. <br />
  1429. <br />
  1430. </div></td><td>
  1431. <div class="mfrDiv">
  1432. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Avago-Technologies/AFBR-0549Z/?qs=sGAEpiMZZMuD4PtVTHYOZz4Bpkfy62vz2HlK3LlbRNl95%252bhX6mz9ug%3d%3d">AFBR-0549Z</a><br />
  1433. <br />
  1434. <div style="width: 100%; text-align: center;">
  1435. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1436. </div>
  1437. <div style="width: 100%; text-align: center;">
  1438. </div>
  1439. </div>
  1440. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../Avago-Technologies">Avago Technologies</a>
  1441. </td><td>光学纤维开发工具 HFBR-1414PTZ AFBR-2418TZ EV. KIT
  1442. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1443. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../avago-afbr24xxxz-optic-receivers">了解更多</a>
  1444. </div>
  1445. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1446. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  1447. </div>
  1448. </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;Avago Technologies&quot;,&quot;630-AFBR0549Z | AFBR-0549Z&quot;]);" href="http://www.mouser.com/ds/2/38/AV02-4887EN_PB_AFBR-0549Z_2015-04-07-553012.pdf" target="_blank">数据表</a>
  1449. </td><td>
  1450. <table>
  1451. <tr align="center">
  1452. <td style="padding-top: 5px">
  1453. </td>
  1454. </tr>
  1455. <tr align="center">
  1456. <td style="padding-top: 5px; padding-bottom: 5px">
  1457. </td>
  1458. </tr>
  1459. </table></td><td>
  1460. </td><td class="SearchResultsBuyColumn">
  1461. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_pnlRestricted">
  1462. <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>
  1463. </div>
  1464. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  1465. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1466. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=TdjFSJyyr8y7DiricpcjpA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=TdjFSJyyr8y7DiricpcjpA%3d%3d" target="_blank">详细信息</a>
  1467. </div>
  1468. </td>
  1469. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-LPDLCR2010EVMPCB" data-index="7">
  1470. <td class="td-select" align="center">
  1471. <div style="padding: 5px 5px 0 5px;">
  1472. <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>
  1473. </div>
  1474. </td><td><a href='/ProductDetail/Texas-Instruments/DLPDLCR2010EVM-PCB/?qs=sGAEpiMZZMuD4PtVTHYOZwHDJf2CyvMcEULFQLee%252bnApNTVGQ%252bE1%252bQ%3d%3d'><img title='Texas Instruments DLPDLCR2010EVM-PCB' alt='Texas Instruments DLPDLCR2010EVM-PCB' id=1630045827 src='/images/texasinstruments/sm/DLPDLCR2010EVM_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/texasinstruments/images/DLPDLCR2010EVM_DSL.jpg</div></a></td><td>
  1475. <div style="text-align:left;">
  1476. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/DLPDLCR2010EVM-PCB/?qs=sGAEpiMZZMuD4PtVTHYOZwHDJf2CyvMcEULFQLee%252bnApNTVGQ%252bE1%252bQ%3d%3d">595-LPDLCR2010EVMPCB</a><br />
  1477. <br />
  1478. <br />
  1479. </div></td><td>
  1480. <div class="mfrDiv">
  1481. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DLPDLCR2010EVM-PCB/?qs=sGAEpiMZZMuD4PtVTHYOZwHDJf2CyvMcEULFQLee%252bnApNTVGQ%252bE1%252bQ%3d%3d">DLPDLCR2010EVM-PCB</a><br />
  1482. <br />
  1483. <div style="width: 100%; text-align: center;">
  1484. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1485. </div>
  1486. <div style="width: 100%; text-align: center;">
  1487. </div>
  1488. </div>
  1489. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  1490. </td><td>显示开发工具
  1491. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1492. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-dlpc3430-35-controller/">了解更多</a>
  1493. </div>
  1494. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1495. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  1496. </div>
  1497. </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;Texas Instruments&quot;,&quot;595-LPDLCR2010EVMPCB | DLPDLCR2010EVM-PCB&quot;]);" href="http://www.mouser.com/ds/2/405/dlpu027b-779685.pdf" target="_blank">数据表</a>
  1498. </td><td>
  1499. <table>
  1500. <tr align="center">
  1501. <td style="padding-top: 5px">
  1502. </td>
  1503. </tr>
  1504. <tr align="center">
  1505. <td style="padding-top: 5px; padding-bottom: 5px">
  1506. </td>
  1507. </tr>
  1508. </table></td><td>
  1509. </td><td class="SearchResultsBuyColumn">
  1510. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlRestricted">
  1511. <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>
  1512. </div>
  1513. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  1514. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1515. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=UWJqf7NYAAdj3KakKdrCBg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=UWJqf7NYAAdj3KakKdrCBg%3d%3d" target="_blank">详细信息</a>
  1516. </div>
  1517. </td>
  1518. </tr><tr class="SearchResultsRowEven" data-partnumber="634-115XOPT-EXP-EVB" data-index="8">
  1519. <td class="td-select" align="center">
  1520. <div style="padding: 5px 5px 0 5px;">
  1521. <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>
  1522. </div>
  1523. </td><td><a href='/ProductDetail/Silicon-Labs/115XOPT-EXP-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZwHDJf2CyvMcaB2Pbcd8dCEWt4la8TEzkg%3d%3d'><img title='Silicon Labs 115XOPT-EXP-EVB' alt='Silicon Labs 115XOPT-EXP-EVB' id=1632142162 src='/images/siliconlaboratories/sm/115XOPT-EXP-EVB_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/siliconlaboratories/images/115XOPT-EXP-EVB_DSL.JPG</div></a></td><td>
  1524. <div style="text-align:left;">
  1525. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Silicon-Labs/115XOPT-EXP-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZwHDJf2CyvMcaB2Pbcd8dCEWt4la8TEzkg%3d%3d">634-115XOPT-EXP-EVB</a><br />
  1526. <br />
  1527. <br />
  1528. </div></td><td>
  1529. <div class="mfrDiv">
  1530. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Silicon-Labs/115XOPT-EXP-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZwHDJf2CyvMcaB2Pbcd8dCEWt4la8TEzkg%3d%3d">115XOPT-EXP-EVB</a><br />
  1531. <br />
  1532. <div style="width: 100%; text-align: center;">
  1533. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1534. </div>
  1535. <div style="width: 100%; text-align: center;">
  1536. </div>
  1537. </div>
  1538. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../Silicon-Laboratories">Silicon Labs</a>
  1539. </td><td>光学传感器开发工具 Si1153 Expansion Board
  1540. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1541. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../silicon-labs-si11x3-ic">了解更多</a>
  1542. </div>
  1543. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1544. </div>
  1545. </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;Silicon Labs&quot;,&quot;634-115XOPT-EXP-EVB | 115XOPT-EXP-EVB&quot;]);" href="http://www.mouser.com/ds/2/368/UG163-780637.pdf" target="_blank">数据表</a>
  1546. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">28<br/>有库存</span>
  1547. <table>
  1548. <tr align="center">
  1549. <td style="padding-top: 5px">
  1550. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Silicon-Labs/115XOPT-EXP-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZwHDJf2CyvMcaB2Pbcd8dCEWt4la8TEzkg%3d%3d">更多信息可用 </a>
  1551. </td>
  1552. </tr>
  1553. <tr align="center">
  1554. <td style="padding-top: 5px; padding-bottom: 5px">
  1555. </td>
  1556. </tr>
  1557. </table></td><td>
  1558. <table class="PriceBreaks" cellspacing="0" border="0">
  1559. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1560. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1561. </td>
  1562. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1563. </td>
  1564. </tr>
  1565. <tr>
  1566. <td class="PriceBreakQuantity">
  1567. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  1568. </td>
  1569. <td class="PriceBreakPrice">
  1570. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥291.7161</span>
  1571. </td>
  1572. </tr>
  1573. <tr>
  1574. <td><br /></td>
  1575. </tr>
  1576. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  1577. <td colspan="2" style="text-align: center;">
  1578. </td>
  1579. </tr>
  1580. </table>
  1581. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy&#39;)">
  1582. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(6,this.value);" /><br />
  1583. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 6);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy" title="购买 115XOPT-EXP-EVB" class="buy-button" /><br />
  1584. <table cellspacing="0" border="0" style="width: 100%;">
  1585. <tr>
  1586. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1587. 最低:
  1588. </td>
  1589. <td style="padding-left: 2px; text-align: left;">
  1590. 1
  1591. </td>
  1592. </tr>
  1593. <tr>
  1594. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1595. 多个:
  1596. </td>
  1597. <td style="padding-left: 2px; text-align: left;">
  1598. 1
  1599. </td>
  1600. </tr>
  1601. </table>
  1602. </div>
  1603. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  1604. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1605. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=pOj%252bfA8s95Fp4GKTOczmsw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=pOj%252bfA8s95Fp4GKTOczmsw%3d%3d" target="_blank">详细信息</a>
  1606. </div>
  1607. </td>
  1608. </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STEVAL-ILL076V1" data-index="9">
  1609. <td class="td-select" align="center">
  1610. <div style="padding: 5px 5px 0 5px;">
  1611. <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>
  1612. </div>
  1613. </td><td><a href='/ProductDetail/STMicroelectronics/STEVAL-ILL076V1/?qs=sGAEpiMZZMuD4PtVTHYOZwSb0HZuDH3ZWdxNLy8c3ZbntPwuiHZXGw%3d%3d'><img title='STMicroelectronics STEVAL-ILL076V1' alt='STMicroelectronics STEVAL-ILL076V1' id=1605424652 src='/images/stmicroelectronics/sm/STEVAL_ILL076V1_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/STEVAL_ILL076V1_SPL.jpg</div></a></td><td>
  1614. <div style="text-align:left;">
  1615. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL076V1/?qs=sGAEpiMZZMuD4PtVTHYOZwSb0HZuDH3ZWdxNLy8c3ZbntPwuiHZXGw%3d%3d">511-STEVAL-ILL076V1</a><br />
  1616. <br />
  1617. <br />
  1618. </div></td><td>
  1619. <div class="mfrDiv">
  1620. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL076V1/?qs=sGAEpiMZZMuD4PtVTHYOZwSb0HZuDH3ZWdxNLy8c3ZbntPwuiHZXGw%3d%3d">STEVAL-ILL076V1</a><br />
  1621. <br />
  1622. <div style="width: 100%; text-align: center;">
  1623. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1624. </div>
  1625. <div style="width: 100%; text-align: center;">
  1626. </div>
  1627. </div>
  1628. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  1629. </td><td>LED 照明开发工具 40W 220V input flyback converter based on HVLED001 quasi resonantA Flyback controller (SLIM form factor)
  1630. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1631. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-hvled001-controller">了解更多</a>
  1632. </div>
  1633. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1634. </div>
  1635. </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;STMicroelectronics&quot;,&quot;511-STEVAL-ILL076V1 | STEVAL-ILL076V1&quot;]);" href="http://www.mouser.com/ds/2/389/DM00230011-770862.pdf" target="_blank">数据表</a>
  1636. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">8<br/>有库存</span>
  1637. <table>
  1638. <tr align="center">
  1639. <td style="padding-top: 5px">
  1640. </td>
  1641. </tr>
  1642. <tr align="center">
  1643. <td style="padding-top: 5px; padding-bottom: 5px">
  1644. </td>
  1645. </tr>
  1646. </table></td><td>
  1647. <table class="PriceBreaks" cellspacing="0" border="0">
  1648. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1649. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1650. </td>
  1651. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1652. </td>
  1653. </tr>
  1654. <tr>
  1655. <td class="PriceBreakQuantity">
  1656. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  1657. </td>
  1658. <td class="PriceBreakPrice">
  1659. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥721.9602</span>
  1660. </td>
  1661. </tr>
  1662. <tr>
  1663. <td><br /></td>
  1664. </tr>
  1665. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  1666. <td colspan="2" style="text-align: center;">
  1667. </td>
  1668. </tr>
  1669. </table>
  1670. </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;)">
  1671. <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 />
  1672. <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="购买 STEVAL-ILL076V1" class="buy-button" /><br />
  1673. <table cellspacing="0" border="0" style="width: 100%;">
  1674. <tr>
  1675. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1676. 最低:
  1677. </td>
  1678. <td style="padding-left: 2px; text-align: left;">
  1679. 1
  1680. </td>
  1681. </tr>
  1682. <tr>
  1683. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1684. 多个:
  1685. </td>
  1686. <td style="padding-left: 2px; text-align: left;">
  1687. 1
  1688. </td>
  1689. </tr>
  1690. </table>
  1691. </div>
  1692. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  1693. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1694. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=4pWQqqTwS5TYm7Zw8yz%2fNQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=4pWQqqTwS5TYm7Zw8yz%2fNQ%3d%3d" target="_blank">详细信息</a>
  1695. </div>
  1696. </td>
  1697. </tr><tr class="SearchResultsRowEven" data-partnumber="634-SI1147-M01-EVB" data-index="10">
  1698. <td class="td-select" align="center">
  1699. <div style="padding: 5px 5px 0 5px;">
  1700. <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>
  1701. </div>
  1702. </td><td><a href='/ProductDetail/Silicon-Labs/Si1147-M01-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZ%2f1%252bzOKsVTxInwseUA7CWRUPRulHT3qI9Q%3d%3d'><img title='Silicon Labs Si1147-M01-EVB' alt='Silicon Labs Si1147-M01-EVB' id=1491401380 src='/images/siliconlaboratories/sm/si114x-EVB_dongle_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/siliconlaboratories/images/si114x-EVB_dongle_SPL.jpg</div></a></td><td>
  1703. <div style="text-align:left;">
  1704. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Silicon-Labs/Si1147-M01-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZ%2f1%252bzOKsVTxInwseUA7CWRUPRulHT3qI9Q%3d%3d">634-SI1147-M01-EVB</a><br />
  1705. <br />
  1706. <br />
  1707. </div></td><td>
  1708. <div class="mfrDiv">
  1709. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Silicon-Labs/Si1147-M01-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZ%2f1%252bzOKsVTxInwseUA7CWRUPRulHT3qI9Q%3d%3d">Si1147-M01-EVB</a><br />
  1710. <br />
  1711. <div style="width: 100%; text-align: center;">
  1712. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1713. </div>
  1714. <div style="width: 100%; text-align: center;">
  1715. </div>
  1716. </div>
  1717. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../Silicon-Laboratories">Silicon Labs</a>
  1718. </td><td>光学传感器开发工具 Sensor toolstick Eval Board
  1719. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1720. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../silabs-si114x-modules">了解更多</a>
  1721. </div>
  1722. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1723. </div>
  1724. </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;Silicon Labs&quot;,&quot;634-SI1147-M01-EVB | Si1147-M01-EVB&quot;]);" href="http://www.mouser.com/ds/2/368/Si1145-46-47-M01Rev1.0-587410.pdf" target="_blank">数据表</a>
  1725. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">8<br/>有库存</span>
  1726. <table>
  1727. <tr align="center">
  1728. <td style="padding-top: 5px">
  1729. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Silicon-Labs/Si1147-M01-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZ%2f1%252bzOKsVTxInwseUA7CWRUPRulHT3qI9Q%3d%3d">更多信息可用 </a>
  1730. </td>
  1731. </tr>
  1732. <tr align="center">
  1733. <td style="padding-top: 5px; padding-bottom: 5px">
  1734. </td>
  1735. </tr>
  1736. </table></td><td>
  1737. <table class="PriceBreaks" cellspacing="0" border="0">
  1738. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1739. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1740. </td>
  1741. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1742. </td>
  1743. </tr>
  1744. <tr>
  1745. <td class="PriceBreakQuantity">
  1746. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  1747. </td>
  1748. <td class="PriceBreakPrice">
  1749. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥230.9463</span>
  1750. </td>
  1751. </tr>
  1752. <tr>
  1753. <td><br /></td>
  1754. </tr>
  1755. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  1756. <td colspan="2" style="text-align: center;">
  1757. </td>
  1758. </tr>
  1759. </table>
  1760. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy&#39;)">
  1761. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(8,this.value);" /><br />
  1762. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 8);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy" title="购买 Si1147-M01-EVB" class="buy-button" /><br />
  1763. <table cellspacing="0" border="0" style="width: 100%;">
  1764. <tr>
  1765. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1766. 最低:
  1767. </td>
  1768. <td style="padding-left: 2px; text-align: left;">
  1769. 1
  1770. </td>
  1771. </tr>
  1772. <tr>
  1773. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1774. 多个:
  1775. </td>
  1776. <td style="padding-left: 2px; text-align: left;">
  1777. 1
  1778. </td>
  1779. </tr>
  1780. </table>
  1781. </div>
  1782. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  1783. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1784. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=7MWEoLOyqUTLhFSEQ3bsHA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=7MWEoLOyqUTLhFSEQ3bsHA%3d%3d" target="_blank">详细信息</a>
  1785. </div>
  1786. </td>
  1787. </tr><tr class="SearchResultsRowOdd" data-partnumber="634-SI1143-M01-EVB" data-index="11">
  1788. <td class="td-select" align="center">
  1789. <div style="padding: 5px 5px 0 5px;">
  1790. <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>
  1791. </div>
  1792. </td><td><a href='/ProductDetail/Silicon-Labs/Si1143-M01-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZ%2f1%252bzOKsVTxIxfzWJlMDL%252b1POzDvT%252b2Deg%3d%3d'><img title='Silicon Labs Si1143-M01-EVB' alt='Silicon Labs Si1143-M01-EVB' id=1491401378 src='/images/siliconlaboratories/sm/si114x-EVB_dongle_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/siliconlaboratories/images/si114x-EVB_dongle_SPL.jpg</div></a></td><td>
  1793. <div style="text-align:left;">
  1794. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Silicon-Labs/Si1143-M01-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZ%2f1%252bzOKsVTxIxfzWJlMDL%252b1POzDvT%252b2Deg%3d%3d">634-SI1143-M01-EVB</a><br />
  1795. <br />
  1796. <br />
  1797. </div></td><td>
  1798. <div class="mfrDiv">
  1799. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Silicon-Labs/Si1143-M01-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZ%2f1%252bzOKsVTxIxfzWJlMDL%252b1POzDvT%252b2Deg%3d%3d">Si1143-M01-EVB</a><br />
  1800. <br />
  1801. <div style="width: 100%; text-align: center;">
  1802. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1803. </div>
  1804. <div style="width: 100%; text-align: center;">
  1805. </div>
  1806. </div>
  1807. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../Silicon-Laboratories">Silicon Labs</a>
  1808. </td><td>光学传感器开发工具 Sensor toolstick Eval Board
  1809. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1810. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../silabs-si114x-modules">了解更多</a>
  1811. </div>
  1812. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1813. </div>
  1814. </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;Silicon Labs&quot;,&quot;634-SI1143-M01-EVB | Si1143-M01-EVB&quot;]);" href="http://www.mouser.com/ds/2/368/Si1141-42-43-M01-587398.pdf" target="_blank">数据表</a>
  1815. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">9<br/>有库存</span>
  1816. <table>
  1817. <tr align="center">
  1818. <td style="padding-top: 5px">
  1819. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Silicon-Labs/Si1143-M01-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZ%2f1%252bzOKsVTxIxfzWJlMDL%252b1POzDvT%252b2Deg%3d%3d">更多信息可用 </a>
  1820. </td>
  1821. </tr>
  1822. <tr align="center">
  1823. <td style="padding-top: 5px; padding-bottom: 5px">
  1824. </td>
  1825. </tr>
  1826. </table></td><td>
  1827. <table class="PriceBreaks" cellspacing="0" border="0">
  1828. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1829. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1830. </td>
  1831. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1832. </td>
  1833. </tr>
  1834. <tr>
  1835. <td class="PriceBreakQuantity">
  1836. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  1837. </td>
  1838. <td class="PriceBreakPrice">
  1839. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥230.9463</span>
  1840. </td>
  1841. </tr>
  1842. <tr>
  1843. <td><br /></td>
  1844. </tr>
  1845. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  1846. <td colspan="2" style="text-align: center;">
  1847. </td>
  1848. </tr>
  1849. </table>
  1850. </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;)">
  1851. <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 />
  1852. <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="购买 Si1143-M01-EVB" class="buy-button" /><br />
  1853. <table cellspacing="0" border="0" style="width: 100%;">
  1854. <tr>
  1855. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1856. 最低:
  1857. </td>
  1858. <td style="padding-left: 2px; text-align: left;">
  1859. 1
  1860. </td>
  1861. </tr>
  1862. <tr>
  1863. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1864. 多个:
  1865. </td>
  1866. <td style="padding-left: 2px; text-align: left;">
  1867. 1
  1868. </td>
  1869. </tr>
  1870. </table>
  1871. </div>
  1872. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  1873. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1874. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=7MWEoLOyqURaYIzEKG7RGg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=7MWEoLOyqURaYIzEKG7RGg%3d%3d" target="_blank">详细信息</a>
  1875. </div>
  1876. </td>
  1877. </tr><tr class="SearchResultsRowEven" data-partnumber="630-AFBR0550Z" data-index="12">
  1878. <td class="td-select" align="center">
  1879. <div style="padding: 5px 5px 0 5px;">
  1880. <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>
  1881. </div>
  1882. </td><td><a href='/ProductDetail/Avago-Technologies/AFBR-0550Z/?qs=sGAEpiMZZMuD4PtVTHYOZz4Bpkfy62vzfg9sGm0%2fjkT1wrGfP%252bDB5w%3d%3d'><img title='Avago Technologies AFBR-0550Z' alt='Avago Technologies AFBR-0550Z' id=1459999697 src='/images/avagotechnologies/sm/AFBR_05xxZ_board_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/avagotechnologies/images/AFBR_05xxZ_board_DSL.jpg</div></a></td><td>
  1883. <div style="text-align:left;">
  1884. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Avago-Technologies/AFBR-0550Z/?qs=sGAEpiMZZMuD4PtVTHYOZz4Bpkfy62vzfg9sGm0%2fjkT1wrGfP%252bDB5w%3d%3d">630-AFBR0550Z</a><br />
  1885. <br />
  1886. <br />
  1887. </div></td><td>
  1888. <div class="mfrDiv">
  1889. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Avago-Technologies/AFBR-0550Z/?qs=sGAEpiMZZMuD4PtVTHYOZz4Bpkfy62vzfg9sGm0%2fjkT1wrGfP%252bDB5w%3d%3d">AFBR-0550Z</a><br />
  1890. <br />
  1891. <div style="width: 100%; text-align: center;">
  1892. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1893. </div>
  1894. <div style="width: 100%; text-align: center;">
  1895. </div>
  1896. </div>
  1897. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../Avago-Technologies">Avago Technologies</a>
  1898. </td><td>光学纤维开发工具 HFBR-1414PTZ AFBR-2419TZ EV.KIT
  1899. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1900. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../avago-afbr24xxxz-optic-receivers">了解更多</a>
  1901. </div>
  1902. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1903. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  1904. </div>
  1905. </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;Avago Technologies&quot;,&quot;630-AFBR0550Z | AFBR-0550Z&quot;]);" href="http://www.mouser.com/ds/2/38/AV02-4887EN_PB_AFBR-0549Z_2015-04-07-553012.pdf" target="_blank">数据表</a>
  1906. </td><td>
  1907. <table>
  1908. <tr align="center">
  1909. <td style="padding-top: 5px">
  1910. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Avago-Technologies/AFBR-0550Z/?qs=sGAEpiMZZMuD4PtVTHYOZz4Bpkfy62vzfg9sGm0%2fjkT1wrGfP%252bDB5w%3d%3d">更多信息可用 </a>
  1911. </td>
  1912. </tr>
  1913. <tr align="center">
  1914. <td style="padding-top: 5px; padding-bottom: 5px">
  1915. </td>
  1916. </tr>
  1917. </table></td><td>
  1918. </td><td class="SearchResultsBuyColumn">
  1919. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_pnlRestricted">
  1920. <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>
  1921. </div>
  1922. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  1923. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1924. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=TdjFSJyyr8zO658dlN2vtg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=TdjFSJyyr8zO658dlN2vtg%3d%3d" target="_blank">详细信息</a>
  1925. </div>
  1926. </td>
  1927. </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STEVAL-ILL067V1" data-index="13">
  1928. <td class="td-select" align="center">
  1929. <div style="padding: 5px 5px 0 5px;">
  1930. <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>
  1931. </div>
  1932. </td><td><a href='/ProductDetail/STMicroelectronics/STEVAL-ILL067V1/?qs=sGAEpiMZZMuD4PtVTHYOZ9OPCzGAM4PpwsyUmkAfo12qrV2sa%252bL4mA%3d%3d'><img title='STMicroelectronics STEVAL-ILL067V1' alt='STMicroelectronics STEVAL-ILL067V1' id=1514543202 src='/images/stmicroelectronics/sm/STEVAL-ILL067V1_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/stmicroelectronics/images/STEVAL-ILL067V1_DSL.JPG</div></a></td><td>
  1933. <div style="text-align:left;">
  1934. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL067V1/?qs=sGAEpiMZZMuD4PtVTHYOZ9OPCzGAM4PpwsyUmkAfo12qrV2sa%252bL4mA%3d%3d">511-STEVAL-ILL067V1</a><br />
  1935. <br />
  1936. <br />
  1937. </div></td><td>
  1938. <div class="mfrDiv">
  1939. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL067V1/?qs=sGAEpiMZZMuD4PtVTHYOZ9OPCzGAM4PpwsyUmkAfo12qrV2sa%252bL4mA%3d%3d">STEVAL-ILL067V1</a><br />
  1940. <br />
  1941. <div style="width: 100%; text-align: center;">
  1942. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1943. </div>
  1944. <div style="width: 100%; text-align: center;">
  1945. </div>
  1946. </div>
  1947. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  1948. </td><td>LED 照明开发工具 Six-channel ALED7707-based LED driver with embedded boost converter for automotive interior lighting and TFT backlightin
  1949. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1950. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-steval-ill067v1-board">了解更多</a>
  1951. </div>
  1952. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1953. </div>
  1954. </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;STMicroelectronics&quot;,&quot;511-STEVAL-ILL067V1 | STEVAL-ILL067V1&quot;]);" href="http://www.mouser.com/ds/2/389/DM00205707-706365.pdf" target="_blank">数据表</a>
  1955. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">3<br/>有库存</span>
  1956. <table>
  1957. <tr align="center">
  1958. <td style="padding-top: 5px">
  1959. </td>
  1960. </tr>
  1961. <tr align="center">
  1962. <td style="padding-top: 5px; padding-bottom: 5px">
  1963. </td>
  1964. </tr>
  1965. </table></td><td>
  1966. <table class="PriceBreaks" cellspacing="0" border="0">
  1967. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1968. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1969. </td>
  1970. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1971. </td>
  1972. </tr>
  1973. <tr>
  1974. <td class="PriceBreakQuantity">
  1975. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  1976. </td>
  1977. <td class="PriceBreakPrice">
  1978. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥394.6761</span>
  1979. </td>
  1980. </tr>
  1981. <tr>
  1982. <td><br /></td>
  1983. </tr>
  1984. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  1985. <td colspan="2" style="text-align: center;">
  1986. </td>
  1987. </tr>
  1988. </table>
  1989. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy&#39;)">
  1990. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(11,this.value);" /><br />
  1991. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 11);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy" title="购买 STEVAL-ILL067V1" class="buy-button" /><br />
  1992. <table cellspacing="0" border="0" style="width: 100%;">
  1993. <tr>
  1994. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1995. 最低:
  1996. </td>
  1997. <td style="padding-left: 2px; text-align: left;">
  1998. 1
  1999. </td>
  2000. </tr>
  2001. <tr>
  2002. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2003. 多个:
  2004. </td>
  2005. <td style="padding-left: 2px; text-align: left;">
  2006. 1
  2007. </td>
  2008. </tr>
  2009. </table>
  2010. </div>
  2011. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  2012. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2013. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=hTkSsNmZDMvpNoLCRUErYQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=hTkSsNmZDMvpNoLCRUErYQ%3d%3d" target="_blank">详细信息</a>
  2014. </div>
  2015. </td>
  2016. </tr><tr class="SearchResultsRowEven" data-partnumber="511-STEVAL-ILL072V1" data-index="14">
  2017. <td class="td-select" align="center">
  2018. <div style="padding: 5px 5px 0 5px;">
  2019. <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>
  2020. </div>
  2021. </td><td><a href='/ProductDetail/STMicroelectronics/STEVAL-ILL072V1/?qs=sGAEpiMZZMuD4PtVTHYOZ9OPCzGAM4Ppv%2fhgV6Ywkjtvd5JbibnGGg%3d%3d'><img title='STMicroelectronics STEVAL-ILL072V1' alt='STMicroelectronics STEVAL-ILL072V1' id=1512187777 src='/images/stmicroelectronics/sm/STEVAL-ILL072V1_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/stmicroelectronics/images/STEVAL-ILL072V1_DSL.JPG</div></a></td><td>
  2022. <div style="text-align:left;">
  2023. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL072V1/?qs=sGAEpiMZZMuD4PtVTHYOZ9OPCzGAM4Ppv%2fhgV6Ywkjtvd5JbibnGGg%3d%3d">511-STEVAL-ILL072V1</a><br />
  2024. <br />
  2025. <br />
  2026. </div></td><td>
  2027. <div class="mfrDiv">
  2028. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL072V1/?qs=sGAEpiMZZMuD4PtVTHYOZ9OPCzGAM4Ppv%2fhgV6Ywkjtvd5JbibnGGg%3d%3d">STEVAL-ILL072V1</a><br />
  2029. <br />
  2030. <div style="width: 100%; text-align: center;">
  2031. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2032. </div>
  2033. <div style="width: 100%; text-align: center;">
  2034. </div>
  2035. </div>
  2036. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  2037. </td><td>LED 照明开发工具 Single channel, 1 A automotive LED driver with boost controller for interior/exterior lights
  2038. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2039. </div>
  2040. </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;STMicroelectronics&quot;,&quot;511-STEVAL-ILL072V1 | STEVAL-ILL072V1&quot;]);" href="http://www.mouser.com/ds/2/389/DM00205780-706380.pdf" target="_blank">数据表</a>
  2041. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">5<br/>有库存</span>
  2042. <table>
  2043. <tr align="center">
  2044. <td style="padding-top: 5px">
  2045. </td>
  2046. </tr>
  2047. <tr align="center">
  2048. <td style="padding-top: 5px; padding-bottom: 5px">
  2049. </td>
  2050. </tr>
  2051. </table></td><td>
  2052. <table class="PriceBreaks" cellspacing="0" border="0">
  2053. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2054. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2055. </td>
  2056. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2057. </td>
  2058. </tr>
  2059. <tr>
  2060. <td class="PriceBreakQuantity">
  2061. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  2062. </td>
  2063. <td class="PriceBreakPrice">
  2064. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥529.4367</span>
  2065. </td>
  2066. </tr>
  2067. <tr>
  2068. <td><br /></td>
  2069. </tr>
  2070. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  2071. <td colspan="2" style="text-align: center;">
  2072. </td>
  2073. </tr>
  2074. </table>
  2075. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy&#39;)">
  2076. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(12,this.value);" /><br />
  2077. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 12);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy" title="购买 STEVAL-ILL072V1" class="buy-button" /><br />
  2078. <table cellspacing="0" border="0" style="width: 100%;">
  2079. <tr>
  2080. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2081. 最低:
  2082. </td>
  2083. <td style="padding-left: 2px; text-align: left;">
  2084. 1
  2085. </td>
  2086. </tr>
  2087. <tr>
  2088. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2089. 多个:
  2090. </td>
  2091. <td style="padding-left: 2px; text-align: left;">
  2092. 1
  2093. </td>
  2094. </tr>
  2095. </table>
  2096. </div>
  2097. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  2098. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2099. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=8DyoUQ52Y81jUBYfIXEDQA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=8DyoUQ52Y81jUBYfIXEDQA%3d%3d" target="_blank">详细信息</a>
  2100. </div>
  2101. </td>
  2102. </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STEVAL-ILL075V1" data-index="15">
  2103. <td class="td-select" align="center">
  2104. <div style="padding: 5px 5px 0 5px;">
  2105. <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>
  2106. </div>
  2107. </td><td><a href='/ProductDetail/STMicroelectronics/STEVAL-ILL075V1/?qs=sGAEpiMZZMuD4PtVTHYOZwHDJf2CyvMcqKyVmBvVyIMJ%2fRJ93PF7OQ%3d%3d'><img title='STMicroelectronics STEVAL-ILL075V1' alt='STMicroelectronics STEVAL-ILL075V1' id=1633556305 src='/images/stmicroelectronics/sm/STEVAL-ILL075V1_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/stmicroelectronics/images/STEVAL-ILL075V1_DSL.JPG</div></a></td><td>
  2108. <div style="text-align:left;">
  2109. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL075V1/?qs=sGAEpiMZZMuD4PtVTHYOZwHDJf2CyvMcqKyVmBvVyIMJ%2fRJ93PF7OQ%3d%3d">511-STEVAL-ILL075V1</a><br />
  2110. <br />
  2111. <br />
  2112. </div></td><td>
  2113. <div class="mfrDiv">
  2114. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL075V1/?qs=sGAEpiMZZMuD4PtVTHYOZwHDJf2CyvMcqKyVmBvVyIMJ%2fRJ93PF7OQ%3d%3d">STEVAL-ILL075V1</a><br />
  2115. <br />
  2116. <div style="width: 100%; text-align: center;">
  2117. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2118. </div>
  2119. <div style="width: 100%; text-align: center;">
  2120. </div>
  2121. </div>
  2122. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  2123. </td><td>LED 照明开发工具 STLUX385A evaluation board
  2124. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2125. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-stlux385a-led-driver">了解更多</a>
  2126. </div>
  2127. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2128. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2129. </div>
  2130. </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-STEVAL-ILL075V1 | STEVAL-ILL075V1&quot;]);" href="http://www.mouser.com/ds/2/389/DM00238618-888088.pdf" target="_blank">数据表</a>
  2131. </td><td>
  2132. <table>
  2133. <tr align="center">
  2134. <td style="padding-top: 5px">
  2135. </td>
  2136. </tr>
  2137. <tr align="center">
  2138. <td style="padding-top: 5px; padding-bottom: 5px">
  2139. </td>
  2140. </tr>
  2141. </table></td><td>
  2142. </td><td class="SearchResultsBuyColumn">
  2143. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_pnlRestricted">
  2144. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_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>
  2145. </div>
  2146. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  2147. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2148. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Z09blr9fAZOAAnJCtl19lg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Z09blr9fAZOAAnJCtl19lg%3d%3d" target="_blank">详细信息</a>
  2149. </div>
  2150. </td>
  2151. </tr><tr class="SearchResultsRowEven" data-partnumber="511-STEVAL-ILL084V1" data-index="16">
  2152. <td class="td-select" align="center">
  2153. <div style="padding: 5px 5px 0 5px;">
  2154. <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>
  2155. </div>
  2156. </td><td><a href='/ProductDetail/STMicroelectronics/STEVAL-ILL084V1/?qs=sGAEpiMZZMuD4PtVTHYOZ0t7VOx%252bzB0nmfVWi0Nu%252bh4ia4vUOjwjBw%3d%3d'><img title='STMicroelectronics STEVAL-ILL084V1' alt='STMicroelectronics STEVAL-ILL084V1' id=1680836088 src='/images/stmicroelectronics/sm/STEVAL-ILL084V1_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/stmicroelectronics/images/STEVAL-ILL084V1_DSL.JPG</div></a></td><td>
  2157. <div style="text-align:left;">
  2158. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL084V1/?qs=sGAEpiMZZMuD4PtVTHYOZ0t7VOx%252bzB0nmfVWi0Nu%252bh4ia4vUOjwjBw%3d%3d">511-STEVAL-ILL084V1</a><br />
  2159. <br />
  2160. <br />
  2161. </div></td><td>
  2162. <div class="mfrDiv">
  2163. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL084V1/?qs=sGAEpiMZZMuD4PtVTHYOZ0t7VOx%252bzB0nmfVWi0Nu%252bh4ia4vUOjwjBw%3d%3d">STEVAL-ILL084V1</a><br />
  2164. <br />
  2165. <div style="width: 100%; text-align: center;">
  2166. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2167. </div>
  2168. <div style="width: 100%; text-align: center;">
  2169. </div>
  2170. </div>
  2171. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  2172. </td><td>LED 照明开发工具 0.5 A, floating boost LED driver board based on the LED6000
  2173. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2174. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2175. </div>
  2176. </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-STEVAL-ILL084V1 | STEVAL-ILL084V1&quot;]);" href="http://www.mouser.com/ds/2/389/DM00264103-890268.pdf" target="_blank">数据表</a>
  2177. </td><td>
  2178. <table>
  2179. <tr align="center">
  2180. <td style="padding-top: 5px">
  2181. </td>
  2182. </tr>
  2183. <tr align="center">
  2184. <td style="padding-top: 5px; padding-bottom: 5px">
  2185. </td>
  2186. </tr>
  2187. </table></td><td>
  2188. </td><td class="SearchResultsBuyColumn">
  2189. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlRestricted">
  2190. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_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>
  2191. </div>
  2192. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  2193. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2194. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=SyPQutNN76ifkdVUYcljOw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=SyPQutNN76ifkdVUYcljOw%3d%3d" target="_blank">详细信息</a>
  2195. </div>
  2196. </td>
  2197. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-EVAL-CN0370-PMDZ" data-index="17">
  2198. <td class="td-select" align="center">
  2199. <div style="padding: 5px 5px 0 5px;">
  2200. <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>
  2201. </div>
  2202. </td><td></td><td>
  2203. <div style="text-align:left;">
  2204. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/EVAL-CN0370-PMDZ/?qs=sGAEpiMZZMuD4PtVTHYOZzfWMUYh5Bt3VgHSbu2u4r5Ymz137YrWjg%3d%3d">584-EVAL-CN0370-PMDZ</a><br />
  2205. <br />
  2206. <br />
  2207. </div></td><td>
  2208. <div class="mfrDiv">
  2209. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/EVAL-CN0370-PMDZ/?qs=sGAEpiMZZMuD4PtVTHYOZzfWMUYh5Bt3VgHSbu2u4r5Ymz137YrWjg%3d%3d">EVAL-CN0370-PMDZ</a><br />
  2210. <br />
  2211. <div style="width: 100%; text-align: center;">
  2212. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2213. </div>
  2214. <div style="width: 100%; text-align: center;">
  2215. </div>
  2216. </div>
  2217. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  2218. </td><td>LED 照明开发工具 CN0368 Evaluation Board
  2219. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2220. </div>
  2221. </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;Analog Devices&quot;,&quot;584-EVAL-CN0370-PMDZ | EVAL-CN0370-PMDZ&quot;]);" href="http://www.mouser.com/ds/2/609/CN0370-785110.pdf" target="_blank">数据表</a>
  2222. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">4<br/>有库存</span>
  2223. <table>
  2224. <tr align="center">
  2225. <td style="padding-top: 5px">
  2226. </td>
  2227. </tr>
  2228. <tr align="center">
  2229. <td style="padding-top: 5px; padding-bottom: 5px">
  2230. </td>
  2231. </tr>
  2232. </table></td><td>
  2233. <table class="PriceBreaks" cellspacing="0" border="0">
  2234. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2235. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2236. </td>
  2237. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2238. </td>
  2239. </tr>
  2240. <tr>
  2241. <td class="PriceBreakQuantity">
  2242. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  2243. </td>
  2244. <td class="PriceBreakPrice">
  2245. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥259.9038</span>
  2246. </td>
  2247. </tr>
  2248. <tr>
  2249. <td><br /></td>
  2250. </tr>
  2251. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  2252. <td colspan="2" style="text-align: center;">
  2253. </td>
  2254. </tr>
  2255. </table>
  2256. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_btnBuy&#39;)">
  2257. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(15,this.value);" /><br />
  2258. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 15);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_btnBuy" title="购买 EVAL-CN0370-PMDZ" class="buy-button" /><br />
  2259. <table cellspacing="0" border="0" style="width: 100%;">
  2260. <tr>
  2261. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2262. 最低:
  2263. </td>
  2264. <td style="padding-left: 2px; text-align: left;">
  2265. 1
  2266. </td>
  2267. </tr>
  2268. <tr>
  2269. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2270. 多个:
  2271. </td>
  2272. <td style="padding-left: 2px; text-align: left;">
  2273. 1
  2274. </td>
  2275. </tr>
  2276. </table>
  2277. </div>
  2278. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  2279. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2280. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=N7PCT3NbuLnSSdLb1tlguw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=N7PCT3NbuLnSSdLb1tlguw%3d%3d" target="_blank">详细信息</a>
  2281. </div>
  2282. </td>
  2283. </tr><tr class="SearchResultsRowEven" data-partnumber="511-STEVAL-ILL073V1" data-index="18">
  2284. <td class="td-select" align="center">
  2285. <div style="padding: 5px 5px 0 5px;">
  2286. <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>
  2287. </div>
  2288. </td><td><a href='/ProductDetail/STMicroelectronics/STEVAL-ILL073V1/?qs=sGAEpiMZZMuD4PtVTHYOZ0t7VOx%252bzB0nFQYSpiAKbN%2fE7EZ%2fL0x%252b%2fw%3d%3d'><img title='STMicroelectronics STEVAL-ILL073V1' alt='STMicroelectronics STEVAL-ILL073V1' id=1684644514 src='/images/stmicroelectronics/sm/STEVAL-ILL073V1_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/stmicroelectronics/images/STEVAL-ILL073V1_DSL.JPG</div></a></td><td>
  2289. <div style="text-align:left;">
  2290. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL073V1/?qs=sGAEpiMZZMuD4PtVTHYOZ0t7VOx%252bzB0nFQYSpiAKbN%2fE7EZ%2fL0x%252b%2fw%3d%3d">511-STEVAL-ILL073V1</a><br />
  2291. <br />
  2292. <br />
  2293. </div></td><td>
  2294. <div class="mfrDiv">
  2295. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL073V1/?qs=sGAEpiMZZMuD4PtVTHYOZ0t7VOx%252bzB0nFQYSpiAKbN%2fE7EZ%2fL0x%252b%2fw%3d%3d">STEVAL-ILL073V1</a><br />
  2296. <br />
  2297. <div style="width: 100%; text-align: center;">
  2298. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2299. </div>
  2300. <div style="width: 100%; text-align: center;">
  2301. </div>
  2302. </div>
  2303. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  2304. </td><td>LED 照明开发工具 RGB LED driver for automotive lighting based on ALED1642GW and STM8A
  2305. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2306. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-aled1642gw-led-driver">了解更多</a>
  2307. </div>
  2308. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2309. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2310. </div>
  2311. </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;STMicroelectronics&quot;,&quot;511-STEVAL-ILL073V1 | STEVAL-ILL073V1&quot;]);" href="http://www.mouser.com/ds/2/389/DM00261247-876397.pdf" target="_blank">数据表</a>
  2312. </td><td>
  2313. <table>
  2314. <tr align="center">
  2315. <td style="padding-top: 5px">
  2316. </td>
  2317. </tr>
  2318. <tr align="center">
  2319. <td style="padding-top: 5px; padding-bottom: 5px">
  2320. </td>
  2321. </tr>
  2322. </table></td><td>
  2323. </td><td class="SearchResultsBuyColumn">
  2324. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlRestricted">
  2325. <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>
  2326. </div>
  2327. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  2328. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2329. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=14UkvRwbmmWetChM46QPsA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=14UkvRwbmmWetChM46QPsA%3d%3d" target="_blank">详细信息</a>
  2330. </div>
  2331. </td>
  2332. </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STEVAL-ILL077V1" data-index="19">
  2333. <td class="td-select" align="center">
  2334. <div style="padding: 5px 5px 0 5px;">
  2335. <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>
  2336. </div>
  2337. </td><td><a href='/ProductDetail/STMicroelectronics/STEVAL-ILL077V1/?qs=sGAEpiMZZMuD4PtVTHYOZ0t7VOx%252bzB0nxMTvMtM5QREKyv87OD3zjg%3d%3d'><img title='STMicroelectronics STEVAL-ILL077V1' alt='STMicroelectronics STEVAL-ILL077V1' id=1680836090 src='/images/stmicroelectronics/sm/STEVAL-ILL077V1_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/stmicroelectronics/images/STEVAL-ILL077V1_DSL.JPG</div></a></td><td>
  2338. <div style="text-align:left;">
  2339. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL077V1/?qs=sGAEpiMZZMuD4PtVTHYOZ0t7VOx%252bzB0nxMTvMtM5QREKyv87OD3zjg%3d%3d">511-STEVAL-ILL077V1</a><br />
  2340. <br />
  2341. <br />
  2342. </div></td><td>
  2343. <div class="mfrDiv">
  2344. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL077V1/?qs=sGAEpiMZZMuD4PtVTHYOZ0t7VOx%252bzB0nxMTvMtM5QREKyv87OD3zjg%3d%3d">STEVAL-ILL077V1</a><br />
  2345. <br />
  2346. <div style="width: 100%; text-align: center;">
  2347. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2348. </div>
  2349. <div style="width: 100%; text-align: center;">
  2350. </div>
  2351. </div>
  2352. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  2353. </td><td>LED 照明开发工具 60 W, digital 3-LED channel evaluation board with STNRG388A-controlled current regulation and dimming
  2354. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2355. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="http://mouser.com/stm-evlstrng-boards">了解更多</a>
  2356. </div>
  2357. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2358. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2359. </div>
  2360. </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;STMicroelectronics&quot;,&quot;511-STEVAL-ILL077V1 | STEVAL-ILL077V1&quot;]);" href="http://www.mouser.com/ds/2/389/DM00264771-890271.pdf" target="_blank">数据表</a>
  2361. </td><td>
  2362. <table>
  2363. <tr align="center">
  2364. <td style="padding-top: 5px">
  2365. </td>
  2366. </tr>
  2367. <tr align="center">
  2368. <td style="padding-top: 5px; padding-bottom: 5px">
  2369. </td>
  2370. </tr>
  2371. </table></td><td>
  2372. </td><td class="SearchResultsBuyColumn">
  2373. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlRestricted">
  2374. <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>
  2375. </div>
  2376. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  2377. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2378. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=SyPQutNN76j1oGdKciyMag%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=SyPQutNN76j1oGdKciyMag%3d%3d" target="_blank">详细信息</a>
  2379. </div>
  2380. </td>
  2381. </tr><tr class="SearchResultsRowEven" data-partnumber="595-DLPLCR4500EVM" data-index="20">
  2382. <td class="td-select" align="center">
  2383. <div style="padding: 5px 5px 0 5px;">
  2384. <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>
  2385. </div>
  2386. </td><td><a href='/ProductDetail/Texas-Instruments/DLPLCR4500EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fhQWZ39YWM%252bCEjTnmvzLeM%3d'><img title='Texas Instruments DLPLCR4500EVM' alt='Texas Instruments DLPLCR4500EVM' id=977906708 src='/images/texasinstruments/sm/DLPLCR4500EVM.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/texasinstruments/images/DLPLCR4500EVM.jpg</div></a></td><td>
  2387. <div style="text-align:left;">
  2388. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/DLPLCR4500EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fhQWZ39YWM%252bCEjTnmvzLeM%3d">595-DLPLCR4500EVM</a><br />
  2389. <br />
  2390. <br />
  2391. </div></td><td>
  2392. <div class="mfrDiv">
  2393. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DLPLCR4500EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fhQWZ39YWM%252bCEjTnmvzLeM%3d">DLPLCR4500EVM</a><br />
  2394. <br />
  2395. <div style="width: 100%; text-align: center;">
  2396. </div>
  2397. <div style="width: 100%; text-align: center;">
  2398. </div>
  2399. </div>
  2400. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2401. </td><td>显示开发工具 DLP Lightcrafter 4500
  2402. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2403. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/texasinstruments/ti-dlp4500-micromirror-device/">了解更多</a>
  2404. </div>
  2405. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2406. </div>
  2407. </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;Texas Instruments&quot;,&quot;595-DLPLCR4500EVM | DLPLCR4500EVM&quot;]);" href="http://www.mouser.com/ds/2/405/dlpu011e-847518.pdf" target="_blank">数据表</a>
  2408. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">38<br/>有库存</span>
  2409. <table>
  2410. <tr align="center">
  2411. <td style="padding-top: 5px">
  2412. </td>
  2413. </tr>
  2414. <tr align="center">
  2415. <td style="padding-top: 5px; padding-bottom: 5px">
  2416. </td>
  2417. </tr>
  2418. </table></td><td>
  2419. <table class="PriceBreaks" cellspacing="0" border="0">
  2420. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2421. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2422. </td>
  2423. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2424. </td>
  2425. </tr>
  2426. <tr>
  2427. <td class="PriceBreakQuantity">
  2428. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  2429. </td>
  2430. <td class="PriceBreakPrice">
  2431. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥10,003.5234</span>
  2432. </td>
  2433. </tr>
  2434. <tr>
  2435. <td><br /></td>
  2436. </tr>
  2437. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  2438. <td colspan="2" style="text-align: center;">
  2439. </td>
  2440. </tr>
  2441. </table>
  2442. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_btnBuy&#39;)">
  2443. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(18,this.value);" /><br />
  2444. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 18);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_btnBuy" title="购买 DLPLCR4500EVM" class="buy-button" /><br />
  2445. <table cellspacing="0" border="0" style="width: 100%;">
  2446. <tr>
  2447. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2448. 最低:
  2449. </td>
  2450. <td style="padding-left: 2px; text-align: left;">
  2451. 1
  2452. </td>
  2453. </tr>
  2454. <tr>
  2455. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2456. 多个:
  2457. </td>
  2458. <td style="padding-left: 2px; text-align: left;">
  2459. 1
  2460. </td>
  2461. </tr>
  2462. </table>
  2463. </div>
  2464. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  2465. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2466. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=ZIA%252beERyzzklMZDJ175uVQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=ZIA%252beERyzzklMZDJ175uVQ%3d%3d" target="_blank">详细信息</a>
  2467. </div>
  2468. </td>
  2469. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-DLPLCR6500EVM" data-index="21">
  2470. <td class="td-select" align="center">
  2471. <div style="padding: 5px 5px 0 5px;">
  2472. <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>
  2473. </div>
  2474. </td><td><a href='/ProductDetail/Texas-Instruments/DLPLCR6500EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fLeh%2fN4NwhtmLL4X8abF16F04He64WIEQ%3d%3d'><img title='Texas Instruments DLPLCR6500EVM' alt='Texas Instruments DLPLCR6500EVM' id=1365464363 src='/images/texasinstruments/sm/DLP_Lightcrafter_6500_EVM_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/texasinstruments/images/DLP_Lightcrafter_6500_EVM_SPL.jpg</div></a></td><td>
  2475. <div style="text-align:left;">
  2476. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/DLPLCR6500EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fLeh%2fN4NwhtmLL4X8abF16F04He64WIEQ%3d%3d">595-DLPLCR6500EVM</a><br />
  2477. <br />
  2478. <br />
  2479. </div></td><td>
  2480. <div class="mfrDiv">
  2481. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DLPLCR6500EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fLeh%2fN4NwhtmLL4X8abF16F04He64WIEQ%3d%3d">DLPLCR6500EVM</a><br />
  2482. <br />
  2483. <div style="width: 100%; text-align: center;">
  2484. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2485. </div>
  2486. <div style="width: 100%; text-align: center;">
  2487. </div>
  2488. </div>
  2489. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2490. </td><td>显示开发工具 DLP LightCrafter6500 Evaluation Module
  2491. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2492. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-dlp6500-dmd/">了解更多</a>
  2493. </div>
  2494. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2495. </div>
  2496. </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;Texas Instruments&quot;,&quot;595-DLPLCR6500EVM | DLPLCR6500EVM&quot;]);" href="http://www.mouser.com/ds/2/405/dlpu028b-769845.pdf" target="_blank">数据表</a>
  2497. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">8<br/>有库存</span>
  2498. <table>
  2499. <tr align="center">
  2500. <td style="padding-top: 5px">
  2501. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Texas-Instruments/DLPLCR6500EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fLeh%2fN4NwhtmLL4X8abF16F04He64WIEQ%3d%3d">更多信息可用 </a>
  2502. </td>
  2503. </tr>
  2504. <tr align="center">
  2505. <td style="padding-top: 5px; padding-bottom: 5px">
  2506. </td>
  2507. </tr>
  2508. </table></td><td>
  2509. <table class="PriceBreaks" cellspacing="0" border="0">
  2510. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2511. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2512. </td>
  2513. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2514. </td>
  2515. </tr>
  2516. <tr>
  2517. <td class="PriceBreakQuantity">
  2518. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  2519. </td>
  2520. <td class="PriceBreakPrice">
  2521. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥15,394.1814</span>
  2522. </td>
  2523. </tr>
  2524. <tr>
  2525. <td><br /></td>
  2526. </tr>
  2527. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  2528. <td colspan="2" style="text-align: center;">
  2529. </td>
  2530. </tr>
  2531. </table>
  2532. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_btnBuy&#39;)">
  2533. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(19,this.value);" /><br />
  2534. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 19);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_btnBuy" title="购买 DLPLCR6500EVM" class="buy-button" /><br />
  2535. <table cellspacing="0" border="0" style="width: 100%;">
  2536. <tr>
  2537. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2538. 最低:
  2539. </td>
  2540. <td style="padding-left: 2px; text-align: left;">
  2541. 1
  2542. </td>
  2543. </tr>
  2544. <tr>
  2545. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2546. 多个:
  2547. </td>
  2548. <td style="padding-left: 2px; text-align: left;">
  2549. 1
  2550. </td>
  2551. </tr>
  2552. </table>
  2553. </div>
  2554. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  2555. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2556. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fG79GK02NaBwUX9FSYBgeA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=%2fG79GK02NaBwUX9FSYBgeA%3d%3d" target="_blank">详细信息</a>
  2557. </div>
  2558. </td>
  2559. </tr><tr class="SearchResultsRowEven" data-partnumber="595-DLPNIRNANOEVM" data-index="22">
  2560. <td class="td-select" align="center">
  2561. <div style="padding: 5px 5px 0 5px;">
  2562. <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>
  2563. </div>
  2564. </td><td><a href='/ProductDetail/Texas-Instruments/DLPNIRNANOEVM/?qs=sGAEpiMZZMuD4PtVTHYOZy06fIRZL%2fnTxrukBoN6ndqmkEXR3MSlTg%3d%3d'><img title='Texas Instruments DLPNIRNANOEVM' alt='Texas Instruments DLPNIRNANOEVM' id=1508853051 src='/images/texasinstruments/sm/dlpnirnanoevm_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/texasinstruments/images/dlpnirnanoevm_SPL.jpg</div></a></td><td>
  2565. <div style="text-align:left;">
  2566. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/DLPNIRNANOEVM/?qs=sGAEpiMZZMuD4PtVTHYOZy06fIRZL%2fnTxrukBoN6ndqmkEXR3MSlTg%3d%3d">595-DLPNIRNANOEVM</a><br />
  2567. <br />
  2568. <br />
  2569. </div></td><td>
  2570. <div class="mfrDiv">
  2571. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DLPNIRNANOEVM/?qs=sGAEpiMZZMuD4PtVTHYOZy06fIRZL%2fnTxrukBoN6ndqmkEXR3MSlTg%3d%3d">DLPNIRNANOEVM</a><br />
  2572. <br />
  2573. <div style="width: 100%; text-align: center;">
  2574. <span><img src="/images/icon-lc-new-at-mouser-sm.png" alt="Mouser 的新产品" /><br/>Mouser 的新产品</span><br/><br/>
  2575. </div>
  2576. <div style="width: 100%; text-align: center;">
  2577. </div>
  2578. </div>
  2579. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2580. </td><td>显示开发工具 DLP LightCrafter
  2581. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2582. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-cc2564modn-module/">了解更多</a>
  2583. </div>
  2584. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2585. </div>
  2586. </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;Texas Instruments&quot;,&quot;595-DLPNIRNANOEVM | DLPNIRNANOEVM&quot;]);" href="http://www.mouser.com/ds/2/405/dlpu030d-847396.pdf" target="_blank">数据表</a>
  2587. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">14<br/>有库存</span>
  2588. <table>
  2589. <tr align="center">
  2590. <td style="padding-top: 5px">
  2591. </td>
  2592. </tr>
  2593. <tr align="center">
  2594. <td style="padding-top: 5px; padding-bottom: 5px">
  2595. </td>
  2596. </tr>
  2597. </table></td><td>
  2598. <table class="PriceBreaks" cellspacing="0" border="0">
  2599. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2600. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2601. </td>
  2602. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2603. </td>
  2604. </tr>
  2605. <tr>
  2606. <td class="PriceBreakQuantity">
  2607. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  2608. </td>
  2609. <td class="PriceBreakPrice">
  2610. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥7,693.2414</span>
  2611. </td>
  2612. </tr>
  2613. <tr>
  2614. <td><br /></td>
  2615. </tr>
  2616. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  2617. <td colspan="2" style="text-align: center;">
  2618. </td>
  2619. </tr>
  2620. </table>
  2621. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy&#39;)">
  2622. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(20,this.value);" /><br />
  2623. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 20);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy" title="购买 DLPNIRNANOEVM" class="buy-button" /><br />
  2624. <table cellspacing="0" border="0" style="width: 100%;">
  2625. <tr>
  2626. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2627. 最低:
  2628. </td>
  2629. <td style="padding-left: 2px; text-align: left;">
  2630. 1
  2631. </td>
  2632. </tr>
  2633. <tr>
  2634. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2635. 多个:
  2636. </td>
  2637. <td style="padding-left: 2px; text-align: left;">
  2638. 1
  2639. </td>
  2640. </tr>
  2641. </table>
  2642. </div>
  2643. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  2644. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2645. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1j77i4KFushEIELwM9V5bg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1j77i4KFushEIELwM9V5bg%3d%3d" target="_blank">详细信息</a>
  2646. </div>
  2647. </td>
  2648. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-DLPLCR9000EVM" data-index="23">
  2649. <td class="td-select" align="center">
  2650. <div style="padding: 5px 5px 0 5px;">
  2651. <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>
  2652. </div>
  2653. </td><td><a href='/ProductDetail/Texas-Instruments/DLPLCR9000EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fLeh%2fN4NwhtfPWVdN63%252bB2L1BYAe1sSkA%3d%3d'><img title='Texas Instruments DLPLCR9000EVM' alt='Texas Instruments DLPLCR9000EVM' id=1365464187 src='/images/texasinstruments/sm/dlplcr9000evm_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/texasinstruments/images/dlplcr9000evm_SPL.jpg</div></a></td><td>
  2654. <div style="text-align:left;">
  2655. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/DLPLCR9000EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fLeh%2fN4NwhtfPWVdN63%252bB2L1BYAe1sSkA%3d%3d">595-DLPLCR9000EVM</a><br />
  2656. <br />
  2657. <br />
  2658. </div></td><td>
  2659. <div class="mfrDiv">
  2660. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DLPLCR9000EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fLeh%2fN4NwhtfPWVdN63%252bB2L1BYAe1sSkA%3d%3d">DLPLCR9000EVM</a><br />
  2661. <br />
  2662. <div style="width: 100%; text-align: center;">
  2663. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2664. </div>
  2665. <div style="width: 100%; text-align: center;">
  2666. </div>
  2667. </div>
  2668. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2669. </td><td>显示开发工具 DLP LightCrafter9000 Evaluation Module
  2670. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2671. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-dlp9000-dmd/">了解更多</a>
  2672. </div>
  2673. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2674. </div>
  2675. </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;Texas Instruments&quot;,&quot;595-DLPLCR9000EVM | DLPLCR9000EVM&quot;]);" href="http://www.mouser.com/ds/2/405/dlpu028b-769845.pdf" target="_blank">数据表</a>
  2676. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">5<br/>有库存</span>
  2677. <table>
  2678. <tr align="center">
  2679. <td style="padding-top: 5px">
  2680. </td>
  2681. </tr>
  2682. <tr align="center">
  2683. <td style="padding-top: 5px; padding-bottom: 5px">
  2684. </td>
  2685. </tr>
  2686. </table></td><td>
  2687. <table class="PriceBreaks" cellspacing="0" border="0">
  2688. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2689. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2690. </td>
  2691. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2692. </td>
  2693. </tr>
  2694. <tr>
  2695. <td class="PriceBreakQuantity">
  2696. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  2697. </td>
  2698. <td class="PriceBreakPrice">
  2699. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥44,272.7064</span>
  2700. </td>
  2701. </tr>
  2702. <tr>
  2703. <td><br /></td>
  2704. </tr>
  2705. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  2706. <td colspan="2" style="text-align: center;">
  2707. </td>
  2708. </tr>
  2709. </table>
  2710. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy&#39;)">
  2711. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(21,this.value);" /><br />
  2712. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 21);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy" title="购买 DLPLCR9000EVM" class="buy-button" /><br />
  2713. <table cellspacing="0" border="0" style="width: 100%;">
  2714. <tr>
  2715. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2716. 最低:
  2717. </td>
  2718. <td style="padding-left: 2px; text-align: left;">
  2719. 1
  2720. </td>
  2721. </tr>
  2722. <tr>
  2723. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2724. 多个:
  2725. </td>
  2726. <td style="padding-left: 2px; text-align: left;">
  2727. 1
  2728. </td>
  2729. </tr>
  2730. </table>
  2731. </div>
  2732. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  2733. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2734. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fG79GK02NaCS7n6%2fj3DWkw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=%2fG79GK02NaCS7n6%2fj3DWkw%3d%3d" target="_blank">详细信息</a>
  2735. </div>
  2736. </td>
  2737. </tr><tr class="SearchResultsRowEven" data-partnumber="508-FDB-1043" data-index="24">
  2738. <td class="td-select" align="center">
  2739. <div style="padding: 5px 5px 0 5px;">
  2740. <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>
  2741. </div>
  2742. </td><td><a href='/ProductDetail/Finisar/FDB-1043/?qs=sGAEpiMZZMuD4PtVTHYOZ%252bBo22Pv2eUGC5fXC3r7iDk%3d'><img title='Finisar FDB-1043' alt='Finisar FDB-1043' id=948668677 src='/images/finisar/sm/fdb1043evalboard.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/finisar/images/fdb1043evalboard.jpg</div></a></td><td>
  2743. <div style="text-align:left;">
  2744. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Finisar/FDB-1043/?qs=sGAEpiMZZMuD4PtVTHYOZ%252bBo22Pv2eUGC5fXC3r7iDk%3d">508-FDB-1043</a><br />
  2745. <br />
  2746. <br />
  2747. </div></td><td>
  2748. <div class="mfrDiv">
  2749. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Finisar/FDB-1043/?qs=sGAEpiMZZMuD4PtVTHYOZ%252bBo22Pv2eUGC5fXC3r7iDk%3d">FDB-1043</a><br />
  2750. <br />
  2751. <div style="width: 100%; text-align: center;">
  2752. </div>
  2753. <div style="width: 100%; text-align: center;">
  2754. </div>
  2755. </div>
  2756. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../Finisar-Corporation">Finisar</a>
  2757. </td><td>光学纤维开发工具 Breakout Eval Brd C.wr/CXP 1-12.5Gbps
  2758. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2759. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../finisar-ftld10ce1c-optical-transceiver">了解更多</a>
  2760. </div>
  2761. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2762. </div>
  2763. </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;Finisar&quot;,&quot;508-FDB-1043 | FDB-1043&quot;]);" href="http://www.mouser.com/ds/2/610/FDB_1043_REVB-267373.pdf" target="_blank">数据表</a>
  2764. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">9<br/>有库存</span>
  2765. <table>
  2766. <tr align="center">
  2767. <td style="padding-top: 5px">
  2768. </td>
  2769. </tr>
  2770. <tr align="center">
  2771. <td style="padding-top: 5px; padding-bottom: 5px">
  2772. </td>
  2773. </tr>
  2774. </table></td><td>
  2775. <table class="PriceBreaks" cellspacing="0" border="0">
  2776. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2777. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2778. </td>
  2779. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2780. </td>
  2781. </tr>
  2782. <tr>
  2783. <td class="PriceBreakQuantity">
  2784. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  2785. </td>
  2786. <td class="PriceBreakPrice">
  2787. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥19,252.35</span>
  2788. </td>
  2789. </tr>
  2790. <tr>
  2791. <td><br /></td>
  2792. </tr>
  2793. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  2794. <td colspan="2" style="text-align: center;">
  2795. </td>
  2796. </tr>
  2797. </table>
  2798. </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;)">
  2799. <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 />
  2800. <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="购买 FDB-1043" class="buy-button" /><br />
  2801. <table cellspacing="0" border="0" style="width: 100%;">
  2802. <tr>
  2803. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2804. 最低:
  2805. </td>
  2806. <td style="padding-left: 2px; text-align: left;">
  2807. 1
  2808. </td>
  2809. </tr>
  2810. <tr>
  2811. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2812. 多个:
  2813. </td>
  2814. <td style="padding-left: 2px; text-align: left;">
  2815. 1
  2816. </td>
  2817. </tr>
  2818. </table>
  2819. </div>
  2820. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  2821. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2822. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=NXCwVa6lVMwEUt8WYy3QYQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=NXCwVa6lVMwEUt8WYy3QYQ%3d%3d" target="_blank">详细信息</a>
  2823. </div>
  2824. </td>
  2825. </tr><tr class="SearchResultsRowOdd" data-partnumber="971-SK-70DT" data-index="25">
  2826. <td class="td-select" align="center">
  2827. <div style="padding: 5px 5px 0 5px;">
  2828. <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>
  2829. </div>
  2830. </td><td><a href='/ProductDetail/4D-Systems/SK-70DT/?qs=sGAEpiMZZMuD4PtVTHYOZyGhJYg%252bDUoWh4szE2vRV5424XXFdtgPgA%3d%3d'><img title='4D Systems SK-70DT' alt='4D Systems SK-70DT' id=1024862940 src='/images/4dsystems/sm/SK-70DT.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/4dsystems/images/SK-70DT.jpg</div></a></td><td>
  2831. <div style="text-align:left;">
  2832. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/4D-Systems/SK-70DT/?qs=sGAEpiMZZMuD4PtVTHYOZyGhJYg%252bDUoWh4szE2vRV5424XXFdtgPgA%3d%3d">971-SK-70DT</a><br />
  2833. <br />
  2834. <br />
  2835. </div></td><td>
  2836. <div class="mfrDiv">
  2837. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/4D-Systems/SK-70DT/?qs=sGAEpiMZZMuD4PtVTHYOZyGhJYg%252bDUoWh4szE2vRV5424XXFdtgPgA%3d%3d">SK-70DT</a><br />
  2838. <br />
  2839. <div style="width: 100%; text-align: center;">
  2840. </div>
  2841. <div style="width: 100%; text-align: center;">
  2842. </div>
  2843. </div>
  2844. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../4d-systems">4D Systems</a>
  2845. </td><td>显示开发工具 7" TFT LCD Touch starter kit
  2846. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2847. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../4dsystems-70dt-displays">了解更多</a>
  2848. </div>
  2849. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2850. </div>
  2851. </td><td>
  2852. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">52<br/>有库存</span>
  2853. <table>
  2854. <tr align="center">
  2855. <td style="padding-top: 5px">
  2856. </td>
  2857. </tr>
  2858. <tr align="center">
  2859. <td style="padding-top: 5px; padding-bottom: 5px">
  2860. </td>
  2861. </tr>
  2862. </table></td><td>
  2863. <table class="PriceBreaks" cellspacing="0" border="0">
  2864. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2865. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2866. </td>
  2867. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2868. </td>
  2869. </tr>
  2870. <tr>
  2871. <td class="PriceBreakQuantity">
  2872. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  2873. </td>
  2874. <td class="PriceBreakPrice">
  2875. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,532.4894</span>
  2876. </td>
  2877. </tr>
  2878. <tr>
  2879. <td class="PriceBreakQuantity">
  2880. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,5);">5:</a>
  2881. </td>
  2882. <td class="PriceBreakPrice">
  2883. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1,455.8661</span>
  2884. </td>
  2885. </tr>
  2886. <tr>
  2887. <td class="PriceBreakQuantity">
  2888. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  2889. </td>
  2890. <td class="PriceBreakPrice">
  2891. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,348.5888</span>
  2892. </td>
  2893. </tr>
  2894. <tr>
  2895. <td class="PriceBreakQuantity">
  2896. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,50);">50:</a>
  2897. </td>
  2898. <td class="PriceBreakPrice">
  2899. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1,254.1698</span>
  2900. </td>
  2901. </tr>
  2902. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2903. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2904. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
  2905. </td>
  2906. <td class="PriceBreakPrice">
  2907. <a onclick="javascript:window.location=&quot;../../../../../Quote/quote.aspx?mouserpartnumber=971-SK-70DT&amp;quantity=100&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;4D Systems&quot;,&quot;971-SK-70DT&quot;,1]);return false;" href="../../../../../Quote/quote.aspx">报价</a>
  2908. </td>
  2909. </tr>
  2910. <tr>
  2911. <td><br /></td>
  2912. </tr>
  2913. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2914. <td colspan="2" style="text-align: center;">
  2915. </td>
  2916. </tr>
  2917. </table>
  2918. </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;)">
  2919. <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 />
  2920. <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="购买 SK-70DT" class="buy-button" /><br />
  2921. <table cellspacing="0" border="0" style="width: 100%;">
  2922. <tr>
  2923. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2924. 最低:
  2925. </td>
  2926. <td style="padding-left: 2px; text-align: left;">
  2927. 1
  2928. </td>
  2929. </tr>
  2930. <tr>
  2931. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2932. 多个:
  2933. </td>
  2934. <td style="padding-left: 2px; text-align: left;">
  2935. 1
  2936. </td>
  2937. </tr>
  2938. </table>
  2939. </div>
  2940. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  2941. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2942. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tFJ62fOoMlWutPAE6yxQpA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tFJ62fOoMlWutPAE6yxQpA%3d%3d" target="_blank">详细信息</a>
  2943. </div>
  2944. </td>
  2945. </tr><tr class="SearchResultsRowEven" data-partnumber="595-BBEXPDTC70" data-index="26">
  2946. <td class="td-select" align="center">
  2947. <div style="padding: 5px 5px 0 5px;">
  2948. <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>
  2949. </div>
  2950. </td><td><a href='/ProductDetail/SVTronics/BBEXPDTC70/?qs=sGAEpiMZZMuD4PtVTHYOZ7sCME%252bPtiZKGD3euSzwnelBzM6CG7ePYg%3d%3d'><img title='SVTronics BBEXPDTC70' alt='SVTronics BBEXPDTC70' id=1176573820 src='/images/svtronics/sm/595-BBEXPDTC70.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/svtronics/images/595-BBEXPDTC70.JPG</div></a></td><td>
  2951. <div style="text-align:left;">
  2952. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/SVTronics/BBEXPDTC70/?qs=sGAEpiMZZMuD4PtVTHYOZ7sCME%252bPtiZKGD3euSzwnelBzM6CG7ePYg%3d%3d">595-BBEXPDTC70</a><br />
  2953. <br />
  2954. <br />
  2955. </div></td><td>
  2956. <div class="mfrDiv">
  2957. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/SVTronics/BBEXPDTC70/?qs=sGAEpiMZZMuD4PtVTHYOZ7sCME%252bPtiZKGD3euSzwnelBzM6CG7ePYg%3d%3d">BBEXPDTC70</a><br />
  2958. <br />
  2959. <div style="width: 100%; text-align: center;">
  2960. </div>
  2961. <div style="width: 100%; text-align: center;">
  2962. </div>
  2963. </div>
  2964. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../svtronics">SVTronics</a>
  2965. </td><td>显示开发工具 7" LCD 1024X600 CAPACITIVE TOUCH
  2966. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2967. </div>
  2968. </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;SVTronics&quot;,&quot;595-BBEXPDTC70 | BBEXPDTC70&quot;]);" href="http://www.mouser.com/ds/2/668/SVTronics_595-BBEXPDTC70%20%20Data%20Sheet-341089.pdf" target="_blank">数据表</a>
  2969. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">48<br/>有库存</span>
  2970. <table>
  2971. <tr align="center">
  2972. <td style="padding-top: 5px">
  2973. </td>
  2974. </tr>
  2975. <tr align="center">
  2976. <td style="padding-top: 5px; padding-bottom: 5px">
  2977. </td>
  2978. </tr>
  2979. </table></td><td>
  2980. <table class="PriceBreaks" cellspacing="0" border="0">
  2981. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2982. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2983. </td>
  2984. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2985. </td>
  2986. </tr>
  2987. <tr>
  2988. <td class="PriceBreakQuantity">
  2989. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  2990. </td>
  2991. <td class="PriceBreakPrice">
  2992. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,077.7455</span>
  2993. </td>
  2994. </tr>
  2995. <tr>
  2996. <td><br /></td>
  2997. </tr>
  2998. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  2999. <td colspan="2" style="text-align: center;">
  3000. </td>
  3001. </tr>
  3002. </table>
  3003. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_btnBuy&#39;)">
  3004. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(24,this.value);" /><br />
  3005. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 24);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_btnBuy" title="购买 BBEXPDTC70" class="buy-button" /><br />
  3006. <table cellspacing="0" border="0" style="width: 100%;">
  3007. <tr>
  3008. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3009. 最低:
  3010. </td>
  3011. <td style="padding-left: 2px; text-align: left;">
  3012. 1
  3013. </td>
  3014. </tr>
  3015. <tr>
  3016. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3017. 多个:
  3018. </td>
  3019. <td style="padding-left: 2px; text-align: left;">
  3020. 1
  3021. </td>
  3022. </tr>
  3023. </table>
  3024. </div>
  3025. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  3026. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3027. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=zWSQZq6P0Lyijza52mOxUg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=zWSQZq6P0Lyijza52mOxUg%3d%3d" target="_blank">详细信息</a>
  3028. </div>
  3029. </td>
  3030. </tr><tr class="SearchResultsRowOdd" data-partnumber="971-SK-70DT-AR" data-index="27">
  3031. <td class="td-select" align="center">
  3032. <div style="padding: 5px 5px 0 5px;">
  3033. <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>
  3034. </div>
  3035. </td><td><a href='/ProductDetail/4D-Systems/SK-70DT-AR/?qs=sGAEpiMZZMuD4PtVTHYOZysovRnxvhCY89YJE8E3CLo%252bJtJUb5DgXw%3d%3d'><img title='4D Systems SK-70DT-AR' alt='4D Systems SK-70DT-AR' id=1216689855 src='/images/4dsystems/sm/SK-70DT-AR_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/4dsystems/images/SK-70DT-AR_SPL.jpg</div></a></td><td>
  3036. <div style="text-align:left;">
  3037. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/4D-Systems/SK-70DT-AR/?qs=sGAEpiMZZMuD4PtVTHYOZysovRnxvhCY89YJE8E3CLo%252bJtJUb5DgXw%3d%3d">971-SK-70DT-AR</a><br />
  3038. <br />
  3039. <br />
  3040. </div></td><td>
  3041. <div class="mfrDiv">
  3042. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/4D-Systems/SK-70DT-AR/?qs=sGAEpiMZZMuD4PtVTHYOZysovRnxvhCY89YJE8E3CLo%252bJtJUb5DgXw%3d%3d">SK-70DT-AR</a><br />
  3043. <br />
  3044. <div style="width: 100%; text-align: center;">
  3045. <span><img src="/images/icon-lc-new-at-mouser-sm.png" alt="Mouser 的新产品" /><br/>Mouser 的新产品</span><br/><br/>
  3046. </div>
  3047. <div style="width: 100%; text-align: center;">
  3048. </div>
  3049. </div>
  3050. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../4d-systems">4D Systems</a>
  3051. </td><td>显示开发工具 uLCD---70DT---AR w/ uSD-2GB and uUSB-PA5
  3052. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3053. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../4dsystems-70dt-displays">了解更多</a>
  3054. </div>
  3055. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3056. </div>
  3057. </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;4D Systems&quot;,&quot;971-SK-70DT-AR | SK-70DT-AR&quot;]);" href="http://www.mouser.com/ds/2/451/uLCD-70DT-AR_datasheet_R_1_1-346814.pdf" target="_blank">数据表</a>
  3058. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">44<br/>有库存</span>
  3059. <table>
  3060. <tr align="center">
  3061. <td style="padding-top: 5px">
  3062. </td>
  3063. </tr>
  3064. <tr align="center">
  3065. <td style="padding-top: 5px; padding-bottom: 5px">
  3066. </td>
  3067. </tr>
  3068. </table></td><td>
  3069. <table class="PriceBreaks" cellspacing="0" border="0">
  3070. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3071. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3072. </td>
  3073. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3074. </td>
  3075. </tr>
  3076. <tr>
  3077. <td class="PriceBreakQuantity">
  3078. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  3079. </td>
  3080. <td class="PriceBreakPrice">
  3081. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,609.4988</span>
  3082. </td>
  3083. </tr>
  3084. <tr>
  3085. <td class="PriceBreakQuantity">
  3086. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,5);">5:</a>
  3087. </td>
  3088. <td class="PriceBreakPrice">
  3089. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1,529.0262</span>
  3090. </td>
  3091. </tr>
  3092. <tr>
  3093. <td class="PriceBreakQuantity">
  3094. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  3095. </td>
  3096. <td class="PriceBreakPrice">
  3097. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,416.3552</span>
  3098. </td>
  3099. </tr>
  3100. <tr>
  3101. <td class="PriceBreakQuantity">
  3102. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,50);">50:</a>
  3103. </td>
  3104. <td class="PriceBreakPrice">
  3105. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1,317.1743</span>
  3106. </td>
  3107. </tr>
  3108. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3109. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3110. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  3111. </td>
  3112. <td class="PriceBreakPrice">
  3113. <a onclick="javascript:window.location=&quot;../../../../../Quote/quote.aspx?mouserpartnumber=971-SK-70DT-AR&amp;quantity=100&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;4D Systems&quot;,&quot;971-SK-70DT-AR&quot;,1]);return false;" href="../../../../../Quote/quote.aspx">报价</a>
  3114. </td>
  3115. </tr>
  3116. <tr>
  3117. <td><br /></td>
  3118. </tr>
  3119. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3120. <td colspan="2" style="text-align: center;">
  3121. </td>
  3122. </tr>
  3123. </table>
  3124. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy&#39;)">
  3125. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(25,this.value);" /><br />
  3126. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 25);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy" title="购买 SK-70DT-AR" class="buy-button" /><br />
  3127. <table cellspacing="0" border="0" style="width: 100%;">
  3128. <tr>
  3129. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3130. 最低:
  3131. </td>
  3132. <td style="padding-left: 2px; text-align: left;">
  3133. 1
  3134. </td>
  3135. </tr>
  3136. <tr>
  3137. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3138. 多个:
  3139. </td>
  3140. <td style="padding-left: 2px; text-align: left;">
  3141. 1
  3142. </td>
  3143. </tr>
  3144. </table>
  3145. </div>
  3146. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  3147. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3148. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=8JTJrYFRfdtxpVrKMTgKrw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=8JTJrYFRfdtxpVrKMTgKrw%3d%3d" target="_blank">详细信息</a>
  3149. </div>
  3150. </td>
  3151. </tr>
  3152. </table>
  3153. </div>
  3154. </td>
  3155. </tr>
  3156. <tr>
  3157. <td class="tdSearchResultsPagingBottom">
  3158. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  3159. <tr>
  3160. <td>
  3161. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  3162. </td>
  3163. <td>
  3164. <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" />
  3165. </td>
  3166. <td>
  3167. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  3168. </td>
  3169. <td style="padding-left: 40px;">
  3170. <div class="floatrightpager">
  3171. <span class="bold">
  3172. 页面:
  3173. </span>
  3174. <span id="ctl00_ContentMain_PagerBottom"><span id="ctl00_ContentMain_PagerBottom_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerBottom_1" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_54" class="first-last" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=1350">55</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/?No=25">下一页</a></span>
  3175. </div>
  3176. </td>
  3177. </tr>
  3178. </table>
  3179. </td>
  3180. </tr>
  3181. <tr>
  3182. <td>
  3183. <!--- Search Tips --->
  3184. </td>
  3185. </tr>
  3186. <tr>
  3187. <td>
  3188. <!-- SOP Section 2 -->
  3189. </td>
  3190. </tr>
  3191. </table>
  3192. </div>
  3193. </div><!-- #liProducts-->
  3194. <!-- Datasheets tab -->
  3195. <!-- #liDatasheets-->
  3196. <!-- Images tab -->
  3197. <!-- #liImages-->
  3198. <!-- Newest Products tab -->
  3199. <!-- #liProducts-->
  3200. </div>
  3201. <div style="visibility: hidden;">
  3202. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  3203. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  3204. <span id="SearchResultCount">1361</span>
  3205. <div id="disclaimer">
  3206. 图像仅供参考<br/>请参阅产品规格</div>
  3207. </div>
  3208. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools" />
  3209. <script type="text/javascript" src='../../../../../javascript/ProductImage.js'></script>
  3210. <script type="text/javascript" src='../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  3211. <script type="text/javascript" src='../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  3212. <!--[if gte IE 9]><!-->
  3213. <script type="text/javascript" src='../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  3214. <!--<![endif]-->
  3215. <!--[if lt IE 9]>
  3216. <script type="text/javascript" src='../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  3217. <![endif]-->
  3218. <script type="text/javascript" src='../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  3219. <script type="text/javascript">
  3220. var subdomain = 'cn2';
  3221. </script>
  3222. </div>
  3223. <div class="aspNetHidden">
  3224. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  3225. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  3226. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  3227. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  3228. </div>
  3229. <script type="text/javascript">
  3230. //<![CDATA[
  3231. var mfrIDsArray = new Array;
  3232. //]]>
  3233. </script>
  3234. <script src='../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  3235. <script type="text/javascript">
  3236. //<![CDATA[
  3237. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  3238. </script>
  3239. <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>
  3240. <script type="text/javascript">
  3241. //<![CDATA[
  3242. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  3243. <!-- Google Code for Conversion Page Remarketing List -->
  3244. <!--
  3245. var google_conversion_id = 1046090287;
  3246. var google_conversion_language = "en";
  3247. var google_conversion_format = "3";
  3248. var google_conversion_color = "666666";
  3249. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  3250. var google_conversion_value = 0;
  3251. //-->
  3252. </script>
  3253. <div class="ga-remarketing">
  3254. <script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
  3255. </script>
  3256. </div>
  3257. <noscript>
  3258. <div style="display:inline;">
  3259. <img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1046090287/?label=9WmrCMOVxQEQr6To8gM&amp;guid=ON&amp;script=0" />
  3260. </div>
  3261. </noscript>
  3262. <script type="text/javascript">
  3263. //]]>
  3264. </script>
  3265. <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>
  3266. <script type="text/javascript">
  3267. //<![CDATA[
  3268. theForm.oldSubmit = theForm.submit;
  3269. theForm.submit = WebForm_SaveScrollPositionSubmit;
  3270. theForm.oldOnSubmit = theForm.onsubmit;
  3271. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  3272. //]]>
  3273. </script>
  3274. </form>
  3275. <div id="content-container2" class="hidden">
  3276. <div id="content-fixed-width2" class="content-fixed-width">
  3277. </div>
  3278. </div>
  3279. <div id="wideFooter" class="wideFooter">
  3280. <div id="footer" class="container">
  3281. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB09|20160304.2" />
  3282. <div id="ft_table1">
  3283. <div class="row">
  3284. <div class="col-xs-12">
  3285. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  3286. <div class="floatleft padding5right">
  3287. <strong class="h3">
  3288. 快速电子邮件注册</strong>&nbsp;&nbsp;
  3289. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  3290. </div>
  3291. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  3292. 提交
  3293. </a>
  3294. </div>
  3295. <div id="ft_icons" class="ft_icons">
  3296. <div id="ft_social">
  3297. <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>
  3298. <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>
  3299. <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>
  3300. <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">
  3301. <div class="ico-social fb"></div>
  3302. </a>
  3303. <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">
  3304. <div class="ico-social tw"></div>
  3305. </a>
  3306. <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">
  3307. <div class="ico-social rss"></div>
  3308. </a>
  3309. <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">
  3310. <div class="ico-social yt"></div>
  3311. </a>
  3312. <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">
  3313. <div class="ico-social gp"></div>
  3314. </a>
  3315. <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">
  3316. <div class="ico-social ln"></div>
  3317. </a>
  3318. <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">
  3319. <div class="ico-social sb"></div>
  3320. </a>
  3321. <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">
  3322. <div class="ico-social blog"></div>
  3323. </a>
  3324. </div>
  3325. </div>
  3326. </div>
  3327. </div>
  3328. </div>
  3329. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  3330. <div class="ft_wrapper">
  3331. <div id="ft_links" class="row">
  3332. <div class="col-xs-3 paddingBtm10 hidden-xs">
  3333. <strong class="paddingTopBtm10 inline-block">
  3334. 公司</strong>
  3335. <ul>
  3336. <li>
  3337. <a id="ctl00_Footer1_lnk26" href="../../../../../aboutus/">关于我们</a></li>
  3338. <li>
  3339. <a id="ctl00_Footer1_lnk28" href="../../../../../educationalsales/">教育销售</a></li>
  3340. <li>
  3341. <a id="ctl00_Footer1_lnk31" href="../../../../../pressroom/">新闻中心</a></li>
  3342. <li>
  3343. <a id="ctl00_Footer1_lnk32" href="../../../../../careers/">Mouser 工作机会</a></li>
  3344. <li>
  3345. <a id="ctl00_Footer1_lnk29" href="../../../../../quality/">品质保证</a></li>
  3346. <li>
  3347. <a id="ctl00_Footer1_lnk30" href="../../../../../environmental/">环境保护</a></li>
  3348. </ul>
  3349. </div>
  3350. <div class="col-xs-3 hidden-xs">
  3351. <strong class="paddingTopBtm10 inline-block">
  3352. 快速链接</strong>
  3353. <ul>
  3354. <li><a id="A7" href="/blog">
  3355. Mouser博客</a></li>
  3356. <li>
  3357. <a id="ctl00_Footer1_hlnk1" href="../../../../../new/">最新产品</a></li>
  3358. <li>
  3359. <a id="ctl00_Footer1_hlnk2" href="../../../../../new/products/">新产品</a></li>
  3360. <li>
  3361. <a id="ctl00_Footer1_hlnk3" href="../../../../../applications/">新技术</a></li>
  3362. </ul>
  3363. </div>
  3364. <div class="col-xs-12 col-sm-3">
  3365. <strong class="paddingTopBtm10 inline-block">
  3366. 支持</strong>
  3367. <ul>
  3368. <li><a id="A3" href="/feedback.aspx">
  3369. 反馈</a></li>
  3370. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  3371. 帮助</a></li>
  3372. <li>
  3373. <a id="ctl00_Footer1_lnk27" href="../../../../../contact/">联系我们</a></li>
  3374. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  3375. 浏览器支持</a></li>
  3376. <li><a id="A6" href="/cookie-policy/">
  3377. Cookie政策</a></li>
  3378. </ul>
  3379. </div>
  3380. <div class="col-xs-12 col-sm-3">
  3381. <strong class="paddingTopBtm10 inline-block">
  3382. 昴氏(上海)电子贸易有限公司</strong>
  3383. <ul>
  3384. <li>
  3385. <h4>
  3386. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  3387. </li>
  3388. </ul>
  3389. </div>
  3390. </div>
  3391. </div>
  3392. </div>
  3393. <div class="row">
  3394. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  3395. <div id="ft_copy">
  3396. <span class="ft_terms">
  3397. <a id="A1" href="/privacypolicy/">
  3398. 隐私政策</a>
  3399. &nbsp;&nbsp;|&nbsp;&nbsp;
  3400. <a id="href3" href="/saleterms/">
  3401. 销售条款</a>
  3402. <br />
  3403. </span>
  3404. <span class="ft_copyright">
  3405. 版权所有©2016 Mouser Electronics, Inc
  3406. |
  3407. 沪ICP备15042575号-1
  3408. <br />
  3409. </span>
  3410. <span class="ft_trade">
  3411. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  3412. </span>
  3413. <span class="ft_hq">
  3414. Corporate headquarters and logistics center in Mansfield, Texas USA.
  3415. </span>
  3416. <br />
  3417. <span class="ft_ClassicMobile">
  3418. <strong>
  3419. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  3420. </span>
  3421. </div>
  3422. </div>
  3423. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  3424. <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>
  3425. <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>
  3426. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  3427. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  3428. </a>
  3429. <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>
  3430. <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;
  3431. </a>
  3432. </div>
  3433. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  3434. <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>
  3435. <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>
  3436. <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>
  3437. <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>
  3438. </div>
  3439. </div>
  3440. <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>
  3441. <script type="text/javascript">
  3442. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  3443. </script>
  3444. </div>
  3445. </div>
  3446. <script src="../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  3447. <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>
  3448. </body>
  3449. </html>