44.html 332 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head id="ctl00_header">
  4. <!-- AppInternalsXpert BMX Integration Begin -->
  5. <script>
  6. if(!OPNET_ARXS){
  7. var OPNET_ARXS={startJS:Number(new Date()),
  8. clientId:'7496BECC1B8E33C4',appId:100040,
  9. collector:'perf.mouser.com',
  10. collectorHttpPort:80, collectorHttpsPort:443,
  11. sv:'0302',
  12. tag1:'', tag2:'', tag3:''};
  13. (function(){
  14. var w=window,l=w.addEventListener,m=w.attachEvent,
  15. d=document,s='script',t='load',o=OPNET_ARXS,
  16. z='-0b2c4d73f58414c86c7384150be8ca44',
  17. r=(('https:'===d.location.protocol)?
  18. 'https://953c27ce3b34cfb8cc56'+z+'.ssl':
  19. 'http://fb3f316d487bcc59f7ec'+z+'.r88')+
  20. '.cf1.rackcdn.com/opnet_browsermetrix.c.'+
  21. (o.ajax?'ajax.js':'js'),p=('onpagehide' in w),e=p?'pageshow':t,
  22. j=d.createElement(s),x=d.getElementsByTagName(s)[0],
  23. h=function(y){o.ldJS=new Date();o.per=y?y.persisted:null;},
  24. i=function(){o.ld=1;};o.cookie=d.cookie;d.cookie=
  25. '_op_aixPageId=0; path=/; expires='+(new Date(0)).toGMTString();
  26. o.cookieAfterDelete=d.cookie;j.async=1;j.src=r;
  27. if(l){l(e,h,false);if(p){l(t,i,false);}}else if(m)
  28. {m('on'+e,h);if(p){m('on'+t,i);}}
  29. if(o.sync){d.write('<'+s+' src=\''+r+'\'></'+s+'>');}
  30. else{x.parentNode.insertBefore(j,x);}
  31. })();}
  32. </script>
  33. <script>if(!OPNET_ARXS_PARAM){var OPNET_ARXS_PARAM={};} OPNET_ARXS_PARAM.pageId = 'a2_83a77b35-04c9-47ae-8b84-5ee1d531a01f-27812-317833';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. LED灯泡与模块 | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应LED灯泡与模块 。Mouser提供LED灯泡与模块 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="LED灯泡与模块" /><meta name="verify-v1" content="bhrmPa5uloYbiuM+lDu4z+y0qUGeKGW5FfFMprQAqlU=" /><meta name="viewport" content="width=1000, initial-scale=1" /><meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
  38. <!-- BASE STYLE SHEET -->
  39. <link rel="shortcut icon" href="../../../../../favicon.ico" /><link rel="alternate" type="application/rss+xml" title="RSS" href="../../../../../rss/rss.xml" />
  40. <!--[if IE 7]>
  41. <link rel="stylesheet" type="text/css" href="../../../../../css/ie7.css" />
  42. <![endif]-->
  43. <!--[if IE 8]>
  44. <link rel="stylesheet" type="text/css" href="../../../../../css/ie8.css" />
  45. <![endif]-->
  46. <!--[if IE 9]>
  47. <link rel="stylesheet" type="text/css" href="../../../../../css/ie9.css" />
  48. <![endif]-->
  49. <script type="text/javascript">
  50. function OpenBackordered(URL) {
  51. var MsgWindow;
  52. MsgWindow = window.open(URL, "MsgWindow", "scrollbars=1,height=500,width=650,menubar=0,resizable=1");
  53. }
  54. </script>
  55. <script type="text/javascript"> var _gaq = _gaq || [];var pluginUrl ='//www.google-analytics.com/plugins/ga/inpage_linkid.js';_gaq.push(['_require', 'inpage_linkid', pluginUrl]); _gaq.push(['_setAccount', "UA-521079-1"]);_gaq.push(['_setDomainName', "mouser.cn"]);_gaq.push(['_setAllowLinker', true]);_gaq.push(['_setAllowAnchor', true]);_gaq.push(["_setCustomVar",1,"Language","zh-CN",3]);_gaq.push(["_setCustomVar",30,"s35h","Jj0Edy3t0FyDtsC+VKpHJuoTuUuWXLYnzPEm0KSEsJs=",2]);_gaq.push(["_setCustomVar",31,"Cart","ae1f104d-9b31-430d-ad8a-f61dcb0d593a",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA126AA144",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '997-L2M0-5070004MC22',
  65. 'name': 'LED Lighting Modules White 5000K, 70-CRI 4-Up Square',
  66. 'category': 'LED Lighting Modules',
  67. 'brand': 'Lumileds',
  68. 'variant': 'L2M0-5070004MC2200',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '997-L2M0-4070004MC22',
  74. 'name': 'LED Lighting Modules White 4000K, 70-CRI 4-Up Square',
  75. 'category': 'LED Lighting Modules',
  76. 'brand': 'Lumileds',
  77. 'variant': 'L2M0-4070004MC2200',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '997-L2M0-5770004MC22',
  83. 'name': 'LED Lighting Modules White 5700K, 70-CRI 4-Up Square',
  84. 'category': 'LED Lighting Modules',
  85. 'brand': 'Lumileds',
  86. 'variant': 'L2M0-5770004MC2200',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '997-L2M0-5070005MC33',
  92. 'name': 'LED Lighting Modules White 5000K, 70-CRI 5-Up Linear',
  93. 'category': 'LED Lighting Modules',
  94. 'brand': 'Lumileds',
  95. 'variant': 'L2M0-5070005MC3300',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '997-L219-3080C06FV00',
  101. 'name': 'LED Lighting Bars and Strips White 3000K, 80-CRI 24 V, 6 X 3014, Reel',
  102. 'category': 'LED Lighting Bars and Strips',
  103. 'brand': 'Lumileds',
  104. 'variant': 'L219-3080C06FV0000',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '997-L2M0-4070005MC33',
  110. 'name': 'LED Lighting Modules White 4000K, 70-CRI 5-Up Linear',
  111. 'category': 'LED Lighting Modules',
  112. 'brand': 'Lumileds',
  113. 'variant': 'L2M0-4070005MC3300',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '997-L2M0-5070004MC33',
  119. 'name': 'LED Lighting Modules White 5000K, 70-CRI 4-Up Linear',
  120. 'category': 'LED Lighting Modules',
  121. 'brand': 'Lumileds',
  122. 'variant': 'L2M0-5070004MC3300',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '997-L2M0-5770005MC33',
  128. 'name': 'LED Lighting Modules White 5700K, 70-CRI 5-Up Linear',
  129. 'category': 'LED Lighting Modules',
  130. 'brand': 'Lumileds',
  131. 'variant': 'L2M0-5770005MC3300',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '997-L219-3080030FV0C',
  137. 'name': 'LED Lighting Bars and Strips White 3000K, 80-CRI 24 V, 30 X 3014',
  138. 'category': 'LED Lighting Bars and Strips',
  139. 'brand': 'Lumileds',
  140. 'variant': 'L219-3080030FV0C00',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '997-L219-2780030FV0C',
  146. 'name': 'LED Lighting Bars and Strips White 2700K, 80-CRI 24 V, 30 X 3014',
  147. 'category': 'LED Lighting Bars and Strips',
  148. 'brand': 'Lumileds',
  149. 'variant': 'L219-2780030FV0C00',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '997-L2M0-5770004MC33',
  155. 'name': 'LED Lighting Modules White 5700K, 70-CRI 4-Up Linear',
  156. 'category': 'LED Lighting Modules',
  157. 'brand': 'Lumileds',
  158. 'variant': 'L2M0-5770004MC3300',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '997-L2M0-4070004MC33',
  164. 'name': 'LED Lighting Modules White 4000K, 70-CRI 4-Up Linear',
  165. 'category': 'LED Lighting Modules',
  166. 'brand': 'Lumileds',
  167. 'variant': 'L2M0-4070004MC3300',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '997-L219-2780C06FV00',
  173. 'name': 'LED Lighting Bars and Strips White 2700K, 80-CRI 24 V, 6 X 3014, Reel',
  174. 'category': 'LED Lighting Bars and Strips',
  175. 'brand': 'Lumileds',
  176. 'variant': 'L219-2780C06FV0000',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '896-CBT14WCSL16UA120',
  182. 'name': 'LED Lighting Modules Cool White, 7000K 3955lm, 21A, Round',
  183. 'category': 'LED Lighting Modules',
  184. 'brand': 'Luminus Devices',
  185. 'variant': 'CBT-140-WCS-L16-UA120',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '645-555-3007F',
  191. 'name': 'LED Circuit Board Indicators RED DIFFUSED 5 VOLT',
  192. 'category': 'LED Circuit Board Indicators',
  193. 'brand': 'Dialight',
  194. 'variant': '555-3007F',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '593-3000C',
  200. 'name': 'LED Lenses Clear Fresnel Lens Cliplite 5mm',
  201. 'category': 'LED Lenses',
  202. 'brand': 'VCC',
  203. 'variant': 'CLB300CTP',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '896-90W65SC11NA102',
  209. 'name': 'LED Lighting Modules White 6500K',
  210. 'category': 'LED Lighting Modules',
  211. 'brand': 'Luminus Devices',
  212. 'variant': 'CBT-90-W65S-C11-NA102',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '896-CBT14WCSL16UA123',
  218. 'name': 'LED Lighting Modules Cool White, 7000K 3955lm, 21A, Round',
  219. 'category': 'LED Lighting Modules',
  220. 'brand': 'Luminus Devices',
  221. 'variant': 'CBT-140-WCS-L16-UA123',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '593-RNG268',
  227. 'name': 'LED Mounting Hardware RETAINING RING',
  228. 'category': 'LED Mounting Hardware',
  229. 'brand': 'VCC',
  230. 'variant': 'RNG268',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '593-RTN150',
  236. 'name': 'LED Mounting Hardware RING MOUNTING',
  237. 'category': 'LED Mounting Hardware',
  238. 'brand': 'VCC',
  239. 'variant': 'RTN150',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '593-RTN250',
  245. 'name': 'LED Mounting Hardware MOUNTING RING CLIP',
  246. 'category': 'LED Mounting Hardware',
  247. 'brand': 'VCC',
  248. 'variant': 'RTN250',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '593-2000C',
  254. 'name': 'LED Lenses Clear Fresnel Lens Cliplite 3mm',
  255. 'category': 'LED Lenses',
  256. 'brand': 'VCC',
  257. 'variant': 'SMB200CTP',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '696-SSF-LXH305GD',
  263. 'name': 'LED Circuit Board Indicators Rt Angle Block Green',
  264. 'category': 'LED Circuit Board Indicators',
  265. 'brand': 'Lumex',
  266. 'variant': 'SSF-LXH305GD-TR',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '645-515-1049F',
  272. 'name': 'LED Light Pipes LIGHT PIPE SINGLE EL',
  273. 'category': 'LED Light Pipes',
  274. 'brand': 'Dialight',
  275. 'variant': '515-1049F',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '593-LCS032',
  281. 'name': 'LED Light Pipes Clear Transparent .32\" length',
  282. 'category': 'LED Light Pipes',
  283. 'brand': 'VCC',
  284. 'variant': 'LCS032CTP',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','Jj0Edy3t0FyDtsC+VKpHJuoTuUuWXLYnzPEm0KSEsJs=');
  290. ga('set','dimension31','ae1f104d-9b31-430d-ad8a-f61dcb0d593a');
  291. ga('set','dimension13','163AA125AA126AA144');
  292. ga('set','metric2',19348);
  293. ga('set','dimension5','LED Bulbs \u0026 Modules');
  294. ga('set','dimension48','b1a3c');
  295. ga('set','dimension3','Refine');
  296. ga('set','dimension55','Products');
  297. ga('send', 'pageview');
  298. </script>
  299. <link href="http://www.mouser.cn/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=25" rel="next" content="http://www.mouser.cn/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=25" /><link href="http://www.mouser.cn/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c" rel="canonical" content="http://www.mouser.cn/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c" /><meta http-equiv="content-language" content="zh-cn" /><link href="../../../../../css/style.axd?v=3.0.20160304.2&amp;type=css&amp;fileSet=CSS_Base&amp;lang=zh-CN" rel="stylesheet" type="text/css" /><link href="../../../../../css/style.axd?v=3.0.20160304.2&amp;fileSet=Css_Search&amp;type=css&amp;lang=zh-CN" rel="stylesheet" type="text/css" /><link rel="alternate" hreflang="es-AR" href="http://ar.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" /><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#yxezcaswaauztuaqaww{display:none!important}</style><!-- Optimized for speed - Stingray Aptimizer --></head>
  300. <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
  301. <script src='../../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
  302. <script src='../../../../../flash/js/empty.file.js' type="text/javascript"></script>
  303. <script src='../../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
  304. <script src='../../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
  305. <script src='../../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
  306. <!--[if lt IE 9]>
  307. <script src='../../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
  308. <![endif]-->
  309. <form method="post" action="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/" id="aspnetForm">
  310. <div class="aspNetHidden">
  311. <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
  312. <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
  313. <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" />
  314. <input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
  315. </div>
  316. <script type="text/javascript">
  317. //<![CDATA[
  318. var theForm = document.forms['aspnetForm'];
  319. if (!theForm) {
  320. theForm = document.aspnetForm;
  321. }
  322. function __doPostBack(eventTarget, eventArgument) {
  323. if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
  324. theForm.__EVENTTARGET.value = eventTarget;
  325. theForm.__EVENTARGUMENT.value = eventArgument;
  326. theForm.submit();
  327. }
  328. }
  329. //]]>
  330. </script>
  331. <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZIfBoSL8TZnsnOFihh6T3B3-ZDc9vWAo-Dvo5VSdzj9CkFL2Zg2&amp;t=635802997220000000" type="text/javascript"></script>
  332. <script type="text/javascript">
  333. //<![CDATA[
  334. var lasttemplateid='18535512';
  335. var subdomainname = '.mouser.cn';
  336. var lang = 'zh-CN';
  337. var country = 'CN';
  338. var shippingCountry = 'CN';
  339. var usdSubdomain = 'www';
  340. var subdomain = 'cn2';
  341. function attributecount() { return true; }
  342. var navids='18535512';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
  343. var left = (screen.width / 2) - (800 / 2);var top = (screen.height / 2) - (505 / 2); var msgWindow = window.open(url,'MsgWindow','height=505,width=800,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0');
  344. }
  345. function GenerateClientID(prefix, i, suffix) {
  346. if (i < 10) { return prefix + '0' + String(i) + suffix; }
  347. else { return prefix + String(i) + suffix; }
  348. }
  349. var checked = false;
  350. function SelectAll() {
  351. checked = !checked;
  352. var i = 3;
  353. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  354. while (i < 29) {
  355. if (chkSelect != null) chkSelect.checked = checked;
  356. i = i + 1;
  357. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  358. }
  359. }
  360. function IsAllChecked(checked) {
  361. var i = 3;
  362. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  363. while (i < 29) {
  364. if (chkSelect != null && chkSelect.checked != checked) return false;
  365. i = i + 1;
  366. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  367. }
  368. return true;
  369. }
  370. function IsAnyChecked(checked) {
  371. return !IsAllChecked(!checked);
  372. }
  373. function SelectRow(row, checked) {
  374. document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
  375. }
  376. function RowSelected(index, checked) { }
  377. function GetQuantityTextboxByRow(row) {
  378. return GetQuantityTextboxByIndex(row + 2);
  379. }
  380. function GetQuantityTextboxByIndex(index) {
  381. return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
  382. }
  383. function SelectQuantity(row, quantity) {
  384. txtQuantity = GetQuantityTextboxByRow(row);
  385. if (txtQuantity == null) { return; }
  386. txtQuantity.value = quantity;
  387. SelectRow(row, true);
  388. }
  389. var qtyRegEx = /^([0]|\s)*$/;
  390. function IsQuantityEmptyOrZero(quantity) {
  391. return qtyRegEx.test(quantity);
  392. }
  393. function QuantityChanged(row, quantity) {
  394. SelectRow(row, !IsQuantityEmptyOrZero(quantity));
  395. }
  396. var QuantityRowSelectedBase = RowSelected;
  397. function QuantityRowSelected(index, checked) {
  398. QuantityRowSelectedBase(index, checked);
  399. txtQuantity = GetQuantityTextboxByIndex(index);
  400. if (txtQuantity == null) { return; }
  401. if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
  402. else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
  403. }
  404. RowSelected = QuantityRowSelected;
  405. //]]>
  406. </script>
  407. <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&amp;t=5f9d5645" type="text/javascript"></script>
  408. <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&amp;t=5f9d5645" type="text/javascript"></script>
  409. <div id="cookie-notification-bar">
  410. </div>
  411. <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
  412. <div id="wideGab" class="wideGab">
  413. <div id="ctl00_globalActionBar" class="global-action-bar">
  414. <div id="gab-container" class="container">
  415. <div id="contact" class="row">
  416. <div class="topPadding col-xs-6">
  417. <div class="inline-block">
  418. <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
  419. <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>&nbsp;
  420. 400-821-6111</a><a href="xxrrtbuu.html" style="display: none;" rel="file" id="yxezcaswaauztuaqaww">ubqtbausacydzezvysubqtb</a>
  421. &nbsp;&nbsp;&nbsp;&nbsp;<span class="pipe">|</span>&nbsp;&nbsp;&nbsp;&nbsp;
  422. <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
  423. 反馈</a>
  424. </div>
  425. <span class="qqIcon inline-block">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
  426. </span>&nbsp;&nbsp;
  427. </div>
  428. <div class="col-xs-6 align-right">
  429. <div id="tdImg" class="inline-block topPadding9px">
  430. <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" class="smallgrey">
  431. <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
  432. <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
  433. </div>
  434. <div class="topPadding inline-block">
  435. <span class="pipe">|</span>&nbsp;&nbsp;&nbsp;
  436. <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwubk7B%2fKTjc08SOlkBycnaAAroViI4K9xupfeYofEJvQm4qiY273JO6zmsejI%252bS5kGsWz5oVz1R2QRA2N5ZfFJ8FO8%252bLr2pq3U%3d">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwubk7B%2fKTjc08SOlkBycnaAAroViI4K9xupfeYofEJvQm4qiY273JO6zmsejI%252bS5kGsWz5oVz1R2QRA2N5ZfFJ8FO8%252bLr2pq3U%3d"><img id="ctl00_gab1_img7" class="visualAttributeImage" src="../../../../../images/international/flags/cn2.gif" alt="更改位置" style="border-width: 1px;" /></a>
  438. <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
  439. <span id="ctl00_gab1_lbl1">RMB</span>
  440. </div>
  441. </div>
  442. </div>
  443. </div>
  444. <div style="clear: both;"></div>
  445. <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
  446. class="thickbox"></a>
  447. <div id="divCurrencyPopup" class="currency-popup">
  448. <div class="currency-close">
  449. <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();">&nbsp;</a>
  450. </div>
  451. <div>
  452. <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../../images/international/flags/cn2.gif" alt="中国" />&nbsp;<span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
  453. <br/>
  454. <div style="padding: 0 20px 0 20px">
  455. <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
  456. <br />
  457. <table width="95%">
  458. <tr>
  459. <td width="20%">
  460. <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
  461. </td>
  462. <td>
  463. <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
  464. <br/>
  465. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
  466. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
  467. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
  468. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
  469. </td>
  470. </tr>
  471. </table>
  472. </div>
  473. </div>
  474. </div>
  475. <div id="cartDialog" class="CartDialog" style="display: none;">
  476. <table id="miniCartOnly">
  477. <tr id="divall">
  478. <td id="tdCart">
  479. <table style="width: 100%; padding: 0px; border: 0px">
  480. <tr>
  481. <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
  482. <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
  483. </td>
  484. <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
  485. <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
  486. </td>
  487. </tr>
  488. </table>
  489. <table id="tableMiniCartItms">
  490. <tr id="trCart">
  491. <td>
  492. <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  493. <table id="tblMiniCart">
  494. <thead>
  495. <tr>
  496. <th class="miniCartColumn">制造商</th>
  497. <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
  498. <th class="miniCartColumn MiniCartHdBg">数量</th>
  499. <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
  500. </tr>
  501. </thead>
  502. </table>
  503. <script type="text/javascript">
  504. var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
  505. var currentGuid = 'ae1f104d-9b31-430d-ad8a-f61dcb0d593a';
  506. var currentCountryCode = 'CN';
  507. var currentCurrencyCode= 'RMB';
  508. var currencyCulture = 'zh-CN';
  509. var cultureCode = 'zh-CN';
  510. var customerID = '';
  511. </script>
  512. <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  513. </td>
  514. </tr>
  515. </table>
  516. <div style="display: none; padding-top: 10px" id="divSingleItem">
  517. <table id="tblSingeItem">
  518. <tr>
  519. <!-- Here goes the single item -->
  520. <td style="padding-right: 15px">
  521. <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
  522. <td style="align: right; padding-right: 2px" id="tdSingleItms">
  523. <div id="divAll">
  524. <div id="wrapper">
  525. <div id="divLbl">
  526. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
  527. </div>
  528. <div id="divHyp">
  529. </div>
  530. </div>
  531. <div id="divRest">
  532. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
  533. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
  534. <br />
  535. <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
  536. </div>
  537. </div>
  538. </td>
  539. </tr>
  540. </table>
  541. </div>
  542. <div id="divForCart" class="divMsgLnkTotal" style="display: none">
  543. <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
  544. <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
  545. <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
  546. <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
  547. <a onclick="javascript:return MiniCart.SendToCartPage(&#39;Cart Hover&#39;,&#39;View Cart Button&#39;);" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$linkToCartAtMiniCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  548. </div>
  549. </div>
  550. </td>
  551. <td style="display: none" id="trCartSubTotal">
  552. <table class="tblMiniCartSub">
  553. <tr>
  554. <td align="right" style="padding-bottom: 5px; padding-top: 2px">
  555. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
  556. <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
  557. </td>
  558. </tr>
  559. <tr>
  560. <td align="right" style="padding-bottom: 5px">
  561. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
  562. </td>
  563. </tr>
  564. <tr>
  565. <td align="left" style="padding-bottom: 5px">
  566. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
  567. </td>
  568. </tr>
  569. <tr>
  570. <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
  571. <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack(&#39;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune&#39;,&#39;&#39;)" style="color:White;text-decoration:none;">继续购物</a>
  572. <a onclick="return MiniCart.SendToCartPage(&#39;Add to Cart Modal&#39;,&#39;View Cart&#39;);" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  573. </td>
  574. </tr>
  575. </table>
  576. <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
  577. </td>
  578. </tr>
  579. <tr id="trHideModalCheckBox" style="display: none">
  580. <td colspan="2">
  581. <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
  582. </td>
  583. </tr>
  584. </table>
  585. <script type="text/javascript">
  586. $(document).ready(function () {
  587. MiniCart.source = 'refine';
  588. });
  589. </script>
  590. </div>
  591. <script type="text/javascript">
  592. function OpenCurrencyPopup() {
  593. $("#tblink").trigger('click');
  594. }
  595. function CloseCurrencyPopup() {
  596. var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
  597. var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
  598. if (ddlCurrency != null && hidCurrencyValue != null) {
  599. ddlCurrency.selectedIndex = hidCurrencyValue.value;
  600. }
  601. window.location.reload();
  602. }
  603. </script>
  604. </div>
  605. </div>
  606. <div id="wideHeader" class="wideHeader">
  607. <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
  608. <div id="search" class="row">
  609. <div id="logo" class='col-xs-4'>
  610. <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
  611. </div>
  612. <div id="search-block" class="col-xs-4">
  613. <div id="search-title">
  614. 物料编号/关键字
  615. </div>
  616. <div id="search-bar">
  617. <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_NavHeader_btn1&#39;)">
  618. <div id="searchPartNumberBox" class="search-box inline-block">
  619. <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
  620. <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
  621. </div>
  622. <div class="inline-block">
  623. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
  624. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
  625. </div>
  626. </div>
  627. </div>
  628. </div>
  629. <div id="account" class="col-xs-4 align-right">
  630. <ul>
  631. <li>
  632. </li>
  633. <li>
  634. <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwubk7B%2fKTjc08SOlkBycnaAAroViI4K9xupfeYofEJvQm4qiY273JO6zmsejI%252bS5kGsWz5oVz1R2QRA2N5ZfFJ8FO8%252bLr2pq3U%3d">登录</a>
  635. </li>
  636. <li>
  637. </li>
  638. <li>
  639. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  643. </li>
  644. <li>
  645. <!-- Mush:TBC -->
  646. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  647. </li>
  648. </ul>
  649. </div>
  650. </div>
  651. <div id="navArea" class="row">
  652. <div class="col-xs-12">
  653. <div id="navMain" class="inline-block">
  654. <div class="navbar">
  655. <ul class="topnav">
  656. <li>
  657. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  658. <ul class="subnav" id="subnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  661. </li>
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  670. </li>
  671. </ul>
  672. </li>
  673. <li>
  674. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  675. <ul class="subnav" id="subnav">
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  678. </li>
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  687. </li>
  688. </ul>
  689. </li>
  690. <li>
  691. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  692. <ul class="subnav" id="subnav">
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  695. </li>
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  725. </li>
  726. </ul>
  727. </li>
  728. <li>
  729. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  730. <ul class="subnav" id="subnav">
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  733. </li>
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  760. </li>
  761. </ul>
  762. </li>
  763. <li>
  764. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  765. <ul class="subnav" id="subnav">
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  768. </li>
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  777. </li>
  778. </ul>
  779. </li>
  780. <li>
  781. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  782. <ul class="subnav" id="subnav">
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  785. </li>
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  797. </li>
  798. </ul>
  799. </li>
  800. </ul>
  801. </div>
  802. </div>
  803. <div class="onlineCatalog inline-block">
  804. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  805. </div>
  806. </div>
  807. </div>
  808. </div>
  809. <div style="visibility: hidden; height: 0px;">
  810. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  811. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  812. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  813. </div>
  814. <script type="text/javascript">
  815. $(document).ready(function () {
  816. //* change to html5 catalog if javascript is enabled *
  817. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  818. });
  819. </script>
  820. <script type="text/javascript" src='../../../../../javascript/genLib.js'></script>
  821. </div>
  822. <div id="ctl00_divWide" class="divWide">
  823. <link rel="stylesheet" type="text/css" href='../../../../../css/fontawesome/css/font-awesome.min.css' />
  824. <br />
  825. <strong></strong>
  826. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  827. <strong>></strong>
  828. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" href="../../../../_/N-5g5v/" style="font-size: 9pt; font-weight: bold;">光电子产品</a>
  829. <strong>></strong>
  830. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-74g9t/" style="font-size: 9pt; font-weight: bold;">LED照明</a>
  831. <strong>></strong>
  832. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">LED灯泡与模块</a>
  833. <hr />
  834. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  835. <div class="categorySearchLimits">
  836. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  837. </div>
  838. </div>
  839. </div>
  840. <table border="0" width="100%">
  841. <tr>
  842. <td>
  843. <div id="ctl00_ContentMain_pnl3">
  844. <div id="category-top" class="category-content">
  845. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> LED灯泡与模块</h1></a>
  846. <!--Marketing Content-->
  847. <div id="ctl00_ContentMain_refinemfglogo">
  848. </div>
  849. </div><!--.category-content-->
  850. </div>
  851. </td>
  852. </tr>
  853. <tr>
  854. <td>
  855. </td>
  856. </tr>
  857. <tr>
  858. <td>
  859. <div id="refine-page2">
  860. </div>
  861. </td>
  862. </tr>
  863. </table>
  864. <div id="ctl00_ContentMain_divTabs" class="row">
  865. <div class="col-xs-12">
  866. <div id="tabsNavigation" >
  867. <ul>
  868. <li id="ctl00_ContentMain_liProductsTab" class="active">
  869. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(19,348)</span></a>
  870. </li>
  871. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  872. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;LED Bulbs &amp; Modules&#39;);" href="../../Datasheets/_/N-b1a3c">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(3,783)</span></a>
  873. </li>
  874. <li id="ctl00_ContentMain_liImagesTab" class="">
  875. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;LED Bulbs &amp; Modules&#39;);" href="../../Images/_/N-b1a3c">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(1,368)</span></a>
  876. </li>
  877. <li id="ctl00_ContentMain_liNewestTab" class="">
  878. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;LED Bulbs &amp; Modules&#39;);" href="../../Newest-Products/_/N-b1a3c">最新产品</a>
  879. </li>
  880. </ul>
  881. </div>
  882. </div>
  883. </div>
  884. <div id="tabDivs" class="tab-divs">
  885. <!-- Hide the View links if javascript is disabled -->
  886. <noscript>
  887. <style type="text/css">.list-visual{display:none;}</style>
  888. </noscript>
  889. <div id="CategoryControlTop">
  890. <table class="table-categories">
  891. <tr><td valign="top">
  892. <input type="hidden" name="ctl00$ContentMain$uc6$listCategories$ctl01$hdnCatID" id="ctl00_ContentMain_uc6_listCategories_ctl01_hdnCatID" value="18535512" />
  893. <div class="topCatTitle">
  894. <div class="col-xs-8 no-left-pad">
  895. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkCategory" class="SearchResultsTopLevelCategory" href="./"><h2>LED灯泡与模块类型</h2></a>
  896. </div>
  897. <div class="text-right">
  898. <div class="list-visual">
  899. <ul>
  900. <li class="right-border active">
  901. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;List&#39;, &#39;LED Bulbs &amp; Modules&#39;); SwitchListView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkListView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkListView&#39;,&#39;&#39;)">
  902. <i class="fa fa-th-list"></i>&nbsp;列表</a>
  903. </li>
  904. <li>
  905. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;Visual&#39;, &#39;LED Bulbs &amp; Modules&#39;); SwitchVisualView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkVisualView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkVisualView&#39;,&#39;&#39;)">
  906. <i class="fa fa-th-large"></i>&nbsp;目视</a>
  907. </li>
  908. </ul>
  909. </div>
  910. </div>
  911. </div>
  912. <ul class="sub-cats">
  913. <table id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories" cellspacing="0" style="width:100%;border-collapse:collapse;">
  914. <tr>
  915. <td>
  916. <li class="sub-cat">
  917. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18539890.png" alt="LED Indication" /></div>
  918. <div class="div-cat-title">
  919. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../LED-Indication/_/N-b1dgy/"><h3>LED 指示</h3></a>
  920. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lblRecordCount">18,116</span>)</span>
  921. </div>
  922. </li>
  923. </td><td>
  924. <li class="sub-cat">
  925. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18536608.png" alt="LED Lighting Fixture Accessories" /></div>
  926. <div class="div-cat-title">
  927. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../LED-Lighting-Fixture-Accessories/_/N-b1axs/"><h3>LED灯具配件</h3></a>
  928. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lblRecordCount">23</span>)</span>
  929. </div>
  930. </li>
  931. </td><td>
  932. <li class="sub-cat">
  933. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18536968.png" alt="LED Lighting Kits" /></div>
  934. <div class="div-cat-title">
  935. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../LED-Lighting-Kits/_/N-b1b7s/"><h3>LED照明组件</h3></a>
  936. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_lblRecordCount">28</span>)</span>
  937. </div>
  938. </li>
  939. </td>
  940. </tr><tr>
  941. <td>
  942. <li class="sub-cat">
  943. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18536177.png" alt="LED Light Bulbs" /></div>
  944. <div class="div-cat-title">
  945. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../LED-Light-Bulbs/_/N-b1alt/"><h3>LED 灯泡</h3></a>
  946. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lblRecordCount">6</span>)</span>
  947. </div>
  948. </li>
  949. </td><td>
  950. <li class="sub-cat">
  951. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18536945.png" alt="LED Lighting Fixtures" /></div>
  952. <div class="div-cat-title">
  953. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../LED-Lighting-Fixtures/_/N-b1b75/"><h3>LED照明器材</h3></a>
  954. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lblRecordCount">373</span>)</span>
  955. </div>
  956. </li>
  957. </td><td>
  958. <li class="sub-cat">
  959. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18536993.png" alt="LED Lighting Modules" /></div>
  960. <div class="div-cat-title">
  961. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../LED-Lighting-Modules/_/N-b1b8h/"><h3>LED照明模块</h3></a>
  962. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_lblRecordCount">651</span>)</span>
  963. </div>
  964. </li>
  965. </td>
  966. </tr><tr>
  967. <td>
  968. <li class="sub-cat">
  969. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18537017.png" alt="LED Lighting Bars and Strips" /></div>
  970. <div class="div-cat-title">
  971. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../LED-Lighting-Bars-and-Strips/_/N-b1b95/"><h3>LED照明条和带</h3></a>
  972. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lblRecordCount">151</span>)</span>
  973. </div>
  974. </li>
  975. </td><td></td><td></td>
  976. </tr>
  977. </table></ul>
  978. </td></tr></table>
  979. <div id="search-left-col">
  980. </div>
  981. </div>
  982. <script type="text/javascript">
  983. //<![CDATA[
  984. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  985. //]]>
  986. </script>
  987. <div id="ctl00_ContentMain_liProducts">
  988. <div id="refineSearchDiv">
  989. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  990. <div id="refine-keyword-search-2">
  991. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  992. <div id="boxPartSearch2">
  993. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  994. <tr>
  995. <td rowspan="3" style="vertical-align: middle">
  996. <div id="searchPartNumberBox" class="search-box" >
  997. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  998. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  999. </div>
  1000. </td>
  1001. </tr>
  1002. <tr>
  1003. <td class="chk-Search">
  1004. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  1005. </td>
  1006. </tr>
  1007. <tr>
  1008. <td class="chk-Search">
  1009. <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>
  1010. </td>
  1011. </tr>
  1012. </table>
  1013. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  1014. </div>
  1015. <script type="text/javascript" src='../../../../../flash/js/Placeholders.min.js'></script>
  1016. <script type="text/javascript" src='../../../../../flash/js/watermark.js'></script>
  1017. </div>
  1018. </div>
  1019. <div id="refine-mfg-select-2">
  1020. </div>
  1021. <div class="clear">
  1022. </div>
  1023. <table class="SearchParametricTable2">
  1024. <tr>
  1025. <td>
  1026. <div id="AttributesDiv2">
  1027. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  1028. <div class="categorySearchLimits">
  1029. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  1030. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<span title="光电子产品"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254227|Optoelectronics" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx254227|Optoelectronics" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx11965025|LED Lighting&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx18535512|LED Bulbs &amp; Modules&#39;).checked = false;" /></span>&nbsp;<b>光电子产品</b>&nbsp;&#62;&nbsp;<span title="LED照明"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx11965025|LED Lighting" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx11965025|LED Lighting" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254227|Optoelectronics&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx18535512|LED Bulbs &amp; Modules&#39;).checked = false;" /></span>&nbsp;<b>LED照明</b>&nbsp;&#62;&nbsp;<span title="LED灯泡与模块"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx18535512|LED Bulbs & Modules" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx18535512|LED Bulbs & Modules" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254227|Optoelectronics&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx11965025|LED Lighting&#39;).checked = true;" /></span>&nbsp;<b>LED灯泡与模块</b>
  1031. </div>
  1032. </div>
  1033. <hr/>
  1034. </div>
  1035. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  1036. <p class="applied-filter-lbl">
  1037. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  1038. <span id="ctl00_ContentMain_uc5_lblreccount">19,348 匹配</span>
  1039. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  1040. </p>
  1041. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  1042. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  1043. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  1044. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../../images/icon_tooltip.png" />
  1045. <br />
  1046. </div>
  1047. </div>
  1048. <table id="tb1" style="width: 100%;">
  1049. <tr>
  1050. <td>
  1051. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  1052. <tr>
  1053. <td>
  1054. <table cellpadding="0" cellspacing="0">
  1055. <tr>
  1056. <td>
  1057. <table>
  1058. <tr>
  1059. <td>
  1060. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  1061. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  1062. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1063. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1064. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1065. sorted parametric attributes from an endeca attribute group --->
  1066. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  1067. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  1068. </div>
  1069. </td>
  1070. </tr>
  1071. <tr>
  1072. <td>
  1073. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  1074. <option value="4274387497">Adafruit</option>
  1075. <option value="4294759664">Altech</option>
  1076. <option value="4294759268">Apem</option>
  1077. <option value="4294759247">Avago Technologies</option>
  1078. <option value="4294759244">BIVAR</option>
  1079. <option value="4294759390">Bulgin</option>
  1080. <option value="4294758777">C&amp;K Components</option>
  1081. <option value="4292694678">Califia</option>
  1082. <option value="4292733696">Cree, Inc.</option>
  1083. <option value="4294759248">Dialight</option>
  1084. <option value="4282698358">Digilent</option>
  1085. <option value="4294759258">E-Switch</option>
  1086. <option value="4294759690">Eagle Plastic Devices</option>
  1087. <option value="4294759196">Everlight</option>
  1088. <option value="4294759256">FCI</option>
  1089. <option value="4294759173">Hammond</option>
  1090. <option value="4291847519">Heatron</option>
  1091. <option value="4292714436">Illumitex</option>
  1092. <option value="4292859497">Inspired LED</option>
  1093. <option value="4294759178">JKL Components</option>
  1094. <option value="4294759104">Keystone Electronics</option>
  1095. <option value="4294758828">Kingbright</option>
  1096. <option value="4289671003">LED Engin</option>
  1097. <option value="4294758822">Lite-On</option>
  1098. <option value="4294759194">Lumex</option>
  1099. <option value="4279217008">Lumileds</option>
  1100. <option value="4292825949">Luminus Devices</option>
  1101. <option value="4294759208">Molex</option>
  1102. <option value="4294759010">Omron</option>
  1103. <option value="4293994460">Osram Opto Semiconductor</option>
  1104. <option value="4294758655">Parallax</option>
  1105. <option value="4294005660">ROHM Semiconductor</option>
  1106. <option value="4290493392">Schneider Electric</option>
  1107. <option value="4294764378">Schurter</option>
  1108. <option value="4294762567">Seoul Semiconductor</option>
  1109. <option value="4294764024">Sharp Microelectronics</option>
  1110. <option value="4294764128">Shin Chin</option>
  1111. <option value="4292733690">TE Connectivity</option>
  1112. <option value="4285624292">TT Electronics</option>
  1113. <option value="4294758824">VCC</option>
  1114. <option value="4294759685">Vishay</option>
  1115. </select>
  1116. </td>
  1117. </tr>
  1118. <tr>
  1119. <td>
  1120. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1121. </td>
  1122. </tr>
  1123. </table>
  1124. </td>
  1125. <td valign="bottom" style="width: 15px;">
  1126. &nbsp;
  1127. </td>
  1128. </tr>
  1129. </table>
  1130. </td><td>
  1131. <table cellpadding="0" cellspacing="0">
  1132. <tr>
  1133. <td>
  1134. <table>
  1135. <tr>
  1136. <td>
  1137. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">产品</span>
  1138. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1139. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1140. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1141. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1142. sorted parametric attributes from an endeca attribute group --->
  1143. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1144. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688640" />
  1145. </div>
  1146. </td>
  1147. </tr>
  1148. <tr>
  1149. <td>
  1150. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688640">
  1151. <option value="4294728307">Accessories</option>
  1152. <option value="4269108639">Arrays, Linear</option>
  1153. <option value="4292588571">Arrays, Rectangular</option>
  1154. <option value="4292588568">Arrays, Square</option>
  1155. <option value="4292095795">Based LEDs</option>
  1156. <option value="4271383118">Bi-Color LED Panel Mount Indicators</option>
  1157. <option value="4271387148">Blinking LED Panel Mount Indicators</option>
  1158. <option value="4292744814">Bus / Heavy Duty Vehicle Marker Lights</option>
  1159. <option value="4292744813">Bus / Heavy Duty Vehicle Signal Lights</option>
  1160. <option value="4292488891">Cap Covers</option>
  1161. <option value="4292694353">Cap Filters</option>
  1162. <option value="4292014712">Cluster Based LEDs</option>
  1163. <option value="4292014595">Dual Chip Based LEDs</option>
  1164. <option value="4292713328">Filter Boots</option>
  1165. <option value="4292713330">Filters</option>
  1166. <option value="4271386458">Flashing LED Panel Mount Indicators</option>
  1167. <option value="4280896665">Flexible Light Pipe Adapters</option>
  1168. <option value="4271322182">Flexible Light Pipe Adapters with LED</option>
  1169. <option value="4292906580">Flexible Light Pipe Assembly</option>
  1170. <option value="4291727410">Flexible Light Pipes</option>
  1171. <option value="4271378804">FlexVolt Panel Mount Indicators</option>
  1172. <option value="4292710870">Gaskets</option>
  1173. <option value="4294650831">Grommets</option>
  1174. <option value="4292497642">Harnesses for LED Light Bars</option>
  1175. <option value="4292497657">Holders with Wire Leads</option>
  1176. <option value="4292497644">LED Cable Assemblies</option>
  1177. <option value="4292497643">LED Festoon Holders</option>
  1178. <option value="4292740077">LED Flexible Strips</option>
  1179. <option value="4292497659">LED Holders</option>
  1180. <option value="4292497650">LED Housings</option>
  1181. <option value="4292497649">LED Installer Tools</option>
  1182. <option value="4292713331">LED Lens Caps</option>
  1183. <option value="4292713332">LED Lenses</option>
  1184. <option value="4292849069">LED Light Arrays</option>
  1185. <option value="4292399196">LED Light Bar Accessories</option>
  1186. <option value="4293998477">LED Light Bars</option>
  1187. <option value="4292740209">LED Light Engine</option>
  1188. <option value="4292716752">LED Light Engines</option>
  1189. <option value="4290242452">LED Light Kits</option>
  1190. <option value="4292993698">LED Light Rings</option>
  1191. <option value="4292497648">LED Light Shields</option>
  1192. <option value="4292993691">LED Light Strips</option>
  1193. <option value="4292588572">LED Light Strips, Rigid</option>
  1194. <option value="4293990252">LED Lighting Bars</option>
  1195. <option value="4292573125">LED Lighting Fixtures</option>
  1196. <option value="4292477514">LED Lighting Kits</option>
  1197. <option value="4267519413">LED Lighting Modules on Star Board</option>
  1198. <option value="4292717001">LED Module Strip</option>
  1199. <option value="4292884647">LED Modules</option>
  1200. <option value="4292588570">LED Modules, Circular</option>
  1201. <option value="4292588569">LED Modules, Light Spot</option>
  1202. <option value="4286454111">LED Mounting Brackets</option>
  1203. <option value="4292497658">LED Mounting Clips</option>
  1204. <option value="4292497656">LED Mounting Clips and Rings</option>
  1205. <option value="4292497652">LED Mounting Rings</option>
  1206. <option value="4292497654">LED Mounting Sockets</option>
  1207. <option value="4292497653">LED Mounts</option>
  1208. <option value="4292497647">LED Mounts, Self-Retaining</option>
  1209. <option value="4292906291">LED Panel Mount Indicators</option>
  1210. <option value="4288656079">LED PMI Hardware Assemblies</option>
  1211. <option value="4292717072">LED Rigid Strip</option>
  1212. <option value="4292497660">LED Spacers</option>
  1213. <option value="4292497655">LED Standoffs</option>
  1214. <option value="4292488954">Lenses</option>
  1215. <option value="4291727353">Light Pipe Arrays</option>
  1216. <option value="4292907550">Light Pipe Assembly</option>
  1217. <option value="4291727422">Light Pipes</option>
  1218. <option value="4271442134">MR16 LED Lamp</option>
  1219. <option value="4292014596">Multi-Chip Based LEDs</option>
  1220. <option value="4271386574">Non-Relampable LED Panel Mount Indicators</option>
  1221. <option value="4292510092">Panel Mount Assembly</option>
  1222. <option value="4271436033">PAR30 LED Lamp</option>
  1223. <option value="4292497646">Rectangular LED Mounts</option>
  1224. <option value="4271381698">Rectangular LED Panel Mount Indicators</option>
  1225. <option value="4292700924">Retainers</option>
  1226. <option value="4286451778">Right Angle LED Indicators</option>
  1227. <option value="4291727413">Rigid Light Pipes</option>
  1228. <option value="4283528592">Ruggedized LED Panel Mount Indicator</option>
  1229. <option value="4292229713">Single Chip Based LEDs</option>
  1230. <option value="4292083472">Single Color Based LEDs</option>
  1231. <option value="4288664452">Snap-in LED Panel Mount Indicators</option>
  1232. <option value="4288452903">Snapfit Indicator Lights</option>
  1233. <option value="4292497651">Speed Nuts</option>
  1234. <option value="4288536456">Standard Metal</option>
  1235. <option value="4288536453">Standard Panel Mount Indicators</option>
  1236. <option value="4291735367">STD Metal panel mount indicators</option>
  1237. <option value="4291735366">STD Panel mount indicators with wires</option>
  1238. <option value="4284698175">Tube Lighting</option>
  1239. <option value="4292503562">Vandal Resistant LED Indicators</option>
  1240. <option value="4292744812">White Lighting</option>
  1241. </select>
  1242. </td>
  1243. </tr>
  1244. <tr>
  1245. <td>
  1246. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1247. </td>
  1248. </tr>
  1249. </table>
  1250. </td>
  1251. <td valign="bottom" style="width: 15px;">
  1252. &nbsp;
  1253. </td>
  1254. </tr>
  1255. </table>
  1256. </td><td>
  1257. <table cellpadding="0" cellspacing="0">
  1258. <tr>
  1259. <td>
  1260. <table>
  1261. <tr>
  1262. <td>
  1263. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">照明颜色</span>
  1264. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1265. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1266. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1267. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1268. sorted parametric attributes from an endeca attribute group --->
  1269. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1270. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="688453" />
  1271. </div>
  1272. </td>
  1273. </tr>
  1274. <tr>
  1275. <td>
  1276. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688453" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_688453">
  1277. <option value="4289485572">-</option>
  1278. <option value="4294722414">Amber</option>
  1279. <option value="4291991940">Amber (x 2)</option>
  1280. <option value="4292903665">Amber, Green</option>
  1281. <option value="4294722077">Amber/Green</option>
  1282. <option value="4294722512">Blue</option>
  1283. <option value="4292488269">Blue (x 2)</option>
  1284. <option value="4286454073">Blue (x 3)</option>
  1285. <option value="4294722242">Cool White</option>
  1286. <option value="4294720741">Cyan</option>
  1287. <option value="4294722529">Green</option>
  1288. <option value="4286315395">Green (x 16)</option>
  1289. <option value="4292825885">Green (x 2)</option>
  1290. <option value="4286315279">Green (x 2), Blank</option>
  1291. <option value="4292825867">Green (x 3)</option>
  1292. <option value="4292825891">Green (x 4)</option>
  1293. <option value="4292488281">Green (x 8)</option>
  1294. <option value="4286316289">Green, Blank</option>
  1295. <option value="4292827052">Green, Blue</option>
  1296. <option value="4292499100">Green, Green, Blue</option>
  1297. <option value="4292727194">Green, Green, Green</option>
  1298. <option value="4292830661">Green, Orange</option>
  1299. <option value="4280824390">Green, Orange, Red</option>
  1300. <option value="4294721837">Green/Blue</option>
  1301. <option value="4294722156">Green/Red</option>
  1302. <option value="4294401631">Neutral White</option>
  1303. <option value="4294722166">Orange</option>
  1304. <option value="4292825856">Orange (x 2)</option>
  1305. <option value="4286455305">Orange (x 3)</option>
  1306. <option value="4286454878">Orange (x 4)</option>
  1307. <option value="4286316237">Orange, Blank</option>
  1308. <option value="4292845148">Orange, Green</option>
  1309. <option value="4292497117">Orange, Green, Green</option>
  1310. <option value="4292727206">Orange, Red</option>
  1311. <option value="4292725162">Orange, White</option>
  1312. <option value="4286316230">Orange, Yellow (x 2), Green</option>
  1313. <option value="4292725255">Orange, Yellow, Green</option>
  1314. <option value="4286313324">Orange/Green, Yellow</option>
  1315. <option value="4294722442">Red</option>
  1316. <option value="4292825884">Red (x 2)</option>
  1317. <option value="4286455304">Red (x 2), Blank</option>
  1318. <option value="4286455263">Red (x 2), Green</option>
  1319. <option value="4286316218">Red (x 2), Green (x 2)</option>
  1320. <option value="4292825840">Red (x 2), Green, Yellow</option>
  1321. <option value="4292725150">Red (x 2), Yellow</option>
  1322. <option value="4286314623">Red (x 2), Yellow, Green</option>
  1323. <option value="4292727197">Red (x 3)</option>
  1324. <option value="4286316243">Red (x 3), Green</option>
  1325. <option value="4286315893">Red (x 3), Yellow</option>
  1326. <option value="4292825889">Red (x 4)</option>
  1327. <option value="4292725168">Red (x 4), Green</option>
  1328. <option value="4286315880">Red (x 5)</option>
  1329. <option value="4292488280">Red (x 8)</option>
  1330. <option value="4292726012">Red, Amber, Yellow, Green</option>
  1331. <option value="4292725151">Red, Ambler, Yellow, Green</option>
  1332. <option value="4286315912">Red, Blank</option>
  1333. <option value="4294002745">Red, Green</option>
  1334. <option value="4292727199">Red, Green (x 2)</option>
  1335. <option value="4292825837">Red, Green (x 3)</option>
  1336. <option value="4292727186">Red, Green (x 4)</option>
  1337. <option value="4292725169">Red, Green, Green</option>
  1338. <option value="4294718677">Red, Orange</option>
  1339. <option value="4292725251">Red, Orange, Yellow, Green</option>
  1340. <option value="4292825877">Red, Red (x 2)</option>
  1341. <option value="4292726014">Red, Red, Green</option>
  1342. <option value="4292726010">Red, Red, Red</option>
  1343. <option value="4294002754">Red, Yellow</option>
  1344. <option value="4292727198">Red, Yellow (x 2)</option>
  1345. <option value="4286316295">Red, Yellow (x 3)</option>
  1346. <option value="4294718869">Red, Yellow, Green</option>
  1347. <option value="4292488310">Red, Yellow, Green (x 2)</option>
  1348. <option value="4292849057">Red, Yellow, Green, Blue</option>
  1349. <option value="4292354279">Red, Yellow, Green, Green</option>
  1350. <option value="4294718525">Red/Amber</option>
  1351. <option value="4283532682">Red/Amber/Green</option>
  1352. <option value="4294719343">Red/Blue</option>
  1353. <option value="4294722504">Red/Green</option>
  1354. <option value="4292488314">Red/Green (x 2)</option>
  1355. <option value="4286455259">Red/Green (x 2), Blank</option>
  1356. <option value="4286315929">Red/Green (x 2), Blank (x 2)</option>
  1357. <option value="4286315931">Red/Green (x 2), Yellow/Green (x 2)</option>
  1358. <option value="4292488266">Red/Green (x 3)</option>
  1359. <option value="4292488306">Red/Green (x 4)</option>
  1360. <option value="4286315404">Red/Green (x 5), Yellow/Green</option>
  1361. <option value="4286454898">Red/Green, Blank</option>
  1362. <option value="4292488291">Red/Green, Yellow/Green</option>
  1363. <option value="4286454932">Red/Green, Yellow/Green (x 2)</option>
  1364. <option value="4292488298">Red/Green, Yellow/Green, Green (x 2)</option>
  1365. <option value="4294722104">Red/Yellow</option>
  1366. <option value="4286313520">Red/Yellow (x 2)</option>
  1367. <option value="4286454808">Red/Yellow (x 3)</option>
  1368. <option value="4286313523">Red/Yellow, Orange/Green</option>
  1369. <option value="4294722147">Red/Yellow/Green</option>
  1370. <option value="4294722254">RGB</option>
  1371. <option value="4286313488">RGB (x 2)</option>
  1372. <option value="4286315511">RGB (x 3)</option>
  1373. <option value="4292726013">RGB, Yellow</option>
  1374. <option value="4292994968">Ultraviolet (UV)</option>
  1375. <option value="4294719953">Warm White</option>
  1376. <option value="4292582410">Warm White, Cool White</option>
  1377. <option value="4294722525">White</option>
  1378. <option value="4286315965">White (x 2)</option>
  1379. <option value="4294722521">Yellow</option>
  1380. <option value="4292825876">Yellow (x 2)</option>
  1381. <option value="4286455256">Yellow (x 2), Blank</option>
  1382. <option value="4292725164">Yellow (x 2), Green</option>
  1383. <option value="4286315938">Yellow (x 2), Green (x2)</option>
  1384. <option value="4292825898">Yellow (x 3)</option>
  1385. <option value="4286316222">Yellow (x 3), Green</option>
  1386. <option value="4292825890">Yellow (x 4)</option>
  1387. <option value="4286316266">Yellow, Blank</option>
  1388. <option value="4292726004">Yellow, Blue</option>
  1389. <option value="4294002750">Yellow, Green</option>
  1390. <option value="4292488301">Yellow, Green (x 2)</option>
  1391. <option value="4292825830">Yellow, Green (x 4)</option>
  1392. <option value="4286454074">Yellow, Green, Blank</option>
  1393. <option value="4292845215">Yellow, Green, Blue</option>
  1394. <option value="4292726009">Yellow, Green, Green</option>
  1395. <option value="4292499103">Yellow, Green, White</option>
  1396. <option value="4292903702">Yellow, White</option>
  1397. <option value="4294719341">Yellow/Blue</option>
  1398. <option value="4294722154">Yellow/Green</option>
  1399. <option value="4291991311">Yellow/Green (x 2)</option>
  1400. <option value="4286315944">Yellow/Green (x 2), Blank (x 2)</option>
  1401. <option value="4286454830">Yellow/Green (x 3)</option>
  1402. <option value="4292488285">Yellow/Green (x 4)</option>
  1403. <option value="4286315352">Yellow/Green, Blue</option>
  1404. <option value="4286455238">Yellow/Green, Blue, Blank</option>
  1405. <option value="4286315958">Yellow/Green, Blue, Blank (x 2)</option>
  1406. <option value="4286454907">Yellow/Green, Green, Blue</option>
  1407. <option value="4294722025">Yellow/Red</option>
  1408. </select>
  1409. </td>
  1410. </tr>
  1411. <tr>
  1412. <td>
  1413. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1414. </td>
  1415. </tr>
  1416. </table>
  1417. </td>
  1418. <td valign="bottom" style="width: 15px;">
  1419. &nbsp;
  1420. </td>
  1421. </tr>
  1422. </table>
  1423. </td><td>
  1424. <table cellpadding="0" cellspacing="0">
  1425. <tr>
  1426. <td>
  1427. <table>
  1428. <tr>
  1429. <td>
  1430. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">波长/色温</span>
  1431. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1432. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1433. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1434. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1435. sorted parametric attributes from an endeca attribute group --->
  1436. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1437. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="1000000675" />
  1438. </div>
  1439. </td>
  1440. </tr>
  1441. <tr>
  1442. <td>
  1443. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000675" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_1000000675">
  1444. <option value="4292782424">365 nm</option>
  1445. <option value="4292584871">385 nm</option>
  1446. <option value="4292752735">395 nm</option>
  1447. <option value="4292782501">400 nm</option>
  1448. <option value="4292752734">405 nm</option>
  1449. <option value="4292782548">430 nm</option>
  1450. <option value="4292774192">445 nm</option>
  1451. <option value="4292782451">455 nm</option>
  1452. <option value="4292782525">460 nm</option>
  1453. <option value="4292744617">462 nm</option>
  1454. <option value="4292782448">464 nm</option>
  1455. <option value="4292782500">465 nm</option>
  1456. <option value="4292782440">468 nm</option>
  1457. <option value="4292782545">470 nm</option>
  1458. <option value="4292728608">485 nm</option>
  1459. <option value="4292782519">515 nm</option>
  1460. <option value="4292584955">518 nm</option>
  1461. <option value="4292782521">525 nm</option>
  1462. <option value="4292782544">527 nm</option>
  1463. <option value="4292782454">528 nm</option>
  1464. <option value="4292782447">529 nm</option>
  1465. <option value="4292782535">530 nm</option>
  1466. <option value="4292728606">535 nm</option>
  1467. <option value="4292584987">555 nm</option>
  1468. <option value="4292584974">562 nm</option>
  1469. <option value="4292584965">563 nm</option>
  1470. <option value="4292744620">565 nm</option>
  1471. <option value="4292765564">568 nm</option>
  1472. <option value="4292701499">569 nm</option>
  1473. <option value="4292774259">570 nm</option>
  1474. <option value="4292778881">572 nm</option>
  1475. <option value="4292692348">573 nm</option>
  1476. <option value="4292765580">574 nm</option>
  1477. <option value="4292584966">583 nm</option>
  1478. <option value="4283845207">583 nm, 565 nm</option>
  1479. <option value="4292782546">585 nm</option>
  1480. <option value="4292584976">585 nm, 565 nm</option>
  1481. <option value="4292584978">585 nm/565 nm</option>
  1482. <option value="4292782529">587 nm</option>
  1483. <option value="4292782550">588 nm</option>
  1484. <option value="4292782528">590 nm</option>
  1485. <option value="4292503552">590 nm, 568 nm</option>
  1486. <option value="4292584979">590 nm/574 nm</option>
  1487. <option value="4292782412">592 nm</option>
  1488. <option value="4292782537">595 nm</option>
  1489. <option value="4292725154">600 nm</option>
  1490. <option value="4292584963">603 nm</option>
  1491. <option value="4292774252">605 nm</option>
  1492. <option value="4286258722">605 nm/565 nm</option>
  1493. <option value="4292584962">608 nm</option>
  1494. <option value="4292782492">610 nm</option>
  1495. <option value="4292782436">620 nm</option>
  1496. <option value="4292730357">621 nm</option>
  1497. <option value="4292782468">623 nm</option>
  1498. <option value="4292782542">624 nm</option>
  1499. <option value="4288379873">624 nm, 518 nm, 471 nm</option>
  1500. <option value="4292782547">625 nm</option>
  1501. <option value="4292504086">625 nm, 565 nm, 465 nm</option>
  1502. <option value="4292584922">625 nm, 568 nm</option>
  1503. <option value="4292501621">625 nm, 590 nm</option>
  1504. <option value="4292475514">625 nm, 610 nm, 585 nm, 565 nm</option>
  1505. <option value="4283828103">625 nm/568 nm</option>
  1506. <option value="4292782432">626 nm</option>
  1507. <option value="4292774113">627 nm</option>
  1508. <option value="4292717043">627 nm, 530 nm, 455 nm</option>
  1509. <option value="4292782512">630 nm</option>
  1510. <option value="4292503530">630 nm, 565 nm</option>
  1511. <option value="4283837486">630 nm/565 nm</option>
  1512. <option value="4292782541">635 nm</option>
  1513. <option value="4292704615">635 nm, 565 nm</option>
  1514. <option value="4292570240">635 nm, 585 nm, 565 nm</option>
  1515. <option value="4292584986">635 nm/565 nm</option>
  1516. <option value="4292584971">635 nm/585 nm</option>
  1517. <option value="4292774088">636 nm</option>
  1518. <option value="4292584913">636 nm, 574 nm</option>
  1519. <option value="4292584985">636 nm/574 nm</option>
  1520. <option value="4292584899">637 nm</option>
  1521. <option value="4292701503">640 nm</option>
  1522. <option value="4292782430">645 nm</option>
  1523. <option value="4292584967">650 nm</option>
  1524. <option value="4283851428">650 nm / 565 nm</option>
  1525. <option value="4292584951">655 nm</option>
  1526. <option value="4292584936">657 nm</option>
  1527. <option value="4289156548">658 nm</option>
  1528. <option value="4292782485">660 nm</option>
  1529. <option value="4292584952">660 nm, 565 nm</option>
  1530. <option value="4286455270">660 nm/565 nm</option>
  1531. <option value="4292584964">665 nm</option>
  1532. <option value="4283850414">680 nm</option>
  1533. <option value="4292584988">700 nm</option>
  1534. <option value="4292584984">700 nm, 565 nm</option>
  1535. <option value="4292584982">700 nm/565 nm</option>
  1536. <option value="4292724947">627 mm</option>
  1537. <option value="4285534334">2200 K</option>
  1538. <option value="4292782457">2700 K</option>
  1539. <option value="4278051765">2750 K</option>
  1540. <option value="4292718280">2850 K</option>
  1541. <option value="4292733214">2900 K</option>
  1542. <option value="4292782530">3000 K</option>
  1543. <option value="4292744811">3050 K</option>
  1544. <option value="4292782484">3100 K</option>
  1545. <option value="4292782406">3200 K</option>
  1546. <option value="4292782433">3250 K</option>
  1547. <option value="4292744715">3300 K</option>
  1548. <option value="4292782516">3500 K</option>
  1549. <option value="4292719382">3560 K</option>
  1550. <option value="4290385760">3600 K</option>
  1551. <option value="4292782524">4000 K</option>
  1552. <option value="4292744618">4100 K</option>
  1553. <option value="4292782401">4200 K</option>
  1554. <option value="4292782458">4500 K</option>
  1555. <option value="4292733215">4750 K</option>
  1556. <option value="4292782538">5000 K</option>
  1557. <option value="4292782403">5300 K</option>
  1558. <option value="4292782533">5500 K</option>
  1559. <option value="4292782452">5700 K</option>
  1560. <option value="4292744719">5750 K</option>
  1561. <option value="4292782441">6000 K</option>
  1562. <option value="4290385753">6250 K</option>
  1563. <option value="4292782522">6300 K</option>
  1564. <option value="4292717002">6350 K</option>
  1565. <option value="4292782523">6500 K</option>
  1566. <option value="4292782518">7000 K</option>
  1567. <option value="4287978530">7500 K</option>
  1568. <option value="4290543762">2600 K to 2900 K</option>
  1569. <option value="4292587101">2600 K to 3000 K</option>
  1570. <option value="4290773913">2700 K, 3000 K</option>
  1571. <option value="4290773910">2700 K, 3000 K, 5000 K</option>
  1572. <option value="4292478411">2700 K, 6000 K</option>
  1573. <option value="4278051679">3284 K, 6475 K</option>
  1574. <option value="4292587098">3700 K to 4300 K</option>
  1575. <option value="4292782417">5000 K to 6300 K</option>
  1576. <option value="4292754790">5000 K to 7000 K</option>
  1577. <option value="4289422660">-</option>
  1578. <option value="4269108636">4000K</option>
  1579. <option value="4269108586">5000K</option>
  1580. <option value="4269108634">5700K</option>
  1581. </select>
  1582. </td>
  1583. </tr>
  1584. <tr>
  1585. <td>
  1586. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1587. </td>
  1588. </tr>
  1589. </table>
  1590. </td>
  1591. <td valign="bottom" style="width: 15px;">
  1592. &nbsp;
  1593. </td>
  1594. </tr>
  1595. </table>
  1596. </td><td>
  1597. <table cellpadding="0" cellspacing="0">
  1598. <tr>
  1599. <td>
  1600. <table>
  1601. <tr>
  1602. <td>
  1603. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">If - 正向电流</span>
  1604. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1605. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1606. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1607. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1608. sorted parametric attributes from an endeca attribute group --->
  1609. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1610. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000001021" />
  1611. </div>
  1612. </td>
  1613. </tr>
  1614. <tr>
  1615. <td>
  1616. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000001021" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000001021">
  1617. <option value="4284149471">100 uA</option>
  1618. <option value="4284155362">1 mA</option>
  1619. <option value="4274141018">2 mA</option>
  1620. <option value="4284148333">3 mA</option>
  1621. <option value="4274140482">3.5 mA</option>
  1622. <option value="4274139513">4.7 mA</option>
  1623. <option value="4274140524">5 mA</option>
  1624. <option value="4274140504">5 mA, 10 mA</option>
  1625. <option value="4274140620">6 mA</option>
  1626. <option value="4274134416">6.3 mA</option>
  1627. <option value="4274139490">7 mA</option>
  1628. <option value="4274135762">7.3 mA</option>
  1629. <option value="4274139456">7.5 mA</option>
  1630. <option value="4274139007">8 mA</option>
  1631. <option value="4274139414">8.5 mA</option>
  1632. <option value="4274139455">9 mA</option>
  1633. <option value="4274139015">9.5 mA</option>
  1634. <option value="4274140509">9.6 mA</option>
  1635. <option value="4284145761">10 mA</option>
  1636. <option value="4274138961">10 mA, 12 mA</option>
  1637. <option value="4274139493">10 mA, 20 mA</option>
  1638. <option value="4274135464">10 mA/20 mA</option>
  1639. <option value="4274139630">10.5 mA</option>
  1640. <option value="4274140808">11 mA</option>
  1641. <option value="4274140998">12 mA</option>
  1642. <option value="4274140528">13 mA</option>
  1643. <option value="4274138980">13 mA, 12 mA</option>
  1644. <option value="4274141022">14 mA</option>
  1645. <option value="4284152584">15 mA</option>
  1646. <option value="4274140492">16 mA</option>
  1647. <option value="4274139468">17 mA</option>
  1648. <option value="4274140422">18 mA</option>
  1649. <option value="4274138991">18.5 mA</option>
  1650. <option value="4274139021">19 mA</option>
  1651. <option value="4284149631">20 mA</option>
  1652. <option value="4274138874">20 mA, 10 mA</option>
  1653. <option value="4274138736">20 mA, 20 mA</option>
  1654. <option value="4274137276">20 mA/70 mA</option>
  1655. <option value="4274140943">22 mA</option>
  1656. <option value="4274139495">23 mA</option>
  1657. <option value="4274140512">24 mA</option>
  1658. <option value="4284145758">25 mA</option>
  1659. <option value="4274140694">25 mA, 30 mA</option>
  1660. <option value="4274139496">26 mA</option>
  1661. <option value="4274139492">28 mA</option>
  1662. <option value="4284155483">30 mA</option>
  1663. <option value="4274139411">30 mA, 20 mA, 30 mA</option>
  1664. <option value="4274140978">30 mA, 25 mA</option>
  1665. <option value="4274140765">30 mA, 30 mA, 25 mA, 30 mA</option>
  1666. <option value="4274140519">31 mA</option>
  1667. <option value="4274139494">32 mA</option>
  1668. <option value="4274140536">35 mA</option>
  1669. <option value="4274138988">37 mA</option>
  1670. <option value="4274140535">40 mA</option>
  1671. <option value="4274139003">41 mA</option>
  1672. <option value="4274139406">44 mA</option>
  1673. <option value="4274140461">45 mA</option>
  1674. <option value="4274139458">46 mA</option>
  1675. <option value="4284154713">50 mA</option>
  1676. <option value="4274141015">60 mA</option>
  1677. <option value="4274138969">67 mA</option>
  1678. <option value="4274138974">69 mA</option>
  1679. <option value="4284155554">70 mA</option>
  1680. <option value="4274139450">70 mA, 16 mA</option>
  1681. <option value="4274138953">72 mA</option>
  1682. <option value="4274138962">73 mA</option>
  1683. <option value="4274493827">75 mA</option>
  1684. <option value="4274492730">80 mA</option>
  1685. <option value="4274138959">81 mA</option>
  1686. <option value="4274140294">85 mA</option>
  1687. <option value="4274134672">89 mA</option>
  1688. <option value="4274140304">90 mA</option>
  1689. <option value="4274138963">95 mA</option>
  1690. <option value="4284155480">100 mA</option>
  1691. <option value="4284151841">110 mA</option>
  1692. <option value="4284152143">120 mA</option>
  1693. <option value="4274491162">125 mA</option>
  1694. <option value="4274138156">128 mA</option>
  1695. <option value="4284154620">150 mA</option>
  1696. <option value="4274492738">160 mA</option>
  1697. <option value="4274134013">162 mA</option>
  1698. <option value="4274134014">173 mA</option>
  1699. <option value="4274138930">175 mA</option>
  1700. <option value="4284156276">200 mA</option>
  1701. <option value="4274495119">225 mA</option>
  1702. <option value="4274494541">240 mA</option>
  1703. <option value="4284152597">300 mA</option>
  1704. <option value="4274139618">320 mA</option>
  1705. <option value="4274139516">340 mA</option>
  1706. <option value="4284153742">350 mA</option>
  1707. <option value="4274138476">360 mA</option>
  1708. <option value="4274137093">440 mA</option>
  1709. <option value="4274140276">480 mA</option>
  1710. <option value="4274494651">600 mA</option>
  1711. <option value="4274137782">640 mA</option>
  1712. <option value="4284150642">700 mA</option>
  1713. <option value="4274493507">800 mA</option>
  1714. <option value="4274137652">900 mA</option>
  1715. <option value="4274137086">940 mA</option>
  1716. <option value="4284156374">1 A</option>
  1717. <option value="4284151002">1000 mA</option>
  1718. <option value="4284153184">1.4 A</option>
  1719. <option value="4274137085">1440 mA</option>
  1720. <option value="4274134813">1700 mA</option>
  1721. <option value="4284156301">2 A</option>
  1722. <option value="4284149738">2000 mA</option>
  1723. <option value="4274134251">2.1 A, 2.1 A</option>
  1724. <option value="4284156365">3 A</option>
  1725. <option value="4284153538">3.3 A</option>
  1726. <option value="4274492609">3.8 A</option>
  1727. <option value="4284156299">4 A</option>
  1728. <option value="4274491190">4.4 A</option>
  1729. <option value="4274137160">4.8 A</option>
  1730. <option value="4284155404">6 A</option>
  1731. <option value="4274493426">6.5 A</option>
  1732. <option value="4274135915">7.7 A</option>
  1733. <option value="4284156176">8 A</option>
  1734. <option value="4284154334">9 A</option>
  1735. <option value="4274135371">10.5 A</option>
  1736. <option value="4284154077">12 A</option>
  1737. <option value="4274137017">13.5 A</option>
  1738. <option value="4284153589">18 A</option>
  1739. <option value="4284153329">24 A</option>
  1740. <option value="4274135864">85</option>
  1741. <option value="4275115581">-</option>
  1742. </select>
  1743. </td>
  1744. </tr>
  1745. <tr>
  1746. <td>
  1747. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1748. </td>
  1749. </tr>
  1750. </table>
  1751. </td>
  1752. <td valign="bottom" style="width: 15px;">
  1753. &nbsp;
  1754. </td>
  1755. </tr>
  1756. </table>
  1757. </td><td>
  1758. <table cellpadding="0" cellspacing="0">
  1759. <tr>
  1760. <td>
  1761. <table>
  1762. <tr>
  1763. <td>
  1764. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">Vf - 正向电压</span>
  1765. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1766. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1767. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1768. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1769. sorted parametric attributes from an endeca attribute group --->
  1770. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1771. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="1000001027" />
  1772. </div>
  1773. </td>
  1774. </tr>
  1775. <tr>
  1776. <td>
  1777. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000001027" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_1000001027">
  1778. <option value="4284154697">1.25 V</option>
  1779. <option value="4284152982">1.6 V</option>
  1780. <option value="4274139403">1.6 V, 1.6 V</option>
  1781. <option value="4274492696">1.69 V</option>
  1782. <option value="4284153006">1.7 V</option>
  1783. <option value="4274494864">1.7 V, 1.8 V</option>
  1784. <option value="4274139418">1.7 V, 1.8 V, 1.9 V</option>
  1785. <option value="4274139394">1.7 V, 1.9 V</option>
  1786. <option value="4284147844">1.75 V</option>
  1787. <option value="4274138330">1.75 V, 2 V</option>
  1788. <option value="4284152798">1.8 V</option>
  1789. <option value="4274139464">1.8 V, 1.9 V</option>
  1790. <option value="4274139654">1.8 V, 2.1 V</option>
  1791. <option value="4274139439">1.8 V/2.1 V</option>
  1792. <option value="4274494913">1.85 V</option>
  1793. <option value="4284152864">1.9 V</option>
  1794. <option value="4274140263">1.9 V, 2 V</option>
  1795. <option value="4274140292">1.9 V, 2.1 V</option>
  1796. <option value="4274137351">1.9 V, 3.2 V</option>
  1797. <option value="4274139123">1.9 V, 3.4 V, 3.4 V</option>
  1798. <option value="4274135463">1.9 V/2 V</option>
  1799. <option value="4274138295">1.9 V/3.4 V/3.4 V</option>
  1800. <option value="4274494654">1.95 V</option>
  1801. <option value="4284152866">2 V</option>
  1802. <option value="4274140052">2 V, 2 V</option>
  1803. <option value="4274138263">2 V, 2 V, 2.2 V, 2.1 V</option>
  1804. <option value="4274140977">2 V, 2.1 V</option>
  1805. <option value="4274139442">2 V, 2.1 V, 2.1 V</option>
  1806. <option value="4274140985">2 V, 2.1 V, 2.2 V</option>
  1807. <option value="4274140764">2 V, 2.1 V, 2.2 V, 4.5 V</option>
  1808. <option value="4274140994">2 V, 2.2 V</option>
  1809. <option value="4274140925">2 V, 2.2 V, 2.1 V</option>
  1810. <option value="4274139008">2 V, 2.2 V, 2.1 V, 2.1 V</option>
  1811. <option value="4274135767">2 V, 2.2 V, 2.2 V</option>
  1812. <option value="4274140757">2 V, 2.5 V</option>
  1813. <option value="4274135789">2 V, 3.7 V</option>
  1814. <option value="4274139605">2 V/2 V</option>
  1815. <option value="4274135791">2 V/2 V, 2 V</option>
  1816. <option value="4274138982">2 V/2 V, 2 V/2 V</option>
  1817. <option value="4274135790">2 V/2 V, 3.5 V</option>
  1818. <option value="4274140897">2 V/2.1 V</option>
  1819. <option value="4274139011">2 V/2.1 V, 2.1 V</option>
  1820. <option value="4274139405">2 V/2.1 V, 2.1 V/2.1 V</option>
  1821. <option value="4274141006">2 V/2.2 V</option>
  1822. <option value="4274140063">2 VDC</option>
  1823. <option value="4274480733">2.02 V</option>
  1824. <option value="4274138942">2.05 V, 2.1 V, 2.2 V</option>
  1825. <option value="4284150630">2.1 V</option>
  1826. <option value="4274140075">2.1 V, 2 V</option>
  1827. <option value="4274137025">2.1 V, 2 V, 2 V</option>
  1828. <option value="4274140659">2.1 V, 2.1 V</option>
  1829. <option value="4274140736">2.1 V, 2.1 V, 2.2 V</option>
  1830. <option value="4274140952">2.1 V, 2.2 V</option>
  1831. <option value="4274140780">2.1 V, 2.2 V, 2 V</option>
  1832. <option value="4274135823">2.1 V, 2.2 V, 3.5 V</option>
  1833. <option value="4274139461">2.1 V, 2.3 V</option>
  1834. <option value="4274138989">2.1 V, 3.5 V</option>
  1835. <option value="4274140653">2.1 V/2.1 V</option>
  1836. <option value="4274139017">2.1 V/2.1 V, 2.1 V, 3.5 V</option>
  1837. <option value="4274139358">2.1 V/2.1 V, 3.5 V</option>
  1838. <option value="4274140883">2.1 V/2.2 V</option>
  1839. <option value="4274139371">2.1 V/2.3 V</option>
  1840. <option value="4274138965">2.1 V/4 V</option>
  1841. <option value="4275109223">2.2 V</option>
  1842. <option value="4274140698">2.2 V, 2 V</option>
  1843. <option value="4274140689">2.2 V, 2.1 V</option>
  1844. <option value="4274135733">2.2 V, 2.1 V, 2 V, 2 V</option>
  1845. <option value="4274139370">2.2 V, 2.1 V, 2.1 V</option>
  1846. <option value="4274139925">2.2 V, 2.1, 2 V</option>
  1847. <option value="4274135779">2.2 V, 2.2 V, 3.5 V</option>
  1848. <option value="4274140332">2.2 V, 2.25 V</option>
  1849. <option value="4274139010">2.2 V, 2.3 V</option>
  1850. <option value="4274137281">2.2 V, 3.5 V</option>
  1851. <option value="4274135691">2.2 V, 4.5 V</option>
  1852. <option value="4274493964">2.25 V</option>
  1853. <option value="4284150632">2.3 V</option>
  1854. <option value="4284150621">2.4 V</option>
  1855. <option value="4284148360">2.5 V</option>
  1856. <option value="4274492658">2.55 V</option>
  1857. <option value="4284150425">2.6 V</option>
  1858. <option value="4274139746">2.6 V, 2.5 V, 2.5 V</option>
  1859. <option value="4284150426">2.7 V</option>
  1860. <option value="4274495046">2.8 V</option>
  1861. <option value="4274138975">2.8 V/2.8 V</option>
  1862. <option value="4274484044">2.95 V</option>
  1863. <option value="4274138904">2.95 V, 3.42 V, 3.42 V</option>
  1864. <option value="4274138871">2.95 V, 342 V, 3.42 V</option>
  1865. <option value="4284150627">3 V</option>
  1866. <option value="4274493966">3.1 V</option>
  1867. <option value="4274495107">3.2 V</option>
  1868. <option value="4274495069">3.3 V</option>
  1869. <option value="4274493063">3.4 V</option>
  1870. <option value="4274136195">3.4 VDC</option>
  1871. <option value="4274139374">3.42 V</option>
  1872. <option value="4274138044">3.45 V</option>
  1873. <option value="4274495113">3.5 V</option>
  1874. <option value="4274494927">3.6 V</option>
  1875. <option value="4274140402">3.7 V</option>
  1876. <option value="4274492859">3.8 V</option>
  1877. <option value="4274492884">3.9 V</option>
  1878. <option value="4284153296">4 V</option>
  1879. <option value="4274491013">4.1 V</option>
  1880. <option value="4274492882">4.3 V</option>
  1881. <option value="4274140984">4.4 V</option>
  1882. <option value="4274140983">4.5 V</option>
  1883. <option value="4274140692">4.5 V, 2.1 V</option>
  1884. <option value="4274139352">4.5 V, 2.1 V, 2.2 V</option>
  1885. <option value="4274140507">4.9 V</option>
  1886. <option value="4274495061">5 V</option>
  1887. <option value="4274134468">5 V to 28 V</option>
  1888. <option value="4274137337">5 VDC</option>
  1889. <option value="4274140991">5.5 V</option>
  1890. <option value="4274493535">6 V</option>
  1891. <option value="4274139419">6 V to 36 V</option>
  1892. <option value="4274139348">6 VDC</option>
  1893. <option value="4274140608">6.3 V</option>
  1894. <option value="4274134687">6.75 V</option>
  1895. <option value="4274494673">7 V</option>
  1896. <option value="4274138922">7.2 V</option>
  1897. <option value="4274140945">7.5 V</option>
  1898. <option value="4274135500">8 VAC, 48 VDC</option>
  1899. <option value="4274140913">9 V to 12 V</option>
  1900. <option value="4274135616">9.3 V</option>
  1901. <option value="4274492604">10 V</option>
  1902. <option value="4274138943">10.2 V</option>
  1903. <option value="4274139134">10.8 V</option>
  1904. <option value="4274494890">12 V</option>
  1905. <option value="4274134619">12 V to 24 V</option>
  1906. <option value="4274137844">12 V to 32 V</option>
  1907. <option value="4274134250">12 V, 12 V</option>
  1908. <option value="4274139471">12 V, 24 V</option>
  1909. <option value="4274136194">12 VAC to 28 VAC, 12 VDC to 28 VDC</option>
  1910. <option value="4274139360">12 VDC</option>
  1911. <option value="4274136980">12.3 V</option>
  1912. <option value="4274139141">12.5 V</option>
  1913. <option value="4274140656">13 V</option>
  1914. <option value="4274134790">13.3 V</option>
  1915. <option value="4274495064">14 V</option>
  1916. <option value="4274141008">15 V</option>
  1917. <option value="4274492600">16 V</option>
  1918. <option value="4274134730">16.6 V</option>
  1919. <option value="4274492611">18 V</option>
  1920. <option value="4274137031">18.5 V</option>
  1921. <option value="4274135847">19.9 V</option>
  1922. <option value="4274137845">20 V</option>
  1923. <option value="4274136956">21 V</option>
  1924. <option value="4274139140">21.6 V</option>
  1925. <option value="4274135543">22.9 V</option>
  1926. <option value="4274135552">23.8 V</option>
  1927. <option value="4274492586">24 V</option>
  1928. <option value="4274139363">24 VDC</option>
  1929. <option value="4274136196">24 VDC to 28 VDC</option>
  1930. <option value="4274140812">26 V</option>
  1931. <option value="4274141007">28 V</option>
  1932. <option value="4274139357">28 VDC</option>
  1933. <option value="4274135848">29.3 V</option>
  1934. <option value="4269108637">32.85 V</option>
  1935. <option value="4274136767">33 V</option>
  1936. <option value="4265244852">33.25 V</option>
  1937. <option value="4274135761">34 V</option>
  1938. <option value="4274135566">34.4 V</option>
  1939. <option value="4274138154">36 V</option>
  1940. <option value="4274139375">37 V</option>
  1941. <option value="4274138996">37.5 V</option>
  1942. <option value="4274134949">39.7 V</option>
  1943. <option value="4274134812">42.8 V</option>
  1944. <option value="4269108629">43.8 V</option>
  1945. <option value="4274134666">46.2 V</option>
  1946. <option value="4274135954">48 V</option>
  1947. <option value="4269108580">54.75 V</option>
  1948. <option value="4274137188">55 V</option>
  1949. <option value="4274138990">72 V</option>
  1950. <option value="4274138599">100 V</option>
  1951. <option value="4274139355">110 V</option>
  1952. <option value="4274138289">110 VAC</option>
  1953. <option value="4274136197">110 VAC, 110 VDC</option>
  1954. <option value="4274138739">115 V</option>
  1955. <option value="4274139454">120 V</option>
  1956. <option value="4274137200">120 VAC</option>
  1957. <option value="4274140486">125 V</option>
  1958. <option value="4274139012">130 V</option>
  1959. <option value="4274138538">220 V</option>
  1960. <option value="4274139485">230 V</option>
  1961. <option value="4284148308">-</option>
  1962. <option value="4274139467">12V</option>
  1963. <option value="4274138985">2V/2.1V, 2.1V/2.1 V</option>
  1964. </select>
  1965. </td>
  1966. </tr>
  1967. <tr>
  1968. <td>
  1969. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1970. </td>
  1971. </tr>
  1972. </table>
  1973. </td>
  1974. <td valign="bottom" style="width: 15px;">
  1975. &nbsp;
  1976. </td>
  1977. </tr>
  1978. </table>
  1979. </td>
  1980. </tr>
  1981. </table>
  1982. <table class="ApplyFilter">
  1983. <tr>
  1984. <td class="ApplyFilterColumn1">
  1985. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1986. </td>
  1987. <td class="ApplyFilterColumn2">
  1988. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  1989. </td>
  1990. <td class="ApplyFilterColumn2_5">
  1991. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  1992. </td>
  1993. <td class="ApplyFilterColumn3">
  1994. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1995. </td>
  1996. </tr>
  1997. </table>
  1998. </td>
  1999. </tr>
  2000. </table>
  2001. </div>
  2002. </td>
  2003. </tr>
  2004. </table>
  2005. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  2006. height: 70px; display: none; background: white; border: 1px solid #000;'>
  2007. <br />
  2008. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  2009. <br />
  2010. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  2011. <!--Close Window-->
  2012. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  2013. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  2014. </a>&nbsp;&nbsp;</div>
  2015. </div>
  2016. <div id ="VisualAttributePopup" class="hidden" >
  2017. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  2018. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  2019. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  2020. </div>
  2021. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id="loadingimgspinner" src="/Images/spinner2.gif" /></div>
  2022. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  2023. <table id="tblAttributes" >
  2024. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  2025. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  2026. <td class="visualAttributeImage">
  2027. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  2028. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  2029. </td>
  2030. <td>
  2031. <table class="visualAttValueDesc">
  2032. <tr>
  2033. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  2034. </tr>
  2035. <tr>
  2036. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  2037. </tr>
  2038. <tr data-bind="if: ImagePath1 ">
  2039. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs" /></div></td>
  2040. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  2041. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  2042. </tr>
  2043. </table>
  2044. </td>
  2045. </tr>
  2046. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  2047. </tbody>
  2048. </table>
  2049. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id="Img1" src="/Images/spinner2.gif" />
  2050. <div data-bind="if: hasMoreOptions" align="center">
  2051. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  2052. </div>
  2053. </div>
  2054. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  2055. <div class="visualAttributesBtnDiv">
  2056. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnOK" value="确定" onclick="javascript:ClosePopup();" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnOK" class="button" data-bind="visible: attributes().length &lt; 1" />
  2057. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  2058. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnApply" value="确定" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnApply" class="button" data-bind="click: applySelections, visible: attributes().length > 0" />
  2059. </div>
  2060. </div>
  2061. <style type="text/css">.ui-dialog{position:absolute;padding:0px !important;width:300px;overflow:hidden;}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.6em !important;background:none;overflow:auto;zoom:1;max-height:450px;}.ui-dialog .ui-dialog-titlebar{padding:.4em .5em !important;position:relative;background:none repeat scroll 0 0 #E0E4E9;font-size:15px;}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:0;}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:0;}</style>
  2062. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2063. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  2064. </div>
  2065. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  2066. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  2067. <script src='../../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  2068. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2069. <script type="text/javascript">
  2070. $().ready(function () {
  2071. ko.applyBindings(new DisplayAttributesModel());
  2072. ko.bindingHandlers.hoverToggle = {
  2073. update: function (element, valueAccessor) {
  2074. var css = valueAccessor();
  2075. var isSelected = $(element).hasClass("selectedAttribute");
  2076. if (!isSelected) {
  2077. ko.utils.registerEventHandler(element, "mouseenter", function () {
  2078. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  2079. });
  2080. ko.utils.registerEventHandler(element, "mouseleave", function () {
  2081. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  2082. });
  2083. }
  2084. }
  2085. };
  2086. });
  2087. </script>
  2088. </div>
  2089. <div id="refine-mfg-logo2">
  2090. </div>
  2091. </div>
  2092. <br />
  2093. <table border="0" width="100%">
  2094. <tr>
  2095. <td>
  2096. </td>
  2097. </tr>
  2098. <tr>
  2099. <td>
  2100. <!--- Search Features --->
  2101. </td>
  2102. </tr>
  2103. <tr>
  2104. <td>
  2105. <div id="refine-page">
  2106. </div>
  2107. </td>
  2108. </tr>
  2109. <tr>
  2110. <td class="refine-show-products">
  2111. <span class="redtextb">
  2112. </span> <span class="redtextb">
  2113. </span> <span class="redtextb">
  2114. </span> <span class="redtextb">
  2115. </span>
  2116. <span class="redtextb">
  2117. </span>
  2118. </td>
  2119. </tr>
  2120. <tr>
  2121. <td>
  2122. </td>
  2123. </tr>
  2124. <tr>
  2125. <td>
  2126. <!--- Special Order Parts New --->
  2127. <!-- SOP Section 1 -->
  2128. </td>
  2129. </tr>
  2130. </table>
  2131. <div id="searchResultsTbl">
  2132. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  2133. <tr>
  2134. <td class="tdSearchResultsPagingTop">
  2135. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  2136. <tr>
  2137. <td>
  2138. <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" />
  2139. </td>
  2140. <td>
  2141. <input type="submit" name="ctl00$ContentMain$btn2" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) &amp;&amp; 0 == 0) { alert(&#39;请选择您希望对比的产品。&#39;); return false; };" id="ctl00_ContentMain_btn2" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
  2142. </td>
  2143. <td>
  2144. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  2145. </td>
  2146. <td style="padding-left: 40px;">
  2147. <div class="floatrightpager">
  2148. <span class="bold">
  2149. 页面:
  2150. </span>
  2151. <span id="ctl00_ContentMain_PagerTop"><span id="ctl00_ContentMain_PagerTop_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerTop_1" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_773" class="first-last" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=19325">774</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=25">下一页</a></span>
  2152. </div>
  2153. </td>
  2154. </tr>
  2155. </table>
  2156. </td>
  2157. </tr>
  2158. <tr>
  2159. <td>
  2160. <div>
  2161. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  2162. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  2163. <th class="td-select" scope="col" style="width:35px;">
  2164. 选择
  2165. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  2166. </th><th scope="col">制造商 零件编号
  2167. </th><th scope="col">制造商
  2168. </th><th scope="col">描述
  2169. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../Images/Search/pdf.gif" alt="文件" />
  2170. </th><th scope="col">供货情况
  2171. </th><th scope="col">单价(含17%增值税)
  2172. <br />
  2173. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  2174. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  2175. </th><th class="SearchResultParametricColumnHeading" scope="col">产品
  2176. </th><th class="SearchResultParametricColumnHeading" scope="col">照明颜色
  2177. </th><th class="SearchResultParametricColumnHeading" scope="col">波长/色温
  2178. </th><th class="SearchResultParametricColumnHeading" scope="col">If - 正向电流
  2179. </th><th class="SearchResultParametricColumnHeading" scope="col">Vf - 正向电压
  2180. </th>
  2181. </tr><tr class="SearchResultsSortCell">
  2182. <td class="td-select" align="center"></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl16&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 Mouser 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl18&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 Mouser 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Ascending&#39;); return false;" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl02_ctl20" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl20&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl22&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl24&#39;,&#39;&#39;)"><img title="按 制造商 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl26&#39;,&#39;&#39;)"><img title="按 制造商 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Default>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl28&#39;,&#39;&#39;)"><img title="按 供货情况 Ascending 排序" src="../../../../../Images/Search/btn_ActiveSort_Up.jpg" alt="按 供货情况 Ascending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl30&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 单价(含17%增值税) Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl32&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Product>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl34&#39;,&#39;&#39;)"><img title="按 产品 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 产品 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Product>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl36&#39;,&#39;&#39;)"><img title="按 产品 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 产品 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Illumination Color>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl38&#39;,&#39;&#39;)"><img title="按 照明颜色 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 照明颜色 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Illumination Color>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl40&#39;,&#39;&#39;)"><img title="按 照明颜色 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 照明颜色 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Wavelength/Color Temperature>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl42&#39;,&#39;&#39;)"><img title="按 波长/色温 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 波长/色温 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Wavelength/Color Temperature>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl44&#39;,&#39;&#39;)"><img title="按 波长/色温 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 波长/色温 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$If - Forward Current>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl46&#39;,&#39;&#39;)"><img title="按 If - 正向电流 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 If - 正向电流 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$If - Forward Current>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl48&#39;,&#39;&#39;)"><img title="按 If - 正向电流 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 If - 正向电流 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Vf - Forward Voltage>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl50&#39;,&#39;&#39;)"><img title="按 Vf - 正向电压 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 Vf - 正向电压 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Vf - Forward Voltage>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl52&#39;,&#39;&#39;)"><img title="按 Vf - 正向电压 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 Vf - 正向电压 Descending 排序" /></a></td>
  2183. </tr><tr class="SearchResultsRowOdd" data-partnumber="997-L2M0-5070004MC22" data-index="3">
  2184. <td class="td-select" align="center">
  2185. <div style="padding: 5px 5px 0 5px;">
  2186. <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>
  2187. </div>
  2188. </td><td><a href='/ProductDetail/Lumileds/L2M0-5070004MC2200/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLXJewU2o969LvQ4A%252b4yAw0w%3d%3d'><img title='Lumileds L2M0-5070004MC2200' alt='Lumileds L2M0-5070004MC2200' id=1582894394 src='/images/lumileds/sm/Luxeon_XR-M_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/Luxeon_XR-M_DSL.JPG</div></a></td><td>
  2189. <div style="text-align:left;">
  2190. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L2M0-5070004MC2200/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLXJewU2o969LvQ4A%252b4yAw0w%3d%3d">997-L2M0-5070004MC22</a><br />
  2191. <br />
  2192. <br />
  2193. </div></td><td>
  2194. <div class="mfrDiv">
  2195. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L2M0-5070004MC2200/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLXJewU2o969LvQ4A%252b4yAw0w%3d%3d">L2M0-5070004MC2200</a><br />
  2196. <br />
  2197. <div style="width: 100%; text-align: center;">
  2198. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2199. </div>
  2200. <div style="width: 100%; text-align: center;">
  2201. </div>
  2202. </div>
  2203. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2204. </td><td>LED照明模块 White 5000K, 70-CRI 4-Up Square
  2205. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2206. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../lumileds-luxeon-xr-m">了解更多</a>
  2207. </div>
  2208. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2209. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2210. </div>
  2211. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L2M0-5070004MC22 | L2M0-5070004MC2200&quot;]);" href="http://www.mouser.com/ds/2/602/DS158-775838.pdf" target="_blank">数据表</a>
  2212. </td><td>
  2213. <table>
  2214. <tr align="center">
  2215. <td style="padding-top: 5px">
  2216. </td>
  2217. </tr>
  2218. <tr align="center">
  2219. <td style="padding-top: 5px; padding-bottom: 5px">
  2220. </td>
  2221. </tr>
  2222. </table></td><td>
  2223. </td><td class="SearchResultsBuyColumn">
  2224. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_pnlRestricted">
  2225. <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>
  2226. </div>
  2227. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  2228. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2229. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453IdmtbcPRLjtq%2fo32A%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453IdmtbcPRLjtq%2fo32A%3d%3d" target="_blank">详细信息</a>
  2230. </div>
  2231. </td><td>Arrays, Square
  2232. </td><td>Cool White
  2233. </td><td>5000K
  2234. </td><td>700 mA
  2235. </td><td>43.8 V
  2236. </td>
  2237. </tr><tr class="SearchResultsRowEven" data-partnumber="997-L2M0-4070004MC22" data-index="4">
  2238. <td class="td-select" align="center">
  2239. <div style="padding: 5px 5px 0 5px;">
  2240. <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>
  2241. </div>
  2242. </td><td><a href='/ProductDetail/Lumileds/L2M0-4070004MC2200/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLqHiLrZcEB8WNfsfTxmbZUQ%3d%3d'><img title='Lumileds L2M0-4070004MC2200' alt='Lumileds L2M0-4070004MC2200' id=1582894386 src='/images/lumileds/sm/Luxeon_XR-M_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/Luxeon_XR-M_DSL.JPG</div></a></td><td>
  2243. <div style="text-align:left;">
  2244. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L2M0-4070004MC2200/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLqHiLrZcEB8WNfsfTxmbZUQ%3d%3d">997-L2M0-4070004MC22</a><br />
  2245. <br />
  2246. <br />
  2247. </div></td><td>
  2248. <div class="mfrDiv">
  2249. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L2M0-4070004MC2200/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLqHiLrZcEB8WNfsfTxmbZUQ%3d%3d">L2M0-4070004MC2200</a><br />
  2250. <br />
  2251. <div style="width: 100%; text-align: center;">
  2252. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2253. </div>
  2254. <div style="width: 100%; text-align: center;">
  2255. </div>
  2256. </div>
  2257. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2258. </td><td>LED照明模块 White 4000K, 70-CRI 4-Up Square
  2259. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2260. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../lumileds-luxeon-xr-m">了解更多</a>
  2261. </div>
  2262. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2263. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2264. </div>
  2265. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L2M0-4070004MC22 | L2M0-4070004MC2200&quot;]);" href="http://www.mouser.com/ds/2/602/DS158-775838.pdf" target="_blank">数据表</a>
  2266. </td><td>
  2267. <table>
  2268. <tr align="center">
  2269. <td style="padding-top: 5px">
  2270. </td>
  2271. </tr>
  2272. <tr align="center">
  2273. <td style="padding-top: 5px; padding-bottom: 5px">
  2274. </td>
  2275. </tr>
  2276. </table></td><td>
  2277. </td><td class="SearchResultsBuyColumn">
  2278. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_pnlRestricted">
  2279. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_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>
  2280. </div>
  2281. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  2282. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2283. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453IdmtbfXH32LOXNcgQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453IdmtbfXH32LOXNcgQ%3d%3d" target="_blank">详细信息</a>
  2284. </div>
  2285. </td><td>Arrays, Square
  2286. </td><td>Neutral White
  2287. </td><td>4000K
  2288. </td><td>700 mA
  2289. </td><td>43.8 V
  2290. </td>
  2291. </tr><tr class="SearchResultsRowOdd" data-partnumber="997-L2M0-5770004MC22" data-index="5">
  2292. <td class="td-select" align="center">
  2293. <div style="padding: 5px 5px 0 5px;">
  2294. <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>
  2295. </div>
  2296. </td><td><a href='/ProductDetail/Lumileds/L2M0-5770004MC2200/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLOWnUw9HQ96ORhJAYvWPLXg%3d%3d'><img title='Lumileds L2M0-5770004MC2200' alt='Lumileds L2M0-5770004MC2200' id=1582894402 src='/images/lumileds/sm/Luxeon_XR-M_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/Luxeon_XR-M_DSL.JPG</div></a></td><td>
  2297. <div style="text-align:left;">
  2298. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L2M0-5770004MC2200/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLOWnUw9HQ96ORhJAYvWPLXg%3d%3d">997-L2M0-5770004MC22</a><br />
  2299. <br />
  2300. <br />
  2301. </div></td><td>
  2302. <div class="mfrDiv">
  2303. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L2M0-5770004MC2200/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLOWnUw9HQ96ORhJAYvWPLXg%3d%3d">L2M0-5770004MC2200</a><br />
  2304. <br />
  2305. <div style="width: 100%; text-align: center;">
  2306. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2307. </div>
  2308. <div style="width: 100%; text-align: center;">
  2309. </div>
  2310. </div>
  2311. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2312. </td><td>LED照明模块 White 5700K, 70-CRI 4-Up Square
  2313. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2314. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../lumileds-luxeon-xr-m">了解更多</a>
  2315. </div>
  2316. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2317. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2318. </div>
  2319. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L2M0-5770004MC22 | L2M0-5770004MC2200&quot;]);" href="http://www.mouser.com/ds/2/602/DS158-775838.pdf" target="_blank">数据表</a>
  2320. </td><td>
  2321. <table>
  2322. <tr align="center">
  2323. <td style="padding-top: 5px">
  2324. </td>
  2325. </tr>
  2326. <tr align="center">
  2327. <td style="padding-top: 5px; padding-bottom: 5px">
  2328. </td>
  2329. </tr>
  2330. </table></td><td>
  2331. </td><td class="SearchResultsBuyColumn">
  2332. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_pnlRestricted">
  2333. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_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>
  2334. </div>
  2335. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2336. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2337. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453IdmtbceEM5k6vQxUg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453IdmtbceEM5k6vQxUg%3d%3d" target="_blank">详细信息</a>
  2338. </div>
  2339. </td><td>Arrays, Square
  2340. </td><td>Cool White
  2341. </td><td>5700K
  2342. </td><td>700 mA
  2343. </td><td>43.8 V
  2344. </td>
  2345. </tr><tr class="SearchResultsRowEven" data-partnumber="997-L2M0-5070005MC33" data-index="6">
  2346. <td class="td-select" align="center">
  2347. <div style="padding: 5px 5px 0 5px;">
  2348. <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>
  2349. </div>
  2350. </td><td><a href='/ProductDetail/Lumileds/L2M0-5070005MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLvr91W%252bBYJ%2f%252bO9XttIcrOIg%3d%3d'><img title='Lumileds L2M0-5070005MC3300' alt='Lumileds L2M0-5070005MC3300' id=1582894398 src='/images/lumileds/sm/Luxeon_XR-M_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/Luxeon_XR-M_DSL.JPG</div></a></td><td>
  2351. <div style="text-align:left;">
  2352. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L2M0-5070005MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLvr91W%252bBYJ%2f%252bO9XttIcrOIg%3d%3d">997-L2M0-5070005MC33</a><br />
  2353. <br />
  2354. <br />
  2355. </div></td><td>
  2356. <div class="mfrDiv">
  2357. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L2M0-5070005MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLvr91W%252bBYJ%2f%252bO9XttIcrOIg%3d%3d">L2M0-5070005MC3300</a><br />
  2358. <br />
  2359. <div style="width: 100%; text-align: center;">
  2360. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2361. </div>
  2362. <div style="width: 100%; text-align: center;">
  2363. </div>
  2364. </div>
  2365. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2366. </td><td>LED照明模块 White 5000K, 70-CRI 5-Up Linear
  2367. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2368. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../lumileds-luxeon-xr-m">了解更多</a>
  2369. </div>
  2370. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2371. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2372. </div>
  2373. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L2M0-5070005MC33 | L2M0-5070005MC3300&quot;]);" href="http://www.mouser.com/ds/2/602/DS158-775838.pdf" target="_blank">数据表</a>
  2374. </td><td>
  2375. <table>
  2376. <tr align="center">
  2377. <td style="padding-top: 5px">
  2378. </td>
  2379. </tr>
  2380. <tr align="center">
  2381. <td style="padding-top: 5px; padding-bottom: 5px">
  2382. </td>
  2383. </tr>
  2384. </table></td><td>
  2385. </td><td class="SearchResultsBuyColumn">
  2386. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_pnlRestricted">
  2387. <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>
  2388. </div>
  2389. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  2390. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2391. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453IdmtbdZoPUyG2jZ%252bw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453IdmtbdZoPUyG2jZ%252bw%3d%3d" target="_blank">详细信息</a>
  2392. </div>
  2393. </td><td>Arrays, Linear
  2394. </td><td>Cool White
  2395. </td><td>5000K
  2396. </td><td>700 mA
  2397. </td><td>54.75 V
  2398. </td>
  2399. </tr><tr class="SearchResultsRowOdd" data-partnumber="997-L219-3080C06FV00" data-index="7">
  2400. <td class="td-select" align="center">
  2401. <div style="padding: 5px 5px 0 5px;">
  2402. <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>
  2403. </div>
  2404. </td><td><a href='/ProductDetail/Lumileds/L219-3080C06FV0000/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLVQ67S9zRWDYPOYlHhJImyA%3d%3d'><img title='Lumileds L219-3080C06FV0000' alt='Lumileds L219-3080C06FV0000' id=1582894370 src='/images/lumileds/sm/LUXEON_XF_3014_SPL.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/LUXEON_XF_3014_SPL.jpg</div></a></td><td>
  2405. <div style="text-align:left;">
  2406. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L219-3080C06FV0000/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLVQ67S9zRWDYPOYlHhJImyA%3d%3d">997-L219-3080C06FV00</a><br />
  2407. <br />
  2408. <br />
  2409. 要购买完整 卷轴,请订购 5 的倍数:
  2410. </div></td><td>
  2411. <div class="mfrDiv">
  2412. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L219-3080C06FV0000/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLVQ67S9zRWDYPOYlHhJImyA%3d%3d">L219-3080C06FV0000</a><br />
  2413. <br />
  2414. <div style="width: 100%; text-align: center;">
  2415. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2416. </div>
  2417. <div style="width: 100%; text-align: center;">
  2418. </div>
  2419. </div>
  2420. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2421. </td><td>LED照明条和带 White 3000K, 80-CRI 24 V, 6 X 3014, Reel
  2422. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2423. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../luxeon-xf-3014">了解更多</a>
  2424. </div>
  2425. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2426. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2427. </div>
  2428. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L219-3080C06FV00 | L219-3080C06FV0000&quot;]);" href="http://www.mouser.com/ds/2/602/DS156-775806.pdf" target="_blank">数据表</a>
  2429. </td><td>
  2430. <table>
  2431. <tr align="center">
  2432. <td style="padding-top: 5px">
  2433. </td>
  2434. </tr>
  2435. <tr align="center">
  2436. <td style="padding-top: 5px; padding-bottom: 5px">
  2437. </td>
  2438. </tr>
  2439. </table></td><td>
  2440. </td><td class="SearchResultsBuyColumn">
  2441. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlRestricted">
  2442. <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>
  2443. </div>
  2444. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2445. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2446. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453IdmtbfhZWSaDRQeqw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453IdmtbfhZWSaDRQeqw%3d%3d" target="_blank">详细信息</a>
  2447. </div>
  2448. </td><td>LED Flexible Strips
  2449. </td><td>Warm White
  2450. </td><td>3000 K
  2451. </td><td>45 mA
  2452. </td><td>24 V
  2453. </td>
  2454. </tr><tr class="SearchResultsRowEven" data-partnumber="997-L2M0-4070005MC33" data-index="8">
  2455. <td class="td-select" align="center">
  2456. <div style="padding: 5px 5px 0 5px;">
  2457. <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>
  2458. </div>
  2459. </td><td><a href='/ProductDetail/Lumileds/L2M0-4070005MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLIGJNeUVkHMNHuqIY%252bL3MtQ%3d%3d'><img title='Lumileds L2M0-4070005MC3300' alt='Lumileds L2M0-4070005MC3300' id=1582894390 src='/images/lumileds/sm/Luxeon_XR-M_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/Luxeon_XR-M_DSL.JPG</div></a></td><td>
  2460. <div style="text-align:left;">
  2461. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L2M0-4070005MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLIGJNeUVkHMNHuqIY%252bL3MtQ%3d%3d">997-L2M0-4070005MC33</a><br />
  2462. <br />
  2463. <br />
  2464. </div></td><td>
  2465. <div class="mfrDiv">
  2466. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L2M0-4070005MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLIGJNeUVkHMNHuqIY%252bL3MtQ%3d%3d">L2M0-4070005MC3300</a><br />
  2467. <br />
  2468. <div style="width: 100%; text-align: center;">
  2469. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2470. </div>
  2471. <div style="width: 100%; text-align: center;">
  2472. </div>
  2473. </div>
  2474. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2475. </td><td>LED照明模块 White 4000K, 70-CRI 5-Up Linear
  2476. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2477. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../lumileds-luxeon-xr-m">了解更多</a>
  2478. </div>
  2479. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2480. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2481. </div>
  2482. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L2M0-4070005MC33 | L2M0-4070005MC3300&quot;]);" href="http://www.mouser.com/ds/2/602/DS158-775838.pdf" target="_blank">数据表</a>
  2483. </td><td>
  2484. <table>
  2485. <tr align="center">
  2486. <td style="padding-top: 5px">
  2487. </td>
  2488. </tr>
  2489. <tr align="center">
  2490. <td style="padding-top: 5px; padding-bottom: 5px">
  2491. </td>
  2492. </tr>
  2493. </table></td><td>
  2494. </td><td class="SearchResultsBuyColumn">
  2495. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_pnlRestricted">
  2496. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2497. </div>
  2498. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2499. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2500. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453Idmtbe1a%2ffNM6B5tQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453Idmtbe1a%2ffNM6B5tQ%3d%3d" target="_blank">详细信息</a>
  2501. </div>
  2502. </td><td>Arrays, Linear
  2503. </td><td>Neutral White
  2504. </td><td>4000K
  2505. </td><td>700 mA
  2506. </td><td>54.75 V
  2507. </td>
  2508. </tr><tr class="SearchResultsRowOdd" data-partnumber="997-L2M0-5070004MC33" data-index="9">
  2509. <td class="td-select" align="center">
  2510. <div style="padding: 5px 5px 0 5px;">
  2511. <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>
  2512. </div>
  2513. </td><td><a href='/ProductDetail/Lumileds/L2M0-5070004MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YL4EXy4sTVEYtKkYAdQZVNsw%3d%3d'><img title='Lumileds L2M0-5070004MC3300' alt='Lumileds L2M0-5070004MC3300' id=1582894396 src='/images/lumileds/sm/Luxeon_XR-M_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/Luxeon_XR-M_DSL.JPG</div></a></td><td>
  2514. <div style="text-align:left;">
  2515. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L2M0-5070004MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YL4EXy4sTVEYtKkYAdQZVNsw%3d%3d">997-L2M0-5070004MC33</a><br />
  2516. <br />
  2517. <br />
  2518. </div></td><td>
  2519. <div class="mfrDiv">
  2520. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L2M0-5070004MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YL4EXy4sTVEYtKkYAdQZVNsw%3d%3d">L2M0-5070004MC3300</a><br />
  2521. <br />
  2522. <div style="width: 100%; text-align: center;">
  2523. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2524. </div>
  2525. <div style="width: 100%; text-align: center;">
  2526. </div>
  2527. </div>
  2528. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2529. </td><td>LED照明模块 White 5000K, 70-CRI 4-Up Linear
  2530. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2531. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../lumileds-luxeon-xr-m">了解更多</a>
  2532. </div>
  2533. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2534. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2535. </div>
  2536. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L2M0-5070004MC33 | L2M0-5070004MC3300&quot;]);" href="http://www.mouser.com/ds/2/602/DS158-775838.pdf" target="_blank">数据表</a>
  2537. </td><td>
  2538. <table>
  2539. <tr align="center">
  2540. <td style="padding-top: 5px">
  2541. </td>
  2542. </tr>
  2543. <tr align="center">
  2544. <td style="padding-top: 5px; padding-bottom: 5px">
  2545. </td>
  2546. </tr>
  2547. </table></td><td>
  2548. </td><td class="SearchResultsBuyColumn">
  2549. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_pnlRestricted">
  2550. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_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>
  2551. </div>
  2552. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  2553. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2554. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453IdmtbehgbOfswOUXg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453IdmtbehgbOfswOUXg%3d%3d" target="_blank">详细信息</a>
  2555. </div>
  2556. </td><td>Arrays, Linear
  2557. </td><td>Cool White
  2558. </td><td>5000K
  2559. </td><td>700 mA
  2560. </td><td>43.8 V
  2561. </td>
  2562. </tr><tr class="SearchResultsRowEven" data-partnumber="997-L2M0-5770005MC33" data-index="10">
  2563. <td class="td-select" align="center">
  2564. <div style="padding: 5px 5px 0 5px;">
  2565. <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>
  2566. </div>
  2567. </td><td><a href='/ProductDetail/Lumileds/L2M0-5770005MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLaPWWOUfRcz5yDWEVk%2fPjUQ%3d%3d'><img title='Lumileds L2M0-5770005MC3300' alt='Lumileds L2M0-5770005MC3300' id=1582894406 src='/images/lumileds/sm/Luxeon_XR-M_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/Luxeon_XR-M_DSL.JPG</div></a></td><td>
  2568. <div style="text-align:left;">
  2569. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L2M0-5770005MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLaPWWOUfRcz5yDWEVk%2fPjUQ%3d%3d">997-L2M0-5770005MC33</a><br />
  2570. <br />
  2571. <br />
  2572. </div></td><td>
  2573. <div class="mfrDiv">
  2574. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L2M0-5770005MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLaPWWOUfRcz5yDWEVk%2fPjUQ%3d%3d">L2M0-5770005MC3300</a><br />
  2575. <br />
  2576. <div style="width: 100%; text-align: center;">
  2577. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2578. </div>
  2579. <div style="width: 100%; text-align: center;">
  2580. </div>
  2581. </div>
  2582. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2583. </td><td>LED照明模块 White 5700K, 70-CRI 5-Up Linear
  2584. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2585. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../lumileds-luxeon-xr-m">了解更多</a>
  2586. </div>
  2587. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2588. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2589. </div>
  2590. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L2M0-5770005MC33 | L2M0-5770005MC3300&quot;]);" href="http://www.mouser.com/ds/2/602/DS158-775838.pdf" target="_blank">数据表</a>
  2591. </td><td>
  2592. <table>
  2593. <tr align="center">
  2594. <td style="padding-top: 5px">
  2595. </td>
  2596. </tr>
  2597. <tr align="center">
  2598. <td style="padding-top: 5px; padding-bottom: 5px">
  2599. </td>
  2600. </tr>
  2601. </table></td><td>
  2602. </td><td class="SearchResultsBuyColumn">
  2603. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlRestricted">
  2604. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2605. </div>
  2606. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  2607. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2608. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453IdmtbdLxTWdREm5aQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453IdmtbdLxTWdREm5aQ%3d%3d" target="_blank">详细信息</a>
  2609. </div>
  2610. </td><td>Arrays, Linear
  2611. </td><td>Cool White
  2612. </td><td>5700K
  2613. </td><td>700 mA
  2614. </td><td>54.75 V
  2615. </td>
  2616. </tr><tr class="SearchResultsRowOdd" data-partnumber="997-L219-3080030FV0C" data-index="11">
  2617. <td class="td-select" align="center">
  2618. <div style="padding: 5px 5px 0 5px;">
  2619. <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>
  2620. </div>
  2621. </td><td><a href='/ProductDetail/Lumileds/L219-3080030FV0C00/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YL%252br1kc4RZhXrasvQjFHGmew%3d%3d'><img title='Lumileds L219-3080030FV0C00' alt='Lumileds L219-3080030FV0C00' id=1582894368 src='/images/lumileds/sm/LUXEON_XF_3014_SPL.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/LUXEON_XF_3014_SPL.jpg</div></a></td><td>
  2622. <div style="text-align:left;">
  2623. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L219-3080030FV0C00/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YL%252br1kc4RZhXrasvQjFHGmew%3d%3d">997-L219-3080030FV0C</a><br />
  2624. <br />
  2625. <br />
  2626. 要购买完整 卷轴,请订购 100 的倍数:
  2627. </div></td><td>
  2628. <div class="mfrDiv">
  2629. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L219-3080030FV0C00/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YL%252br1kc4RZhXrasvQjFHGmew%3d%3d">L219-3080030FV0C00</a><br />
  2630. <br />
  2631. <div style="width: 100%; text-align: center;">
  2632. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2633. </div>
  2634. <div style="width: 100%; text-align: center;">
  2635. </div>
  2636. </div>
  2637. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2638. </td><td>LED照明条和带 White 3000K, 80-CRI 24 V, 30 X 3014
  2639. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2640. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../luxeon-xf-3014">了解更多</a>
  2641. </div>
  2642. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2643. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2644. </div>
  2645. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L219-3080030FV0C | L219-3080030FV0C00&quot;]);" href="http://www.mouser.com/ds/2/602/DS156-775806.pdf" target="_blank">数据表</a>
  2646. </td><td>
  2647. <table>
  2648. <tr align="center">
  2649. <td style="padding-top: 5px">
  2650. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Lumileds/L219-3080030FV0C00/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YL%252br1kc4RZhXrasvQjFHGmew%3d%3d">更多信息可用 </a>
  2651. </td>
  2652. </tr>
  2653. <tr align="center">
  2654. <td style="padding-top: 5px; padding-bottom: 5px">
  2655. </td>
  2656. </tr>
  2657. </table></td><td>
  2658. </td><td class="SearchResultsBuyColumn">
  2659. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_pnlRestricted">
  2660. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_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>
  2661. </div>
  2662. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  2663. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2664. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453IdmtbcbHED72%2f4gPg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453IdmtbcbHED72%2f4gPg%3d%3d" target="_blank">详细信息</a>
  2665. </div>
  2666. </td><td>LED Flexible Strips
  2667. </td><td>Warm White
  2668. </td><td>3000 K
  2669. </td><td>225 mA
  2670. </td><td>24 V
  2671. </td>
  2672. </tr><tr class="SearchResultsRowEven" data-partnumber="997-L219-2780030FV0C" data-index="12">
  2673. <td class="td-select" align="center">
  2674. <div style="padding: 5px 5px 0 5px;">
  2675. <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>
  2676. </div>
  2677. </td><td><a href='/ProductDetail/Lumileds/L219-2780030FV0C00/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLiAddA%2fkztDV71rqEjXujLw%3d%3d'><img title='Lumileds L219-2780030FV0C00' alt='Lumileds L219-2780030FV0C00' id=1582894362 src='/images/lumileds/sm/LUXEON_XF_3014_SPL.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/LUXEON_XF_3014_SPL.jpg</div></a></td><td>
  2678. <div style="text-align:left;">
  2679. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L219-2780030FV0C00/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLiAddA%2fkztDV71rqEjXujLw%3d%3d">997-L219-2780030FV0C</a><br />
  2680. <br />
  2681. <br />
  2682. 要购买完整 卷轴,请订购 100 的倍数:
  2683. </div></td><td>
  2684. <div class="mfrDiv">
  2685. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L219-2780030FV0C00/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLiAddA%2fkztDV71rqEjXujLw%3d%3d">L219-2780030FV0C00</a><br />
  2686. <br />
  2687. <div style="width: 100%; text-align: center;">
  2688. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2689. </div>
  2690. <div style="width: 100%; text-align: center;">
  2691. </div>
  2692. </div>
  2693. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2694. </td><td>LED照明条和带 White 2700K, 80-CRI 24 V, 30 X 3014
  2695. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2696. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../luxeon-xf-3014">了解更多</a>
  2697. </div>
  2698. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2699. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2700. </div>
  2701. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L219-2780030FV0C | L219-2780030FV0C00&quot;]);" href="http://www.mouser.com/ds/2/602/DS156-775806.pdf" target="_blank">数据表</a>
  2702. </td><td>
  2703. <table>
  2704. <tr align="center">
  2705. <td style="padding-top: 5px">
  2706. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Lumileds/L219-2780030FV0C00/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLiAddA%2fkztDV71rqEjXujLw%3d%3d">更多信息可用 </a>
  2707. </td>
  2708. </tr>
  2709. <tr align="center">
  2710. <td style="padding-top: 5px; padding-bottom: 5px">
  2711. </td>
  2712. </tr>
  2713. </table></td><td>
  2714. </td><td class="SearchResultsBuyColumn">
  2715. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_pnlRestricted">
  2716. <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>
  2717. </div>
  2718. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  2719. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2720. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453Idmtbc%2fQpi1bvGesw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453Idmtbc%2fQpi1bvGesw%3d%3d" target="_blank">详细信息</a>
  2721. </div>
  2722. </td><td>LED Flexible Strips
  2723. </td><td>Warm White
  2724. </td><td>2700 K
  2725. </td><td>225 mA
  2726. </td><td>24 V
  2727. </td>
  2728. </tr><tr class="SearchResultsRowOdd" data-partnumber="997-L2M0-5770004MC33" data-index="13">
  2729. <td class="td-select" align="center">
  2730. <div style="padding: 5px 5px 0 5px;">
  2731. <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>
  2732. </div>
  2733. </td><td><a href='/ProductDetail/Lumileds/L2M0-5770004MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLlZ4lP1kJDOIQT%2fQN%2fKlodw%3d%3d'><img title='Lumileds L2M0-5770004MC3300' alt='Lumileds L2M0-5770004MC3300' id=1582894404 src='/images/lumileds/sm/Luxeon_XR-M_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/Luxeon_XR-M_DSL.JPG</div></a></td><td>
  2734. <div style="text-align:left;">
  2735. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L2M0-5770004MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLlZ4lP1kJDOIQT%2fQN%2fKlodw%3d%3d">997-L2M0-5770004MC33</a><br />
  2736. <br />
  2737. <br />
  2738. </div></td><td>
  2739. <div class="mfrDiv">
  2740. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L2M0-5770004MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLlZ4lP1kJDOIQT%2fQN%2fKlodw%3d%3d">L2M0-5770004MC3300</a><br />
  2741. <br />
  2742. <div style="width: 100%; text-align: center;">
  2743. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2744. </div>
  2745. <div style="width: 100%; text-align: center;">
  2746. </div>
  2747. </div>
  2748. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2749. </td><td>LED照明模块 White 5700K, 70-CRI 4-Up Linear
  2750. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2751. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../lumileds-luxeon-xr-m">了解更多</a>
  2752. </div>
  2753. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2754. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2755. </div>
  2756. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L2M0-5770004MC33 | L2M0-5770004MC3300&quot;]);" href="http://www.mouser.com/ds/2/602/DS158-775838.pdf" target="_blank">数据表</a>
  2757. </td><td>
  2758. <table>
  2759. <tr align="center">
  2760. <td style="padding-top: 5px">
  2761. </td>
  2762. </tr>
  2763. <tr align="center">
  2764. <td style="padding-top: 5px; padding-bottom: 5px">
  2765. </td>
  2766. </tr>
  2767. </table></td><td>
  2768. </td><td class="SearchResultsBuyColumn">
  2769. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlRestricted">
  2770. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2771. </div>
  2772. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  2773. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2774. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453IdmtbdOXLDT4q0chA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453IdmtbdOXLDT4q0chA%3d%3d" target="_blank">详细信息</a>
  2775. </div>
  2776. </td><td>Arrays, Linear
  2777. </td><td>Cool White
  2778. </td><td>5700K
  2779. </td><td>700 mA
  2780. </td><td>43.8 V
  2781. </td>
  2782. </tr><tr class="SearchResultsRowEven" data-partnumber="997-L2M0-4070004MC33" data-index="14">
  2783. <td class="td-select" align="center">
  2784. <div style="padding: 5px 5px 0 5px;">
  2785. <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>
  2786. </div>
  2787. </td><td><a href='/ProductDetail/Lumileds/L2M0-4070004MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLBrkFPg0bftGyTo%2fz8OcuDQ%3d%3d'><img title='Lumileds L2M0-4070004MC3300' alt='Lumileds L2M0-4070004MC3300' id=1582894388 src='/images/lumileds/sm/Luxeon_XR-M_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/Luxeon_XR-M_DSL.JPG</div></a></td><td>
  2788. <div style="text-align:left;">
  2789. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L2M0-4070004MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLBrkFPg0bftGyTo%2fz8OcuDQ%3d%3d">997-L2M0-4070004MC33</a><br />
  2790. <br />
  2791. <br />
  2792. </div></td><td>
  2793. <div class="mfrDiv">
  2794. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L2M0-4070004MC3300/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLBrkFPg0bftGyTo%2fz8OcuDQ%3d%3d">L2M0-4070004MC3300</a><br />
  2795. <br />
  2796. <div style="width: 100%; text-align: center;">
  2797. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2798. </div>
  2799. <div style="width: 100%; text-align: center;">
  2800. </div>
  2801. </div>
  2802. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2803. </td><td>LED照明模块 White 4000K, 70-CRI 4-Up Linear
  2804. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2805. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../lumileds-luxeon-xr-m">了解更多</a>
  2806. </div>
  2807. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2808. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2809. </div>
  2810. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L2M0-4070004MC33 | L2M0-4070004MC3300&quot;]);" href="http://www.mouser.com/ds/2/602/DS158-775838.pdf" target="_blank">数据表</a>
  2811. </td><td>
  2812. <table>
  2813. <tr align="center">
  2814. <td style="padding-top: 5px">
  2815. </td>
  2816. </tr>
  2817. <tr align="center">
  2818. <td style="padding-top: 5px; padding-bottom: 5px">
  2819. </td>
  2820. </tr>
  2821. </table></td><td>
  2822. </td><td class="SearchResultsBuyColumn">
  2823. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_pnlRestricted">
  2824. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2825. </div>
  2826. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  2827. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2828. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453IdmtbevIAPfOyYZcA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453IdmtbevIAPfOyYZcA%3d%3d" target="_blank">详细信息</a>
  2829. </div>
  2830. </td><td>Arrays, Linear
  2831. </td><td>Neutral White
  2832. </td><td>4000K
  2833. </td><td>700 mA
  2834. </td><td>43.8 V
  2835. </td>
  2836. </tr><tr class="SearchResultsRowOdd" data-partnumber="997-L219-2780C06FV00" data-index="15">
  2837. <td class="td-select" align="center">
  2838. <div style="padding: 5px 5px 0 5px;">
  2839. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$chkSelect" onclick="javascript:RowSelected(15, this.checked);" /></span>
  2840. </div>
  2841. </td><td><a href='/ProductDetail/Lumileds/L219-2780C06FV0000/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLnH3anZu8RP%2fVkgZNy9y5ng%3d%3d'><img title='Lumileds L219-2780C06FV0000' alt='Lumileds L219-2780C06FV0000' id=1582894364 src='/images/lumileds/sm/LUXEON_XF_3014_SPL.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/lumileds/images/LUXEON_XF_3014_SPL.jpg</div></a></td><td>
  2842. <div style="text-align:left;">
  2843. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumileds/L219-2780C06FV0000/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLnH3anZu8RP%2fVkgZNy9y5ng%3d%3d">997-L219-2780C06FV00</a><br />
  2844. <br />
  2845. <br />
  2846. 要购买完整 卷轴,请订购 5 的倍数:
  2847. </div></td><td>
  2848. <div class="mfrDiv">
  2849. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumileds/L219-2780C06FV0000/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLnH3anZu8RP%2fVkgZNy9y5ng%3d%3d">L219-2780C06FV0000</a><br />
  2850. <br />
  2851. <div style="width: 100%; text-align: center;">
  2852. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2853. </div>
  2854. <div style="width: 100%; text-align: center;">
  2855. </div>
  2856. </div>
  2857. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../lumileds">Lumileds</a>
  2858. </td><td>LED照明条和带 White 2700K, 80-CRI 24 V, 6 X 3014, Reel
  2859. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2860. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../luxeon-xf-3014">了解更多</a>
  2861. </div>
  2862. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2863. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2864. </div>
  2865. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumileds&quot;,&quot;997-L219-2780C06FV00 | L219-2780C06FV0000&quot;]);" href="http://www.mouser.com/ds/2/602/DS156-775806.pdf" target="_blank">数据表</a>
  2866. </td><td>
  2867. <table>
  2868. <tr align="center">
  2869. <td style="padding-top: 5px">
  2870. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Lumileds/L219-2780C06FV0000/?qs=sGAEpiMZZMsdbfY7qIGLUrNjCu%252bdM7YLnH3anZu8RP%2fVkgZNy9y5ng%3d%3d">更多信息可用 </a>
  2871. </td>
  2872. </tr>
  2873. <tr align="center">
  2874. <td style="padding-top: 5px; padding-bottom: 5px">
  2875. </td>
  2876. </tr>
  2877. </table></td><td>
  2878. </td><td class="SearchResultsBuyColumn">
  2879. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_pnlRestricted">
  2880. <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>
  2881. </div>
  2882. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  2883. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2884. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tp453Idmtbfa7pdBkC%252bhkQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=tp453Idmtbfa7pdBkC%252bhkQ%3d%3d" target="_blank">详细信息</a>
  2885. </div>
  2886. </td><td>LED Flexible Strips
  2887. </td><td>Warm White
  2888. </td><td>2700 K
  2889. </td><td>45 mA
  2890. </td><td>24 V
  2891. </td>
  2892. </tr><tr class="SearchResultsRowEven" data-partnumber="896-CBT14WCSL16UA120" data-index="16">
  2893. <td class="td-select" align="center">
  2894. <div style="padding: 5px 5px 0 5px;">
  2895. <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>
  2896. </div>
  2897. </td><td><a href='/ProductDetail/Luminus-Devices/CBT-140-WCS-L16-UA120/?qs=sGAEpiMZZMsdbfY7qIGLUn3TyimQ3%252blH3ZH4s1AmnnatYU55nBd0ZQ%3d%3d'><img title='Luminus Devices CBT-140-WCS-L16-UA120' alt='Luminus Devices CBT-140-WCS-L16-UA120' id=1202586500 src='/images/luminusdevices/sm/CBT_140_DSL.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/luminusdevices/images/CBT_140_DSL.jpg</div></a></td><td>
  2898. <div style="text-align:left;">
  2899. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Luminus-Devices/CBT-140-WCS-L16-UA120/?qs=sGAEpiMZZMsdbfY7qIGLUn3TyimQ3%252blH3ZH4s1AmnnatYU55nBd0ZQ%3d%3d">896-CBT14WCSL16UA120</a><br />
  2900. <br />
  2901. <br />
  2902. </div></td><td>
  2903. <div class="mfrDiv">
  2904. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Luminus-Devices/CBT-140-WCS-L16-UA120/?qs=sGAEpiMZZMsdbfY7qIGLUn3TyimQ3%252blH3ZH4s1AmnnatYU55nBd0ZQ%3d%3d">CBT-140-WCS-L16-UA120</a><br />
  2905. <br />
  2906. <div style="width: 100%; text-align: center;">
  2907. </div>
  2908. <div style="width: 100%; text-align: center;">
  2909. </div>
  2910. </div>
  2911. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../Luminus-Devices">Luminus Devices</a>
  2912. </td><td>LED照明模块 Cool White, 7000K 3955lm, 21A, Round
  2913. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2914. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2915. </div>
  2916. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Luminus Devices&quot;,&quot;896-CBT14WCSL16UA120 | CBT-140-WCS-L16-UA120&quot;]);" href="http://www.mouser.com/ds/2/245/Luminus_CBT140_Datasheet-463701.pdf" target="_blank">数据表</a>
  2917. </td><td>
  2918. <table>
  2919. <tr align="center">
  2920. <td style="padding-top: 5px">
  2921. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Luminus-Devices/CBT-140-WCS-L16-UA120/?qs=sGAEpiMZZMsdbfY7qIGLUn3TyimQ3%252blH3ZH4s1AmnnatYU55nBd0ZQ%3d%3d">更多信息可用 </a>
  2922. </td>
  2923. </tr>
  2924. <tr align="center">
  2925. <td style="padding-top: 5px; padding-bottom: 5px">
  2926. </td>
  2927. </tr>
  2928. </table></td><td>
  2929. </td><td class="SearchResultsBuyColumn">
  2930. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlRestricted">
  2931. <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>
  2932. </div>
  2933. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  2934. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2935. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=GC0YqMGTeuipzvQrqGlKTw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=GC0YqMGTeuipzvQrqGlKTw%3d%3d" target="_blank">详细信息</a>
  2936. </div>
  2937. </td><td>
  2938. </td><td>
  2939. </td><td>
  2940. </td><td>
  2941. </td><td>
  2942. </td>
  2943. </tr><tr class="SearchResultsRowOdd" data-partnumber="645-555-3007F" data-index="17">
  2944. <td class="td-select" align="center">
  2945. <div style="padding: 5px 5px 0 5px;">
  2946. <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>
  2947. </div>
  2948. </td><td><a href='/ProductDetail/Dialight/555-3007F/?qs=sGAEpiMZZMsdbfY7qIGLUmZGNfAJ%2fmSj5boJTmWqE04%3d'><img title='Dialight 555-3007F' alt='Dialight 555-3007F' id=38013350 src='/images/mousercatalog/sm/630_94_E_Circuit Board Indicator.jpg' /></a></td><td>
  2949. <div style="text-align:left;">
  2950. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Dialight/555-3007F/?qs=sGAEpiMZZMsdbfY7qIGLUmZGNfAJ%2fmSj5boJTmWqE04%3d">645-555-3007F</a><br />
  2951. <br />
  2952. <br />
  2953. </div></td><td>
  2954. <div class="mfrDiv">
  2955. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Dialight/555-3007F/?qs=sGAEpiMZZMsdbfY7qIGLUmZGNfAJ%2fmSj5boJTmWqE04%3d">555-3007F</a><br />
  2956. <br />
  2957. <div style="width: 100%; text-align: center;">
  2958. </div>
  2959. <div style="width: 100%; text-align: center;">
  2960. </div>
  2961. </div>
  2962. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../dialight">Dialight</a>
  2963. </td><td>LED 电路板指示器 RED DIFFUSED 5 VOLT
  2964. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2965. </div>
  2966. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Dialight&quot;,&quot;645-555-3007F | 555-3007F&quot;]);" href="http://www.mouser.com/catalog/specsheets/555-3xxx.pdf" target="_blank">数据表<br /><br /></a>
  2967. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Catalog PDF Click&#39;,&quot;Dialight&quot;,&quot;645-555-3007F | 555-3007F&quot;]);" href="/catalog/English/103/APAC/121.pdf" target="_blank">页面 121</a>
  2968. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">47,657<br/>有库存</span>
  2969. <table>
  2970. <tr align="center">
  2971. <td style="padding-top: 5px">
  2972. </td>
  2973. </tr>
  2974. <tr align="center">
  2975. <td style="padding-top: 5px; padding-bottom: 5px">
  2976. </td>
  2977. </tr>
  2978. </table></td><td>
  2979. <table class="PriceBreaks" cellspacing="0" border="0">
  2980. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2981. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2982. </td>
  2983. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2984. </td>
  2985. </tr>
  2986. <tr>
  2987. <td class="PriceBreakQuantity">
  2988. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  2989. </td>
  2990. <td class="PriceBreakPrice">
  2991. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥16.3215</span>
  2992. </td>
  2993. </tr>
  2994. <tr>
  2995. <td class="PriceBreakQuantity">
  2996. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,10);">10:</a>
  2997. </td>
  2998. <td class="PriceBreakPrice">
  2999. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.7055</span>
  3000. </td>
  3001. </tr>
  3002. <tr>
  3003. <td class="PriceBreakQuantity">
  3004. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,100);">100:</a>
  3005. </td>
  3006. <td class="PriceBreakPrice">
  3007. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.3889</span>
  3008. </td>
  3009. </tr>
  3010. <tr>
  3011. <td class="PriceBreakQuantity">
  3012. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,500);">500:</a>
  3013. </td>
  3014. <td class="PriceBreakPrice">
  3015. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.4529</span>
  3016. </td>
  3017. </tr>
  3018. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3019. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3020. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(15,1000);">1,000:</a>
  3021. </td>
  3022. <td class="PriceBreakPrice">
  3023. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Dialight/555-3007F/?qs=sGAEpiMZZMsdbfY7qIGLUmZGNfAJ%2fmSj5boJTmWqE04%3d">查看</a>
  3024. </td>
  3025. </tr>
  3026. <tr>
  3027. <td><br /></td>
  3028. </tr>
  3029. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3030. <td colspan="2" style="text-align: center;">
  3031. </td>
  3032. </tr>
  3033. </table>
  3034. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_btnBuy&#39;)">
  3035. <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 />
  3036. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 15);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_btnBuy" title="购买 555-3007F" class="buy-button" /><br />
  3037. <table cellspacing="0" border="0" style="width: 100%;">
  3038. <tr>
  3039. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3040. 最低:
  3041. </td>
  3042. <td style="padding-left: 2px; text-align: left;">
  3043. 1
  3044. </td>
  3045. </tr>
  3046. <tr>
  3047. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3048. 多个:
  3049. </td>
  3050. <td style="padding-left: 2px; text-align: left;">
  3051. 1
  3052. </td>
  3053. </tr>
  3054. </table>
  3055. </div>
  3056. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  3057. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3058. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Zp9w5ynL00zxGLTtW3KuOQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Zp9w5ynL00zxGLTtW3KuOQ%3d%3d" target="_blank">详细信息</a>
  3059. </div>
  3060. </td><td>
  3061. </td><td>Red
  3062. </td><td>
  3063. </td><td>20 mA
  3064. </td><td>
  3065. </td>
  3066. </tr><tr class="SearchResultsRowEven" data-partnumber="593-3000C" data-index="18">
  3067. <td class="td-select" align="center">
  3068. <div style="padding: 5px 5px 0 5px;">
  3069. <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>
  3070. </div>
  3071. </td><td><a href='/ProductDetail/VCC/CLB300CTP/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fKS6zzU7Zop4%3d'><img title='VCC CLB300CTP' alt='VCC CLB300CTP' id=2073358 src='/images/vcc/sm/clb300.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/vcc/images/clb300.jpg</div></a></td><td>
  3072. <div style="text-align:left;">
  3073. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/VCC/CLB300CTP/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fKS6zzU7Zop4%3d">593-3000C</a><br />
  3074. <br />
  3075. <br />
  3076. </div></td><td>
  3077. <div class="mfrDiv">
  3078. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/VCC/CLB300CTP/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fKS6zzU7Zop4%3d">CLB300CTP</a><br />
  3079. <br />
  3080. <div style="width: 100%; text-align: center;">
  3081. </div>
  3082. <div style="width: 100%; text-align: center;">
  3083. </div>
  3084. </div>
  3085. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../vcc">VCC</a>
  3086. </td><td>LED透镜 Clear Fresnel Lens Cliplite 5mm
  3087. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3088. </div>
  3089. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;VCC&quot;,&quot;593-3000C | CLB300CTP&quot;]);" href="http://www.mouser.com/ds/2/423/CLB-300-5mm-round-lens-drawing-471606.pdf" target="_blank">数据表</a>
  3090. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">150,701<br/>有库存</span>
  3091. <table>
  3092. <tr align="center">
  3093. <td style="padding-top: 5px">
  3094. </td>
  3095. </tr>
  3096. <tr align="center">
  3097. <td style="padding-top: 5px; padding-bottom: 5px">
  3098. </td>
  3099. </tr>
  3100. </table></td><td>
  3101. <table class="PriceBreaks" cellspacing="0" border="0">
  3102. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3103. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3104. </td>
  3105. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3106. </td>
  3107. </tr>
  3108. <tr>
  3109. <td class="PriceBreakQuantity">
  3110. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  3111. </td>
  3112. <td class="PriceBreakPrice">
  3113. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥3.8493</span>
  3114. </td>
  3115. </tr>
  3116. <tr>
  3117. <td class="PriceBreakQuantity">
  3118. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  3119. </td>
  3120. <td class="PriceBreakPrice">
  3121. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3.0537</span>
  3122. </td>
  3123. </tr>
  3124. <tr>
  3125. <td class="PriceBreakQuantity">
  3126. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,100);">100:</a>
  3127. </td>
  3128. <td class="PriceBreakPrice">
  3129. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2.6208</span>
  3130. </td>
  3131. </tr>
  3132. <tr>
  3133. <td class="PriceBreakQuantity">
  3134. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,250);">250:</a>
  3135. </td>
  3136. <td class="PriceBreakPrice">
  3137. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.5155</span>
  3138. </td>
  3139. </tr>
  3140. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3141. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3142. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(16,500);">500:</a>
  3143. </td>
  3144. <td class="PriceBreakPrice">
  3145. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/VCC/CLB300CTP/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fKS6zzU7Zop4%3d">查看</a>
  3146. </td>
  3147. </tr>
  3148. <tr>
  3149. <td><br /></td>
  3150. </tr>
  3151. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3152. <td colspan="2" style="text-align: center;">
  3153. </td>
  3154. </tr>
  3155. </table>
  3156. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_btnBuy&#39;)">
  3157. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(16,this.value);" /><br />
  3158. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 16);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_btnBuy" title="购买 CLB300CTP" class="buy-button" /><br />
  3159. <table cellspacing="0" border="0" style="width: 100%;">
  3160. <tr>
  3161. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3162. 最低:
  3163. </td>
  3164. <td style="padding-left: 2px; text-align: left;">
  3165. 1
  3166. </td>
  3167. </tr>
  3168. <tr>
  3169. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3170. 多个:
  3171. </td>
  3172. <td style="padding-left: 2px; text-align: left;">
  3173. 1
  3174. </td>
  3175. </tr>
  3176. </table>
  3177. </div>
  3178. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  3179. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3180. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=WYjl7uhE4HV%252bL%252bqcPa2uVw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=WYjl7uhE4HV%252bL%252bqcPa2uVw%3d%3d" target="_blank">详细信息</a>
  3181. </div>
  3182. </td><td>LED Lenses
  3183. </td><td>
  3184. </td><td>
  3185. </td><td>
  3186. </td><td>
  3187. </td>
  3188. </tr><tr class="SearchResultsRowOdd" data-partnumber="896-90W65SC11NA102" data-index="19">
  3189. <td class="td-select" align="center">
  3190. <div style="padding: 5px 5px 0 5px;">
  3191. <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>
  3192. </div>
  3193. </td><td><a href='/ProductDetail/Luminus-Devices/CBT-90-W65S-C11-NA102/?qs=sGAEpiMZZMsdbfY7qIGLUllH14VbPW4J7rsRSgRrdK4%3d'><img title='Luminus Devices CBT-90-W65S-C11-NA102' alt='Luminus Devices CBT-90-W65S-C11-NA102' id=603636324 src='/images/luminusdevices/sm/CBT-90-UV_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/luminusdevices/images/CBT-90-UV_DSL.JPG</div></a></td><td>
  3194. <div style="text-align:left;">
  3195. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Luminus-Devices/CBT-90-W65S-C11-NA102/?qs=sGAEpiMZZMsdbfY7qIGLUllH14VbPW4J7rsRSgRrdK4%3d">896-90W65SC11NA102</a><br />
  3196. <br />
  3197. <br />
  3198. </div></td><td>
  3199. <div class="mfrDiv">
  3200. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Luminus-Devices/CBT-90-W65S-C11-NA102/?qs=sGAEpiMZZMsdbfY7qIGLUllH14VbPW4J7rsRSgRrdK4%3d">CBT-90-W65S-C11-NA102</a><br />
  3201. <br />
  3202. <div style="width: 100%; text-align: center;">
  3203. </div>
  3204. <div style="width: 100%; text-align: center;">
  3205. </div>
  3206. </div>
  3207. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../Luminus-Devices">Luminus Devices</a>
  3208. </td><td>LED照明模块 White 6500K
  3209. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3210. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/luminusdevices/luminusCBT90/">了解更多</a>
  3211. </div>
  3212. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3213. </div>
  3214. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Luminus Devices&quot;,&quot;896-90W65SC11NA102 | CBT-90-W65S-C11-NA102&quot;]);" href="http://www.mouser.com/ds/2/245/Luminus_CBT90_Datasheet-540476.pdf" target="_blank">数据表<br /><br /></a>
  3215. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Catalog PDF Click&#39;,&quot;Luminus Devices&quot;,&quot;896-90W65SC11NA102 | CBT-90-W65S-C11-NA102&quot;]);" href="/catalog/English/103/APAC/98.pdf" target="_blank">页面 98</a>
  3216. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">253<br/>有库存</span>
  3217. <table>
  3218. <tr align="center">
  3219. <td style="padding-top: 5px">
  3220. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Luminus-Devices/CBT-90-W65S-C11-NA102/?qs=sGAEpiMZZMsdbfY7qIGLUllH14VbPW4J7rsRSgRrdK4%3d">更多信息可用 </a>
  3221. </td>
  3222. </tr>
  3223. <tr align="center">
  3224. <td style="padding-top: 5px; padding-bottom: 5px">
  3225. </td>
  3226. </tr>
  3227. </table></td><td>
  3228. <table class="PriceBreaks" cellspacing="0" border="0">
  3229. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3230. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3231. </td>
  3232. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3233. </td>
  3234. </tr>
  3235. <tr>
  3236. <td class="PriceBreakQuantity">
  3237. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  3238. </td>
  3239. <td class="PriceBreakPrice">
  3240. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥678.7638</span>
  3241. </td>
  3242. </tr>
  3243. <tr>
  3244. <td class="PriceBreakQuantity">
  3245. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,10);">10:</a>
  3246. </td>
  3247. <td class="PriceBreakPrice">
  3248. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥633.321</span>
  3249. </td>
  3250. </tr>
  3251. <tr>
  3252. <td class="PriceBreakQuantity">
  3253. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,50);">50:</a>
  3254. </td>
  3255. <td class="PriceBreakPrice">
  3256. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥622.0071</span>
  3257. </td>
  3258. </tr>
  3259. <tr>
  3260. <td class="PriceBreakQuantity">
  3261. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,100);">100:</a>
  3262. </td>
  3263. <td class="PriceBreakPrice">
  3264. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥565.4025</span>
  3265. </td>
  3266. </tr>
  3267. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3268. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3269. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(17,250);">250:</a>
  3270. </td>
  3271. <td class="PriceBreakPrice">
  3272. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Luminus-Devices/CBT-90-W65S-C11-NA102/?qs=sGAEpiMZZMsdbfY7qIGLUllH14VbPW4J7rsRSgRrdK4%3d">查看</a>
  3273. </td>
  3274. </tr>
  3275. <tr>
  3276. <td><br /></td>
  3277. </tr>
  3278. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3279. <td colspan="2" style="text-align: center;">
  3280. </td>
  3281. </tr>
  3282. </table>
  3283. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_btnBuy&#39;)">
  3284. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(17,this.value);" /><br />
  3285. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 17);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_btnBuy" title="购买 CBT-90-W65S-C11-NA102" class="buy-button" /><br />
  3286. <table cellspacing="0" border="0" style="width: 100%;">
  3287. <tr>
  3288. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3289. 最低:
  3290. </td>
  3291. <td style="padding-left: 2px; text-align: left;">
  3292. 1
  3293. </td>
  3294. </tr>
  3295. <tr>
  3296. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3297. 多个:
  3298. </td>
  3299. <td style="padding-left: 2px; text-align: left;">
  3300. 1
  3301. </td>
  3302. </tr>
  3303. </table>
  3304. </div>
  3305. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  3306. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3307. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=6QDKGVt7rGdG8eHt5zuW8w%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=6QDKGVt7rGdG8eHt5zuW8w%3d%3d" target="_blank">详细信息</a>
  3308. </div>
  3309. </td><td>LED Modules
  3310. </td><td>Cool White
  3311. </td><td>6500 K
  3312. </td><td>9 A
  3313. </td><td>3.6 V
  3314. </td>
  3315. </tr><tr class="SearchResultsRowEven" data-partnumber="896-CBT14WCSL16UA123" data-index="20">
  3316. <td class="td-select" align="center">
  3317. <div style="padding: 5px 5px 0 5px;">
  3318. <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>
  3319. </div>
  3320. </td><td><a href='/ProductDetail/Luminus-Devices/CBT-140-WCS-L16-UA123/?qs=sGAEpiMZZMsdbfY7qIGLUn3TyimQ3%252blHMbspKuHPbNjHCrZBtYEfQg%3d%3d'><img title='Luminus Devices CBT-140-WCS-L16-UA123' alt='Luminus Devices CBT-140-WCS-L16-UA123' id=1202586322 src='/images/luminusdevices/sm/CBT_140_DSL.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/luminusdevices/images/CBT_140_DSL.jpg</div></a></td><td>
  3321. <div style="text-align:left;">
  3322. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Luminus-Devices/CBT-140-WCS-L16-UA123/?qs=sGAEpiMZZMsdbfY7qIGLUn3TyimQ3%252blHMbspKuHPbNjHCrZBtYEfQg%3d%3d">896-CBT14WCSL16UA123</a><br />
  3323. <br />
  3324. <br />
  3325. </div></td><td>
  3326. <div class="mfrDiv">
  3327. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Luminus-Devices/CBT-140-WCS-L16-UA123/?qs=sGAEpiMZZMsdbfY7qIGLUn3TyimQ3%252blHMbspKuHPbNjHCrZBtYEfQg%3d%3d">CBT-140-WCS-L16-UA123</a><br />
  3328. <br />
  3329. <div style="width: 100%; text-align: center;">
  3330. </div>
  3331. <div style="width: 100%; text-align: center;">
  3332. </div>
  3333. </div>
  3334. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../Luminus-Devices">Luminus Devices</a>
  3335. </td><td>LED照明模块 Cool White, 7000K 3955lm, 21A, Round
  3336. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3337. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3338. </div>
  3339. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Luminus Devices&quot;,&quot;896-CBT14WCSL16UA123 | CBT-140-WCS-L16-UA123&quot;]);" href="http://www.mouser.com/ds/2/245/Luminus_CBT140_Datasheet-463701.pdf" target="_blank">数据表</a>
  3340. </td><td>
  3341. <table>
  3342. <tr align="center">
  3343. <td style="padding-top: 5px">
  3344. </td>
  3345. </tr>
  3346. <tr align="center">
  3347. <td style="padding-top: 5px; padding-bottom: 5px">
  3348. </td>
  3349. </tr>
  3350. </table></td><td>
  3351. </td><td class="SearchResultsBuyColumn">
  3352. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_pnlRestricted">
  3353. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  3354. </div>
  3355. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  3356. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3357. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=GC0YqMGTeuhxZpPqe8560A%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=GC0YqMGTeuhxZpPqe8560A%3d%3d" target="_blank">详细信息</a>
  3358. </div>
  3359. </td><td>
  3360. </td><td>
  3361. </td><td>
  3362. </td><td>
  3363. </td><td>
  3364. </td>
  3365. </tr><tr class="SearchResultsRowOdd" data-partnumber="593-RNG268" data-index="21">
  3366. <td class="td-select" align="center">
  3367. <div style="padding: 5px 5px 0 5px;">
  3368. <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>
  3369. </div>
  3370. </td><td><a href='/ProductDetail/VCC/RNG268/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fKFxDYRI470o%3d'><img title='VCC RNG268' alt='VCC RNG268' id=2073271 src='/images/vcc/sm/RNG_268_DSL.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/vcc/images/RNG_268_DSL.jpg</div></a></td><td>
  3371. <div style="text-align:left;">
  3372. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/VCC/RNG268/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fKFxDYRI470o%3d">593-RNG268</a><br />
  3373. <br />
  3374. <br />
  3375. </div></td><td>
  3376. <div class="mfrDiv">
  3377. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/VCC/RNG268/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fKFxDYRI470o%3d">RNG268</a><br />
  3378. <br />
  3379. <div style="width: 100%; text-align: center;">
  3380. </div>
  3381. <div style="width: 100%; text-align: center;">
  3382. </div>
  3383. </div>
  3384. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../vcc">VCC</a>
  3385. </td><td>LED 安装硬件 RETAINING RING
  3386. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3387. </div>
  3388. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;VCC&quot;,&quot;593-RNG268 | RNG268&quot;]);" href="http://www.mouser.com/ds/2/423/RNG%20268_E-473517.pdf" target="_blank">数据表</a>
  3389. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">177,653<br/>有库存</span>
  3390. <table>
  3391. <tr align="center">
  3392. <td style="padding-top: 5px">
  3393. </td>
  3394. </tr>
  3395. <tr align="center">
  3396. <td style="padding-top: 5px; padding-bottom: 5px">
  3397. </td>
  3398. </tr>
  3399. </table></td><td>
  3400. <table class="PriceBreaks" cellspacing="0" border="0">
  3401. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3402. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3403. </td>
  3404. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3405. </td>
  3406. </tr>
  3407. <tr>
  3408. <td class="PriceBreakQuantity">
  3409. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  3410. </td>
  3411. <td class="PriceBreakPrice">
  3412. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥2.0007</span>
  3413. </td>
  3414. </tr>
  3415. <tr>
  3416. <td class="PriceBreakQuantity">
  3417. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,10);">10:</a>
  3418. </td>
  3419. <td class="PriceBreakPrice">
  3420. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1.8252</span>
  3421. </td>
  3422. </tr>
  3423. <tr>
  3424. <td class="PriceBreakQuantity">
  3425. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  3426. </td>
  3427. <td class="PriceBreakPrice">
  3428. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1.13958</span>
  3429. </td>
  3430. </tr>
  3431. <tr>
  3432. <td class="PriceBreakQuantity">
  3433. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,500);">500:</a>
  3434. </td>
  3435. <td class="PriceBreakPrice">
  3436. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥0.67743</span>
  3437. </td>
  3438. </tr>
  3439. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3440. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3441. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(19,1000);">1,000:</a>
  3442. </td>
  3443. <td class="PriceBreakPrice">
  3444. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/VCC/RNG268/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fKFxDYRI470o%3d">查看</a>
  3445. </td>
  3446. </tr>
  3447. <tr>
  3448. <td><br /></td>
  3449. </tr>
  3450. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3451. <td colspan="2" style="text-align: center;">
  3452. </td>
  3453. </tr>
  3454. </table>
  3455. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_btnBuy&#39;)">
  3456. <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 />
  3457. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 19);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_btnBuy" title="购买 RNG268" class="buy-button" /><br />
  3458. <table cellspacing="0" border="0" style="width: 100%;">
  3459. <tr>
  3460. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3461. 最低:
  3462. </td>
  3463. <td style="padding-left: 2px; text-align: left;">
  3464. 1
  3465. </td>
  3466. </tr>
  3467. <tr>
  3468. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3469. 多个:
  3470. </td>
  3471. <td style="padding-left: 2px; text-align: left;">
  3472. 1
  3473. </td>
  3474. </tr>
  3475. </table>
  3476. </div>
  3477. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  3478. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3479. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%252b4YKvlR9B0ae%2ftuupv08Ww%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=%252b4YKvlR9B0ae%2ftuupv08Ww%3d%3d" target="_blank">详细信息</a>
  3480. </div>
  3481. </td><td>LED Mounting Rings
  3482. </td><td>
  3483. </td><td>
  3484. </td><td>
  3485. </td><td>
  3486. </td>
  3487. </tr><tr class="SearchResultsRowEven" data-partnumber="593-RTN150" data-index="22">
  3488. <td class="td-select" align="center">
  3489. <div style="padding: 5px 5px 0 5px;">
  3490. <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>
  3491. </div>
  3492. </td><td><a href='/ProductDetail/VCC/RTN150/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fzhSbZO1SMUo%3d'><img title='VCC RTN150' alt='VCC RTN150' id=2073450 src='/images/vcc/sm/rtn.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/vcc/images/rtn.jpg</div></a></td><td>
  3493. <div style="text-align:left;">
  3494. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/VCC/RTN150/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fzhSbZO1SMUo%3d">593-RTN150</a><br />
  3495. <br />
  3496. <br />
  3497. </div></td><td>
  3498. <div class="mfrDiv">
  3499. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/VCC/RTN150/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fzhSbZO1SMUo%3d">RTN150</a><br />
  3500. <br />
  3501. <div style="width: 100%; text-align: center;">
  3502. </div>
  3503. <div style="width: 100%; text-align: center;">
  3504. </div>
  3505. </div>
  3506. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../vcc">VCC</a>
  3507. </td><td>LED 安装硬件 RING MOUNTING
  3508. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3509. </div>
  3510. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;VCC&quot;,&quot;593-RTN150 | RTN150&quot;]);" href="http://www.mouser.com/ds/2/423/RTN-150-Retaining-Grommet-276839.pdf" target="_blank">数据表</a>
  3511. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">144,903<br/>有库存</span>
  3512. <table>
  3513. <tr align="center">
  3514. <td style="padding-top: 5px">
  3515. </td>
  3516. </tr>
  3517. <tr align="center">
  3518. <td style="padding-top: 5px; padding-bottom: 5px">
  3519. </td>
  3520. </tr>
  3521. </table></td><td>
  3522. <table class="PriceBreaks" cellspacing="0" border="0">
  3523. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3524. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3525. </td>
  3526. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3527. </td>
  3528. </tr>
  3529. <tr>
  3530. <td class="PriceBreakQuantity">
  3531. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  3532. </td>
  3533. <td class="PriceBreakPrice">
  3534. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥2.0007</span>
  3535. </td>
  3536. </tr>
  3537. <tr>
  3538. <td class="PriceBreakQuantity">
  3539. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,10);">10:</a>
  3540. </td>
  3541. <td class="PriceBreakPrice">
  3542. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1.8252</span>
  3543. </td>
  3544. </tr>
  3545. <tr>
  3546. <td class="PriceBreakQuantity">
  3547. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,100);">100:</a>
  3548. </td>
  3549. <td class="PriceBreakPrice">
  3550. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1.13958</span>
  3551. </td>
  3552. </tr>
  3553. <tr>
  3554. <td class="PriceBreakQuantity">
  3555. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,500);">500:</a>
  3556. </td>
  3557. <td class="PriceBreakPrice">
  3558. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥0.67743</span>
  3559. </td>
  3560. </tr>
  3561. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3562. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3563. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(20,1000);">1,000:</a>
  3564. </td>
  3565. <td class="PriceBreakPrice">
  3566. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/VCC/RTN150/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fzhSbZO1SMUo%3d">查看</a>
  3567. </td>
  3568. </tr>
  3569. <tr>
  3570. <td><br /></td>
  3571. </tr>
  3572. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3573. <td colspan="2" style="text-align: center;">
  3574. </td>
  3575. </tr>
  3576. </table>
  3577. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy&#39;)">
  3578. <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 />
  3579. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 20);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy" title="购买 RTN150" class="buy-button" /><br />
  3580. <table cellspacing="0" border="0" style="width: 100%;">
  3581. <tr>
  3582. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3583. 最低:
  3584. </td>
  3585. <td style="padding-left: 2px; text-align: left;">
  3586. 1
  3587. </td>
  3588. </tr>
  3589. <tr>
  3590. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3591. 多个:
  3592. </td>
  3593. <td style="padding-left: 2px; text-align: left;">
  3594. 1
  3595. </td>
  3596. </tr>
  3597. </table>
  3598. </div>
  3599. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  3600. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3601. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2f7XSqlz%252b0WmMmLiieQWy3A%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=%2f7XSqlz%252b0WmMmLiieQWy3A%3d%3d" target="_blank">详细信息</a>
  3602. </div>
  3603. </td><td>Grommets
  3604. </td><td>
  3605. </td><td>
  3606. </td><td>
  3607. </td><td>
  3608. </td>
  3609. </tr><tr class="SearchResultsRowOdd" data-partnumber="593-RTN250" data-index="23">
  3610. <td class="td-select" align="center">
  3611. <div style="padding: 5px 5px 0 5px;">
  3612. <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>
  3613. </div>
  3614. </td><td><a href='/ProductDetail/VCC/RTN250/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fJ8nqwIh0n0U%3d'><img title='VCC RTN250' alt='VCC RTN250' id=2073048 src='/images/vcc/sm/rtn.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/vcc/images/rtn.jpg</div></a></td><td>
  3615. <div style="text-align:left;">
  3616. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/VCC/RTN250/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fJ8nqwIh0n0U%3d">593-RTN250</a><br />
  3617. <br />
  3618. <br />
  3619. </div></td><td>
  3620. <div class="mfrDiv">
  3621. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/VCC/RTN250/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fJ8nqwIh0n0U%3d">RTN250</a><br />
  3622. <br />
  3623. <div style="width: 100%; text-align: center;">
  3624. </div>
  3625. <div style="width: 100%; text-align: center;">
  3626. </div>
  3627. </div>
  3628. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../vcc">VCC</a>
  3629. </td><td>LED 安装硬件 MOUNTING RING CLIP
  3630. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3631. </div>
  3632. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;VCC&quot;,&quot;593-RTN250 | RTN250&quot;]);" href="http://www.mouser.com/ds/2/423/RTN-250-Retaining-Clip-276844.pdf" target="_blank">数据表</a>
  3633. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">129,449<br/>有库存</span>
  3634. <table>
  3635. <tr align="center">
  3636. <td style="padding-top: 5px">
  3637. </td>
  3638. </tr>
  3639. <tr align="center">
  3640. <td style="padding-top: 5px; padding-bottom: 5px">
  3641. </td>
  3642. </tr>
  3643. </table></td><td>
  3644. <table class="PriceBreaks" cellspacing="0" border="0">
  3645. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3646. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3647. </td>
  3648. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3649. </td>
  3650. </tr>
  3651. <tr>
  3652. <td class="PriceBreakQuantity">
  3653. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  3654. </td>
  3655. <td class="PriceBreakPrice">
  3656. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥2.0826</span>
  3657. </td>
  3658. </tr>
  3659. <tr>
  3660. <td class="PriceBreakQuantity">
  3661. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  3662. </td>
  3663. <td class="PriceBreakPrice">
  3664. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1.9656</span>
  3665. </td>
  3666. </tr>
  3667. <tr>
  3668. <td class="PriceBreakQuantity">
  3669. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,100);">100:</a>
  3670. </td>
  3671. <td class="PriceBreakPrice">
  3672. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1.3104</span>
  3673. </td>
  3674. </tr>
  3675. <tr>
  3676. <td class="PriceBreakQuantity">
  3677. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,500);">500:</a>
  3678. </td>
  3679. <td class="PriceBreakPrice">
  3680. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥0.8775</span>
  3681. </td>
  3682. </tr>
  3683. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3684. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3685. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(21,1000);">1,000:</a>
  3686. </td>
  3687. <td class="PriceBreakPrice">
  3688. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/VCC/RTN250/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fJ8nqwIh0n0U%3d">查看</a>
  3689. </td>
  3690. </tr>
  3691. <tr>
  3692. <td><br /></td>
  3693. </tr>
  3694. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3695. <td colspan="2" style="text-align: center;">
  3696. </td>
  3697. </tr>
  3698. </table>
  3699. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy&#39;)">
  3700. <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 />
  3701. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 21);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy" title="购买 RTN250" class="buy-button" /><br />
  3702. <table cellspacing="0" border="0" style="width: 100%;">
  3703. <tr>
  3704. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3705. 最低:
  3706. </td>
  3707. <td style="padding-left: 2px; text-align: left;">
  3708. 1
  3709. </td>
  3710. </tr>
  3711. <tr>
  3712. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3713. 多个:
  3714. </td>
  3715. <td style="padding-left: 2px; text-align: left;">
  3716. 1
  3717. </td>
  3718. </tr>
  3719. </table>
  3720. </div>
  3721. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  3722. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3723. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=skpoxiANA1O%2foV4H24NKbQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=skpoxiANA1O%2foV4H24NKbQ%3d%3d" target="_blank">详细信息</a>
  3724. </div>
  3725. </td><td>LED Mounting Clips
  3726. </td><td>
  3727. </td><td>
  3728. </td><td>
  3729. </td><td>
  3730. </td>
  3731. </tr><tr class="SearchResultsRowEven" data-partnumber="593-2000C" data-index="24">
  3732. <td class="td-select" align="center">
  3733. <div style="padding: 5px 5px 0 5px;">
  3734. <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>
  3735. </div>
  3736. </td><td><a href='/ProductDetail/VCC/SMB200CTP/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fAu7wM4S7hOE%3d'><img title='VCC SMB200CTP' alt='VCC SMB200CTP' id=2073235 src='/images/vcc/sm/smb200.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/vcc/images/smb200.jpg</div></a></td><td>
  3737. <div style="text-align:left;">
  3738. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/VCC/SMB200CTP/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fAu7wM4S7hOE%3d">593-2000C</a><br />
  3739. <br />
  3740. <br />
  3741. </div></td><td>
  3742. <div class="mfrDiv">
  3743. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/VCC/SMB200CTP/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fAu7wM4S7hOE%3d">SMB200CTP</a><br />
  3744. <br />
  3745. <div style="width: 100%; text-align: center;">
  3746. </div>
  3747. <div style="width: 100%; text-align: center;">
  3748. </div>
  3749. </div>
  3750. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../vcc">VCC</a>
  3751. </td><td>LED透镜 Clear Fresnel Lens Cliplite 3mm
  3752. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3753. </div>
  3754. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;VCC&quot;,&quot;593-2000C | SMB200CTP&quot;]);" href="http://www.mouser.com/ds/2/423/SMB-200-3mm-round-lens-drawing-473569.pdf" target="_blank">数据表</a>
  3755. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">73,023<br/>有库存</span>
  3756. <table>
  3757. <tr align="center">
  3758. <td style="padding-top: 5px">
  3759. </td>
  3760. </tr>
  3761. <tr align="center">
  3762. <td style="padding-top: 5px; padding-bottom: 5px">
  3763. </td>
  3764. </tr>
  3765. </table></td><td>
  3766. <table class="PriceBreaks" cellspacing="0" border="0">
  3767. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3768. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3769. </td>
  3770. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3771. </td>
  3772. </tr>
  3773. <tr>
  3774. <td class="PriceBreakQuantity">
  3775. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  3776. </td>
  3777. <td class="PriceBreakPrice">
  3778. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥4.4694</span>
  3779. </td>
  3780. </tr>
  3781. <tr>
  3782. <td class="PriceBreakQuantity">
  3783. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  3784. </td>
  3785. <td class="PriceBreakPrice">
  3786. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3.2643</span>
  3787. </td>
  3788. </tr>
  3789. <tr>
  3790. <td class="PriceBreakQuantity">
  3791. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  3792. </td>
  3793. <td class="PriceBreakPrice">
  3794. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2.7144</span>
  3795. </td>
  3796. </tr>
  3797. <tr>
  3798. <td class="PriceBreakQuantity">
  3799. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,250);">250:</a>
  3800. </td>
  3801. <td class="PriceBreakPrice">
  3802. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.5155</span>
  3803. </td>
  3804. </tr>
  3805. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3806. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3807. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(22,500);">500:</a>
  3808. </td>
  3809. <td class="PriceBreakPrice">
  3810. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/VCC/SMB200CTP/?qs=sGAEpiMZZMsdbfY7qIGLUvQj4%252bw3fUs%2fAu7wM4S7hOE%3d">查看</a>
  3811. </td>
  3812. </tr>
  3813. <tr>
  3814. <td><br /></td>
  3815. </tr>
  3816. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3817. <td colspan="2" style="text-align: center;">
  3818. </td>
  3819. </tr>
  3820. </table>
  3821. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy&#39;)">
  3822. <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 />
  3823. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 22);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy" title="购买 SMB200CTP" class="buy-button" /><br />
  3824. <table cellspacing="0" border="0" style="width: 100%;">
  3825. <tr>
  3826. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3827. 最低:
  3828. </td>
  3829. <td style="padding-left: 2px; text-align: left;">
  3830. 1
  3831. </td>
  3832. </tr>
  3833. <tr>
  3834. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3835. 多个:
  3836. </td>
  3837. <td style="padding-left: 2px; text-align: left;">
  3838. 1
  3839. </td>
  3840. </tr>
  3841. </table>
  3842. </div>
  3843. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  3844. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3845. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Vhsae45KBiLzZCJ4f6Hnxw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Vhsae45KBiLzZCJ4f6Hnxw%3d%3d" target="_blank">详细信息</a>
  3846. </div>
  3847. </td><td>LED Lenses
  3848. </td><td>
  3849. </td><td>
  3850. </td><td>
  3851. </td><td>
  3852. </td>
  3853. </tr><tr class="SearchResultsRowOdd" data-partnumber="696-SSF-LXH305GD" data-index="25">
  3854. <td class="td-select" align="center">
  3855. <div style="padding: 5px 5px 0 5px;">
  3856. <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>
  3857. </div>
  3858. </td><td><a href='/ProductDetail/Lumex/SSF-LXH305GD-TR/?qs=sGAEpiMZZMsdbfY7qIGLUn3wAmgImh1slizwcetqNto%3d'><img title='Lumex SSF-LXH305GD-TR' alt='Lumex SSF-LXH305GD-TR' id=2056594 src='/images/lumex/sm/708.jpg' /></a></td><td>
  3859. <div style="text-align:left;">
  3860. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Lumex/SSF-LXH305GD-TR/?qs=sGAEpiMZZMsdbfY7qIGLUn3wAmgImh1slizwcetqNto%3d">696-SSF-LXH305GD</a><br />
  3861. <br />
  3862. <br />
  3863. 要购买完整 卷轴,请订购 1000 的倍数:
  3864. </div></td><td>
  3865. <div class="mfrDiv">
  3866. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Lumex/SSF-LXH305GD-TR/?qs=sGAEpiMZZMsdbfY7qIGLUn3wAmgImh1slizwcetqNto%3d">SSF-LXH305GD-TR</a><br />
  3867. <br />
  3868. <div style="width: 100%; text-align: center;">
  3869. </div>
  3870. <div style="width: 100%; text-align: center;">
  3871. </div>
  3872. </div>
  3873. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../lumex">Lumex</a>
  3874. </td><td>LED 电路板指示器 Rt Angle Block Green
  3875. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3876. </div>
  3877. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Lumex&quot;,&quot;696-SSF-LXH305GD | SSF-LXH305GD-TR&quot;]);" href="http://www.mouser.com/ds/2/244/SSF-LXH305GD-TR-99671.pdf" target="_blank">数据表</a>
  3878. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">35,117<br/>有库存</span>
  3879. <table>
  3880. <tr align="center">
  3881. <td style="padding-top: 5px">
  3882. </td>
  3883. </tr>
  3884. <tr align="center">
  3885. <td style="padding-top: 5px; padding-bottom: 5px">
  3886. </td>
  3887. </tr>
  3888. </table></td><td>
  3889. <table class="PriceBreaks" cellspacing="0" border="0">
  3890. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3891. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3892. </td>
  3893. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3894. </td>
  3895. </tr>
  3896. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3897. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3898. 剪切带
  3899. </td>
  3900. </tr>
  3901. <tr>
  3902. <td class="PriceBreakQuantity">
  3903. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  3904. </td>
  3905. <td class="PriceBreakPrice">
  3906. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥7.6986</span>
  3907. </td>
  3908. </tr>
  3909. <tr>
  3910. <td class="PriceBreakQuantity">
  3911. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
  3912. </td>
  3913. <td class="PriceBreakPrice">
  3914. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥4.7151</span>
  3915. </td>
  3916. </tr>
  3917. <tr>
  3918. <td class="PriceBreakQuantity">
  3919. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,500);">500:</a>
  3920. </td>
  3921. <td class="PriceBreakPrice">
  3922. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.9546</span>
  3923. </td>
  3924. </tr>
  3925. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_trReelHeader">
  3926. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3927. 卷轴
  3928. </td>
  3929. </tr>
  3930. <tr>
  3931. <td class="PriceBreakQuantity">
  3932. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,1000);">1,000:</a>
  3933. </td>
  3934. <td class="PriceBreakPrice">
  3935. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.9952</span>
  3936. </td>
  3937. </tr>
  3938. <tr>
  3939. <td class="PriceBreakQuantity">
  3940. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(23,2000);">2,000:</a>
  3941. </td>
  3942. <td class="PriceBreakPrice">
  3943. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.8548</span>
  3944. </td>
  3945. </tr>
  3946. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  3947. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3948. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,5000);">5,000:</a>
  3949. </td>
  3950. <td class="PriceBreakPrice">
  3951. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Lumex/SSF-LXH305GD-TR/?qs=sGAEpiMZZMsdbfY7qIGLUn3wAmgImh1slizwcetqNto%3d">查看</a>
  3952. </td>
  3953. </tr>
  3954. <tr>
  3955. <td><br /></td>
  3956. </tr>
  3957. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3958. <td colspan="2" style="text-align: center;">
  3959. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Lumex/SSF-LXH305GD-TR/?qs=sGAEpiMZZMsdbfY7qIGLUn3wAmgImh1slizwcetqNto%3d">MouseReel 提供服务支持</a>
  3960. </td>
  3961. </tr>
  3962. </table>
  3963. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy&#39;)">
  3964. <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 />
  3965. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 23);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy" title="购买 SSF-LXH305GD-TR" class="buy-button" /><br />
  3966. <table cellspacing="0" border="0" style="width: 100%;">
  3967. <tr>
  3968. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3969. 最低:
  3970. </td>
  3971. <td style="padding-left: 2px; text-align: left;">
  3972. 1
  3973. </td>
  3974. </tr>
  3975. <tr>
  3976. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3977. 多个:
  3978. </td>
  3979. <td style="padding-left: 2px; text-align: left;">
  3980. 1
  3981. </td>
  3982. </tr>
  3983. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_trReel">
  3984. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3985. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(23,1000);">卷轴</a>:
  3986. </td>
  3987. <td style="padding-left: 2px; text-align: left;">
  3988. <em class="SearchResultsReel">
  3989. 1,000
  3990. </em>
  3991. </td>
  3992. </tr>
  3993. </table>
  3994. </div>
  3995. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  3996. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3997. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=IplPpIFJbgXQ9d%2f4DbqElQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=IplPpIFJbgXQ9d%2f4DbqElQ%3d%3d" target="_blank">详细信息</a>
  3998. </div>
  3999. </td><td>
  4000. </td><td>Green
  4001. </td><td>
  4002. </td><td>25 mA
  4003. </td><td>2.2 V
  4004. </td>
  4005. </tr><tr class="SearchResultsRowEven" data-partnumber="645-515-1049F" data-index="26">
  4006. <td class="td-select" align="center">
  4007. <div style="padding: 5px 5px 0 5px;">
  4008. <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>
  4009. </div>
  4010. </td><td></td><td>
  4011. <div style="text-align:left;">
  4012. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Dialight/515-1049F/?qs=sGAEpiMZZMsdbfY7qIGLUtku8Q1kYGOW3ytPeh5I5O0%3d">645-515-1049F</a><br />
  4013. <br />
  4014. <br />
  4015. </div></td><td>
  4016. <div class="mfrDiv">
  4017. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Dialight/515-1049F/?qs=sGAEpiMZZMsdbfY7qIGLUtku8Q1kYGOW3ytPeh5I5O0%3d">515-1049F</a><br />
  4018. <br />
  4019. <div style="width: 100%; text-align: center;">
  4020. </div>
  4021. <div style="width: 100%; text-align: center;">
  4022. </div>
  4023. </div>
  4024. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../dialight">Dialight</a>
  4025. </td><td>LED 光导管 LIGHT PIPE SINGLE EL
  4026. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4027. </div>
  4028. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Dialight&quot;,&quot;645-515-1049F | 515-1049F&quot;]);" href="http://www.mouser.com/ds/2/109/C16134-348814.pdf" target="_blank">数据表</a>
  4029. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">14,004<br/>有库存</span>
  4030. <table>
  4031. <tr align="center">
  4032. <td style="padding-top: 5px">
  4033. </td>
  4034. </tr>
  4035. <tr align="center">
  4036. <td style="padding-top: 5px; padding-bottom: 5px">
  4037. </td>
  4038. </tr>
  4039. </table></td><td>
  4040. <table class="PriceBreaks" cellspacing="0" border="0">
  4041. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4042. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4043. </td>
  4044. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4045. </td>
  4046. </tr>
  4047. <tr>
  4048. <td class="PriceBreakQuantity">
  4049. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  4050. </td>
  4051. <td class="PriceBreakPrice">
  4052. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥11.934</span>
  4053. </td>
  4054. </tr>
  4055. <tr>
  4056. <td class="PriceBreakQuantity">
  4057. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  4058. </td>
  4059. <td class="PriceBreakPrice">
  4060. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥7.4295</span>
  4061. </td>
  4062. </tr>
  4063. <tr>
  4064. <td class="PriceBreakQuantity">
  4065. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,100);">100:</a>
  4066. </td>
  4067. <td class="PriceBreakPrice">
  4068. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥5.9436</span>
  4069. </td>
  4070. </tr>
  4071. <tr>
  4072. <td class="PriceBreakQuantity">
  4073. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,500);">500:</a>
  4074. </td>
  4075. <td class="PriceBreakPrice">
  4076. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥5.0544</span>
  4077. </td>
  4078. </tr>
  4079. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4080. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4081. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(24,1000);">1,000:</a>
  4082. </td>
  4083. <td class="PriceBreakPrice">
  4084. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Dialight/515-1049F/?qs=sGAEpiMZZMsdbfY7qIGLUtku8Q1kYGOW3ytPeh5I5O0%3d">查看</a>
  4085. </td>
  4086. </tr>
  4087. <tr>
  4088. <td><br /></td>
  4089. </tr>
  4090. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4091. <td colspan="2" style="text-align: center;">
  4092. </td>
  4093. </tr>
  4094. </table>
  4095. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_btnBuy&#39;)">
  4096. <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 />
  4097. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 24);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_btnBuy" title="购买 515-1049F" class="buy-button" /><br />
  4098. <table cellspacing="0" border="0" style="width: 100%;">
  4099. <tr>
  4100. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4101. 最低:
  4102. </td>
  4103. <td style="padding-left: 2px; text-align: left;">
  4104. 1
  4105. </td>
  4106. </tr>
  4107. <tr>
  4108. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4109. 多个:
  4110. </td>
  4111. <td style="padding-left: 2px; text-align: left;">
  4112. 1
  4113. </td>
  4114. </tr>
  4115. </table>
  4116. </div>
  4117. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  4118. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4119. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=KsFJ3ODetXpikdokJ0mLEQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=KsFJ3ODetXpikdokJ0mLEQ%3d%3d" target="_blank">详细信息</a>
  4120. </div>
  4121. </td><td>Light Pipes
  4122. </td><td>
  4123. </td><td>
  4124. </td><td>
  4125. </td><td>
  4126. </td>
  4127. </tr><tr class="SearchResultsRowOdd" data-partnumber="593-LCS032" data-index="27">
  4128. <td class="td-select" align="center">
  4129. <div style="padding: 5px 5px 0 5px;">
  4130. <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>
  4131. </div>
  4132. </td><td><a href='/ProductDetail/VCC/LCS032CTP/?qs=sGAEpiMZZMsdbfY7qIGLUvOXcvPnL3qnA56MuSAYXAg%3d'><img title='VCC LCS032CTP' alt='VCC LCS032CTP' id=12483808 src='/images/vcc/sm/lcs.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/vcc/images/lcs.jpg</div></a></td><td>
  4133. <div style="text-align:left;">
  4134. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/VCC/LCS032CTP/?qs=sGAEpiMZZMsdbfY7qIGLUvOXcvPnL3qnA56MuSAYXAg%3d">593-LCS032</a><br />
  4135. <br />
  4136. <br />
  4137. </div></td><td>
  4138. <div class="mfrDiv">
  4139. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/VCC/LCS032CTP/?qs=sGAEpiMZZMsdbfY7qIGLUvOXcvPnL3qnA56MuSAYXAg%3d">LCS032CTP</a><br />
  4140. <br />
  4141. <div style="width: 100%; text-align: center;">
  4142. </div>
  4143. <div style="width: 100%; text-align: center;">
  4144. </div>
  4145. </div>
  4146. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../vcc">VCC</a>
  4147. </td><td>LED 光导管 Clear Transparent .32" length
  4148. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4149. </div>
  4150. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;VCC&quot;,&quot;593-LCS032 | LCS032CTP&quot;]);" href="http://www.mouser.com/ds/2/423/LCS-moisture-seal-litepipe-drawing-595035.pdf" target="_blank">数据表</a>
  4151. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">11,338<br/>有库存</span>
  4152. <table>
  4153. <tr align="center">
  4154. <td style="padding-top: 5px">
  4155. </td>
  4156. </tr>
  4157. <tr align="center">
  4158. <td style="padding-top: 5px; padding-bottom: 5px">
  4159. </td>
  4160. </tr>
  4161. </table></td><td>
  4162. <table class="PriceBreaks" cellspacing="0" border="0">
  4163. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4164. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4165. </td>
  4166. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4167. </td>
  4168. </tr>
  4169. <tr>
  4170. <td class="PriceBreakQuantity">
  4171. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  4172. </td>
  4173. <td class="PriceBreakPrice">
  4174. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥23.4117</span>
  4175. </td>
  4176. </tr>
  4177. <tr>
  4178. <td class="PriceBreakQuantity">
  4179. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  4180. </td>
  4181. <td class="PriceBreakPrice">
  4182. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥21.2589</span>
  4183. </td>
  4184. </tr>
  4185. <tr>
  4186. <td class="PriceBreakQuantity">
  4187. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
  4188. </td>
  4189. <td class="PriceBreakPrice">
  4190. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥15.7131</span>
  4191. </td>
  4192. </tr>
  4193. <tr>
  4194. <td class="PriceBreakQuantity">
  4195. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,50);">50:</a>
  4196. </td>
  4197. <td class="PriceBreakPrice">
  4198. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥14.4027</span>
  4199. </td>
  4200. </tr>
  4201. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4202. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4203. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  4204. </td>
  4205. <td class="PriceBreakPrice">
  4206. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/VCC/LCS032CTP/?qs=sGAEpiMZZMsdbfY7qIGLUvOXcvPnL3qnA56MuSAYXAg%3d">查看</a>
  4207. </td>
  4208. </tr>
  4209. <tr>
  4210. <td><br /></td>
  4211. </tr>
  4212. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4213. <td colspan="2" style="text-align: center;">
  4214. </td>
  4215. </tr>
  4216. </table>
  4217. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy&#39;)">
  4218. <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 />
  4219. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 25);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy" title="购买 LCS032CTP" class="buy-button" /><br />
  4220. <table cellspacing="0" border="0" style="width: 100%;">
  4221. <tr>
  4222. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4223. 最低:
  4224. </td>
  4225. <td style="padding-left: 2px; text-align: left;">
  4226. 1
  4227. </td>
  4228. </tr>
  4229. <tr>
  4230. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4231. 多个:
  4232. </td>
  4233. <td style="padding-left: 2px; text-align: left;">
  4234. 1
  4235. </td>
  4236. </tr>
  4237. </table>
  4238. </div>
  4239. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  4240. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4241. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=SdHAtoVxMpPG1QC%2fqurMzA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=SdHAtoVxMpPG1QC%2fqurMzA%3d%3d" target="_blank">详细信息</a>
  4242. </div>
  4243. </td><td>Rigid Light Pipes
  4244. </td><td>
  4245. </td><td>
  4246. </td><td>
  4247. </td><td>
  4248. </td>
  4249. </tr>
  4250. </table>
  4251. </div>
  4252. </td>
  4253. </tr>
  4254. <tr>
  4255. <td class="tdSearchResultsPagingBottom">
  4256. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  4257. <tr>
  4258. <td>
  4259. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  4260. </td>
  4261. <td>
  4262. <input type="submit" name="ctl00$ContentMain$btn4" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) &amp;&amp; 0 == 0) { alert(&#39;请选择您希望对比的产品。&#39;); return false; };" id="ctl00_ContentMain_btn4" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
  4263. </td>
  4264. <td>
  4265. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  4266. </td>
  4267. <td style="padding-left: 40px;">
  4268. <div class="floatrightpager">
  4269. <span class="bold">
  4270. 页面:
  4271. </span>
  4272. <span id="ctl00_ContentMain_PagerBottom"><span id="ctl00_ContentMain_PagerBottom_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerBottom_1" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_773" class="first-last" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=19325">774</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/_/N-b1a3c/?No=25">下一页</a></span>
  4273. </div>
  4274. </td>
  4275. </tr>
  4276. </table>
  4277. </td>
  4278. </tr>
  4279. <tr>
  4280. <td>
  4281. <!--- Search Tips --->
  4282. </td>
  4283. </tr>
  4284. <tr>
  4285. <td>
  4286. <!-- SOP Section 2 -->
  4287. </td>
  4288. </tr>
  4289. </table>
  4290. </div>
  4291. </div><!-- #liProducts-->
  4292. <!-- Datasheets tab -->
  4293. <!-- #liDatasheets-->
  4294. <!-- Images tab -->
  4295. <!-- #liImages-->
  4296. <!-- Newest Products tab -->
  4297. <!-- #liProducts-->
  4298. </div>
  4299. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  4300. <div>
  4301. <span class="popular-searches-label">热门搜索:</span>
  4302. <span class="popular-searches-links"><a href='/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/LED-Indication/LED-Panel-Mount-Indicators/_/N-b1di3?P=1z0yqrj&pop=3xhf' onclick="ga('send','event','Popular Search Refine Click','LED Bulbs & Modules','Nut and Washer LED Panel Mount Indicators')">Nut and Washer LED面板上的指示器</a> , <a href='/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/LED-Lighting-Bars-and-Strips/_/N-b1b95?P=1z0yswe&pop=5lkc' onclick="ga('send','event','Popular Search Refine Click','LED Bulbs & Modules','RGB LED Lighting Bars and Strips')">RGB LED照明条和带</a> , <a href='/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/LED-Lighting-Modules/_/N-b1b8h/?P=1yrt31n&pop=rux1' onclick="ga('send','event','Popular Search Refine Click','LED Bulbs & Modules','PT-120 LED Lighting Modules')">PT-120 LED照明模块</a> , <a href='/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/LED-Lighting-Bars-and-Strips/_/N-b1b95?P=1yzn9cm&pop=4jeh' onclick="ga('send','event','Popular Search Refine Click','LED Bulbs & Modules','625 nm, 565 nm, 465 nm LED Lighting Bars and Strips')">625 nm, 565 nm, 465 nm LED照明条和带</a> , <a href='/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/LED-Lighting-Bars-and-Strips/LUXEON-XF-3535L-Series/_/N-b1b95?P=1yuy7jtZ1yvif69Z1yvhvge&pop=w7h6' onclick="ga('send','event','Popular Search Refine Click','LED Bulbs & Modules','36 LED LUXEON XF-3535L 2200 K LED Lighting Bars and Strips')">36 LED LUXEON XF-3535L 2200 K LED照明条和带</a> , <a href='/Optoelectronics/LED-Lighting/LED-Bulbs-Modules/LED-Indication/_/N-b1dgy/?P=1z0ysweZ1z0yt0m&pop=pdrz' onclick="ga('send','event','Popular Search Refine Click','LED Bulbs & Modules','RGB SMD/SMT LED Indication')">RGB SMD/SMT LED 指示</a></span>
  4303. </div>
  4304. </div>
  4305. <div style="visibility: hidden;">
  4306. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  4307. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  4308. <span id="SearchResultCount">19348</span>
  4309. <div id="disclaimer">
  4310. 图像仅供参考<br/>请参阅产品规格</div>
  4311. </div>
  4312. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Optoelectronics/LED-Lighting/LED-Bulbs-Modules" />
  4313. <script type="text/javascript" src='../../../../../javascript/ProductImage.js'></script>
  4314. <script type="text/javascript" src='../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  4315. <script type="text/javascript" src='../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  4316. <!--[if gte IE 9]><!-->
  4317. <script type="text/javascript" src='../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  4318. <!--<![endif]-->
  4319. <!--[if lt IE 9]>
  4320. <script type="text/javascript" src='../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  4321. <![endif]-->
  4322. <script type="text/javascript" src='../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  4323. <script type="text/javascript">
  4324. var subdomain = 'cn2';
  4325. </script>
  4326. </div>
  4327. <div class="aspNetHidden">
  4328. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  4329. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  4330. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  4331. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  4332. </div>
  4333. <script type="text/javascript">
  4334. //<![CDATA[
  4335. var mfrIDsArray = new Array;
  4336. //]]>
  4337. </script>
  4338. <script src='../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  4339. <script type="text/javascript">
  4340. //<![CDATA[
  4341. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  4342. </script>
  4343. <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>
  4344. <script type="text/javascript">
  4345. //<![CDATA[
  4346. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  4347. //]]>
  4348. </script>
  4349. <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>
  4350. <script type="text/javascript">
  4351. //<![CDATA[
  4352. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688453^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000675^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000001021^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000001027';
  4353. theForm.oldSubmit = theForm.submit;
  4354. theForm.submit = WebForm_SaveScrollPositionSubmit;
  4355. theForm.oldOnSubmit = theForm.onsubmit;
  4356. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  4357. //]]>
  4358. </script>
  4359. </form>
  4360. <div id="content-container2" class="hidden">
  4361. <div id="content-fixed-width2" class="content-fixed-width">
  4362. </div>
  4363. </div>
  4364. <div id="wideFooter" class="wideFooter">
  4365. <div id="footer" class="container">
  4366. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB07|20160304.2" />
  4367. <div id="ft_table1">
  4368. <div class="row">
  4369. <div class="col-xs-12">
  4370. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  4371. <div class="floatleft padding5right">
  4372. <strong class="h3">
  4373. 快速电子邮件注册</strong>&nbsp;&nbsp;
  4374. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  4375. </div>
  4376. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  4377. 提交
  4378. </a>
  4379. </div>
  4380. <div id="ft_icons" class="ft_icons">
  4381. <div id="ft_social">
  4382. <a id="ctl00_Footer1_lnkWechat" title="微信" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Wechat&#39;,&#39;http://www.mouser.cn/wechat&#39;);" href="http://www.mouser.cn/wechat"><div id="ctl00_Footer1_imgWechat" class="ico-social wechat"></div></a>
  4383. <a id="ctl00_Footer1_lnkYouKu" title="优酷" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;YouKu&#39;,&#39;http://i.youku.com/mouserelectronics&#39;);" href="http://i.youku.com/mouserelectronics" target="_blank"><div id="ctl00_Footer1_imgYouKu" class="ico-social youku"></div></a>
  4384. <a id="ctl00_Footer1_lnkWeibo" title="新浪微博" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Sina Weibo&#39;,&#39;http://www.weibo.com/u/2498646920&#39;);" href="http://www.weibo.com/u/2498646920" target="_blank"><div id="ctl00_Footer1_imgWeigo" class="ico-social weibo"></div></a>
  4385. <a id="ctl00_Footer1_lnkFB" title="facebook" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;facebook&#39;,&#39;http://www.facebook.com/mouserelectronics&#39;);" href="http://www.facebook.com/mouserelectronics" target="_blank">
  4386. <div class="ico-social fb"></div>
  4387. </a>
  4388. <a id="ctl00_Footer1_lnkTw" title="Twitter" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Twitter&#39;,&#39;http://www.twitter.com/mouserelec&#39;);" href="http://www.twitter.com/mouserelec" target="_blank">
  4389. <div class="ico-social tw"></div>
  4390. </a>
  4391. <a id="ctl00_Footer1_lnkRSS" title="RSS" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;RSS&#39;,&#39;http://www.mouser.cn/rssfeeds&#39;);" href="http://www.mouser.cn/rssfeeds" target="_blank">
  4392. <div class="ico-social rss"></div>
  4393. </a>
  4394. <a id="ctl00_Footer1_lnkYT" title="YouTube" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;YouTube&#39;,&#39;http://www.youtube.com/mouserelec&#39;);" href="http://www.youtube.com/mouserelec" target="_blank">
  4395. <div class="ico-social yt"></div>
  4396. </a>
  4397. <a id="ctl00_Footer1_lnkGp" title="Google+" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Google+&#39;,&#39;http://google.com/+MouserElec&#39;);" href="http://google.com/+MouserElec" target="_blank">
  4398. <div class="ico-social gp"></div>
  4399. </a>
  4400. <a id="ctl00_Footer1_lnkLn" title="LinkedIn" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;LinkedIn&#39;,&#39;http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT&#39;);" href="http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT" target="_blank">
  4401. <div class="ico-social ln"></div>
  4402. </a>
  4403. <a id="ctl00_Footer1_lnkSb" title="订阅中心" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Subscription Center&#39;,&#39;http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx&#39;);" href="http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx">
  4404. <div class="ico-social sb"></div>
  4405. </a>
  4406. <a id="ctl00_Footer1_lnkBlog" title="Mouser博客" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Mouser Blog&#39;,&#39;http://www.mouser.cn/blog&#39;);" href="http://www.mouser.cn/blog">
  4407. <div class="ico-social blog"></div>
  4408. </a>
  4409. </div>
  4410. </div>
  4411. </div>
  4412. </div>
  4413. </div>
  4414. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  4415. <div class="ft_wrapper">
  4416. <div id="ft_links" class="row">
  4417. <div class="col-xs-3 paddingBtm10 hidden-xs">
  4418. <strong class="paddingTopBtm10 inline-block">
  4419. 公司</strong>
  4420. <ul>
  4421. <li>
  4422. <a id="ctl00_Footer1_lnk26" href="../../../../../aboutus/">关于我们</a></li>
  4423. <li>
  4424. <a id="ctl00_Footer1_lnk28" href="../../../../../educationalsales/">教育销售</a></li>
  4425. <li>
  4426. <a id="ctl00_Footer1_lnk31" href="../../../../../pressroom/">新闻中心</a></li>
  4427. <li>
  4428. <a id="ctl00_Footer1_lnk32" href="../../../../../careers/">Mouser 工作机会</a></li>
  4429. <li>
  4430. <a id="ctl00_Footer1_lnk29" href="../../../../../quality/">品质保证</a></li>
  4431. <li>
  4432. <a id="ctl00_Footer1_lnk30" href="../../../../../environmental/">环境保护</a></li>
  4433. </ul>
  4434. </div>
  4435. <div class="col-xs-3 hidden-xs">
  4436. <strong class="paddingTopBtm10 inline-block">
  4437. 快速链接</strong>
  4438. <ul>
  4439. <li><a id="A7" href="/blog">
  4440. Mouser博客</a></li>
  4441. <li>
  4442. <a id="ctl00_Footer1_hlnk1" href="../../../../../new/">最新产品</a></li>
  4443. <li>
  4444. <a id="ctl00_Footer1_hlnk2" href="../../../../../new/products/">新产品</a></li>
  4445. <li>
  4446. <a id="ctl00_Footer1_hlnk3" href="../../../../../applications/">新技术</a></li>
  4447. </ul>
  4448. </div>
  4449. <div class="col-xs-12 col-sm-3">
  4450. <strong class="paddingTopBtm10 inline-block">
  4451. 支持</strong>
  4452. <ul>
  4453. <li><a id="A3" href="/feedback.aspx">
  4454. 反馈</a></li>
  4455. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  4456. 帮助</a></li>
  4457. <li>
  4458. <a id="ctl00_Footer1_lnk27" href="../../../../../contact/">联系我们</a></li>
  4459. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  4460. 浏览器支持</a></li>
  4461. <li><a id="A6" href="/cookie-policy/">
  4462. Cookie政策</a></li>
  4463. </ul>
  4464. </div>
  4465. <div class="col-xs-12 col-sm-3">
  4466. <strong class="paddingTopBtm10 inline-block">
  4467. 昴氏(上海)电子贸易有限公司</strong>
  4468. <ul>
  4469. <li>
  4470. <h4>
  4471. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  4472. </li>
  4473. </ul>
  4474. </div>
  4475. </div>
  4476. </div>
  4477. </div>
  4478. <div class="row">
  4479. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  4480. <div id="ft_copy">
  4481. <span class="ft_terms">
  4482. <a id="A1" href="/privacypolicy/">
  4483. 隐私政策</a>
  4484. &nbsp;&nbsp;|&nbsp;&nbsp;
  4485. <a id="href3" href="/saleterms/">
  4486. 销售条款</a>
  4487. <br />
  4488. </span>
  4489. <span class="ft_copyright">
  4490. 版权所有©2016 Mouser Electronics, Inc
  4491. |
  4492. 沪ICP备15042575号-1
  4493. <br />
  4494. </span>
  4495. <span class="ft_trade">
  4496. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  4497. </span>
  4498. <span class="ft_hq">
  4499. Corporate headquarters and logistics center in Mansfield, Texas USA.
  4500. </span>
  4501. <br />
  4502. <span class="ft_ClassicMobile">
  4503. <strong>
  4504. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  4505. </span>
  4506. </div>
  4507. </div>
  4508. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  4509. <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>
  4510. <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>
  4511. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  4512. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  4513. </a>
  4514. <a id="ctl00_Footer1_lnkSiteSecureSeal" class="ft_cert_padding ft_secure" href="https://seal.qualys.com/sealserv/info/?i=c8b29c82-965e-403b-956c-c855241927bb" target="_blank"><img id="ctl00_Footer1_imgSiteSecureSeal" oncontextmenu="javascript:alert(&#39;Copying Prohibited by Law&#39;); return false;" src="//seal.qualys.com/sealserv/seal.gif?i=c8b29c82-965e-403b-956c-c855241927bb" alt="Qualys Secure Seal" style="border-style:None;" /></a>
  4515. <a id="ctl00_Footer1_Hyperlink1" class="ft_cert_padding ft_sgs" href="http://www.sgs.gov.cn/lz/licenseLink.do?method=licenceView&amp;entyId=20120329100456493" target="_blank" style="text-decoration:none;"><img id="ctl00_Footer1_imgChinaCN2" src="../../../../../images/footer/icon_SGS.gif" style="border-style:None;height:37px;width:45px;" />&nbsp;&nbsp;&nbsp;
  4516. </a>
  4517. </div>
  4518. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  4519. <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>
  4520. <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>
  4521. <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>
  4522. <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>
  4523. </div>
  4524. </div>
  4525. <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>
  4526. <script type="text/javascript">
  4527. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  4528. </script>
  4529. </div>
  4530. </div>
  4531. <script src="../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  4532. <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>
  4533. </body>
  4534. </html>