| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head id="ctl00_header">
- <!-- AppInternalsXpert BMX Integration Begin -->
- <script>
- if(!OPNET_ARXS){
- var OPNET_ARXS={startJS:Number(new Date()),
- clientId:'7496BECC1B8E33C4',appId:100040,
- collector:'perf.mouser.com',
- collectorHttpPort:80, collectorHttpsPort:443,
- sv:'0302',
- tag1:'', tag2:'', tag3:''};
- (function(){
- var w=window,l=w.addEventListener,m=w.attachEvent,
- d=document,s='script',t='load',o=OPNET_ARXS,
- z='-0b2c4d73f58414c86c7384150be8ca44',
- r=(('https:'===d.location.protocol)?
- 'https://953c27ce3b34cfb8cc56'+z+'.ssl':
- 'http://fb3f316d487bcc59f7ec'+z+'.r88')+
- '.cf1.rackcdn.com/opnet_browsermetrix.c.'+
- (o.ajax?'ajax.js':'js'),p=('onpagehide' in w),e=p?'pageshow':t,
- j=d.createElement(s),x=d.getElementsByTagName(s)[0],
- h=function(y){o.ldJS=new Date();o.per=y?y.persisted:null;},
- i=function(){o.ld=1;};o.cookie=d.cookie;d.cookie=
- '_op_aixPageId=0; path=/; expires='+(new Date(0)).toGMTString();
- o.cookieAfterDelete=d.cookie;j.async=1;j.src=r;
- if(l){l(e,h,false);if(p){l(t,i,false);}}else if(m)
- {m('on'+e,h);if(p){m('on'+t,i);}}
- if(o.sync){d.write('<'+s+' src=\''+r+'\'></'+s+'>');}
- else{x.parentNode.insertBefore(j,x);}
- })();}
- </script>
- <script>if(!OPNET_ARXS_PARAM){var OPNET_ARXS_PARAM={};} OPNET_ARXS_PARAM.pageId = 'a2_17d58f55-47d3-4be8-9a73-ea9243ce7212-37156-309614';</script>
- <!-- AppInternalsXpert BMX Integration End -->
- <title>
- 光电开发工具 | Mouser
- </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应光电开发工具 。Mouser提供光电开发工具 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="光电开发工具" /><meta name="verify-v1" content="bhrmPa5uloYbiuM+lDu4z+y0qUGeKGW5FfFMprQAqlU=" /><meta name="viewport" content="width=1000, initial-scale=1" /><meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
- <!-- BASE STYLE SHEET -->
- <link rel="shortcut icon" href="../../../../../favicon.ico" /><link rel="alternate" type="application/rss+xml" title="RSS" href="../../../../../rss/rss.xml" />
- <!--[if IE 7]>
- <link rel="stylesheet" type="text/css" href="../../../../../css/ie7.css" />
- <![endif]-->
- <!--[if IE 8]>
- <link rel="stylesheet" type="text/css" href="../../../../../css/ie8.css" />
- <![endif]-->
- <!--[if IE 9]>
- <link rel="stylesheet" type="text/css" href="../../../../../css/ie9.css" />
- <![endif]-->
- <script type="text/javascript">
- function OpenBackordered(URL) {
- var MsgWindow;
- MsgWindow = window.open(URL, "MsgWindow", "scrollbars=1,height=500,width=650,menubar=0,resizable=1");
- }
- </script>
- <script type="text/javascript"> var _gaq = _gaq || [];var pluginUrl ='//www.google-analytics.com/plugins/ga/inpage_linkid.js';_gaq.push(['_require', 'inpage_linkid', pluginUrl]); _gaq.push(['_setAccount', "UA-521079-1"]);_gaq.push(['_setDomainName', "mouser.cn"]);_gaq.push(['_setAllowLinker', true]);_gaq.push(['_setAllowAnchor', true]);_gaq.push(["_setCustomVar",1,"Language","zh-CN",3]);_gaq.push(["_setCustomVar",30,"s35h","1H47r87fKkNeqOmSreee/XemU26OlPV8xB57sfnNIX8=",2]);_gaq.push(["_setCustomVar",31,"Cart","d944813d-167c-48d2-a467-2902e18c0b16",2]);
- _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA126AA195",2]);
- _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
- _gaq.push(["_setSiteSpeedSampleRate", 10]);
- _gaq.push(["_trackPageview"]);
- (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
- ga('require', 'ec');
- ga('ec:addImpression', {
- 'id': '630-QFBR-S01EK001Z',
- 'name': 'Fiber Optic Development Tools OPI development Kit',
- 'category': 'Fiber Optic Development Tools',
- 'brand': 'Avago Technologies',
- 'variant': 'QFBR-S01EK001Z',
- 'list': 'Refine',
- 'position': '1'
- });
- ga('ec:addImpression', {
- 'id': '653-B5TE001SG',
- 'name': 'Optical Sensor Development Tools HVC-P1 Demo Kit, Module \u0026 Eval Board',
- 'category': 'Optical Sensor Development Tools',
- 'brand': 'Omron Electronics',
- 'variant': 'B5T-E-001-S(G)',
- 'list': 'Refine',
- 'position': '2'
- });
- ga('ec:addImpression', {
- 'id': '841-LCD8000-43T',
- 'name': 'Display Development Tools 4.3 LCD Panel to Support i.MX 6UltraLite Eval Kit',
- 'category': 'Display Development Tools',
- 'brand': 'NXP / Freescale',
- 'variant': 'LCD8000-43T',
- 'list': 'Refine',
- 'position': '3'
- });
- ga('ec:addImpression', {
- 'id': '630-AFBR0549Z',
- 'name': 'Fiber Optic Development Tools HFBR-1414PTZ AFBR-2418TZ EV. KIT',
- 'category': 'Fiber Optic Development Tools',
- 'brand': 'Avago Technologies',
- 'variant': 'AFBR-0549Z',
- 'list': 'Refine',
- 'position': '4'
- });
- ga('ec:addImpression', {
- 'id': '595-LPDLCR2010EVMPCB',
- 'name': 'Display Development Tools',
- 'category': 'Display Development Tools',
- 'brand': 'Texas Instruments',
- 'variant': 'DLPDLCR2010EVM-PCB',
- 'list': 'Refine',
- 'position': '5'
- });
- ga('ec:addImpression', {
- 'id': '634-115XOPT-EXP-EVB',
- 'name': 'Optical Sensor Development Tools Si1153 Expansion Board',
- 'category': 'Optical Sensor Development Tools',
- 'brand': 'Silicon Labs',
- 'variant': '115XOPT-EXP-EVB',
- 'list': 'Refine',
- 'position': '6'
- });
- ga('ec:addImpression', {
- 'id': '511-STEVAL-ILL076V1',
- 'name': 'LED Lighting Development Tools 40W 220V input flyback converter based on HVLED001 quasi resonantA Flyback controller (SLIM form factor)',
- 'category': 'LED Lighting Development Tools',
- 'brand': 'STMicroelectronics',
- 'variant': 'STEVAL-ILL076V1',
- 'list': 'Refine',
- 'position': '7'
- });
- ga('ec:addImpression', {
- 'id': '634-SI1147-M01-EVB',
- 'name': 'Optical Sensor Development Tools Sensor toolstick Eval Board',
- 'category': 'Optical Sensor Development Tools',
- 'brand': 'Silicon Labs',
- 'variant': 'Si1147-M01-EVB',
- 'list': 'Refine',
- 'position': '8'
- });
- ga('ec:addImpression', {
- 'id': '634-SI1143-M01-EVB',
- 'name': 'Optical Sensor Development Tools Sensor toolstick Eval Board',
- 'category': 'Optical Sensor Development Tools',
- 'brand': 'Silicon Labs',
- 'variant': 'Si1143-M01-EVB',
- 'list': 'Refine',
- 'position': '9'
- });
- ga('ec:addImpression', {
- 'id': '630-AFBR0550Z',
- 'name': 'Fiber Optic Development Tools HFBR-1414PTZ AFBR-2419TZ EV.KIT',
- 'category': 'Fiber Optic Development Tools',
- 'brand': 'Avago Technologies',
- 'variant': 'AFBR-0550Z',
- 'list': 'Refine',
- 'position': '10'
- });
- ga('ec:addImpression', {
- 'id': '511-STEVAL-ILL067V1',
- 'name': 'LED Lighting Development Tools Six-channel ALED7707-based LED driver with embedded boost converter for automotive interior lighting and TFT backlightin',
- 'category': 'LED Lighting Development Tools',
- 'brand': 'STMicroelectronics',
- 'variant': 'STEVAL-ILL067V1',
- 'list': 'Refine',
- 'position': '11'
- });
- ga('ec:addImpression', {
- 'id': '511-STEVAL-ILL072V1',
- 'name': 'LED Lighting Development Tools Single channel, 1 A automotive LED driver with boost controller for interior/exterior lights',
- 'category': 'LED Lighting Development Tools',
- 'brand': 'STMicroelectronics',
- 'variant': 'STEVAL-ILL072V1',
- 'list': 'Refine',
- 'position': '12'
- });
- ga('ec:addImpression', {
- 'id': '511-STEVAL-ILL075V1',
- 'name': 'LED Lighting Development Tools STLUX385A evaluation board',
- 'category': 'LED Lighting Development Tools',
- 'brand': 'STMicroelectronics',
- 'variant': 'STEVAL-ILL075V1',
- 'list': 'Refine',
- 'position': '13'
- });
- ga('ec:addImpression', {
- 'id': '511-STEVAL-ILL084V1',
- 'name': 'LED Lighting Development Tools 0.5 A, floating boost LED driver board based on the LED6000',
- 'category': 'LED Lighting Development Tools',
- 'brand': 'STMicroelectronics',
- 'variant': 'STEVAL-ILL084V1',
- 'list': 'Refine',
- 'position': '14'
- });
- ga('ec:addImpression', {
- 'id': '584-EVAL-CN0370-PMDZ',
- 'name': 'LED Lighting Development Tools CN0368 Evaluation Board',
- 'category': 'LED Lighting Development Tools',
- 'brand': 'Analog Devices',
- 'variant': 'EVAL-CN0370-PMDZ',
- 'list': 'Refine',
- 'position': '15'
- });
- ga('ec:addImpression', {
- 'id': '511-STEVAL-ILL073V1',
- 'name': 'LED Lighting Development Tools RGB LED driver for automotive lighting based on ALED1642GW and STM8A',
- 'category': 'LED Lighting Development Tools',
- 'brand': 'STMicroelectronics',
- 'variant': 'STEVAL-ILL073V1',
- 'list': 'Refine',
- 'position': '16'
- });
- ga('ec:addImpression', {
- 'id': '511-STEVAL-ILL077V1',
- 'name': 'LED Lighting Development Tools 60 W, digital 3-LED channel evaluation board with STNRG388A-controlled current regulation and dimming',
- 'category': 'LED Lighting Development Tools',
- 'brand': 'STMicroelectronics',
- 'variant': 'STEVAL-ILL077V1',
- 'list': 'Refine',
- 'position': '17'
- });
- ga('ec:addImpression', {
- 'id': '595-DLPLCR4500EVM',
- 'name': 'Display Development Tools DLP Lightcrafter 4500',
- 'category': 'Display Development Tools',
- 'brand': 'Texas Instruments',
- 'variant': 'DLPLCR4500EVM',
- 'list': 'Refine',
- 'position': '18'
- });
- ga('ec:addImpression', {
- 'id': '595-DLPLCR6500EVM',
- 'name': 'Display Development Tools DLP LightCrafter6500 Evaluation Module',
- 'category': 'Display Development Tools',
- 'brand': 'Texas Instruments',
- 'variant': 'DLPLCR6500EVM',
- 'list': 'Refine',
- 'position': '19'
- });
- ga('ec:addImpression', {
- 'id': '595-DLPNIRNANOEVM',
- 'name': 'Display Development Tools DLP LightCrafter',
- 'category': 'Display Development Tools',
- 'brand': 'Texas Instruments',
- 'variant': 'DLPNIRNANOEVM',
- 'list': 'Refine',
- 'position': '20'
- });
- ga('ec:addImpression', {
- 'id': '595-DLPLCR9000EVM',
- 'name': 'Display Development Tools DLP LightCrafter9000 Evaluation Module',
- 'category': 'Display Development Tools',
- 'brand': 'Texas Instruments',
- 'variant': 'DLPLCR9000EVM',
- 'list': 'Refine',
- 'position': '21'
- });
- ga('ec:addImpression', {
- 'id': '508-FDB-1043',
- 'name': 'Fiber Optic Development Tools Breakout Eval Brd C.wr/CXP 1-12.5Gbps',
- 'category': 'Fiber Optic Development Tools',
- 'brand': 'Finisar',
- 'variant': 'FDB-1043',
- 'list': 'Refine',
- 'position': '22'
- });
- ga('ec:addImpression', {
- 'id': '971-SK-70DT',
- 'name': 'Display Development Tools 7\" TFT LCD Touch starter kit',
- 'category': 'Display Development Tools',
- 'brand': '4D Systems',
- 'variant': 'SK-70DT',
- 'list': 'Refine',
- 'position': '23'
- });
- ga('ec:addImpression', {
- 'id': '595-BBEXPDTC70',
- 'name': 'Display Development Tools 7\" LCD 1024X600 CAPACITIVE TOUCH',
- 'category': 'Display Development Tools',
- 'brand': 'SVTronics',
- 'variant': 'BBEXPDTC70',
- 'list': 'Refine',
- 'position': '24'
- });
- ga('ec:addImpression', {
- 'id': '971-SK-70DT-AR',
- 'name': 'Display Development Tools uLCD---70DT---AR w/ uSD-2GB and uUSB-PA5',
- 'category': 'Display Development Tools',
- 'brand': '4D Systems',
- 'variant': 'SK-70DT-AR',
- 'list': 'Refine',
- 'position': '25'
- });
- ga('set','dimension1','zh-CN');
- ga('set','dimension30','1H47r87fKkNeqOmSreee/XemU26OlPV8xB57sfnNIX8=');
- ga('set','dimension31','d944813d-167c-48d2-a467-2902e18c0b16');
- ga('set','dimension13','163AA125AA126AA195');
- ga('set','metric2',1361);
- ga('set','dimension5','Optoelectronic Development Tools');
- ga('set','dimension48','cy1yi');
- ga('set','dimension3','Refine');
- ga('set','dimension55','Products');
- ga('send', 'pageview');
- </script>
- <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&type=css&fileSet=CSS_Base&lang=zh-CN" rel="stylesheet" type="text/css" /><link href="../../../../../css/style.axd?v=3.0.20160304.2&fileSet=Css_Search&type=css&lang=zh-CN" rel="stylesheet" type="text/css" /><link rel="alternate" hreflang="es-AR" href="http://ar.mouser.com/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>
- <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
- <script src='../../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
- <script src='../../../../../flash/js/empty.file.js' type="text/javascript"></script>
- <script src='../../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
- <script src='../../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
- <script src='../../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
- <!--[if lt IE 9]>
- <script src='../../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
- <![endif]-->
- <form method="post" action="/Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools/_/N-cy1yi/" id="aspnetForm">
- <div class="aspNetHidden">
- <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
- <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
- <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" />
- <input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
- </div>
- <script type="text/javascript">
- //<![CDATA[
- var theForm = document.forms['aspnetForm'];
- if (!theForm) {
- theForm = document.aspnetForm;
- }
- function __doPostBack(eventTarget, eventArgument) {
- if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
- theForm.__EVENTTARGET.value = eventTarget;
- theForm.__EVENTARGUMENT.value = eventArgument;
- theForm.submit();
- }
- }
- //]]>
- </script>
- <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZIfBoSL8TZnsnOFihh6T3B3-ZDc9vWAo-Dvo5VSdzj9CkFL2Zg2&t=635802997220000000" type="text/javascript"></script>
- <script type="text/javascript">
- //<![CDATA[
- var lasttemplateid='21744234';
- function attributecount() { return true; }
- var subdomainname = '.mouser.cn';
- var lang = 'zh-CN';
- var country = 'CN';
- var shippingCountry = 'CN';
- var usdSubdomain = 'www';
- var subdomain = 'cn2';
- var navids='21744234';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
- var left = (screen.width / 2) - (800 / 2);var top = (screen.height / 2) - (505 / 2); var msgWindow = window.open(url,'MsgWindow','height=505,width=800,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0');
- }
- function GenerateClientID(prefix, i, suffix) {
- if (i < 10) { return prefix + '0' + String(i) + suffix; }
- else { return prefix + String(i) + suffix; }
- }
- var checked = false;
- function SelectAll() {
- checked = !checked;
- var i = 3;
- var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
- while (i < 29) {
- if (chkSelect != null) chkSelect.checked = checked;
- i = i + 1;
- chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
- }
- }
- function IsAllChecked(checked) {
- var i = 3;
- var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
- while (i < 29) {
- if (chkSelect != null && chkSelect.checked != checked) return false;
- i = i + 1;
- chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
- }
- return true;
- }
- function IsAnyChecked(checked) {
- return !IsAllChecked(!checked);
- }
- function SelectRow(row, checked) {
- document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
- }
- function RowSelected(index, checked) { }
- function GetQuantityTextboxByRow(row) {
- return GetQuantityTextboxByIndex(row + 2);
- }
- function GetQuantityTextboxByIndex(index) {
- return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
- }
- function SelectQuantity(row, quantity) {
- txtQuantity = GetQuantityTextboxByRow(row);
- if (txtQuantity == null) { return; }
- txtQuantity.value = quantity;
- SelectRow(row, true);
- }
- var qtyRegEx = /^([0]|\s)*$/;
- function IsQuantityEmptyOrZero(quantity) {
- return qtyRegEx.test(quantity);
- }
- function QuantityChanged(row, quantity) {
- SelectRow(row, !IsQuantityEmptyOrZero(quantity));
- }
- var QuantityRowSelectedBase = RowSelected;
- function QuantityRowSelected(index, checked) {
- QuantityRowSelectedBase(index, checked);
- txtQuantity = GetQuantityTextboxByIndex(index);
- if (txtQuantity == null) { return; }
- if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
- else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
- }
- RowSelected = QuantityRowSelected;
- //]]>
- </script>
- <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&t=5f9d5645" type="text/javascript"></script>
- <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&t=5f9d5645" type="text/javascript"></script>
- <div id="cookie-notification-bar">
- </div>
- <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
- <div id="wideGab" class="wideGab">
- <div id="ctl00_globalActionBar" class="global-action-bar">
- <div id="gab-container" class="container">
- <div id="contact" class="row">
- <div class="topPadding col-xs-6">
- <div class="inline-block">
- <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
- <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>
- 400-821-6111</a><a href="xxrrtbuu.html" style="display: none;" rel="file" id="yxezcaswaauztuaqaww">ubqtbausacydzezvysubqtb</a>
- <span class="pipe">|</span>
- <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
- 反馈</a>
- </div>
- <span class="qqIcon inline-block"> <script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
- </span>
- </div>
- <div class="col-xs-6 align-right">
- <div id="tdImg" class="inline-block topPadding9px">
- <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton('Cart Hover','Global Action Bar');" class="smallgrey">
- <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
- <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton('Cart Hover','Global Action Bar');" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
- </div>
- <div class="topPadding inline-block">
- <span class="pipe">|</span>
- <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLi6xMa6urJNMFeCH57xYnynDWyR707P1vB%252bmg9DGjEnQl0BFTa%252bZBkw16J6bI%252bNIZbRa4UhUwPPbXuM84cecPodu%2f5oQt6VhfKQWvPFZzuq4%3d">更改国家</a>
- <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>
- <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
- <span id="ctl00_gab1_lbl1">RMB</span>
- </div>
- </div>
- </div>
- </div>
- <div style="clear: both;"></div>
- <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
- class="thickbox"></a>
- <div id="divCurrencyPopup" class="currency-popup">
- <div class="currency-close">
- <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();"> </a>
- </div>
- <div>
- <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../../images/international/flags/cn2.gif" alt="中国" /> <span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
- <br/>
- <div style="padding: 0 20px 0 20px">
- <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
- <br />
- <table width="95%">
- <tr>
- <td width="20%">
- <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
- </td>
- <td>
- <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
- <br/>
- <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
- <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
- <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
- <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- <div id="cartDialog" class="CartDialog" style="display: none;">
- <table id="miniCartOnly">
- <tr id="divall">
- <td id="tdCart">
- <table style="width: 100%; padding: 0px; border: 0px">
- <tr>
- <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
- <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
- </td>
- <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
- <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
- </td>
- </tr>
- </table>
- <table id="tableMiniCartItms">
- <tr id="trCart">
- <td>
- <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
- <table id="tblMiniCart">
- <thead>
- <tr>
- <th class="miniCartColumn">制造商</th>
- <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
- <th class="miniCartColumn MiniCartHdBg">数量</th>
- <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
- </tr>
- </thead>
- </table>
- <script type="text/javascript">
- var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
- var currentGuid = 'd944813d-167c-48d2-a467-2902e18c0b16';
- var currentCountryCode = 'CN';
- var currentCurrencyCode= 'RMB';
- var currencyCulture = 'zh-CN';
- var cultureCode = 'zh-CN';
- var customerID = '';
- </script>
- <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
- </td>
- </tr>
- </table>
- <div style="display: none; padding-top: 10px" id="divSingleItem">
- <table id="tblSingeItem">
- <tr>
- <!-- Here goes the single item -->
- <td style="padding-right: 15px">
- <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
- <td style="align: right; padding-right: 2px" id="tdSingleItms">
- <div id="divAll">
- <div id="wrapper">
- <div id="divLbl">
- <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
- </div>
- <div id="divHyp">
- </div>
- </div>
- <div id="divRest">
- <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
- <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
- <br />
- <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
- </div>
- </div>
- </td>
- </tr>
- </table>
- </div>
- <div id="divForCart" class="divMsgLnkTotal" style="display: none">
- <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
- <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
- <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
- <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
- <a onclick="javascript:return MiniCart.SendToCartPage('Cart Hover','View Cart Button');" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$gab1$ucmini$linkToCartAtMiniCart", "", false, "", "http://www.mouser.cn/Cart/Cart.aspx", false, true))" style="color:White;text-decoration:none;">查看购物车</a>
- </div>
- </div>
- </td>
- <td style="display: none" id="trCartSubTotal">
- <table class="tblMiniCartSub">
- <tr>
- <td align="right" style="padding-bottom: 5px; padding-top: 2px">
- <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
- <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
- </td>
- </tr>
- <tr>
- <td align="right" style="padding-bottom: 5px">
- <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
- </td>
- </tr>
- <tr>
- <td align="left" style="padding-bottom: 5px">
- <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
- </td>
- </tr>
- <tr>
- <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
- <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack('ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune','')" style="color:White;text-decoration:none;">继续购物</a>
- <a onclick="return MiniCart.SendToCartPage('Add to Cart Modal','View Cart');" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart", "", false, "", "http://www.mouser.cn/Cart/Cart.aspx", false, true))" style="color:White;text-decoration:none;">查看购物车</a>
- </td>
- </tr>
- </table>
- <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
- </td>
- </tr>
- <tr id="trHideModalCheckBox" style="display: none">
- <td colspan="2">
- <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
- </td>
- </tr>
- </table>
- <script type="text/javascript">
- $(document).ready(function () {
- MiniCart.source = 'refine';
- });
- </script>
- </div>
- <script type="text/javascript">
- function OpenCurrencyPopup() {
- $("#tblink").trigger('click');
- }
- function CloseCurrencyPopup() {
- var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
- var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
- if (ddlCurrency != null && hidCurrencyValue != null) {
- ddlCurrency.selectedIndex = hidCurrencyValue.value;
- }
- window.location.reload();
- }
- </script>
- </div>
- </div>
- <div id="wideHeader" class="wideHeader">
- <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
- <div id="search" class="row">
- <div id="logo" class='col-xs-4'>
- <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
- </div>
- <div id="search-block" class="col-xs-4">
- <div id="search-title">
- 物料编号/关键字
- </div>
- <div id="search-bar">
- <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_NavHeader_btn1')">
-
- <div id="searchPartNumberBox" class="search-box inline-block">
- <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
- <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
- </div>
- <div class="inline-block">
- <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
- <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
- </div>
- </div>
- </div>
- </div>
- <div id="account" class="col-xs-4 align-right">
- <ul>
- <li>
- </li>
- <li>
- <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLi6xMa6urJNMFeCH57xYnynDWyR707P1vB%252bmg9DGjEnQl0BFTa%252bZBkw16J6bI%252bNIZbRa4UhUwPPbXuM84cecPodu%2f5oQt6VhfKQWvPFZzuq4%3d">登录</a>
- </li>
- <li>
- </li>
- <li>
- <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
- </li>
- <li>
- <!-- Mush:TBC -->
- <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
- </li>
- </ul>
- </div>
- </div>
- <div id="navArea" class="row">
- <div class="col-xs-12">
- <div id="navMain" class="inline-block">
- <div class="navbar">
- <ul class="topnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- </div>
- <div class="onlineCatalog inline-block">
- <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
- </div>
- </div>
- </div>
- </div>
- <div style="visibility: hidden; height: 0px;">
- <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
- <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
- <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
- </div>
- <script type="text/javascript">
- $(document).ready(function () {
- //* change to html5 catalog if javascript is enabled *
- $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
- });
- </script>
- <script type="text/javascript" src='../../../../../javascript/genLib.js'></script>
- </div>
- <div id="ctl00_divWide" class="divWide">
- <link rel="stylesheet" type="text/css" href='../../../../../css/fontawesome/css/font-awesome.min.css' />
- <br />
- <strong></strong>
- <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
- <strong>></strong>
- <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" href="../../../../_/N-5gcb/" style="font-size: 9pt; font-weight: bold;">半导体</a>
- <strong>></strong>
- <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-6hpeq/" style="font-size: 9pt; font-weight: bold;">工程技术开发工具</a>
- <strong>></strong>
- <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">光电开发工具</a>
- <hr />
- <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
- <div class="categorySearchLimits">
- <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
- <span class="subCategoryHeader">类别</span> <span title="半导体"><input id="ctl00_ContentMain_uc1_chkbx254459|Semiconductors" type="checkbox" name="ctl00$ContentMain$uc1$chkbx254459|Semiconductors" checked="checked" onclick="document.getElementById('ctl00_ContentMain_uc1_chkbx10903778|Engineering Development Tools').checked = false;document.getElementById('ctl00_ContentMain_uc1_chkbx21744234|Optoelectronic Development Tools').checked = false;" /></span> <b>半导体</b> > <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('ctl00_ContentMain_uc1_chkbx254459|Semiconductors').checked = true;document.getElementById('ctl00_ContentMain_uc1_chkbx21744234|Optoelectronic Development Tools').checked = false;" /></span> <b>工程技术开发工具</b> > <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('ctl00_ContentMain_uc1_chkbx254459|Semiconductors').checked = true;document.getElementById('ctl00_ContentMain_uc1_chkbx10903778|Engineering Development Tools').checked = true;" /></span> <b>光电开发工具</b>
- </div>
- </div>
- </div>
- <table border="0" width="100%">
- <tr>
- <td>
- <div id="ctl00_ContentMain_pnl3">
-
- <div id="category-top" class="category-content">
- <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1>光电开发工具</h1></a>
- <!--Marketing Content-->
- <div id="ctl00_ContentMain_refinemfglogo">
-
- </div>
- </div><!--.category-content-->
- </div>
- </td>
- </tr>
- <tr>
- <td>
- </td>
- </tr>
- <tr>
- <td>
- <div id="refine-page2">
- </div>
- </td>
- </tr>
- </table>
- <div id="ctl00_ContentMain_divTabs" class="row">
- <div class="col-xs-12">
- <div id="tabsNavigation" >
- <ul>
- <li id="ctl00_ContentMain_liProductsTab" class="active">
- <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(1,361)</span></a>
- </li>
- <li id="ctl00_ContentMain_liDatasheetsTab" class="">
- <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking('Refine Tab Click', 'Datasheets', 'Optoelectronic Development Tools');" href="../../Datasheets/_/N-cy1yi">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(872)</span></a>
- </li>
- <li id="ctl00_ContentMain_liImagesTab" class="">
- <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking('Refine Tab Click', 'Images', 'Optoelectronic Development Tools');" href="../../Images/_/N-cy1yi">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(773)</span></a>
- </li>
- <li id="ctl00_ContentMain_liNewestTab" class="">
- <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking('Refine Tab Click', 'Newest Products', 'Optoelectronic Development Tools');" href="../../Newest-Products/_/N-cy1yi">最新产品</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- <div id="tabDivs" class="tab-divs">
- <!-- Hide the View links if javascript is disabled -->
- <noscript>
- <style type="text/css">.list-visual{display:none;}</style>
- </noscript>
- <div id="CategoryControlTop">
- <table class="table-categories">
- <tr><td valign="top">
- <input type="hidden" name="ctl00$ContentMain$uc6$listCategories$ctl01$hdnCatID" id="ctl00_ContentMain_uc6_listCategories_ctl01_hdnCatID" value="21744234" />
- <div class="topCatTitle">
- <div class="col-xs-8 no-left-pad">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkCategory" class="SearchResultsTopLevelCategory" href="./"><h2>光电开发工具类型</h2></a>
- </div>
- <div class="text-right">
- <div class="list-visual">
- <ul>
- <li class="right-border active">
- <a onclick="SendGATracking('Refine Category View Change', 'List', 'Optoelectronic Development Tools'); SwitchListView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkListView" href="javascript:__doPostBack('ctl00$ContentMain$uc6$listCategories$ctl01$lnkListView','')">
- <i class="fa fa-th-list"></i> 列表</a>
- </li>
- <li>
- <a onclick="SendGATracking('Refine Category View Change', 'Visual', 'Optoelectronic Development Tools'); SwitchVisualView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkVisualView" href="javascript:__doPostBack('ctl00$ContentMain$uc6$listCategories$ctl01$lnkVisualView','')">
- <i class="fa fa-th-large"></i> 目视</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- <ul class="sub-cats">
- <table id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories" cellspacing="0" style="width:100%;border-collapse:collapse;">
- <tr>
- <td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../../images/DisplayCategories/21744248.png" alt="Display Development Tools" /></div>
- <div class="div-cat-title">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Display-Development-Tools/_/N-cy1yw/"><h3>显示开发工具</h3></a>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lblRecordCount">414</span>)</span>
- </div>
- </li>
- </td><td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../../images/DisplayCategories/21744333.png" alt="LED Lighting Development Tools" /></div>
- <div class="div-cat-title">
- <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>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lblRecordCount">637</span>)</span>
- </div>
- </li>
- </td><td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../../images/DisplayCategories/21744379.png" alt="Optical Sensor Development Tools" /></div>
- <div class="div-cat-title">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Optical-Sensor-Development-Tools/_/N-cy22j/"><h3>光学传感器开发工具</h3></a>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lblRecordCount">244</span>)</span>
- </div>
- </li>
- </td>
- </tr><tr>
- <td>
- <li class="sub-cat">
- <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_imgCategory" class="category-image" onerror="this.style.display = "none"" src="../../../../../images/DisplayCategories/21744296.png" alt="Fiber Optic Development Tools" /></div>
- <div class="div-cat-title">
- <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Fiber-Optic-Development-Tools/_/N-cy208/"><h3>光学纤维开发工具</h3></a>
- <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lblRecordCount">66</span>)</span>
- </div>
- </li>
- </td><td></td><td></td>
- </tr>
- </table></ul>
- </td></tr></table>
- <div id="search-left-col">
- </div>
- </div>
- <script type="text/javascript">
- //<![CDATA[
- Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
- //]]>
- </script>
- <div id="ctl00_ContentMain_liProducts">
- <div id="refineSearchDiv">
- <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
-
- <div id="refine-keyword-search-2">
- <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_uc2_btnSearch')">
-
- <div id="boxPartSearch2">
- <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
- <tr>
- <td rowspan="3" style="vertical-align: middle">
- <div id="searchPartNumberBox" class="search-box" >
- <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
- <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
- </div>
- </td>
- </tr>
- <tr>
- <td class="chk-Search">
- <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
- </td>
- </tr>
- <tr>
- <td class="chk-Search">
- <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_ContentMain_uc2_chkRoHSCompliant" type="checkbox" name="ctl00$ContentMain$uc2$chkRoHSCompliant" /><label for="ctl00_ContentMain_uc2_chkRoHSCompliant">符合RoHS</label></span>
- </td>
- </tr>
- </table>
-
- <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
- </div>
- <script type="text/javascript" src='../../../../../flash/js/Placeholders.min.js'></script>
- <script type="text/javascript" src='../../../../../flash/js/watermark.js'></script>
- </div>
- </div>
- <div id="refine-mfg-select-2">
- <div id="ctl00_ContentMain_uc3_BoxManufacturer" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_uc3_btnSelectManufacturer')">
-
- <div id="boxSuppliers">
- <table id="ctl00_ContentMain_uc3_tblSuppliers" class="tblSuppliers2">
- <tr>
- <td valign="middle" align="left">
- <table cellspacing="0" cellpadding="0" width="100%">
- <tr>
- <td style="vertical-align: middle;">
- <select name="ctl00$ContentMain$uc3$ddlManufacturer" id="ctl00_ContentMain_uc3_ddlManufacturer" class="default">
- <option selected="selected" value="0">所有制造商</option>
- <option value="4292488353">4D Systems (44)</option>
- <option value="4274387497">Adafruit (98)</option>
- <option value="4292487161">ADLINK Technology (12)</option>
- <option value="4291852130">ams (70)</option>
- <option value="4294759198">Amulet Technologies (5)</option>
- <option value="4290538360">Analog Devices Inc. (21)</option>
- <option value="4292821466">Arduino (7)</option>
- <option value="4294759229">Atmel (36)</option>
- <option value="4294759247">Avago Technologies (25)</option>
- <option value="4290656814">Boundary Devices (2)</option>
- <option value="4294449078">Cirrus Logic (4)</option>
- <option value="4273220404">CMOSIS (7)</option>
- <option value="4292733696">Cree, Inc. (14)</option>
- <option value="4292779773">Critical Link (1)</option>
- <option value="4294014452">Cypress Semiconductor (1)</option>
- <option value="4294759248">Dialight (1)</option>
- <option value="4294759230">Digi International (1)</option>
- <option value="4282698358">Digilent (7)</option>
- <option value="4294759215">Digital View (28)</option>
- <option value="4294759176">Displaytech (4)</option>
- <option value="4294027454">ELECTRONIC ASSEMBLY (15)</option>
- <option value="4291156561">ELMOS (1)</option>
- <option value="4292766022">Embedded Artists (4)</option>
- <option value="4292828383">Epson (22)</option>
- <option value="4294014054">Exar (7)</option>
- <option value="4294759187">Fairchild Semiconductor (8)</option>
- <option value="4290462436">Finisar (30)</option>
- <option value="4293998581">Freescale / NXP (14)</option>
- <option value="4294759009">FTDI (6)</option>
- <option value="4294758988">Fujitsu (3)</option>
- <option value="4294409272">Future Designs, Inc. (FDI) (10)</option>
- <option value="4292700835">GHI Electronics (4)</option>
- <option value="4294758149">Glenair (2)</option>
- <option value="4291607133">Gravitech (10)</option>
- <option value="4291847519">Heatron (4)</option>
- <option value="4294759026">Infineon (4)</option>
- <option value="4292859497">Inspired LED (1)</option>
- <option value="4292499325">Intersil (56)</option>
- <option value="4294758587">ISSI (4)</option>
- <option value="4288985402">Ka-Ro electronics (2)</option>
- <option value="4294758842">Lattice (2)</option>
- <option value="4292825949">Luminus Devices (4)</option>
- <option value="4291596096">Maxim Integrated (48)</option>
- <option value="4273581899">Melexis (6)</option>
- <option value="4290943608">Micrel / Microchip (8)</option>
- <option value="4294758776">Microchip (43)</option>
- <option value="4292755921">MikroElektronika (34)</option>
- <option value="4292765876">Mitsubishi Electric (6)</option>
- <option value="4292703012">Monolithic Power Systems (MPS) (1)</option>
- <option value="4294758755">Newhaven Display (11)</option>
- <option value="4294012386">NKK Switches (4)</option>
- <option value="4294755166">Noritake (7)</option>
- <option value="4294758971">NXP (52)</option>
- <option value="4292825757">Olimex Ltd. (9)</option>
- <option value="4294759010">Omron (1)</option>
- <option value="4294759663">ON Semiconductor (147)</option>
- <option value="4293994460">Osram Opto Semiconductor (1)</option>
- <option value="4292890524">Panasonic (1)</option>
- <option value="4294758655">Parallax (13)</option>
- <option value="4294758653">Power Integrations (14)</option>
- <option value="4294763909">Rabbit Semiconductor (1)</option>
- <option value="4294576709">Radiall (1)</option>
- <option value="4292363108">RECOM (2)</option>
- <option value="4273832515">Seeed Studio (49)</option>
- <option value="4294764024">Sharp Microelectronics (3)</option>
- <option value="4294763905">Silicon Laboratories (11)</option>
- <option value="4294764375">STMicroelectronics (96)</option>
- <option value="4287814258">SVTronics (3)</option>
- <option value="4290847695">TechNexion (2)</option>
- <option value="4294759686">Texas Instruments (186)</option>
- <option value="4285624292">TT Electronics (5)</option>
- <option value="4294758824">VCC (1)</option>
- <option value="4294759685">Vishay (1)</option>
- <option value="4292713940">Western Design Center (WDC) (2)</option>
- <option value="4292495909">ZMDI (13)</option>
- </select>
- </td>
- <td style="vertical-align: middle;">
- <input type="submit" name="ctl00$ContentMain$uc3$btnSelectManufacturer" value="确定" onclick="return attributecount();" id="ctl00_ContentMain_uc3_btnSelectManufacturer" title="确定" class="button" />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-
- </div>
- </div>
- </div>
- <div class="clear">
- </div>
- </div>
- <div id="refine-mfg-logo2">
- </div>
- </div>
- <br />
- <table border="0" width="100%">
- <tr>
- <td>
- </td>
- </tr>
- <tr>
- <td>
- <!--- Search Features --->
- </td>
- </tr>
- <tr>
- <td>
- <div id="refine-page">
- </div>
- </td>
- </tr>
- <tr>
- <td class="refine-show-products">
- <span class="redtextb">
- </span> <span class="redtextb">
- </span> <span class="redtextb">
- </span> <span class="redtextb">
- </span>
- <span class="redtextb">
- </span>
- </td>
- </tr>
- <tr>
- <td>
- </td>
- </tr>
- <tr>
- <td>
- <!--- Special Order Parts New --->
- <!-- SOP Section 1 -->
- </td>
- </tr>
- </table>
- <div id="searchResultsTbl">
- <table id="ctl00_ContentMain_tbl2" class="no-pad">
- <tr>
- <td class="tdSearchResultsPagingTop">
- <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
- <tr>
- <td>
- <input type="submit" name="ctl00$ContentMain$btn1" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn1" title="购买所选商品" class="buy-button" ImageUrl="~/Images/Search/buy_selected.gif" />
- </td>
- <td>
- <input type="submit" name="ctl00$ContentMain$btn2" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) && 0 == 0) { alert('请选择您希望对比的产品。'); return false; };" id="ctl00_ContentMain_btn2" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
- </td>
- <td>
- <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
- </td>
- <td style="padding-left: 40px;">
- <div class="floatrightpager">
- <span class="bold">
- 页面:
- </span>
- <span id="ctl00_ContentMain_PagerTop"><span id="ctl00_ContentMain_PagerTop_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerTop_1" href="/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>
- </div>
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td>
- <div>
- <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
- <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
- <th class="td-select" scope="col" style="width:35px;">
- 选择
- </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
- </th><th scope="col">制造商 零件编号
- </th><th scope="col">制造商
- </th><th scope="col">描述
- </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../Images/Search/pdf.gif" alt="文件" />
- </th><th scope="col">供货情况
- </th><th scope="col">单价(含17%增值税)
- <br />
- </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
- </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
- </th>
- </tr><tr class="SearchResultsSortCell">
- <td class="td-select" align="center"></td><td></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$MouserPartNumber>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl11','')"><img title="按 Mouser 零件编号 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 Mouser 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$MouserPartNumber>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl13','')"><img title="按 Mouser 零件编号 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 Mouser 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$ManufacturerPartNumber>Ascending'); return false;" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl02_ctl15" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl15','')"><img title="按 制造商 零件编号 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$ManufacturerPartNumber>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl17','')"><img title="按 制造商 零件编号 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Brand>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl19','')"><img title="按 制造商 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Brand>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl21','')"><img title="按 制造商 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Default>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl23','')"><img title="按 供货情况 Ascending 排序" src="../../../../../Images/Search/btn_ActiveSort_Up.jpg" alt="按 供货情况 Ascending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Pricing>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl25','')"><img title="按 单价(含17%增值税) Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 单价(含17%增值税) Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Pricing>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl27','')"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="630-QFBR-S01EK001Z" data-index="3">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$chkSelect" onclick="javascript:RowSelected(3, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/avagotechnologies/images/QFBR-S01EK001Z_DSL.JPG</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <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 />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../Avago-Technologies">Avago Technologies</a>
- </td><td>光学纤维开发工具 OPI development Kit
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../avago-qfbr-s01in001z-interrogator">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Avago Technologies","630-QFBR-S01EK001Z | QFBR-S01EK001Z"]);" href="http://www.mouser.com/ds/2/38/avagotech_QFBR-S01EK001Z_Dev%20Kit-771142.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_pnlRestricted">
-
- <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>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=Cw0frhkvDEI6T%2fbk23IOGg%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Cw0frhkvDEI6T%2fbk23IOGg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="653-B5TE001SG" data-index="4">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$chkSelect" onclick="javascript:RowSelected(4, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/omron/images/B5T-001001_G_DSL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <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 />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../omronelectronics">Omron Electronics</a>
- </td><td>光学传感器开发工具 HVC-P1 Demo Kit, Module & Eval Board
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../omron-b5t-hvc-sensor/">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">17<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥5,775.705</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,5);">5:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5,634.8604</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(2,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 2);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy" title="购买 B5T-E-001-S(G)" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=G%2fKXasWmXEY51q40UMQIMg%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=G%2fKXasWmXEY51q40UMQIMg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="841-LCD8000-43T" data-index="5">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$chkSelect" onclick="javascript:RowSelected(5, this.checked);" /></span>
- </div>
- </td><td></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/NXP-Freescale/LCD8000-43T/?qs=sGAEpiMZZMuD4PtVTHYOZ5b7rq8ALvm42qpxSWBk9T7FOoYbHknEaw%3d%3d">LCD8000-43T</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../Freescale-Semiconductor">NXP / Freescale</a>
- </td><td>显示开发工具 4.3 LCD Panel to Support i.MX 6UltraLite Eval Kit
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../freescale-imx6-ultralite">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"NXP / Freescale","841-LCD8000-43T | LCD8000-43T"]);" href="http://www.mouser.com/ds/2/161/IMX6ULEVKHUG-770073.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">27<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥770.094</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(3,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 3);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy" title="购买 LCD8000-43T" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=p8nhlIi%2fPVrwF7AEGq2sCw%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=p8nhlIi%2fPVrwF7AEGq2sCw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="630-AFBR0549Z" data-index="6">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl06$chkSelect" onclick="javascript:RowSelected(6, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/avagotechnologies/images/AFBR_05xxZ_board_DSL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Avago-Technologies/AFBR-0549Z/?qs=sGAEpiMZZMuD4PtVTHYOZz4Bpkfy62vz2HlK3LlbRNl95%252bhX6mz9ug%3d%3d">AFBR-0549Z</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../Avago-Technologies">Avago Technologies</a>
- </td><td>光学纤维开发工具 HFBR-1414PTZ AFBR-2418TZ EV. KIT
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../avago-afbr24xxxz-optic-receivers">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Avago Technologies","630-AFBR0549Z | AFBR-0549Z"]);" href="http://www.mouser.com/ds/2/38/AV02-4887EN_PB_AFBR-0549Z_2015-04-07-553012.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=TdjFSJyyr8y7DiricpcjpA%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=TdjFSJyyr8y7DiricpcjpA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="595-LPDLCR2010EVMPCB" data-index="7">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$chkSelect" onclick="javascript:RowSelected(7, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/DLPDLCR2010EVM_DSL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <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 />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
- </td><td>显示开发工具
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-dlpc3430-35-controller/">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Texas Instruments","595-LPDLCR2010EVMPCB | DLPDLCR2010EVM-PCB"]);" href="http://www.mouser.com/ds/2/405/dlpu027b-779685.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=UWJqf7NYAAdj3KakKdrCBg%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=UWJqf7NYAAdj3KakKdrCBg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="634-115XOPT-EXP-EVB" data-index="8">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$chkSelect" onclick="javascript:RowSelected(8, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/siliconlaboratories/images/115XOPT-EXP-EVB_DSL.JPG</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <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 />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../Silicon-Laboratories">Silicon Labs</a>
- </td><td>光学传感器开发工具 Si1153 Expansion Board
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../silicon-labs-si11x3-ic">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Silicon Labs","634-115XOPT-EXP-EVB | 115XOPT-EXP-EVB"]);" href="http://www.mouser.com/ds/2/368/UG163-780637.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">28<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Silicon-Labs/115XOPT-EXP-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZwHDJf2CyvMcaB2Pbcd8dCEWt4la8TEzkg%3d%3d">更多信息可用 </a>
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥291.7161</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(6,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 6);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy" title="购买 115XOPT-EXP-EVB" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=pOj%252bfA8s95Fp4GKTOczmsw%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=pOj%252bfA8s95Fp4GKTOczmsw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STEVAL-ILL076V1" data-index="9">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$chkSelect" onclick="javascript:RowSelected(9, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/STEVAL_ILL076V1_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL076V1/?qs=sGAEpiMZZMuD4PtVTHYOZwSb0HZuDH3ZWdxNLy8c3ZbntPwuiHZXGw%3d%3d">511-STEVAL-ILL076V1</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL076V1/?qs=sGAEpiMZZMuD4PtVTHYOZwSb0HZuDH3ZWdxNLy8c3ZbntPwuiHZXGw%3d%3d">STEVAL-ILL076V1</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
- </td><td>LED 照明开发工具 40W 220V input flyback converter based on HVLED001 quasi resonantA Flyback controller (SLIM form factor)
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-hvled001-controller">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"STMicroelectronics","511-STEVAL-ILL076V1 | STEVAL-ILL076V1"]);" href="http://www.mouser.com/ds/2/389/DM00230011-770862.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">8<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥721.9602</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(7,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 7);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy" title="购买 STEVAL-ILL076V1" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=4pWQqqTwS5TYm7Zw8yz%2fNQ%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=4pWQqqTwS5TYm7Zw8yz%2fNQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="634-SI1147-M01-EVB" data-index="10">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$chkSelect" onclick="javascript:RowSelected(10, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/siliconlaboratories/images/si114x-EVB_dongle_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <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 />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../Silicon-Laboratories">Silicon Labs</a>
- </td><td>光学传感器开发工具 Sensor toolstick Eval Board
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../silabs-si114x-modules">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Silicon Labs","634-SI1147-M01-EVB | Si1147-M01-EVB"]);" href="http://www.mouser.com/ds/2/368/Si1145-46-47-M01Rev1.0-587410.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">8<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Silicon-Labs/Si1147-M01-EVB/?qs=sGAEpiMZZMuD4PtVTHYOZ%2f1%252bzOKsVTxInwseUA7CWRUPRulHT3qI9Q%3d%3d">更多信息可用 </a>
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥230.9463</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(8,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 8);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy" title="购买 Si1147-M01-EVB" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=7MWEoLOyqUTLhFSEQ3bsHA%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=7MWEoLOyqUTLhFSEQ3bsHA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="634-SI1143-M01-EVB" data-index="11">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$chkSelect" onclick="javascript:RowSelected(11, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/siliconlaboratories/images/si114x-EVB_dongle_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <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 />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../Silicon-Laboratories">Silicon Labs</a>
- </td><td>光学传感器开发工具 Sensor toolstick Eval Board
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../silabs-si114x-modules">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Silicon Labs","634-SI1143-M01-EVB | Si1143-M01-EVB"]);" href="http://www.mouser.com/ds/2/368/Si1141-42-43-M01-587398.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">9<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <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>
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥230.9463</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(9,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 9);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy" title="购买 Si1143-M01-EVB" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=7MWEoLOyqURaYIzEKG7RGg%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=7MWEoLOyqURaYIzEKG7RGg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="630-AFBR0550Z" data-index="12">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$chkSelect" onclick="javascript:RowSelected(12, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/avagotechnologies/images/AFBR_05xxZ_board_DSL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <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 />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../Avago-Technologies">Avago Technologies</a>
- </td><td>光学纤维开发工具 HFBR-1414PTZ AFBR-2419TZ EV.KIT
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../avago-afbr24xxxz-optic-receivers">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Avago Technologies","630-AFBR0550Z | AFBR-0550Z"]);" href="http://www.mouser.com/ds/2/38/AV02-4887EN_PB_AFBR-0549Z_2015-04-07-553012.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Avago-Technologies/AFBR-0550Z/?qs=sGAEpiMZZMuD4PtVTHYOZz4Bpkfy62vzfg9sGm0%2fjkT1wrGfP%252bDB5w%3d%3d">更多信息可用 </a>
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=TdjFSJyyr8zO658dlN2vtg%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=TdjFSJyyr8zO658dlN2vtg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STEVAL-ILL067V1" data-index="13">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$chkSelect" onclick="javascript:RowSelected(13, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/STEVAL-ILL067V1_DSL.JPG</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL067V1/?qs=sGAEpiMZZMuD4PtVTHYOZ9OPCzGAM4PpwsyUmkAfo12qrV2sa%252bL4mA%3d%3d">STEVAL-ILL067V1</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
- </td><td>LED 照明开发工具 Six-channel ALED7707-based LED driver with embedded boost converter for automotive interior lighting and TFT backlightin
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-steval-ill067v1-board">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"STMicroelectronics","511-STEVAL-ILL067V1 | STEVAL-ILL067V1"]);" href="http://www.mouser.com/ds/2/389/DM00205707-706365.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">3<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥394.6761</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(11,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 11);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy" title="购买 STEVAL-ILL067V1" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=hTkSsNmZDMvpNoLCRUErYQ%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=hTkSsNmZDMvpNoLCRUErYQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="511-STEVAL-ILL072V1" data-index="14">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$chkSelect" onclick="javascript:RowSelected(14, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/STEVAL-ILL072V1_DSL.JPG</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL072V1/?qs=sGAEpiMZZMuD4PtVTHYOZ9OPCzGAM4Ppv%2fhgV6Ywkjtvd5JbibnGGg%3d%3d">STEVAL-ILL072V1</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
- </td><td>LED 照明开发工具 Single channel, 1 A automotive LED driver with boost controller for interior/exterior lights
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"STMicroelectronics","511-STEVAL-ILL072V1 | STEVAL-ILL072V1"]);" href="http://www.mouser.com/ds/2/389/DM00205780-706380.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">5<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥529.4367</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(12,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 12);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy" title="购买 STEVAL-ILL072V1" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=8DyoUQ52Y81jUBYfIXEDQA%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=8DyoUQ52Y81jUBYfIXEDQA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STEVAL-ILL075V1" data-index="15">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$chkSelect" onclick="javascript:RowSelected(15, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/STMicroelectronics/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/STEVAL-ILL075V1_DSL.JPG</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL075V1/?qs=sGAEpiMZZMuD4PtVTHYOZwHDJf2CyvMcqKyVmBvVyIMJ%2fRJ93PF7OQ%3d%3d">STEVAL-ILL075V1</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
- </td><td>LED 照明开发工具 STLUX385A evaluation board
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-stlux385a-led-driver">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"STMicroelectronics","511-STEVAL-ILL075V1 | STEVAL-ILL075V1"]);" href="http://www.mouser.com/ds/2/389/DM00238618-888088.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_pnlRestricted">
-
- <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>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=Z09blr9fAZOAAnJCtl19lg%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Z09blr9fAZOAAnJCtl19lg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="511-STEVAL-ILL084V1" data-index="16">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$chkSelect" onclick="javascript:RowSelected(16, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/STMicroelectronics/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/STEVAL-ILL084V1_DSL.JPG</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL084V1/?qs=sGAEpiMZZMuD4PtVTHYOZ0t7VOx%252bzB0nmfVWi0Nu%252bh4ia4vUOjwjBw%3d%3d">STEVAL-ILL084V1</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
- </td><td>LED 照明开发工具 0.5 A, floating boost LED driver board based on the LED6000
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"STMicroelectronics","511-STEVAL-ILL084V1 | STEVAL-ILL084V1"]);" href="http://www.mouser.com/ds/2/389/DM00264103-890268.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=SyPQutNN76ifkdVUYcljOw%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=SyPQutNN76ifkdVUYcljOw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="584-EVAL-CN0370-PMDZ" data-index="17">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$chkSelect" onclick="javascript:RowSelected(17, this.checked);" /></span>
- </div>
- </td><td></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <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 />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
- </td><td>LED 照明开发工具 CN0368 Evaluation Board
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Analog Devices","584-EVAL-CN0370-PMDZ | EVAL-CN0370-PMDZ"]);" href="http://www.mouser.com/ds/2/609/CN0370-785110.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">4<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥259.9038</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 15);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_btnBuy" title="购买 EVAL-CN0370-PMDZ" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=N7PCT3NbuLnSSdLb1tlguw%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=N7PCT3NbuLnSSdLb1tlguw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="511-STEVAL-ILL073V1" data-index="18">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$chkSelect" onclick="javascript:RowSelected(18, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/STEVAL-ILL073V1_DSL.JPG</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <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 />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
- </td><td>LED 照明开发工具 RGB LED driver for automotive lighting based on ALED1642GW and STM8A
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../stm-aled1642gw-led-driver">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"STMicroelectronics","511-STEVAL-ILL073V1 | STEVAL-ILL073V1"]);" href="http://www.mouser.com/ds/2/389/DM00261247-876397.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=14UkvRwbmmWetChM46QPsA%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=14UkvRwbmmWetChM46QPsA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="511-STEVAL-ILL077V1" data-index="19">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$chkSelect" onclick="javascript:RowSelected(19, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/STEVAL-ILL077V1_DSL.JPG</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/STEVAL-ILL077V1/?qs=sGAEpiMZZMuD4PtVTHYOZ0t7VOx%252bzB0nxMTvMtM5QREKyv87OD3zjg%3d%3d">STEVAL-ILL077V1</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
- </td><td>LED 照明开发工具 60 W, digital 3-LED channel evaluation board with STNRG388A-controlled current regulation and dimming
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="http://mouser.com/stm-evlstrng-boards">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"STMicroelectronics","511-STEVAL-ILL077V1 | STEVAL-ILL077V1"]);" href="http://www.mouser.com/ds/2/389/DM00264771-890271.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=SyPQutNN76j1oGdKciyMag%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=SyPQutNN76j1oGdKciyMag%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="595-DLPLCR4500EVM" data-index="20">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$chkSelect" onclick="javascript:RowSelected(20, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/DLPLCR4500EVM.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/DLPLCR4500EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fhQWZ39YWM%252bCEjTnmvzLeM%3d">595-DLPLCR4500EVM</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DLPLCR4500EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fhQWZ39YWM%252bCEjTnmvzLeM%3d">DLPLCR4500EVM</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
- </td><td>显示开发工具 DLP Lightcrafter 4500
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/texasinstruments/ti-dlp4500-micromirror-device/">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Texas Instruments","595-DLPLCR4500EVM | DLPLCR4500EVM"]);" href="http://www.mouser.com/ds/2/405/dlpu011e-847518.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">38<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥10,003.5234</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 18);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_btnBuy" title="购买 DLPLCR4500EVM" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=ZIA%252beERyzzklMZDJ175uVQ%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=ZIA%252beERyzzklMZDJ175uVQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="595-DLPLCR6500EVM" data-index="21">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$chkSelect" onclick="javascript:RowSelected(21, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/DLP_Lightcrafter_6500_EVM_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DLPLCR6500EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fLeh%2fN4NwhtmLL4X8abF16F04He64WIEQ%3d%3d">DLPLCR6500EVM</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
- </td><td>显示开发工具 DLP LightCrafter6500 Evaluation Module
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-dlp6500-dmd/">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Texas Instruments","595-DLPLCR6500EVM | DLPLCR6500EVM"]);" href="http://www.mouser.com/ds/2/405/dlpu028b-769845.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">8<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Texas-Instruments/DLPLCR6500EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fLeh%2fN4NwhtmLL4X8abF16F04He64WIEQ%3d%3d">更多信息可用 </a>
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥15,394.1814</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 19);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_btnBuy" title="购买 DLPLCR6500EVM" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=%2fG79GK02NaBwUX9FSYBgeA%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=%2fG79GK02NaBwUX9FSYBgeA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="595-DLPNIRNANOEVM" data-index="22">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$chkSelect" onclick="javascript:RowSelected(22, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/dlpnirnanoevm_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/DLPNIRNANOEVM/?qs=sGAEpiMZZMuD4PtVTHYOZy06fIRZL%2fnTxrukBoN6ndqmkEXR3MSlTg%3d%3d">595-DLPNIRNANOEVM</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DLPNIRNANOEVM/?qs=sGAEpiMZZMuD4PtVTHYOZy06fIRZL%2fnTxrukBoN6ndqmkEXR3MSlTg%3d%3d">DLPNIRNANOEVM</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span><img src="/images/icon-lc-new-at-mouser-sm.png" alt="Mouser 的新产品" /><br/>Mouser 的新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
- </td><td>显示开发工具 DLP LightCrafter
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-cc2564modn-module/">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Texas Instruments","595-DLPNIRNANOEVM | DLPNIRNANOEVM"]);" href="http://www.mouser.com/ds/2/405/dlpu030d-847396.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">14<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥7,693.2414</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 20);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy" title="购买 DLPNIRNANOEVM" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=1j77i4KFushEIELwM9V5bg%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1j77i4KFushEIELwM9V5bg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="595-DLPLCR9000EVM" data-index="23">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$chkSelect" onclick="javascript:RowSelected(23, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/dlplcr9000evm_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DLPLCR9000EVM/?qs=sGAEpiMZZMuD4PtVTHYOZ%2fLeh%2fN4NwhtfPWVdN63%252bB2L1BYAe1sSkA%3d%3d">DLPLCR9000EVM</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
- </td><td>显示开发工具 DLP LightCrafter9000 Evaluation Module
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-dlp9000-dmd/">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Texas Instruments","595-DLPLCR9000EVM | DLPLCR9000EVM"]);" href="http://www.mouser.com/ds/2/405/dlpu028b-769845.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">5<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥44,272.7064</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 21);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy" title="购买 DLPLCR9000EVM" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=%2fG79GK02NaCS7n6%2fj3DWkw%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=%2fG79GK02NaCS7n6%2fj3DWkw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="508-FDB-1043" data-index="24">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$chkSelect" onclick="javascript:RowSelected(24, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/finisar/images/fdb1043evalboard.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Finisar/FDB-1043/?qs=sGAEpiMZZMuD4PtVTHYOZ%252bBo22Pv2eUGC5fXC3r7iDk%3d">508-FDB-1043</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Finisar/FDB-1043/?qs=sGAEpiMZZMuD4PtVTHYOZ%252bBo22Pv2eUGC5fXC3r7iDk%3d">FDB-1043</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../Finisar-Corporation">Finisar</a>
- </td><td>光学纤维开发工具 Breakout Eval Brd C.wr/CXP 1-12.5Gbps
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../finisar-ftld10ce1c-optical-transceiver">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Finisar","508-FDB-1043 | FDB-1043"]);" href="http://www.mouser.com/ds/2/610/FDB_1043_REVB-267373.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">9<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥19,252.35</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(22,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 22);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy" title="购买 FDB-1043" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=NXCwVa6lVMwEUt8WYy3QYQ%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=NXCwVa6lVMwEUt8WYy3QYQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="971-SK-70DT" data-index="25">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$chkSelect" onclick="javascript:RowSelected(25, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/4dsystems/images/SK-70DT.jpg</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/4D-Systems/SK-70DT/?qs=sGAEpiMZZMuD4PtVTHYOZyGhJYg%252bDUoWh4szE2vRV5424XXFdtgPgA%3d%3d">SK-70DT</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../4d-systems">4D Systems</a>
- </td><td>显示开发工具 7" TFT LCD Touch starter kit
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../4dsystems-70dt-displays">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">52<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,532.4894</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,5);">5:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1,455.8661</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,348.5888</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,50);">50:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1,254.1698</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <a onclick="javascript:window.location="../../../../../Quote/quote.aspx?mouserpartnumber=971-SK-70DT&quantity=100";_gaq.push(['_trackEvent','Quote Request',"4D Systems","971-SK-70DT",1]);return false;" href="../../../../../Quote/quote.aspx">报价</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy')">
-
- <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(23,this.value);" /><br />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 23);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy" title="购买 SK-70DT" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=tFJ62fOoMlWutPAE6yxQpA%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tFJ62fOoMlWutPAE6yxQpA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="595-BBEXPDTC70" data-index="26">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$chkSelect" onclick="javascript:RowSelected(26, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/svtronics/images/595-BBEXPDTC70.JPG</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/SVTronics/BBEXPDTC70/?qs=sGAEpiMZZMuD4PtVTHYOZ7sCME%252bPtiZKGD3euSzwnelBzM6CG7ePYg%3d%3d">595-BBEXPDTC70</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/SVTronics/BBEXPDTC70/?qs=sGAEpiMZZMuD4PtVTHYOZ7sCME%252bPtiZKGD3euSzwnelBzM6CG7ePYg%3d%3d">BBEXPDTC70</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../svtronics">SVTronics</a>
- </td><td>显示开发工具 7" LCD 1024X600 CAPACITIVE TOUCH
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"SVTronics","595-BBEXPDTC70 | BBEXPDTC70"]);" href="http://www.mouser.com/ds/2/668/SVTronics_595-BBEXPDTC70%20%20Data%20Sheet-341089.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">48<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,077.7455</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 24);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_btnBuy" title="购买 BBEXPDTC70" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=zWSQZq6P0Lyijza52mOxUg%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=zWSQZq6P0Lyijza52mOxUg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="971-SK-70DT-AR" data-index="27">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$chkSelect" onclick="javascript:RowSelected(27, this.checked);" /></span>
- </div>
- </td><td><a href='/ProductDetail/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> 扩大</div><div class="hiddendiv" style="display:none" />/images/4dsystems/images/SK-70DT-AR_SPL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <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 />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <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 />
- <br />
- <div style="width: 100%; text-align: center;">
- <span><img src="/images/icon-lc-new-at-mouser-sm.png" alt="Mouser 的新产品" /><br/>Mouser 的新产品</span><br/><br/>
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../4d-systems">4D Systems</a>
- </td><td>显示开发工具 uLCD---70DT---AR w/ uSD-2GB and uUSB-PA5
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../4dsystems-70dt-displays">了解更多</a>
- </div>
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"4D Systems","971-SK-70DT-AR | SK-70DT-AR"]);" href="http://www.mouser.com/ds/2/451/uLCD-70DT-AR_datasheet_R_1_1-346814.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">44<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,609.4988</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,5);">5:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1,529.0262</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,416.3552</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,50);">50:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1,317.1743</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <a onclick="javascript:window.location="../../../../../Quote/quote.aspx?mouserpartnumber=971-SK-70DT-AR&quantity=100";_gaq.push(['_trackEvent','Quote Request',"4D Systems","971-SK-70DT-AR",1]);return false;" href="../../../../../Quote/quote.aspx">报价</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 25);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy" title="购买 SK-70DT-AR" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=8JTJrYFRfdtxpVrKMTgKrw%3d%3d');return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=8JTJrYFRfdtxpVrKMTgKrw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td>
- </tr>
- </table>
- </div>
- </td>
- </tr>
- <tr>
- <td class="tdSearchResultsPagingBottom">
- <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
- <tr>
- <td>
- <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
- </td>
- <td>
- <input type="submit" name="ctl00$ContentMain$btn4" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) && 0 == 0) { alert('请选择您希望对比的产品。'); return false; };" id="ctl00_ContentMain_btn4" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
- </td>
- <td>
- <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
- </td>
- <td style="padding-left: 40px;">
- <div class="floatrightpager">
- <span class="bold">
- 页面:
- </span>
- <span id="ctl00_ContentMain_PagerBottom"><span id="ctl00_ContentMain_PagerBottom_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerBottom_1" href="/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>
- </div>
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td>
- <!--- Search Tips --->
- </td>
- </tr>
- <tr>
- <td>
- <!-- SOP Section 2 -->
- </td>
- </tr>
- </table>
- </div>
- </div><!-- #liProducts-->
- <!-- Datasheets tab -->
- <!-- #liDatasheets-->
- <!-- Images tab -->
- <!-- #liImages-->
- <!-- Newest Products tab -->
- <!-- #liProducts-->
- </div>
- <div style="visibility: hidden;">
- <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
- <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
- <span id="SearchResultCount">1361</span>
- <div id="disclaimer">
- 图像仅供参考<br/>请参阅产品规格</div>
- </div>
- <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Engineering-Development-Tools/Optoelectronic-Development-Tools" />
- <script type="text/javascript" src='../../../../../javascript/ProductImage.js'></script>
- <script type="text/javascript" src='../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
- <script type="text/javascript" src='../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
- <!--[if gte IE 9]><!-->
- <script type="text/javascript" src='../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
- <!--<![endif]-->
- <!--[if lt IE 9]>
- <script type="text/javascript" src='../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
- <![endif]-->
- <script type="text/javascript" src='../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
- <script type="text/javascript">
- var subdomain = 'cn2';
- </script>
- </div>
- <div class="aspNetHidden">
- <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
- <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
- <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
-
- <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
- </div>
- <script type="text/javascript">
- //<![CDATA[
- var mfrIDsArray = new Array;
- //]]>
- </script>
- <script src='../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
- <script type="text/javascript">
- //<![CDATA[
- var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
- </script>
- <script src='../../../../../flash/js/Plugin/jquery.autoSuggest3.js?v=3.0.20160304.2' type='text/javascript'></script><script src='../../../../../flash/js/AutoSuggestionM3.js?v=3.0.20160304.2' type='text/javascript'></script>
- <script type="text/javascript">
- //<![CDATA[
- maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
- <!-- Google Code for Conversion Page Remarketing List -->
- <!--
- var google_conversion_id = 1046090287;
- var google_conversion_language = "en";
- var google_conversion_format = "3";
- var google_conversion_color = "666666";
- var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
- var google_conversion_value = 0;
- //-->
- </script>
- <div class="ga-remarketing">
- <script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
- </script>
- </div>
- <noscript>
- <div style="display:inline;">
- <img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1046090287/?label=9WmrCMOVxQEQr6To8gM&guid=ON&script=0" />
- </div>
- </noscript>
- <script type="text/javascript">
- //]]>
- </script>
- <script type='text/javascript'>$(document).ready(function() { $(':text').blur(); });</script><script src='../../../../../flash/js/DataTables-1.9.4/jquery.dataTables.min.js' type='text/javascript'></script><script src='../../../../../flash/js/DataTables.js?v=3.0.20160304.2' type='text/javascript'></script><script src='../../../../../flash/js/jquery.hoverIntent.minified.js?v=3.0.20160304.2' type='text/javascript'></script>
- <script type="text/javascript">
- //<![CDATA[
- theForm.oldSubmit = theForm.submit;
- theForm.submit = WebForm_SaveScrollPositionSubmit;
- theForm.oldOnSubmit = theForm.onsubmit;
- theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
- //]]>
- </script>
- </form>
- <div id="content-container2" class="hidden">
- <div id="content-fixed-width2" class="content-fixed-width">
- </div>
- </div>
- <div id="wideFooter" class="wideFooter">
- <div id="footer" class="container">
- <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB09|20160304.2" />
- <div id="ft_table1">
- <div class="row">
- <div class="col-xs-12">
- <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
-
- <div class="floatleft padding5right">
- <strong class="h3">
- 快速电子邮件注册</strong>
- <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
- </div>
- <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
- 提交
- </a>
- </div>
- <div id="ft_icons" class="ft_icons">
- <div id="ft_social">
- <a id="ctl00_Footer1_lnkWechat" title="微信" onclick="ga('send','event','Social Media Footer Icon','Wechat','http://www.mouser.cn/wechat');" href="http://www.mouser.cn/wechat"><div id="ctl00_Footer1_imgWechat" class="ico-social wechat"></div></a>
- <a id="ctl00_Footer1_lnkYouKu" title="优酷" onclick="ga('send','event','Social Media Footer Icon','YouKu','http://i.youku.com/mouserelectronics');" href="http://i.youku.com/mouserelectronics" target="_blank"><div id="ctl00_Footer1_imgYouKu" class="ico-social youku"></div></a>
- <a id="ctl00_Footer1_lnkWeibo" title="新浪微博" onclick="ga('send','event','Social Media Footer Icon','Sina Weibo','http://www.weibo.com/u/2498646920');" href="http://www.weibo.com/u/2498646920" target="_blank"><div id="ctl00_Footer1_imgWeigo" class="ico-social weibo"></div></a>
- <a id="ctl00_Footer1_lnkFB" title="facebook" onclick="ga('send','event','Social Media Footer Icon','facebook','http://www.facebook.com/mouserelectronics');" href="http://www.facebook.com/mouserelectronics" target="_blank">
- <div class="ico-social fb"></div>
- </a>
- <a id="ctl00_Footer1_lnkTw" title="Twitter" onclick="ga('send','event','Social Media Footer Icon','Twitter','http://www.twitter.com/mouserelec');" href="http://www.twitter.com/mouserelec" target="_blank">
- <div class="ico-social tw"></div>
- </a>
- <a id="ctl00_Footer1_lnkRSS" title="RSS" onclick="ga('send','event','Social Media Footer Icon','RSS','http://www.mouser.cn/rssfeeds');" href="http://www.mouser.cn/rssfeeds" target="_blank">
- <div class="ico-social rss"></div>
- </a>
- <a id="ctl00_Footer1_lnkYT" title="YouTube" onclick="ga('send','event','Social Media Footer Icon','YouTube','http://www.youtube.com/mouserelec');" href="http://www.youtube.com/mouserelec" target="_blank">
- <div class="ico-social yt"></div>
- </a>
- <a id="ctl00_Footer1_lnkGp" title="Google+" onclick="ga('send','event','Social Media Footer Icon','Google+','http://google.com/+MouserElec');" href="http://google.com/+MouserElec" target="_blank">
- <div class="ico-social gp"></div>
- </a>
- <a id="ctl00_Footer1_lnkLn" title="LinkedIn" onclick="ga('send','event','Social Media Footer Icon','LinkedIn','http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT');" href="http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT" target="_blank">
- <div class="ico-social ln"></div>
- </a>
- <a id="ctl00_Footer1_lnkSb" title="订阅中心" onclick="ga('send','event','Social Media Footer Icon','Subscription Center','http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx');" href="http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx">
- <div class="ico-social sb"></div>
- </a>
- <a id="ctl00_Footer1_lnkBlog" title="Mouser博客" onclick="ga('send','event','Social Media Footer Icon','Mouser Blog','http://www.mouser.cn/blog');" href="http://www.mouser.cn/blog">
- <div class="ico-social blog"></div>
- </a>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
- <div class="ft_wrapper">
- <div id="ft_links" class="row">
- <div class="col-xs-3 paddingBtm10 hidden-xs">
- <strong class="paddingTopBtm10 inline-block">
- 公司</strong>
- <ul>
- <li>
- <a id="ctl00_Footer1_lnk26" href="../../../../../aboutus/">关于我们</a></li>
- <li>
- <a id="ctl00_Footer1_lnk28" href="../../../../../educationalsales/">教育销售</a></li>
- <li>
- <a id="ctl00_Footer1_lnk31" href="../../../../../pressroom/">新闻中心</a></li>
- <li>
- <a id="ctl00_Footer1_lnk32" href="../../../../../careers/">Mouser 工作机会</a></li>
- <li>
- <a id="ctl00_Footer1_lnk29" href="../../../../../quality/">品质保证</a></li>
- <li>
- <a id="ctl00_Footer1_lnk30" href="../../../../../environmental/">环境保护</a></li>
- </ul>
- </div>
- <div class="col-xs-3 hidden-xs">
- <strong class="paddingTopBtm10 inline-block">
- 快速链接</strong>
- <ul>
- <li><a id="A7" href="/blog">
- Mouser博客</a></li>
- <li>
- <a id="ctl00_Footer1_hlnk1" href="../../../../../new/">最新产品</a></li>
- <li>
- <a id="ctl00_Footer1_hlnk2" href="../../../../../new/products/">新产品</a></li>
- <li>
- <a id="ctl00_Footer1_hlnk3" href="../../../../../applications/">新技术</a></li>
- </ul>
- </div>
- <div class="col-xs-12 col-sm-3">
- <strong class="paddingTopBtm10 inline-block">
- 支持</strong>
- <ul>
- <li><a id="A3" href="/feedback.aspx">
- 反馈</a></li>
- <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
- 帮助</a></li>
- <li>
- <a id="ctl00_Footer1_lnk27" href="../../../../../contact/">联系我们</a></li>
- <li class="hidden-xs"><a id="A5" href="/browsersupport/">
- 浏览器支持</a></li>
- <li><a id="A6" href="/cookie-policy/">
- Cookie政策</a></li>
- </ul>
- </div>
- <div class="col-xs-12 col-sm-3">
- <strong class="paddingTopBtm10 inline-block">
- 昴氏(上海)电子贸易有限公司</strong>
- <ul>
- <li>
- <h4>
- 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <div class="row">
- <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
-
- <div id="ft_copy">
- <span class="ft_terms">
- <a id="A1" href="/privacypolicy/">
- 隐私政策</a>
- |
- <a id="href3" href="/saleterms/">
- 销售条款</a>
- <br />
- </span>
- <span class="ft_copyright">
- 版权所有©2016 Mouser Electronics, Inc
- |
- 沪ICP备15042575号-1
- <br />
- </span>
- <span class="ft_trade">
- Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
- </span>
- <span class="ft_hq">
- Corporate headquarters and logistics center in Mansfield, Texas USA.
- </span>
- <br />
- <span class="ft_ClassicMobile">
- <strong>
- <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../m_Home.aspx">通过移动设备查看</a></strong>
- </span>
- </div>
- </div>
- <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
- <a id="ctl00_Footer1_linkECIA" title="ECIA" class="ft_cert_padding ft_ecia" href="../../../../../ecia/"><img id="ctl00_Footer1_imgECIA" src="../../../../../Images/footer/logo-ecia_small.png" alt="ECIA" /></a>
- <a id="ctl00_Footer1_linkCEDA" title="CEDA" class="ft_cert_padding ft_ceda" href="../../../../../ecia/"><img id="ctl00_Footer1_imgCEDA" src="../../../../../Images/footer/logo-ceda_small.png" alt="CEDA" /></a>
- <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
- <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
- </a>
- <a id="ctl00_Footer1_lnkSiteSecureSeal" class="ft_cert_padding ft_secure" href="https://seal.qualys.com/sealserv/info/?i=c8b29c82-965e-403b-956c-c855241927bb" target="_blank"><img id="ctl00_Footer1_imgSiteSecureSeal" oncontextmenu="javascript:alert('Copying Prohibited by Law'); return false;" src="//seal.qualys.com/sealserv/seal.gif?i=c8b29c82-965e-403b-956c-c855241927bb" alt="Qualys Secure Seal" style="border-style:None;" /></a>
- <a id="ctl00_Footer1_Hyperlink1" class="ft_cert_padding ft_sgs" href="http://www.sgs.gov.cn/lz/licenseLink.do?method=licenceView&entyId=20120329100456493" target="_blank" style="text-decoration:none;"><img id="ctl00_Footer1_imgChinaCN2" src="../../../../../images/footer/icon_SGS.gif" style="border-style:None;height:37px;width:45px;" />
- </a>
- </div>
- <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
- <a id="ctl00_Footer1_linkNfsb" title="Customer Service Award" class="ft_cert_padding ft_award" href="../../../../../nfsb-award/"><img id="ctl00_Footer1_imgNfsb" src="../../../../../Images/footer/logo-nfsb_small.png" alt="Customer Service Award" /></a>
- <a id="ctl00_Footer1_linkISO9001" title="ISO9001" class="ft_cert_padding ft_iso" href="../../../../../quality/"><img id="ctl00_Footer1_imgISO9001" src="../../../../../Images/footer/logo-ISO9001_small.png" alt="ISO9001" /></a>
- <a id="ctl00_Footer1_linkAS9120A" title="AS9120A" class="ft_cert_padding ft_as9" href="../../../../../as9100C/"><img id="ctl00_Footer1_imgAS9120A" src="../../../../../Images/footer/logo-as9120a_small.png" alt="AS9120A" /></a>
- <a id="ctl00_Footer1_linkESD2020" title="ESD" class="ft_cert_padding ft_esd" href="../../../../../quality/"><img id="ctl00_Footer1_imgESD" src="../../../../../Images/footer/logo-esd_small.png" alt="ESD" /></a>
- </div>
- </div>
- <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-WXX6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-WXX6');</script>
- <script type="text/javascript">
- var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
- </script>
- </div>
- </div>
- <script src="../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
- <script type="text/javascript">var _elqQ = _elqQ || []; _elqQ.push(['elqSetSiteId', '1742027581']); _elqQ.push(['elqTrackPageView']); _elqQ.push(['elqUseFirstPartyCookie', 'elq.mouser.cn']); (function () { function async_load() { var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img03.en25.com/i/elqCfg.min.js'; var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x); } if (window.addEventListener) window.addEventListener('DOMContentLoaded', async_load, false); else if (window.attachEvent) window.attachEvent('onload', async_load); })();</script>
- </body>
- </html>
|