99.html 341 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186
  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_d43a5858-f3a0-4e20-8dea-f796fc4e73e4-4852-307275';</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","8FntXhCBCSFxe3E89d4WEOXJKphFD8SrWj3gU+XtwsQ=",2]);_gaq.push(["_setCustomVar",31,"Cart","cf66c1b4-8465-463b-a97f-a00c74d73a5a",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA96AA68",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '863-HBL5006HT1G',
  65. 'name': 'LED Protection Devices SHUNT HBLED Protection',
  66. 'category': 'LED Protection Devices',
  67. 'brand': 'ON Semiconductor',
  68. 'variant': 'HBL5006HT1G',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '576-LSP10277PX3333',
  74. 'name': 'LED Protection Devices THERMALLY PROTECTED VARISTOR',
  75. 'category': 'LED Protection Devices',
  76. 'brand': 'Littelfuse',
  77. 'variant': 'LSP10277PX3333',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '863-HBL5006P2T5G',
  83. 'name': 'LED Protection Devices SHUNT HBLED Protection',
  84. 'category': 'LED Protection Devices',
  85. 'brand': 'ON Semiconductor',
  86. 'variant': 'HBL5006P2T5G',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '863-HBL5006XV2T1G',
  92. 'name': 'LED Protection Devices SHUNT HBLED Protection',
  93. 'category': 'LED Protection Devices',
  94. 'brand': 'ON Semiconductor',
  95. 'variant': 'HBL5006XV2T1G',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '863-NUD4700SNT1G',
  101. 'name': 'LED Protection Devices SCR Shunt',
  102. 'category': 'LED Protection Devices',
  103. 'brand': 'ON Semiconductor',
  104. 'variant': 'NUD4700SNT1G',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '576-PLED6M',
  110. 'name': 'LED Protection Devices LED PROTECTOR 6V',
  111. 'category': 'LED Protection Devices',
  112. 'brand': 'Littelfuse',
  113. 'variant': 'PLED6M',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '576-LSP10277S',
  119. 'name': 'LED Protection Devices 277V 10kA IP66 Series',
  120. 'category': 'LED Protection Devices',
  121. 'brand': 'Littelfuse',
  122. 'variant': 'LSP10277S',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '576-LSP10277P',
  128. 'name': 'LED Protection Devices 277V 10kA IP66 PARALLEL',
  129. 'category': 'LED Protection Devices',
  130. 'brand': 'Littelfuse',
  131. 'variant': 'LSP10277P',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '576-PLED6S',
  137. 'name': 'LED Protection Devices LED PROTECTOR Bi 6V',
  138. 'category': 'LED Protection Devices',
  139. 'brand': 'Littelfuse',
  140. 'variant': 'PLED6S',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '576-LSP10240S',
  146. 'name': 'LED Protection Devices 240V 10kA IP66 Series',
  147. 'category': 'LED Protection Devices',
  148. 'brand': 'Littelfuse',
  149. 'variant': 'LSP10240S',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '576-PLED18Q12',
  155. 'name': 'LED Protection Devices LED PROTECTOR 18V 1000mA QFN 3x3',
  156. 'category': 'LED Protection Devices',
  157. 'brand': 'Littelfuse',
  158. 'variant': 'PLED18Q12',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '576-PLED13S',
  164. 'name': 'LED Protection Devices LED PROTECTOR Bi 13V DO214 2L RoHS',
  165. 'category': 'LED Protection Devices',
  166. 'brand': 'Littelfuse',
  167. 'variant': 'PLED13S',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '652-LSP1300BJR-S',
  173. 'name': 'LED Protection Devices LED Shunt Protector 13volts 3 LEDs',
  174. 'category': 'LED Protection Devices',
  175. 'brand': 'Bourns',
  176. 'variant': 'LSP1300BJR-S',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '652-LSP1800AJR-S',
  182. 'name': 'LED Protection Devices 18volts',
  183. 'category': 'LED Protection Devices',
  184. 'brand': 'Bourns',
  185. 'variant': 'LSP1800AJR-S',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '576-PLED9Q12',
  191. 'name': 'LED Protection Devices LED PROTECTOR Bi 9V QFN 3X3 2L RoHS',
  192. 'category': 'LED Protection Devices',
  193. 'brand': 'Littelfuse',
  194. 'variant': 'PLED9Q12',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '652-LSP0900BJR-S',
  200. 'name': 'LED Protection Devices LED Shunt Protector 9volts 2 LEDs',
  201. 'category': 'LED Protection Devices',
  202. 'brand': 'Bourns',
  203. 'variant': 'LSP0900BJR-S',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '576-PLED18SW',
  209. 'name': 'LED Protection Devices 5A 18V WHT Body LED Protectors',
  210. 'category': 'LED Protection Devices',
  211. 'brand': 'Littelfuse',
  212. 'variant': 'PLED18SW',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '576-PLED13Q12',
  218. 'name': 'LED Protection Devices LED PROTECTOR Bi 13V QFN 3X3 2L RoHS',
  219. 'category': 'LED Protection Devices',
  220. 'brand': 'Littelfuse',
  221. 'variant': 'PLED13Q12',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '576-PLED6UQ12',
  227. 'name': 'LED Protection Devices Uni 6V 3X3 2L',
  228. 'category': 'LED Protection Devices',
  229. 'brand': 'Littelfuse',
  230. 'variant': 'PLED6UQ12',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '511-LBP01-0803SC5',
  236. 'name': 'LED Protection Devices LED Bypass 100nA 1A 15kV 8kV UNI',
  237. 'category': 'LED Protection Devices',
  238. 'brand': 'STMicroelectronics',
  239. 'variant': 'LBP01-0803SC5',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '576-PLED18UQ12',
  245. 'name': 'LED Protection Devices Uni 18V 3X3 2L',
  246. 'category': 'LED Protection Devices',
  247. 'brand': 'Littelfuse',
  248. 'variant': 'PLED18UQ12',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '576-PLED9UQ12',
  254. 'name': 'LED Protection Devices Uni 9V 3X3 2L',
  255. 'category': 'LED Protection Devices',
  256. 'brand': 'Littelfuse',
  257. 'variant': 'PLED9UQ12',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '576-PLED13UQ12',
  263. 'name': 'LED Protection Devices Uni 13V 3X3 2L',
  264. 'category': 'LED Protection Devices',
  265. 'brand': 'Littelfuse',
  266. 'variant': 'PLED13UQ12',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '576-PLED5Q12',
  272. 'name': 'LED Protection Devices LED PROTECTOR 5V 500mA QFN',
  273. 'category': 'LED Protection Devices',
  274. 'brand': 'Littelfuse',
  275. 'variant': 'PLED5Q12',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '576-PLED6Q12',
  281. 'name': 'LED Protection Devices LED PROTECTOR Bi 6V',
  282. 'category': 'LED Protection Devices',
  283. 'brand': 'Littelfuse',
  284. 'variant': 'PLED6Q12',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','8FntXhCBCSFxe3E89d4WEOXJKphFD8SrWj3gU+XtwsQ=');
  290. ga('set','dimension31','cf66c1b4-8465-463b-a97f-a00c74d73a5a');
  291. ga('set','dimension13','163AA125AA96AA68');
  292. ga('set','metric2',82);
  293. ga('set','dimension5','LED Protection Devices');
  294. ga('set','dimension48','7ksfi');
  295. ga('set','dimension3','Refine');
  296. ga('set','dimension55','Products');
  297. ga('send', 'pageview');
  298. </script>
  299. <link href="http://www.mouser.cn/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/?No=25" rel="next" content="http://www.mouser.cn/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/?No=25" /><link href="http://www.mouser.cn/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi" rel="canonical" content="http://www.mouser.cn/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi" /><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/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" /><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#xqystvxeaxesuf{display:none!important}</style><!-- Optimized for speed - Stingray Aptimizer --></head>
  300. <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
  301. <script src='../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
  302. <script src='../../../../flash/js/empty.file.js' type="text/javascript"></script>
  303. <script src='../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
  304. <script src='../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
  305. <script src='../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
  306. <!--[if lt IE 9]>
  307. <script src='../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
  308. <![endif]-->
  309. <form method="post" action="/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/" 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='12727278';
  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='12727278';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><div style="display: none;"><a href="beuvdedusduqsxwbzebzy.html" id="xqystvxeaxesuf" rel="file">zrcuqbtxdtwatvcqccqdzr</a></div>
  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=0gZ0gv0KDwsTwt16d7AwdRGIJTpvNELoofocpyAqgR0TFq0lEIqs5wxnZZPnYPY8dAwLlvPLbMV%252baYgBCjLYFzHXW5sCBSpW">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwsTwt16d7AwdRGIJTpvNELoofocpyAqgR0TFq0lEIqs5wxnZZPnYPY8dAwLlvPLbMV%252baYgBCjLYFzHXW5sCBSpW"><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 = 'cf66c1b4-8465-463b-a97f-a00c74d73a5a';
  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=0gZ0gv0KDwsTwt16d7AwdRGIJTpvNELoofocpyAqgR0TFq0lEIqs5wxnZZPnYPY8dAwLlvPLbMV%252baYgBCjLYFzHXW5sCBSpW">登录</a>
  635. </li>
  636. <li>
  637. </li>
  638. <li>
  639. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  643. </li>
  644. <li>
  645. <!-- Mush:TBC -->
  646. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  647. </li>
  648. </ul>
  649. </div>
  650. </div>
  651. <div id="navArea" class="row">
  652. <div class="col-xs-12">
  653. <div id="navMain" class="inline-block">
  654. <div class="navbar">
  655. <ul class="topnav">
  656. <li>
  657. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  658. <ul class="subnav" id="subnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  661. </li>
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  670. </li>
  671. </ul>
  672. </li>
  673. <li>
  674. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  675. <ul class="subnav" id="subnav">
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  678. </li>
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  687. </li>
  688. </ul>
  689. </li>
  690. <li>
  691. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  692. <ul class="subnav" id="subnav">
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  695. </li>
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  725. </li>
  726. </ul>
  727. </li>
  728. <li>
  729. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  730. <ul class="subnav" id="subnav">
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  733. </li>
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  760. </li>
  761. </ul>
  762. </li>
  763. <li>
  764. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  765. <ul class="subnav" id="subnav">
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  768. </li>
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  777. </li>
  778. </ul>
  779. </li>
  780. <li>
  781. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  782. <ul class="subnav" id="subnav">
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  785. </li>
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  797. </li>
  798. </ul>
  799. </li>
  800. </ul>
  801. </div>
  802. </div>
  803. <div class="onlineCatalog inline-block">
  804. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  805. </div>
  806. </div>
  807. </div>
  808. </div>
  809. <div style="visibility: hidden; height: 0px;">
  810. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  811. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  812. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  813. </div>
  814. <script type="text/javascript">
  815. $(document).ready(function () {
  816. //* change to html5 catalog if javascript is enabled *
  817. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  818. });
  819. </script>
  820. <script type="text/javascript" src='../../../../javascript/genLib.js'></script>
  821. </div>
  822. <div id="ctl00_divWide" class="divWide">
  823. <link rel="stylesheet" type="text/css" href='../../../../css/fontawesome/css/font-awesome.min.css' />
  824. <br />
  825. <strong></strong>
  826. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  827. <strong>></strong>
  828. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-5g3c/" style="font-size: 9pt; font-weight: bold;">电路保护</a>
  829. <strong>></strong>
  830. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">LED保护设备</a>
  831. <hr />
  832. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  833. <div class="categorySearchLimits">
  834. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  835. </div>
  836. </div>
  837. </div>
  838. <table border="0" width="100%">
  839. <tr>
  840. <td>
  841. <div id="ctl00_ContentMain_pnl3">
  842. <div id="category-top" class="category-content">
  843. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> LED保护设备</h1></a>
  844. <!--Marketing Content-->
  845. <div id="ctl00_ContentMain_refinemfglogo">
  846. </div>
  847. </div><!--.category-content-->
  848. </div>
  849. </td>
  850. </tr>
  851. <tr>
  852. <td>
  853. </td>
  854. </tr>
  855. <tr>
  856. <td>
  857. <div id="refine-page2">
  858. </div>
  859. </td>
  860. </tr>
  861. </table>
  862. <div id="ctl00_ContentMain_divTabs" class="row">
  863. <div class="col-xs-12">
  864. <div id="tabsNavigation" >
  865. <ul>
  866. <li id="ctl00_ContentMain_liProductsTab" class="active">
  867. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(82)</span></a>
  868. </li>
  869. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  870. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;LED Protection Devices&#39;);" href="../../Datasheets/_/N-7ksfi">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(14)</span></a>
  871. </li>
  872. <li id="ctl00_ContentMain_liImagesTab" class="">
  873. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;LED Protection Devices&#39;);" href="../../Images/_/N-7ksfi">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(17)</span></a>
  874. </li>
  875. <li id="ctl00_ContentMain_liNewestTab" class="">
  876. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;LED Protection Devices&#39;);" href="../../Newest-Products/_/N-7ksfi">最新产品</a>
  877. </li>
  878. </ul>
  879. </div>
  880. </div>
  881. </div>
  882. <div id="tabDivs" class="tab-divs">
  883. <script type="text/javascript">
  884. //<![CDATA[
  885. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  886. //]]>
  887. </script>
  888. <div id="ctl00_ContentMain_liProducts">
  889. <div id="refineSearchDiv">
  890. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  891. <div id="refine-keyword-search-2">
  892. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  893. <div id="boxPartSearch2">
  894. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  895. <tr>
  896. <td rowspan="3" style="vertical-align: middle">
  897. <div id="searchPartNumberBox" class="search-box" >
  898. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  899. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  900. </div>
  901. </td>
  902. </tr>
  903. <tr>
  904. <td class="chk-Search">
  905. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  906. </td>
  907. </tr>
  908. <tr>
  909. <td class="chk-Search">
  910. <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>
  911. </td>
  912. </tr>
  913. </table>
  914. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  915. </div>
  916. <script type="text/javascript" src='../../../../flash/js/Placeholders.min.js'></script>
  917. <script type="text/javascript" src='../../../../flash/js/watermark.js'></script>
  918. </div>
  919. </div>
  920. <div id="refine-mfg-select-2">
  921. </div>
  922. <div class="clear">
  923. </div>
  924. <table class="SearchParametricTable2">
  925. <tr>
  926. <td>
  927. <div id="AttributesDiv2">
  928. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  929. <div class="categorySearchLimits">
  930. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  931. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<span title="电路保护"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254136|Circuit Protection" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx254136|Circuit Protection" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx12727278|LED Protection Devices&#39;).checked = false;" /></span>&nbsp;<b>电路保护</b>&nbsp;&#62;&nbsp;<span title="LED保护设备"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx12727278|LED Protection Devices" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx12727278|LED Protection Devices" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254136|Circuit Protection&#39;).checked = true;" /></span>&nbsp;<b>LED保护设备</b>
  932. </div>
  933. </div>
  934. <hr/>
  935. </div>
  936. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  937. <p class="applied-filter-lbl">
  938. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  939. <span id="ctl00_ContentMain_uc5_lblreccount">82 匹配</span>
  940. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  941. </p>
  942. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  943. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  944. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  945. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../images/icon_tooltip.png" />
  946. <br />
  947. </div>
  948. </div>
  949. <table id="tb1" style="width: 100%;">
  950. <tr>
  951. <td>
  952. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  953. <tr>
  954. <td>
  955. <table cellpadding="0" cellspacing="0">
  956. <tr>
  957. <td>
  958. <table>
  959. <tr>
  960. <td>
  961. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  962. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  963. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  964. of parametric ids sent on the query string after the seo url is generated and redirected to.
  965. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  966. sorted parametric attributes from an endeca attribute group --->
  967. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  968. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  969. </div>
  970. </td>
  971. </tr>
  972. <tr>
  973. <td>
  974. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  975. <option value="4294759693">Bourns</option>
  976. <option value="4294759313">Littelfuse</option>
  977. <option value="4294759663">ON Semiconductor</option>
  978. <option value="4294764375">STMicroelectronics</option>
  979. </select>
  980. </td>
  981. </tr>
  982. <tr>
  983. <td>
  984. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  985. </td>
  986. </tr>
  987. </table>
  988. </td>
  989. <td valign="bottom" style="width: 15px;">
  990. &nbsp;
  991. </td>
  992. </tr>
  993. </table>
  994. </td><td>
  995. <table cellpadding="0" cellspacing="0">
  996. <tr>
  997. <td>
  998. <table>
  999. <tr>
  1000. <td>
  1001. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">击穿电压</span>
  1002. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1003. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1004. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1005. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1006. sorted parametric attributes from an endeca attribute group --->
  1007. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1008. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688303" />
  1009. </div>
  1010. </td>
  1011. </tr>
  1012. <tr>
  1013. <td>
  1014. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688303" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688303">
  1015. <option value="4292489868">0.8 V</option>
  1016. <option value="4292857134">4.6 V</option>
  1017. <option value="4294648954">6 V</option>
  1018. <option value="4294645482">7 V</option>
  1019. <option value="4294645507">7.5 V</option>
  1020. <option value="4294643877">9 V</option>
  1021. <option value="4292981902">13 V</option>
  1022. <option value="4294643622">16 V</option>
  1023. <option value="4294648083">18 V</option>
  1024. <option value="4294645548">26 V</option>
  1025. <option value="4294644362">33 V</option>
  1026. </select>
  1027. </td>
  1028. </tr>
  1029. <tr>
  1030. <td>
  1031. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1032. </td>
  1033. </tr>
  1034. </table>
  1035. </td>
  1036. <td valign="bottom" style="width: 15px;">
  1037. &nbsp;
  1038. </td>
  1039. </tr>
  1040. </table>
  1041. </td><td>
  1042. <table cellpadding="0" cellspacing="0">
  1043. <tr>
  1044. <td>
  1045. <table>
  1046. <tr>
  1047. <td>
  1048. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">开启状态电压</span>
  1049. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1050. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1051. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1052. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1053. sorted parametric attributes from an endeca attribute group --->
  1054. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1055. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="688563" />
  1056. </div>
  1057. </td>
  1058. </tr>
  1059. <tr>
  1060. <td>
  1061. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688563" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_688563">
  1062. <option value="4292856861">1 V</option>
  1063. <option value="4292872215">1.1 V</option>
  1064. <option value="4292868683">1.2 V</option>
  1065. <option value="4294597636">1.5 V</option>
  1066. <option value="4294576373">3 V</option>
  1067. </select>
  1068. </td>
  1069. </tr>
  1070. <tr>
  1071. <td>
  1072. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1073. </td>
  1074. </tr>
  1075. </table>
  1076. </td>
  1077. <td valign="bottom" style="width: 15px;">
  1078. &nbsp;
  1079. </td>
  1080. </tr>
  1081. </table>
  1082. </td><td>
  1083. <table cellpadding="0" cellspacing="0">
  1084. <tr>
  1085. <td>
  1086. <table>
  1087. <tr>
  1088. <td>
  1089. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">额定重复关闭状态电压 VDRM</span>
  1090. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1091. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1092. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1093. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1094. sorted parametric attributes from an endeca attribute group --->
  1095. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1096. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="688657" />
  1097. </div>
  1098. </td>
  1099. </tr>
  1100. <tr>
  1101. <td>
  1102. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688657" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_688657">
  1103. <option value="4292864303">3.5 V</option>
  1104. <option value="4294437794">6 V</option>
  1105. <option value="4291480466">7.5 V</option>
  1106. <option value="4292856871">9 V</option>
  1107. <option value="4292864154">10 V</option>
  1108. <option value="4292856872">13 V</option>
  1109. <option value="4292859279">18 V</option>
  1110. </select>
  1111. </td>
  1112. </tr>
  1113. <tr>
  1114. <td>
  1115. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1116. </td>
  1117. </tr>
  1118. </table>
  1119. </td>
  1120. <td valign="bottom" style="width: 15px;">
  1121. &nbsp;
  1122. </td>
  1123. </tr>
  1124. </table>
  1125. </td><td>
  1126. <table cellpadding="0" cellspacing="0">
  1127. <tr>
  1128. <td>
  1129. <table>
  1130. <tr>
  1131. <td>
  1132. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">保持电流Ih最大值</span>
  1133. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1134. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1135. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1136. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1137. sorted parametric attributes from an endeca attribute group --->
  1138. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1139. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000000209" />
  1140. </div>
  1141. </td>
  1142. </tr>
  1143. <tr>
  1144. <td>
  1145. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000209" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000000209">
  1146. <option value="4294747090">12 mA</option>
  1147. <option value="4294855847">30 mA</option>
  1148. <option value="4294759057">40 mA</option>
  1149. <option value="4294879676">5 mA</option>
  1150. </select>
  1151. </td>
  1152. </tr>
  1153. <tr>
  1154. <td>
  1155. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1156. </td>
  1157. </tr>
  1158. </table>
  1159. </td>
  1160. <td valign="bottom" style="width: 15px;">
  1161. &nbsp;
  1162. </td>
  1163. </tr>
  1164. </table>
  1165. </td><td>
  1166. <table cellpadding="0" cellspacing="0">
  1167. <tr>
  1168. <td>
  1169. <table>
  1170. <tr>
  1171. <td>
  1172. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  1173. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1174. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1175. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1176. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1177. sorted parametric attributes from an endeca attribute group --->
  1178. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1179. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="688606" />
  1180. </div>
  1181. </td>
  1182. </tr>
  1183. <tr>
  1184. <td>
  1185. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_688606">
  1186. <option value="4268930417">46.6 mm x 46.1 mm</option>
  1187. <option value="4284739797">64 mm x 48 mm</option>
  1188. <option value="4294741837">DO-214AA</option>
  1189. <option value="4292832983">DO-214AA (SMB)</option>
  1190. <option value="4292566998">DO-214AA-2</option>
  1191. <option value="4292872342">Powermite</option>
  1192. <option value="4294719890">QFN</option>
  1193. <option value="4294670504">SOD-323-2</option>
  1194. <option value="4292790715">SOD-523-2</option>
  1195. <option value="4292566899">SOD-923-2</option>
  1196. <option value="4294688942">SOT-23-5L</option>
  1197. <option value="4294729356">SOT-89</option>
  1198. </select>
  1199. </td>
  1200. </tr>
  1201. <tr>
  1202. <td>
  1203. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1204. </td>
  1205. </tr>
  1206. </table>
  1207. </td>
  1208. <td valign="bottom" style="width: 15px;">
  1209. &nbsp;
  1210. </td>
  1211. </tr>
  1212. </table>
  1213. </td><td>
  1214. <table cellpadding="0" cellspacing="0">
  1215. <tr>
  1216. <td>
  1217. <table>
  1218. <tr>
  1219. <td>
  1220. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">封装</span>
  1221. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  1222. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1223. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1224. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1225. sorted parametric attributes from an endeca attribute group --->
  1226. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  1227. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="688610" />
  1228. </div>
  1229. </td>
  1230. </tr>
  1231. <tr>
  1232. <td>
  1233. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$688610" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_688610">
  1234. <option value="4294966193">Bulk</option>
  1235. <option value="4294966263">Reel</option>
  1236. </select>
  1237. </td>
  1238. </tr>
  1239. <tr>
  1240. <td>
  1241. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1242. </td>
  1243. </tr>
  1244. </table>
  1245. </td>
  1246. <td valign="bottom" style="width: 15px;">
  1247. &nbsp;
  1248. </td>
  1249. </tr>
  1250. </table>
  1251. </td>
  1252. </tr>
  1253. </table>
  1254. <table class="ApplyFilter">
  1255. <tr>
  1256. <td class="ApplyFilterColumn1">
  1257. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1258. </td>
  1259. <td class="ApplyFilterColumn2">
  1260. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  1261. </td>
  1262. <td class="ApplyFilterColumn2_5">
  1263. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  1264. </td>
  1265. <td class="ApplyFilterColumn3">
  1266. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1267. </td>
  1268. </tr>
  1269. </table>
  1270. </td>
  1271. </tr>
  1272. </table>
  1273. </div>
  1274. </td>
  1275. </tr>
  1276. </table>
  1277. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  1278. height: 70px; display: none; background: white; border: 1px solid #000;'>
  1279. <br />
  1280. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  1281. <br />
  1282. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  1283. <!--Close Window-->
  1284. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  1285. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  1286. </a>&nbsp;&nbsp;</div>
  1287. </div>
  1288. <div id ="VisualAttributePopup" class="hidden" >
  1289. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  1290. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  1291. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  1292. </div>
  1293. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id="loadingimgspinner" src="/Images/spinner2.gif" /></div>
  1294. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  1295. <table id="tblAttributes" >
  1296. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  1297. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  1298. <td class="visualAttributeImage">
  1299. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  1300. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  1301. </td>
  1302. <td>
  1303. <table class="visualAttValueDesc">
  1304. <tr>
  1305. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  1306. </tr>
  1307. <tr>
  1308. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  1309. </tr>
  1310. <tr data-bind="if: ImagePath1 ">
  1311. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs" /></div></td>
  1312. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  1313. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  1314. </tr>
  1315. </table>
  1316. </td>
  1317. </tr>
  1318. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  1319. </tbody>
  1320. </table>
  1321. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id="Img1" src="/Images/spinner2.gif" />
  1322. <div data-bind="if: hasMoreOptions" align="center">
  1323. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  1324. </div>
  1325. </div>
  1326. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  1327. <div class="visualAttributesBtnDiv">
  1328. <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" />
  1329. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  1330. <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" />
  1331. </div>
  1332. </div>
  1333. <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>
  1334. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1335. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  1336. </div>
  1337. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  1338. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  1339. <script src='../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  1340. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1341. <script type="text/javascript">
  1342. $().ready(function () {
  1343. ko.applyBindings(new DisplayAttributesModel());
  1344. ko.bindingHandlers.hoverToggle = {
  1345. update: function (element, valueAccessor) {
  1346. var css = valueAccessor();
  1347. var isSelected = $(element).hasClass("selectedAttribute");
  1348. if (!isSelected) {
  1349. ko.utils.registerEventHandler(element, "mouseenter", function () {
  1350. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  1351. });
  1352. ko.utils.registerEventHandler(element, "mouseleave", function () {
  1353. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  1354. });
  1355. }
  1356. }
  1357. };
  1358. });
  1359. </script>
  1360. </div>
  1361. <div id="refine-mfg-logo2">
  1362. </div>
  1363. </div>
  1364. <br />
  1365. <table border="0" width="100%">
  1366. <tr>
  1367. <td>
  1368. </td>
  1369. </tr>
  1370. <tr>
  1371. <td>
  1372. <!--- Search Features --->
  1373. </td>
  1374. </tr>
  1375. <tr>
  1376. <td>
  1377. <div id="refine-page">
  1378. </div>
  1379. </td>
  1380. </tr>
  1381. <tr>
  1382. <td class="refine-show-products">
  1383. <span class="redtextb">
  1384. </span> <span class="redtextb">
  1385. </span> <span class="redtextb">
  1386. </span> <span class="redtextb">
  1387. </span>
  1388. <span class="redtextb">
  1389. </span>
  1390. </td>
  1391. </tr>
  1392. <tr>
  1393. <td>
  1394. </td>
  1395. </tr>
  1396. <tr>
  1397. <td>
  1398. <!--- Special Order Parts New --->
  1399. <!-- SOP Section 1 -->
  1400. </td>
  1401. </tr>
  1402. </table>
  1403. <div id="searchResultsTbl">
  1404. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  1405. <tr>
  1406. <td class="tdSearchResultsPagingTop">
  1407. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  1408. <tr>
  1409. <td>
  1410. <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" />
  1411. </td>
  1412. <td>
  1413. <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" />
  1414. </td>
  1415. <td>
  1416. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  1417. </td>
  1418. <td style="padding-left: 40px;">
  1419. <div class="floatrightpager">
  1420. <span class="bold">
  1421. 页面:
  1422. </span>
  1423. <span id="ctl00_ContentMain_PagerTop"><span id="ctl00_ContentMain_PagerTop_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerTop_1" href="/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/?No=25">下一页</a></span>
  1424. </div>
  1425. </td>
  1426. </tr>
  1427. </table>
  1428. </td>
  1429. </tr>
  1430. <tr>
  1431. <td>
  1432. <div>
  1433. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  1434. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  1435. <th class="td-select" scope="col" style="width:35px;">
  1436. 选择
  1437. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  1438. </th><th scope="col">制造商 零件编号
  1439. </th><th scope="col">制造商
  1440. </th><th scope="col">描述
  1441. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../Images/Search/pdf.gif" alt="文件" />
  1442. </th><th scope="col">供货情况
  1443. </th><th scope="col">单价(含17%增值税)
  1444. <br />
  1445. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  1446. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  1447. </th><th class="SearchResultParametricColumnHeading" scope="col">击穿电压
  1448. </th><th class="SearchResultParametricColumnHeading" scope="col">开启状态电压
  1449. </th><th class="SearchResultParametricColumnHeading" scope="col">额定重复关闭状态电压 VDRM
  1450. </th><th class="SearchResultParametricColumnHeading" scope="col">保持电流Ih最大值
  1451. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  1452. </th><th class="SearchResultParametricColumnHeading" scope="col">封装
  1453. </th>
  1454. </tr><tr class="SearchResultsSortCell">
  1455. <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$ctl17&#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$ctl19&#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_ctl21" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl21&#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$ctl23&#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$ctl25&#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$ctl27&#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$ctl29&#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$ctl31&#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$ctl33&#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$Breakdown Voltage>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl35&#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$Breakdown Voltage>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl37&#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$On-State Voltage>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl39&#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$On-State Voltage>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl41&#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$Rated Repetitive Off-State Voltage VDRM>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl43&#39;,&#39;&#39;)"><img title="按 额定重复关闭状态电压 VDRM Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 额定重复关闭状态电压 VDRM Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Rated Repetitive Off-State Voltage VDRM>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl45&#39;,&#39;&#39;)"><img title="按 额定重复关闭状态电压 VDRM Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 额定重复关闭状态电压 VDRM Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Holding Current Ih Max>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl47&#39;,&#39;&#39;)"><img title="按 保持电流Ih最大值 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 保持电流Ih最大值 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Holding Current Ih Max>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl49&#39;,&#39;&#39;)"><img title="按 保持电流Ih最大值 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 保持电流Ih最大值 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl51&#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$Package / Case>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl53&#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$Packaging>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl55&#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$Packaging>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl57&#39;,&#39;&#39;)"><img title="按 封装 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 Descending 排序" /></a></td>
  1456. </tr><tr class="SearchResultsRowOdd" data-partnumber="863-HBL5006HT1G" data-index="3">
  1457. <td class="td-select" align="center">
  1458. <div style="padding: 5px 5px 0 5px;">
  1459. <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>
  1460. </div>
  1461. </td><td><a href='/ProductDetail/ON-Semiconductor/HBL5006HT1G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5aMNupIcTIFWMebY7w45h3pQ%3d%3d'><img title='ON Semiconductor HBL5006HT1G' alt='ON Semiconductor HBL5006HT1G' id=1482269967 src='/images/mouserimages/sm/SOD_323_2_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/mouserimages/images/SOD_323_2_DSL.jpg</div></a></td><td>
  1462. <div style="text-align:left;">
  1463. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/ON-Semiconductor/HBL5006HT1G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5aMNupIcTIFWMebY7w45h3pQ%3d%3d">863-HBL5006HT1G</a><br />
  1464. <br />
  1465. <br />
  1466. 要购买完整 卷轴,请订购 3000 的倍数:
  1467. </div></td><td>
  1468. <div class="mfrDiv">
  1469. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/ON-Semiconductor/HBL5006HT1G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5aMNupIcTIFWMebY7w45h3pQ%3d%3d">HBL5006HT1G</a><br />
  1470. <br />
  1471. <div style="width: 100%; text-align: center;">
  1472. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1473. </div>
  1474. <div style="width: 100%; text-align: center;">
  1475. </div>
  1476. </div>
  1477. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../onsemiconductor">ON Semiconductor</a>
  1478. </td><td>LED保护设备 SHUNT HBLED Protection
  1479. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1480. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../on-semi-hbl5006-shunts">了解更多</a>
  1481. </div>
  1482. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1483. </div>
  1484. </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;ON Semiconductor&quot;,&quot;863-HBL5006HT1G | HBL5006HT1G&quot;]);" href="http://www.mouser.com/ds/2/308/HBL5006-D-533667.pdf" target="_blank">数据表</a>
  1485. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">12,000<br/>有库存</span>
  1486. <table>
  1487. <tr align="center">
  1488. <td style="padding-top: 5px">
  1489. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/ON-Semiconductor/HBL5006HT1G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5aMNupIcTIFWMebY7w45h3pQ%3d%3d">更多信息可用 </a>
  1490. </td>
  1491. </tr>
  1492. <tr align="center">
  1493. <td style="padding-top: 5px; padding-bottom: 5px">
  1494. </td>
  1495. </tr>
  1496. </table></td><td>
  1497. <table class="PriceBreaks" cellspacing="0" border="0">
  1498. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1499. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1500. </td>
  1501. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1502. </td>
  1503. </tr>
  1504. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1505. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1506. 剪切带
  1507. </td>
  1508. </tr>
  1509. <tr>
  1510. <td class="PriceBreakQuantity">
  1511. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  1512. </td>
  1513. <td class="PriceBreakPrice">
  1514. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥4.5396</span>
  1515. </td>
  1516. </tr>
  1517. <tr>
  1518. <td class="PriceBreakQuantity">
  1519. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  1520. </td>
  1521. <td class="PriceBreakPrice">
  1522. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3.0303</span>
  1523. </td>
  1524. </tr>
  1525. <tr>
  1526. <td class="PriceBreakQuantity">
  1527. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,100);">100:</a>
  1528. </td>
  1529. <td class="PriceBreakPrice">
  1530. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1.6965</span>
  1531. </td>
  1532. </tr>
  1533. <tr>
  1534. <td class="PriceBreakQuantity">
  1535. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,1000);">1,000:</a>
  1536. </td>
  1537. <td class="PriceBreakPrice">
  1538. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1.2285</span>
  1539. </td>
  1540. </tr>
  1541. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  1542. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1543. 卷轴
  1544. </td>
  1545. </tr>
  1546. <tr>
  1547. <td class="PriceBreakQuantity">
  1548. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(1,3000);">3,000:</a>
  1549. </td>
  1550. <td class="PriceBreakPrice">
  1551. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥1.06236</span>
  1552. </td>
  1553. </tr>
  1554. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  1555. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1556. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(1,9000);">9,000:</a>
  1557. </td>
  1558. <td class="PriceBreakPrice">
  1559. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/ON-Semiconductor/HBL5006HT1G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5aMNupIcTIFWMebY7w45h3pQ%3d%3d">查看</a>
  1560. </td>
  1561. </tr>
  1562. <tr>
  1563. <td><br /></td>
  1564. </tr>
  1565. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  1566. <td colspan="2" style="text-align: center;">
  1567. </td>
  1568. </tr>
  1569. </table>
  1570. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy&#39;)">
  1571. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(1,this.value);" /><br />
  1572. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 1);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy" title="购买 HBL5006HT1G" class="buy-button" /><br />
  1573. <table cellspacing="0" border="0" style="width: 100%;">
  1574. <tr>
  1575. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1576. 最低:
  1577. </td>
  1578. <td style="padding-left: 2px; text-align: left;">
  1579. 1
  1580. </td>
  1581. </tr>
  1582. <tr>
  1583. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1584. 多个:
  1585. </td>
  1586. <td style="padding-left: 2px; text-align: left;">
  1587. 1
  1588. </td>
  1589. </tr>
  1590. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_trReel">
  1591. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1592. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(1,3000);">卷轴</a>:
  1593. </td>
  1594. <td style="padding-left: 2px; text-align: left;">
  1595. <em class="SearchResultsReel">
  1596. 3,000
  1597. </em>
  1598. </td>
  1599. </tr>
  1600. </table>
  1601. </div>
  1602. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  1603. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1604. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=dv8ZSX1jAvB2nlgZE%252b2HTw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=dv8ZSX1jAvB2nlgZE%252b2HTw%3d%3d" target="_blank">详细信息</a>
  1605. </div>
  1606. </td><td>7 V
  1607. </td><td>1.1 V
  1608. </td><td>
  1609. </td><td>40 mA
  1610. </td><td>SOD-323-2
  1611. </td><td>Reel
  1612. </td>
  1613. </tr><tr class="SearchResultsRowEven" data-partnumber="576-LSP10277PX3333" data-index="4">
  1614. <td class="td-select" align="center">
  1615. <div style="padding: 5px 5px 0 5px;">
  1616. <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>
  1617. </div>
  1618. </td><td><a href='/ProductDetail/Littelfuse/LSP10277PX3333/?qs=sGAEpiMZZMsYQtbqwpxHHyPgE9STt%252bPooBzIgeh2o35K0JK3jj4VxQ%3d%3d'><img title='Littelfuse LSP10277PX3333' alt='Littelfuse LSP10277PX3333' id=1408710811 src='/images/littelfuse/sm/LSP05G_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/littelfuse/images/LSP05G_SPL.jpg</div></a></td><td>
  1619. <div style="text-align:left;">
  1620. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/LSP10277PX3333/?qs=sGAEpiMZZMsYQtbqwpxHHyPgE9STt%252bPooBzIgeh2o35K0JK3jj4VxQ%3d%3d">576-LSP10277PX3333</a><br />
  1621. <br />
  1622. <br />
  1623. </div></td><td>
  1624. <div class="mfrDiv">
  1625. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/LSP10277PX3333/?qs=sGAEpiMZZMsYQtbqwpxHHyPgE9STt%252bPooBzIgeh2o35K0JK3jj4VxQ%3d%3d">LSP10277PX3333</a><br />
  1626. <br />
  1627. <div style="width: 100%; text-align: center;">
  1628. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1629. </div>
  1630. <div style="width: 100%; text-align: center;">
  1631. </div>
  1632. </div>
  1633. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  1634. </td><td>LED保护设备 THERMALLY PROTECTED VARISTOR
  1635. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1636. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfuse-lsp05-lsp10-modules/">了解更多</a>
  1637. </div>
  1638. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1639. </div>
  1640. </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;Littelfuse&quot;,&quot;576-LSP10277PX3333 | LSP10277PX3333&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_Varistor_LSP10_Datasheet.pdf-464567.pdf" target="_blank">数据表</a>
  1641. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">72<br/>有库存</span>
  1642. <table>
  1643. <tr align="center">
  1644. <td style="padding-top: 5px">
  1645. </td>
  1646. </tr>
  1647. <tr align="center">
  1648. <td style="padding-top: 5px; padding-bottom: 5px">
  1649. </td>
  1650. </tr>
  1651. </table></td><td>
  1652. <table class="PriceBreaks" cellspacing="0" border="0">
  1653. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1654. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1655. </td>
  1656. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1657. </td>
  1658. </tr>
  1659. <tr>
  1660. <td class="PriceBreakQuantity">
  1661. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  1662. </td>
  1663. <td class="PriceBreakPrice">
  1664. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥163.4958</span>
  1665. </td>
  1666. </tr>
  1667. <tr>
  1668. <td class="PriceBreakQuantity">
  1669. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  1670. </td>
  1671. <td class="PriceBreakPrice">
  1672. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥148.6251</span>
  1673. </td>
  1674. </tr>
  1675. <tr>
  1676. <td class="PriceBreakQuantity">
  1677. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,25);">25:</a>
  1678. </td>
  1679. <td class="PriceBreakPrice">
  1680. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥137.4633</span>
  1681. </td>
  1682. </tr>
  1683. <tr>
  1684. <td class="PriceBreakQuantity">
  1685. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,50);">50:</a>
  1686. </td>
  1687. <td class="PriceBreakPrice">
  1688. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥129.987</span>
  1689. </td>
  1690. </tr>
  1691. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1692. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1693. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  1694. </td>
  1695. <td class="PriceBreakPrice">
  1696. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Littelfuse/LSP10277PX3333/?qs=sGAEpiMZZMsYQtbqwpxHHyPgE9STt%252bPooBzIgeh2o35K0JK3jj4VxQ%3d%3d">查看</a>
  1697. </td>
  1698. </tr>
  1699. <tr>
  1700. <td><br /></td>
  1701. </tr>
  1702. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1703. <td colspan="2" style="text-align: center;">
  1704. </td>
  1705. </tr>
  1706. </table>
  1707. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy&#39;)">
  1708. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(2,this.value);" /><br />
  1709. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 2);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy" title="购买 LSP10277PX3333" class="buy-button" /><br />
  1710. <table cellspacing="0" border="0" style="width: 100%;">
  1711. <tr>
  1712. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1713. 最低:
  1714. </td>
  1715. <td style="padding-left: 2px; text-align: left;">
  1716. 1
  1717. </td>
  1718. </tr>
  1719. <tr>
  1720. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1721. 多个:
  1722. </td>
  1723. <td style="padding-left: 2px; text-align: left;">
  1724. 1
  1725. </td>
  1726. </tr>
  1727. </table>
  1728. </div>
  1729. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  1730. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1731. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bZXX%252bGBXIKGwuF0ku1cgRg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=bZXX%252bGBXIKGwuF0ku1cgRg%3d%3d" target="_blank">详细信息</a>
  1732. </div>
  1733. </td><td>
  1734. </td><td>
  1735. </td><td>
  1736. </td><td>
  1737. </td><td>64 mm x 48 mm
  1738. </td><td>Bulk
  1739. </td>
  1740. </tr><tr class="SearchResultsRowOdd" data-partnumber="863-HBL5006P2T5G" data-index="5">
  1741. <td class="td-select" align="center">
  1742. <div style="padding: 5px 5px 0 5px;">
  1743. <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>
  1744. </div>
  1745. </td><td><a href='/ProductDetail/ON-Semiconductor/HBL5006P2T5G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5awFB8fHq57xPBrLHRFnmcYQ%3d%3d'><img title='ON Semiconductor HBL5006P2T5G' alt='ON Semiconductor HBL5006P2T5G' id=1482269969 src='/images/onsemiconductor/sm/sod923-2_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/onsemiconductor/images/sod923-2_SPL.jpg</div></a></td><td>
  1746. <div style="text-align:left;">
  1747. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/ON-Semiconductor/HBL5006P2T5G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5awFB8fHq57xPBrLHRFnmcYQ%3d%3d">863-HBL5006P2T5G</a><br />
  1748. <br />
  1749. <br />
  1750. 要购买完整 卷轴,请订购 8000 的倍数:
  1751. </div></td><td>
  1752. <div class="mfrDiv">
  1753. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/ON-Semiconductor/HBL5006P2T5G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5awFB8fHq57xPBrLHRFnmcYQ%3d%3d">HBL5006P2T5G</a><br />
  1754. <br />
  1755. <div style="width: 100%; text-align: center;">
  1756. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1757. </div>
  1758. <div style="width: 100%; text-align: center;">
  1759. </div>
  1760. </div>
  1761. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../onsemiconductor">ON Semiconductor</a>
  1762. </td><td>LED保护设备 SHUNT HBLED Protection
  1763. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1764. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../on-semi-hbl5006-shunts">了解更多</a>
  1765. </div>
  1766. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1767. </div>
  1768. </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;ON Semiconductor&quot;,&quot;863-HBL5006P2T5G | HBL5006P2T5G&quot;]);" href="http://www.mouser.com/ds/2/308/HBL5006-D-533667.pdf" target="_blank">数据表</a>
  1769. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">7,860<br/>有库存</span>
  1770. <table>
  1771. <tr align="center">
  1772. <td style="padding-top: 5px">
  1773. </td>
  1774. </tr>
  1775. <tr align="center">
  1776. <td style="padding-top: 5px; padding-bottom: 5px">
  1777. </td>
  1778. </tr>
  1779. </table></td><td>
  1780. <table class="PriceBreaks" cellspacing="0" border="0">
  1781. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1782. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1783. </td>
  1784. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1785. </td>
  1786. </tr>
  1787. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1788. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1789. 剪切带
  1790. </td>
  1791. </tr>
  1792. <tr>
  1793. <td class="PriceBreakQuantity">
  1794. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  1795. </td>
  1796. <td class="PriceBreakPrice">
  1797. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥4.5396</span>
  1798. </td>
  1799. </tr>
  1800. <tr>
  1801. <td class="PriceBreakQuantity">
  1802. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  1803. </td>
  1804. <td class="PriceBreakPrice">
  1805. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3.0303</span>
  1806. </td>
  1807. </tr>
  1808. <tr>
  1809. <td class="PriceBreakQuantity">
  1810. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  1811. </td>
  1812. <td class="PriceBreakPrice">
  1813. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1.6965</span>
  1814. </td>
  1815. </tr>
  1816. <tr>
  1817. <td class="PriceBreakQuantity">
  1818. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,1000);">1,000:</a>
  1819. </td>
  1820. <td class="PriceBreakPrice">
  1821. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1.2285</span>
  1822. </td>
  1823. </tr>
  1824. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  1825. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1826. 卷轴
  1827. </td>
  1828. </tr>
  1829. <tr>
  1830. <td class="PriceBreakQuantity">
  1831. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(3,8000);">8,000:</a>
  1832. </td>
  1833. <td class="PriceBreakPrice">
  1834. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥0.99333</span>
  1835. </td>
  1836. </tr>
  1837. <tr>
  1838. <td class="PriceBreakQuantity">
  1839. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(3,24000);">24,000:</a>
  1840. </td>
  1841. <td class="PriceBreakPrice">
  1842. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/ON-Semiconductor/HBL5006P2T5G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5awFB8fHq57xPBrLHRFnmcYQ%3d%3d' >查看</a></span>
  1843. </td>
  1844. </tr>
  1845. <tr>
  1846. <td><br /></td>
  1847. </tr>
  1848. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  1849. <td colspan="2" style="text-align: center;">
  1850. </td>
  1851. </tr>
  1852. </table>
  1853. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy&#39;)">
  1854. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(3,this.value);" /><br />
  1855. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 3);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy" title="购买 HBL5006P2T5G" class="buy-button" /><br />
  1856. <table cellspacing="0" border="0" style="width: 100%;">
  1857. <tr>
  1858. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1859. 最低:
  1860. </td>
  1861. <td style="padding-left: 2px; text-align: left;">
  1862. 1
  1863. </td>
  1864. </tr>
  1865. <tr>
  1866. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1867. 多个:
  1868. </td>
  1869. <td style="padding-left: 2px; text-align: left;">
  1870. 1
  1871. </td>
  1872. </tr>
  1873. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_trReel">
  1874. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1875. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(3,8000);">卷轴</a>:
  1876. </td>
  1877. <td style="padding-left: 2px; text-align: left;">
  1878. <em class="SearchResultsReel">
  1879. 8,000
  1880. </em>
  1881. </td>
  1882. </tr>
  1883. </table>
  1884. </div>
  1885. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  1886. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1887. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=dv8ZSX1jAvBz9mCJs85gPg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=dv8ZSX1jAvBz9mCJs85gPg%3d%3d" target="_blank">详细信息</a>
  1888. </div>
  1889. </td><td>7 V
  1890. </td><td>1.1 V
  1891. </td><td>
  1892. </td><td>40 mA
  1893. </td><td>SOD-923-2
  1894. </td><td>Reel
  1895. </td>
  1896. </tr><tr class="SearchResultsRowEven" data-partnumber="863-HBL5006XV2T1G" data-index="6">
  1897. <td class="td-select" align="center">
  1898. <div style="padding: 5px 5px 0 5px;">
  1899. <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>
  1900. </div>
  1901. </td><td><a href='/ProductDetail/ON-Semiconductor/HBL5006XV2T1G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5awsLD0mqa5k9Op4U6ibhmzw%3d%3d'><img title='ON Semiconductor HBL5006XV2T1G' alt='ON Semiconductor HBL5006XV2T1G' id=1482269971 src='/images/onsemiconductor/sm/sod523-2_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/onsemiconductor/images/sod523-2_SPL.jpg</div></a></td><td>
  1902. <div style="text-align:left;">
  1903. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/ON-Semiconductor/HBL5006XV2T1G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5awsLD0mqa5k9Op4U6ibhmzw%3d%3d">863-HBL5006XV2T1G</a><br />
  1904. <br />
  1905. <br />
  1906. 要购买完整 卷轴,请订购 3000 的倍数:
  1907. </div></td><td>
  1908. <div class="mfrDiv">
  1909. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/ON-Semiconductor/HBL5006XV2T1G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5awsLD0mqa5k9Op4U6ibhmzw%3d%3d">HBL5006XV2T1G</a><br />
  1910. <br />
  1911. <div style="width: 100%; text-align: center;">
  1912. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1913. </div>
  1914. <div style="width: 100%; text-align: center;">
  1915. </div>
  1916. </div>
  1917. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../onsemiconductor">ON Semiconductor</a>
  1918. </td><td>LED保护设备 SHUNT HBLED Protection
  1919. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1920. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../on-semi-hbl5006-shunts">了解更多</a>
  1921. </div>
  1922. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1923. </div>
  1924. </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;ON Semiconductor&quot;,&quot;863-HBL5006XV2T1G | HBL5006XV2T1G&quot;]);" href="http://www.mouser.com/ds/2/308/HBL5006-D-533667.pdf" target="_blank">数据表</a>
  1925. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">3,000<br/>有库存</span>
  1926. <table>
  1927. <tr align="center">
  1928. <td style="padding-top: 5px">
  1929. </td>
  1930. </tr>
  1931. <tr align="center">
  1932. <td style="padding-top: 5px; padding-bottom: 5px">
  1933. </td>
  1934. </tr>
  1935. </table></td><td>
  1936. <table class="PriceBreaks" cellspacing="0" border="0">
  1937. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1938. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1939. </td>
  1940. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1941. </td>
  1942. </tr>
  1943. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1944. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1945. 剪切带
  1946. </td>
  1947. </tr>
  1948. <tr>
  1949. <td class="PriceBreakQuantity">
  1950. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  1951. </td>
  1952. <td class="PriceBreakPrice">
  1953. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥4.5396</span>
  1954. </td>
  1955. </tr>
  1956. <tr>
  1957. <td class="PriceBreakQuantity">
  1958. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,10);">10:</a>
  1959. </td>
  1960. <td class="PriceBreakPrice">
  1961. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3.0303</span>
  1962. </td>
  1963. </tr>
  1964. <tr>
  1965. <td class="PriceBreakQuantity">
  1966. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,100);">100:</a>
  1967. </td>
  1968. <td class="PriceBreakPrice">
  1969. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1.6965</span>
  1970. </td>
  1971. </tr>
  1972. <tr>
  1973. <td class="PriceBreakQuantity">
  1974. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,1000);">1,000:</a>
  1975. </td>
  1976. <td class="PriceBreakPrice">
  1977. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1.2285</span>
  1978. </td>
  1979. </tr>
  1980. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  1981. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1982. 卷轴
  1983. </td>
  1984. </tr>
  1985. <tr>
  1986. <td class="PriceBreakQuantity">
  1987. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(4,3000);">3,000:</a>
  1988. </td>
  1989. <td class="PriceBreakPrice">
  1990. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥1.06236</span>
  1991. </td>
  1992. </tr>
  1993. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  1994. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1995. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(4,9000);">9,000:</a>
  1996. </td>
  1997. <td class="PriceBreakPrice">
  1998. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/ON-Semiconductor/HBL5006XV2T1G/?qs=sGAEpiMZZMsYQtbqwpxHHyrFKnn1Rf5awsLD0mqa5k9Op4U6ibhmzw%3d%3d">查看</a>
  1999. </td>
  2000. </tr>
  2001. <tr>
  2002. <td><br /></td>
  2003. </tr>
  2004. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2005. <td colspan="2" style="text-align: center;">
  2006. </td>
  2007. </tr>
  2008. </table>
  2009. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_btnBuy&#39;)">
  2010. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl06$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(4,this.value);" /><br />
  2011. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl06$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 4);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_btnBuy" title="购买 HBL5006XV2T1G" class="buy-button" /><br />
  2012. <table cellspacing="0" border="0" style="width: 100%;">
  2013. <tr>
  2014. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2015. 最低:
  2016. </td>
  2017. <td style="padding-left: 2px; text-align: left;">
  2018. 1
  2019. </td>
  2020. </tr>
  2021. <tr>
  2022. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2023. 多个:
  2024. </td>
  2025. <td style="padding-left: 2px; text-align: left;">
  2026. 1
  2027. </td>
  2028. </tr>
  2029. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_trReel">
  2030. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2031. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(4,3000);">卷轴</a>:
  2032. </td>
  2033. <td style="padding-left: 2px; text-align: left;">
  2034. <em class="SearchResultsReel">
  2035. 3,000
  2036. </em>
  2037. </td>
  2038. </tr>
  2039. </table>
  2040. </div>
  2041. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  2042. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2043. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=dv8ZSX1jAvBBD75kUnfQEw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=dv8ZSX1jAvBBD75kUnfQEw%3d%3d" target="_blank">详细信息</a>
  2044. </div>
  2045. </td><td>7 V
  2046. </td><td>1.1 V
  2047. </td><td>
  2048. </td><td>40 mA
  2049. </td><td>SOD-523-2
  2050. </td><td>Reel
  2051. </td>
  2052. </tr><tr class="SearchResultsRowOdd" data-partnumber="863-NUD4700SNT1G" data-index="7">
  2053. <td class="td-select" align="center">
  2054. <div style="padding: 5px 5px 0 5px;">
  2055. <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>
  2056. </div>
  2057. </td><td><a href='/ProductDetail/ON-Semiconductor/NUD4700SNT1G/?qs=sGAEpiMZZMsYQtbqwpxHH%252bFTW7ztbxC23LR39zEAYbo%3d'><img title='ON Semiconductor NUD4700SNT1G' alt='ON Semiconductor NUD4700SNT1G' id=205006988 src='/images/onsemiconductor/sm/powermite.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/onsemiconductor/images/powermite.jpg</div></a></td><td>
  2058. <div style="text-align:left;">
  2059. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/ON-Semiconductor/NUD4700SNT1G/?qs=sGAEpiMZZMsYQtbqwpxHH%252bFTW7ztbxC23LR39zEAYbo%3d">863-NUD4700SNT1G</a><br />
  2060. <br />
  2061. <br />
  2062. 要购买完整 卷轴,请订购 3000 的倍数:
  2063. </div></td><td>
  2064. <div class="mfrDiv">
  2065. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/ON-Semiconductor/NUD4700SNT1G/?qs=sGAEpiMZZMsYQtbqwpxHH%252bFTW7ztbxC23LR39zEAYbo%3d">NUD4700SNT1G</a><br />
  2066. <br />
  2067. <div style="width: 100%; text-align: center;">
  2068. </div>
  2069. <div style="width: 100%; text-align: center;">
  2070. </div>
  2071. </div>
  2072. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../onsemiconductor">ON Semiconductor</a>
  2073. </td><td>LED保护设备 SCR Shunt
  2074. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2075. </div>
  2076. </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;ON Semiconductor&quot;,&quot;863-NUD4700SNT1G | NUD4700SNT1G&quot;]);" href="http://www.mouser.com/ds/2/308/NUD4700-D-100623.pdf" target="_blank">数据表</a>
  2077. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">50,528<br/>有库存</span>
  2078. <table>
  2079. <tr align="center">
  2080. <td style="padding-top: 5px">
  2081. </td>
  2082. </tr>
  2083. <tr align="center">
  2084. <td style="padding-top: 5px; padding-bottom: 5px">
  2085. </td>
  2086. </tr>
  2087. </table></td><td>
  2088. <table class="PriceBreaks" cellspacing="0" border="0">
  2089. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2090. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2091. </td>
  2092. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2093. </td>
  2094. </tr>
  2095. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2096. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2097. 剪切带
  2098. </td>
  2099. </tr>
  2100. <tr>
  2101. <td class="PriceBreakQuantity">
  2102. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  2103. </td>
  2104. <td class="PriceBreakPrice">
  2105. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥4.0833</span>
  2106. </td>
  2107. </tr>
  2108. <tr>
  2109. <td class="PriceBreakQuantity">
  2110. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  2111. </td>
  2112. <td class="PriceBreakPrice">
  2113. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3.0537</span>
  2114. </td>
  2115. </tr>
  2116. <tr>
  2117. <td class="PriceBreakQuantity">
  2118. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,100);">100:</a>
  2119. </td>
  2120. <td class="PriceBreakPrice">
  2121. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1.9305</span>
  2122. </td>
  2123. </tr>
  2124. <tr>
  2125. <td class="PriceBreakQuantity">
  2126. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,1000);">1,000:</a>
  2127. </td>
  2128. <td class="PriceBreakPrice">
  2129. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1.4391</span>
  2130. </td>
  2131. </tr>
  2132. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2133. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2134. 卷轴
  2135. </td>
  2136. </tr>
  2137. <tr>
  2138. <td class="PriceBreakQuantity">
  2139. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(5,3000);">3,000:</a>
  2140. </td>
  2141. <td class="PriceBreakPrice">
  2142. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥1.2285</span>
  2143. </td>
  2144. </tr>
  2145. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  2146. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2147. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(5,9000);">9,000:</a>
  2148. </td>
  2149. <td class="PriceBreakPrice">
  2150. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/ON-Semiconductor/NUD4700SNT1G/?qs=sGAEpiMZZMsYQtbqwpxHH%252bFTW7ztbxC23LR39zEAYbo%3d">查看</a>
  2151. </td>
  2152. </tr>
  2153. <tr>
  2154. <td><br /></td>
  2155. </tr>
  2156. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2157. <td colspan="2" style="text-align: center;">
  2158. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/ON-Semiconductor/NUD4700SNT1G/?qs=sGAEpiMZZMsYQtbqwpxHH%252bFTW7ztbxC23LR39zEAYbo%3d">MouseReel 提供服务支持</a>
  2159. </td>
  2160. </tr>
  2161. </table>
  2162. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_btnBuy&#39;)">
  2163. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(5,this.value);" /><br />
  2164. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 5);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_btnBuy" title="购买 NUD4700SNT1G" class="buy-button" /><br />
  2165. <table cellspacing="0" border="0" style="width: 100%;">
  2166. <tr>
  2167. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2168. 最低:
  2169. </td>
  2170. <td style="padding-left: 2px; text-align: left;">
  2171. 1
  2172. </td>
  2173. </tr>
  2174. <tr>
  2175. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2176. 多个:
  2177. </td>
  2178. <td style="padding-left: 2px; text-align: left;">
  2179. 1
  2180. </td>
  2181. </tr>
  2182. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_trReel">
  2183. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2184. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(5,3000);">卷轴</a>:
  2185. </td>
  2186. <td style="padding-left: 2px; text-align: left;">
  2187. <em class="SearchResultsReel">
  2188. 3,000
  2189. </em>
  2190. </td>
  2191. </tr>
  2192. </table>
  2193. </div>
  2194. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2195. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2196. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=dVIs1ERdx1oTQDasF0KYnQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=dVIs1ERdx1oTQDasF0KYnQ%3d%3d" target="_blank">详细信息</a>
  2197. </div>
  2198. </td><td>7.5 V
  2199. </td><td>1.2 V
  2200. </td><td>10 V
  2201. </td><td>12 mA
  2202. </td><td>
  2203. </td><td>Reel
  2204. </td>
  2205. </tr><tr class="SearchResultsRowEven" data-partnumber="576-PLED6M" data-index="8">
  2206. <td class="td-select" align="center">
  2207. <div style="padding: 5px 5px 0 5px;">
  2208. <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>
  2209. </div>
  2210. </td><td><a href='/ProductDetail/Littelfuse/PLED6M/?qs=sGAEpiMZZMsYQtbqwpxHH3WqtqlM5pkQN4mJhKpUrb8%3d'><img title='Littelfuse PLED6M' alt='Littelfuse PLED6M' id=803142470 src='/images/littelfuse/sm/PLED6M_HiRes.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/littelfuse/images/PLED6M_HiRes.jpg</div></a></td><td>
  2211. <div style="text-align:left;">
  2212. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED6M/?qs=sGAEpiMZZMsYQtbqwpxHH3WqtqlM5pkQN4mJhKpUrb8%3d">576-PLED6M</a><br />
  2213. <br />
  2214. <br />
  2215. 要购买完整 卷轴,请订购 3000 的倍数:
  2216. </div></td><td>
  2217. <div class="mfrDiv">
  2218. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED6M/?qs=sGAEpiMZZMsYQtbqwpxHH3WqtqlM5pkQN4mJhKpUrb8%3d">PLED6M</a><br />
  2219. <br />
  2220. <div style="width: 100%; text-align: center;">
  2221. </div>
  2222. <div style="width: 100%; text-align: center;">
  2223. </div>
  2224. </div>
  2225. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2226. </td><td>LED保护设备 LED PROTECTOR 6V
  2227. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2228. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfusepled/">了解更多</a>
  2229. </div>
  2230. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2231. </div>
  2232. </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;Littelfuse&quot;,&quot;576-PLED6M | PLED6M&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse-PLED6M-datasheet-201883.pdf" target="_blank">数据表</a>
  2233. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">53,663<br/>有库存</span>
  2234. <table>
  2235. <tr align="center">
  2236. <td style="padding-top: 5px">
  2237. </td>
  2238. </tr>
  2239. <tr align="center">
  2240. <td style="padding-top: 5px; padding-bottom: 5px">
  2241. </td>
  2242. </tr>
  2243. </table></td><td>
  2244. <table class="PriceBreaks" cellspacing="0" border="0">
  2245. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2246. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2247. </td>
  2248. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2249. </td>
  2250. </tr>
  2251. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2252. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2253. 剪切带
  2254. </td>
  2255. </tr>
  2256. <tr>
  2257. <td class="PriceBreakQuantity">
  2258. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  2259. </td>
  2260. <td class="PriceBreakPrice">
  2261. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥5.2416</span>
  2262. </td>
  2263. </tr>
  2264. <tr>
  2265. <td class="PriceBreakQuantity">
  2266. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  2267. </td>
  2268. <td class="PriceBreakPrice">
  2269. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3.8961</span>
  2270. </td>
  2271. </tr>
  2272. <tr>
  2273. <td class="PriceBreakQuantity">
  2274. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  2275. </td>
  2276. <td class="PriceBreakPrice">
  2277. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2.4453</span>
  2278. </td>
  2279. </tr>
  2280. <tr>
  2281. <td class="PriceBreakQuantity">
  2282. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,1000);">1,000:</a>
  2283. </td>
  2284. <td class="PriceBreakPrice">
  2285. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1.8837</span>
  2286. </td>
  2287. </tr>
  2288. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2289. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2290. 卷轴
  2291. </td>
  2292. </tr>
  2293. <tr>
  2294. <td class="PriceBreakQuantity">
  2295. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(6,3000);">3,000:</a>
  2296. </td>
  2297. <td class="PriceBreakPrice">
  2298. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥1.5678</span>
  2299. </td>
  2300. </tr>
  2301. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  2302. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2303. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(6,9000);">9,000:</a>
  2304. </td>
  2305. <td class="PriceBreakPrice">
  2306. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Littelfuse/PLED6M/?qs=sGAEpiMZZMsYQtbqwpxHH3WqtqlM5pkQN4mJhKpUrb8%3d">查看</a>
  2307. </td>
  2308. </tr>
  2309. <tr>
  2310. <td><br /></td>
  2311. </tr>
  2312. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2313. <td colspan="2" style="text-align: center;">
  2314. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED6M/?qs=sGAEpiMZZMsYQtbqwpxHH3WqtqlM5pkQN4mJhKpUrb8%3d">MouseReel 提供服务支持</a>
  2315. </td>
  2316. </tr>
  2317. </table>
  2318. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy&#39;)">
  2319. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(6,this.value);" /><br />
  2320. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 6);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy" title="购买 PLED6M" class="buy-button" /><br />
  2321. <table cellspacing="0" border="0" style="width: 100%;">
  2322. <tr>
  2323. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2324. 最低:
  2325. </td>
  2326. <td style="padding-left: 2px; text-align: left;">
  2327. 1
  2328. </td>
  2329. </tr>
  2330. <tr>
  2331. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2332. 多个:
  2333. </td>
  2334. <td style="padding-left: 2px; text-align: left;">
  2335. 1
  2336. </td>
  2337. </tr>
  2338. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_trReel">
  2339. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2340. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(6,3000);">卷轴</a>:
  2341. </td>
  2342. <td style="padding-left: 2px; text-align: left;">
  2343. <em class="SearchResultsReel">
  2344. 3,000
  2345. </em>
  2346. </td>
  2347. </tr>
  2348. </table>
  2349. </div>
  2350. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2351. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2352. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nNAQnQhuhkpGsKUcQXEc0Q%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=nNAQnQhuhkpGsKUcQXEc0Q%3d%3d" target="_blank">详细信息</a>
  2353. </div>
  2354. </td><td>7.5 V
  2355. </td><td>1.2 V
  2356. </td><td>7.5 V
  2357. </td><td>12 mA
  2358. </td><td>Powermite
  2359. </td><td>Reel
  2360. </td>
  2361. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-LSP10277S" data-index="9">
  2362. <td class="td-select" align="center">
  2363. <div style="padding: 5px 5px 0 5px;">
  2364. <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>
  2365. </div>
  2366. </td><td><a href='/ProductDetail/Littelfuse/LSP10277S/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6qgHho%252bA6FnJOuGpan9o0WFA%3d%3d'><img title='Littelfuse LSP10277S' alt='Littelfuse LSP10277S' id=1168118245 src='/images/littelfuse/sm/LSP05_LSP10_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/littelfuse/images/LSP05_LSP10_SPL.jpg</div></a></td><td>
  2367. <div style="text-align:left;">
  2368. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/LSP10277S/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6qgHho%252bA6FnJOuGpan9o0WFA%3d%3d">576-LSP10277S</a><br />
  2369. <br />
  2370. <br />
  2371. </div></td><td>
  2372. <div class="mfrDiv">
  2373. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/LSP10277S/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6qgHho%252bA6FnJOuGpan9o0WFA%3d%3d">LSP10277S</a><br />
  2374. <br />
  2375. <div style="width: 100%; text-align: center;">
  2376. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2377. </div>
  2378. <div style="width: 100%; text-align: center;">
  2379. </div>
  2380. </div>
  2381. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2382. </td><td>LED保护设备 277V 10kA IP66 Series
  2383. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2384. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfuse-lsp05-lsp10-modules/">了解更多</a>
  2385. </div>
  2386. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2387. </div>
  2388. </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;Littelfuse&quot;,&quot;576-LSP10277S | LSP10277S&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_Varistor_LSP10_Datasheet.pdf-464567.pdf" target="_blank">数据表</a>
  2389. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">273<br/>有库存</span>
  2390. <table>
  2391. <tr align="center">
  2392. <td style="padding-top: 5px">
  2393. </td>
  2394. </tr>
  2395. <tr align="center">
  2396. <td style="padding-top: 5px; padding-bottom: 5px">
  2397. </td>
  2398. </tr>
  2399. </table></td><td>
  2400. <table class="PriceBreaks" cellspacing="0" border="0">
  2401. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2402. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2403. </td>
  2404. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2405. </td>
  2406. </tr>
  2407. <tr>
  2408. <td class="PriceBreakQuantity">
  2409. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  2410. </td>
  2411. <td class="PriceBreakPrice">
  2412. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥158.1723</span>
  2413. </td>
  2414. </tr>
  2415. <tr>
  2416. <td class="PriceBreakQuantity">
  2417. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,50);">50:</a>
  2418. </td>
  2419. <td class="PriceBreakPrice">
  2420. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥152.2521</span>
  2421. </td>
  2422. </tr>
  2423. <tr>
  2424. <td class="PriceBreakQuantity">
  2425. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  2426. </td>
  2427. <td class="PriceBreakPrice">
  2428. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥123.9849</span>
  2429. </td>
  2430. </tr>
  2431. <tr>
  2432. <td class="PriceBreakQuantity">
  2433. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,500);">500:</a>
  2434. </td>
  2435. <td class="PriceBreakPrice">
  2436. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥117.9828</span>
  2437. </td>
  2438. </tr>
  2439. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2440. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2441. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,1000);">1,000:</a>
  2442. </td>
  2443. <td class="PriceBreakPrice">
  2444. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Littelfuse/LSP10277S/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6qgHho%252bA6FnJOuGpan9o0WFA%3d%3d">查看</a>
  2445. </td>
  2446. </tr>
  2447. <tr>
  2448. <td><br /></td>
  2449. </tr>
  2450. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2451. <td colspan="2" style="text-align: center;">
  2452. </td>
  2453. </tr>
  2454. </table>
  2455. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy&#39;)">
  2456. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(7,this.value);" /><br />
  2457. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 7);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy" title="购买 LSP10277S" class="buy-button" /><br />
  2458. <table cellspacing="0" border="0" style="width: 100%;">
  2459. <tr>
  2460. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2461. 最低:
  2462. </td>
  2463. <td style="padding-left: 2px; text-align: left;">
  2464. 1
  2465. </td>
  2466. </tr>
  2467. <tr>
  2468. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2469. 多个:
  2470. </td>
  2471. <td style="padding-left: 2px; text-align: left;">
  2472. 1
  2473. </td>
  2474. </tr>
  2475. </table>
  2476. </div>
  2477. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  2478. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2479. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=pMQ8w%252bbeX6MUWMXtnK0cKA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=pMQ8w%252bbeX6MUWMXtnK0cKA%3d%3d" target="_blank">详细信息</a>
  2480. </div>
  2481. </td><td>
  2482. </td><td>
  2483. </td><td>
  2484. </td><td>
  2485. </td><td>64 mm x 48 mm
  2486. </td><td>Bulk
  2487. </td>
  2488. </tr><tr class="SearchResultsRowEven" data-partnumber="576-LSP10277P" data-index="10">
  2489. <td class="td-select" align="center">
  2490. <div style="padding: 5px 5px 0 5px;">
  2491. <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>
  2492. </div>
  2493. </td><td><a href='/ProductDetail/Littelfuse/LSP10277P/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6q%2fiWqQWjnb8qQP2sE3%2fz4qQ%3d%3d'><img title='Littelfuse LSP10277P' alt='Littelfuse LSP10277P' id=1168118243 src='/images/littelfuse/sm/LSP05_LSP10_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/littelfuse/images/LSP05_LSP10_SPL.jpg</div></a></td><td>
  2494. <div style="text-align:left;">
  2495. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/LSP10277P/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6q%2fiWqQWjnb8qQP2sE3%2fz4qQ%3d%3d">576-LSP10277P</a><br />
  2496. <br />
  2497. <br />
  2498. </div></td><td>
  2499. <div class="mfrDiv">
  2500. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/LSP10277P/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6q%2fiWqQWjnb8qQP2sE3%2fz4qQ%3d%3d">LSP10277P</a><br />
  2501. <br />
  2502. <div style="width: 100%; text-align: center;">
  2503. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2504. </div>
  2505. <div style="width: 100%; text-align: center;">
  2506. </div>
  2507. </div>
  2508. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2509. </td><td>LED保护设备 277V 10kA IP66 PARALLEL
  2510. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2511. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfuse-lsp05-lsp10-modules/">了解更多</a>
  2512. </div>
  2513. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2514. </div>
  2515. </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;Littelfuse&quot;,&quot;576-LSP10277P | LSP10277P&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_Varistor_LSP10_Datasheet.pdf-464567.pdf" target="_blank">数据表</a>
  2516. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">121<br/>有库存</span>
  2517. <table>
  2518. <tr align="center">
  2519. <td style="padding-top: 5px">
  2520. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/Littelfuse/LSP10277P/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6q%2fiWqQWjnb8qQP2sE3%2fz4qQ%3d%3d">更多信息可用 </a>
  2521. </td>
  2522. </tr>
  2523. <tr align="center">
  2524. <td style="padding-top: 5px; padding-bottom: 5px">
  2525. </td>
  2526. </tr>
  2527. </table></td><td>
  2528. <table class="PriceBreaks" cellspacing="0" border="0">
  2529. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2530. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2531. </td>
  2532. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2533. </td>
  2534. </tr>
  2535. <tr>
  2536. <td class="PriceBreakQuantity">
  2537. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  2538. </td>
  2539. <td class="PriceBreakPrice">
  2540. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥163.4958</span>
  2541. </td>
  2542. </tr>
  2543. <tr>
  2544. <td class="PriceBreakQuantity">
  2545. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,10);">10:</a>
  2546. </td>
  2547. <td class="PriceBreakPrice">
  2548. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥148.6251</span>
  2549. </td>
  2550. </tr>
  2551. <tr>
  2552. <td class="PriceBreakQuantity">
  2553. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,25);">25:</a>
  2554. </td>
  2555. <td class="PriceBreakPrice">
  2556. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥140.9265</span>
  2557. </td>
  2558. </tr>
  2559. <tr>
  2560. <td class="PriceBreakQuantity">
  2561. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,50);">50:</a>
  2562. </td>
  2563. <td class="PriceBreakPrice">
  2564. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥135.3105</span>
  2565. </td>
  2566. </tr>
  2567. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2568. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2569. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(8,100);">100:</a>
  2570. </td>
  2571. <td class="PriceBreakPrice">
  2572. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Littelfuse/LSP10277P/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6q%2fiWqQWjnb8qQP2sE3%2fz4qQ%3d%3d">查看</a>
  2573. </td>
  2574. </tr>
  2575. <tr>
  2576. <td><br /></td>
  2577. </tr>
  2578. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2579. <td colspan="2" style="text-align: center;">
  2580. </td>
  2581. </tr>
  2582. </table>
  2583. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy&#39;)">
  2584. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(8,this.value);" /><br />
  2585. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 8);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy" title="购买 LSP10277P" class="buy-button" /><br />
  2586. <table cellspacing="0" border="0" style="width: 100%;">
  2587. <tr>
  2588. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2589. 最低:
  2590. </td>
  2591. <td style="padding-left: 2px; text-align: left;">
  2592. 1
  2593. </td>
  2594. </tr>
  2595. <tr>
  2596. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2597. 多个:
  2598. </td>
  2599. <td style="padding-left: 2px; text-align: left;">
  2600. 1
  2601. </td>
  2602. </tr>
  2603. </table>
  2604. </div>
  2605. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  2606. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2607. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=pMQ8w%252bbeX6Ot5L46PYd%252bKg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=pMQ8w%252bbeX6Ot5L46PYd%252bKg%3d%3d" target="_blank">详细信息</a>
  2608. </div>
  2609. </td><td>
  2610. </td><td>
  2611. </td><td>
  2612. </td><td>
  2613. </td><td>64 mm x 48 mm
  2614. </td><td>Bulk
  2615. </td>
  2616. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-PLED6S" 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/Littelfuse/PLED6S/?qs=sGAEpiMZZMsYQtbqwpxHHzWYRfWbTMFnx4X2i4PrxYY%3d'><img title='Littelfuse PLED6S' alt='Littelfuse PLED6S' id=296227423 src='/images/littelfuse/sm/pled.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/littelfuse/images/pled.jpg</div></a></td><td>
  2622. <div style="text-align:left;">
  2623. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED6S/?qs=sGAEpiMZZMsYQtbqwpxHHzWYRfWbTMFnx4X2i4PrxYY%3d">576-PLED6S</a><br />
  2624. <br />
  2625. <br />
  2626. 要购买完整 卷轴,请订购 2500 的倍数:
  2627. </div></td><td>
  2628. <div class="mfrDiv">
  2629. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED6S/?qs=sGAEpiMZZMsYQtbqwpxHHzWYRfWbTMFnx4X2i4PrxYY%3d">PLED6S</a><br />
  2630. <br />
  2631. <div style="width: 100%; text-align: center;">
  2632. </div>
  2633. <div style="width: 100%; text-align: center;">
  2634. </div>
  2635. </div>
  2636. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2637. </td><td>LED保护设备 LED PROTECTOR Bi 6V
  2638. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2639. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfusepled">了解更多</a>
  2640. </div>
  2641. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2642. </div>
  2643. </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;Littelfuse&quot;,&quot;576-PLED6S | PLED6S&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PLED6-58939.pdf" target="_blank">数据表</a>
  2644. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">5,509<br/>有库存</span>
  2645. <table>
  2646. <tr align="center">
  2647. <td style="padding-top: 5px">
  2648. </td>
  2649. </tr>
  2650. <tr align="center">
  2651. <td style="padding-top: 5px; padding-bottom: 5px">
  2652. </td>
  2653. </tr>
  2654. </table></td><td>
  2655. <table class="PriceBreaks" cellspacing="0" border="0">
  2656. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2657. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2658. </td>
  2659. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2660. </td>
  2661. </tr>
  2662. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2663. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2664. 剪切带
  2665. </td>
  2666. </tr>
  2667. <tr>
  2668. <td class="PriceBreakQuantity">
  2669. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  2670. </td>
  2671. <td class="PriceBreakPrice">
  2672. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥5.85</span>
  2673. </td>
  2674. </tr>
  2675. <tr>
  2676. <td class="PriceBreakQuantity">
  2677. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
  2678. </td>
  2679. <td class="PriceBreakPrice">
  2680. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥4.5396</span>
  2681. </td>
  2682. </tr>
  2683. <tr>
  2684. <td class="PriceBreakQuantity">
  2685. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,100);">100:</a>
  2686. </td>
  2687. <td class="PriceBreakPrice">
  2688. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2.9367</span>
  2689. </td>
  2690. </tr>
  2691. <tr>
  2692. <td class="PriceBreakQuantity">
  2693. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,1000);">1,000:</a>
  2694. </td>
  2695. <td class="PriceBreakPrice">
  2696. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.3517</span>
  2697. </td>
  2698. </tr>
  2699. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2700. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2701. 卷轴
  2702. </td>
  2703. </tr>
  2704. <tr>
  2705. <td class="PriceBreakQuantity">
  2706. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(9,2500);">2,500:</a>
  2707. </td>
  2708. <td class="PriceBreakPrice">
  2709. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥1.9305</span>
  2710. </td>
  2711. </tr>
  2712. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  2713. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2714. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(9,10000);">10,000:</a>
  2715. </td>
  2716. <td class="PriceBreakPrice">
  2717. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Littelfuse/PLED6S/?qs=sGAEpiMZZMsYQtbqwpxHHzWYRfWbTMFnx4X2i4PrxYY%3d">查看</a>
  2718. </td>
  2719. </tr>
  2720. <tr>
  2721. <td><br /></td>
  2722. </tr>
  2723. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2724. <td colspan="2" style="text-align: center;">
  2725. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED6S/?qs=sGAEpiMZZMsYQtbqwpxHHzWYRfWbTMFnx4X2i4PrxYY%3d">MouseReel 提供服务支持</a>
  2726. </td>
  2727. </tr>
  2728. </table>
  2729. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy&#39;)">
  2730. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(9,this.value);" /><br />
  2731. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 9);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy" title="购买 PLED6S" class="buy-button" /><br />
  2732. <table cellspacing="0" border="0" style="width: 100%;">
  2733. <tr>
  2734. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2735. 最低:
  2736. </td>
  2737. <td style="padding-left: 2px; text-align: left;">
  2738. 1
  2739. </td>
  2740. </tr>
  2741. <tr>
  2742. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2743. 多个:
  2744. </td>
  2745. <td style="padding-left: 2px; text-align: left;">
  2746. 1
  2747. </td>
  2748. </tr>
  2749. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_trReel">
  2750. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2751. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(9,2500);">卷轴</a>:
  2752. </td>
  2753. <td style="padding-left: 2px; text-align: left;">
  2754. <em class="SearchResultsReel">
  2755. 2,500
  2756. </em>
  2757. </td>
  2758. </tr>
  2759. </table>
  2760. </div>
  2761. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  2762. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2763. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=48idu%2fIJN4RGNQ6gXBtvZg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=48idu%2fIJN4RGNQ6gXBtvZg%3d%3d" target="_blank">详细信息</a>
  2764. </div>
  2765. </td><td>6 V
  2766. </td><td>1.5 V
  2767. </td><td>6 V
  2768. </td><td>5 mA
  2769. </td><td>DO-214AA (SMB)
  2770. </td><td>Reel
  2771. </td>
  2772. </tr><tr class="SearchResultsRowEven" data-partnumber="576-LSP10240S" data-index="12">
  2773. <td class="td-select" align="center">
  2774. <div style="padding: 5px 5px 0 5px;">
  2775. <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>
  2776. </div>
  2777. </td><td><a href='/ProductDetail/Littelfuse/LSP10240S/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6qFrc1gzRCFRKovXJTk4623g%3d%3d'><img title='Littelfuse LSP10240S' alt='Littelfuse LSP10240S' id=1168118241 src='/images/littelfuse/sm/LSP05_LSP10_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/littelfuse/images/LSP05_LSP10_SPL.jpg</div></a></td><td>
  2778. <div style="text-align:left;">
  2779. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/LSP10240S/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6qFrc1gzRCFRKovXJTk4623g%3d%3d">576-LSP10240S</a><br />
  2780. <br />
  2781. <br />
  2782. </div></td><td>
  2783. <div class="mfrDiv">
  2784. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/LSP10240S/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6qFrc1gzRCFRKovXJTk4623g%3d%3d">LSP10240S</a><br />
  2785. <br />
  2786. <div style="width: 100%; text-align: center;">
  2787. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2788. </div>
  2789. <div style="width: 100%; text-align: center;">
  2790. </div>
  2791. </div>
  2792. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2793. </td><td>LED保护设备 240V 10kA IP66 Series
  2794. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2795. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfuse-lsp05-lsp10-modules/">了解更多</a>
  2796. </div>
  2797. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2798. </div>
  2799. </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;Littelfuse&quot;,&quot;576-LSP10240S | LSP10240S&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_Varistor_LSP10_Datasheet.pdf-464567.pdf" target="_blank">数据表</a>
  2800. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">155<br/>有库存</span>
  2801. <table>
  2802. <tr align="center">
  2803. <td style="padding-top: 5px">
  2804. </td>
  2805. </tr>
  2806. <tr align="center">
  2807. <td style="padding-top: 5px; padding-bottom: 5px">
  2808. </td>
  2809. </tr>
  2810. </table></td><td>
  2811. <table class="PriceBreaks" cellspacing="0" border="0">
  2812. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2813. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2814. </td>
  2815. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2816. </td>
  2817. </tr>
  2818. <tr>
  2819. <td class="PriceBreakQuantity">
  2820. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  2821. </td>
  2822. <td class="PriceBreakPrice">
  2823. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥170.9604</span>
  2824. </td>
  2825. </tr>
  2826. <tr>
  2827. <td class="PriceBreakQuantity">
  2828. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,5);">5:</a>
  2829. </td>
  2830. <td class="PriceBreakPrice">
  2831. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥164.5722</span>
  2832. </td>
  2833. </tr>
  2834. <tr>
  2835. <td class="PriceBreakQuantity">
  2836. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  2837. </td>
  2838. <td class="PriceBreakPrice">
  2839. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥158.1723</span>
  2840. </td>
  2841. </tr>
  2842. <tr>
  2843. <td class="PriceBreakQuantity">
  2844. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  2845. </td>
  2846. <td class="PriceBreakPrice">
  2847. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥154.2528</span>
  2848. </td>
  2849. </tr>
  2850. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2851. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2852. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(10,50);">50:</a>
  2853. </td>
  2854. <td class="PriceBreakPrice">
  2855. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Littelfuse/LSP10240S/?qs=sGAEpiMZZMsYQtbqwpxHHxOJK%252bNIVN6qFrc1gzRCFRKovXJTk4623g%3d%3d">查看</a>
  2856. </td>
  2857. </tr>
  2858. <tr>
  2859. <td><br /></td>
  2860. </tr>
  2861. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2862. <td colspan="2" style="text-align: center;">
  2863. </td>
  2864. </tr>
  2865. </table>
  2866. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_btnBuy&#39;)">
  2867. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(10,this.value);" /><br />
  2868. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 10);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_btnBuy" title="购买 LSP10240S" class="buy-button" /><br />
  2869. <table cellspacing="0" border="0" style="width: 100%;">
  2870. <tr>
  2871. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2872. 最低:
  2873. </td>
  2874. <td style="padding-left: 2px; text-align: left;">
  2875. 1
  2876. </td>
  2877. </tr>
  2878. <tr>
  2879. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2880. 多个:
  2881. </td>
  2882. <td style="padding-left: 2px; text-align: left;">
  2883. 1
  2884. </td>
  2885. </tr>
  2886. </table>
  2887. </div>
  2888. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  2889. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2890. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=pMQ8w%252bbeX6PZx5Hr8Wv4cw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=pMQ8w%252bbeX6PZx5Hr8Wv4cw%3d%3d" target="_blank">详细信息</a>
  2891. </div>
  2892. </td><td>
  2893. </td><td>
  2894. </td><td>
  2895. </td><td>
  2896. </td><td>64 mm x 48 mm
  2897. </td><td>Bulk
  2898. </td>
  2899. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-PLED18Q12" data-index="13">
  2900. <td class="td-select" align="center">
  2901. <div style="padding: 5px 5px 0 5px;">
  2902. <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>
  2903. </div>
  2904. </td><td><a href='/ProductDetail/Littelfuse/PLED18Q12/?qs=sGAEpiMZZMsYQtbqwpxHH%252bku5EUdaMCXxNy23qGAoKE%3d'><img title='Littelfuse PLED18Q12' alt='Littelfuse PLED18Q12' id=442378133 src='/images/littelfuse/sm/PLED.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/littelfuse/images/PLED.jpg</div></a></td><td>
  2905. <div style="text-align:left;">
  2906. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED18Q12/?qs=sGAEpiMZZMsYQtbqwpxHH%252bku5EUdaMCXxNy23qGAoKE%3d">576-PLED18Q12</a><br />
  2907. <br />
  2908. <br />
  2909. 要购买完整 卷轴,请订购 5000 的倍数:
  2910. </div></td><td>
  2911. <div class="mfrDiv">
  2912. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED18Q12/?qs=sGAEpiMZZMsYQtbqwpxHH%252bku5EUdaMCXxNy23qGAoKE%3d">PLED18Q12</a><br />
  2913. <br />
  2914. <div style="width: 100%; text-align: center;">
  2915. </div>
  2916. <div style="width: 100%; text-align: center;">
  2917. </div>
  2918. </div>
  2919. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2920. </td><td>LED保护设备 LED PROTECTOR 18V 1000mA QFN 3x3
  2921. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2922. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfusepled">了解更多</a>
  2923. </div>
  2924. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2925. </div>
  2926. </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;Littelfuse&quot;,&quot;576-PLED18Q12 | PLED18Q12&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PLED6-58939.pdf" target="_blank">数据表</a>
  2927. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">15,000<br/>有库存</span>
  2928. <table>
  2929. <tr align="center">
  2930. <td style="padding-top: 5px">
  2931. </td>
  2932. </tr>
  2933. <tr align="center">
  2934. <td style="padding-top: 5px; padding-bottom: 5px">
  2935. </td>
  2936. </tr>
  2937. </table></td><td>
  2938. <table class="PriceBreaks" cellspacing="0" border="0">
  2939. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2940. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2941. </td>
  2942. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2943. </td>
  2944. </tr>
  2945. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2946. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2947. 剪切带
  2948. </td>
  2949. </tr>
  2950. <tr>
  2951. <td class="PriceBreakQuantity">
  2952. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  2953. </td>
  2954. <td class="PriceBreakPrice">
  2955. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥6.318</span>
  2956. </td>
  2957. </tr>
  2958. <tr>
  2959. <td class="PriceBreakQuantity">
  2960. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
  2961. </td>
  2962. <td class="PriceBreakPrice">
  2963. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥4.914</span>
  2964. </td>
  2965. </tr>
  2966. <tr>
  2967. <td class="PriceBreakQuantity">
  2968. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,100);">100:</a>
  2969. </td>
  2970. <td class="PriceBreakPrice">
  2971. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.1707</span>
  2972. </td>
  2973. </tr>
  2974. <tr>
  2975. <td class="PriceBreakQuantity">
  2976. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,1000);">1,000:</a>
  2977. </td>
  2978. <td class="PriceBreakPrice">
  2979. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.2932</span>
  2980. </td>
  2981. </tr>
  2982. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2983. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2984. 卷轴
  2985. </td>
  2986. </tr>
  2987. <tr>
  2988. <td class="PriceBreakQuantity">
  2989. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(11,5000);">5,000:</a>
  2990. </td>
  2991. <td class="PriceBreakPrice">
  2992. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.0826</span>
  2993. </td>
  2994. </tr>
  2995. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  2996. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2997. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(11,10000);">10,000:</a>
  2998. </td>
  2999. <td class="PriceBreakPrice">
  3000. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Littelfuse/PLED18Q12/?qs=sGAEpiMZZMsYQtbqwpxHH%252bku5EUdaMCXxNy23qGAoKE%3d">查看</a>
  3001. </td>
  3002. </tr>
  3003. <tr>
  3004. <td><br /></td>
  3005. </tr>
  3006. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3007. <td colspan="2" style="text-align: center;">
  3008. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED18Q12/?qs=sGAEpiMZZMsYQtbqwpxHH%252bku5EUdaMCXxNy23qGAoKE%3d">MouseReel 提供服务支持</a>
  3009. </td>
  3010. </tr>
  3011. </table>
  3012. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy&#39;)">
  3013. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(11,this.value);" /><br />
  3014. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 11);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy" title="购买 PLED18Q12" class="buy-button" /><br />
  3015. <table cellspacing="0" border="0" style="width: 100%;">
  3016. <tr>
  3017. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3018. 最低:
  3019. </td>
  3020. <td style="padding-left: 2px; text-align: left;">
  3021. 1
  3022. </td>
  3023. </tr>
  3024. <tr>
  3025. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3026. 多个:
  3027. </td>
  3028. <td style="padding-left: 2px; text-align: left;">
  3029. 1
  3030. </td>
  3031. </tr>
  3032. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_trReel">
  3033. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3034. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(11,5000);">卷轴</a>:
  3035. </td>
  3036. <td style="padding-left: 2px; text-align: left;">
  3037. <em class="SearchResultsReel">
  3038. 5,000
  3039. </em>
  3040. </td>
  3041. </tr>
  3042. </table>
  3043. </div>
  3044. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  3045. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3046. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=cZB%252bwoXpnI%2fxpXy4nbGNNQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=cZB%252bwoXpnI%2fxpXy4nbGNNQ%3d%3d" target="_blank">详细信息</a>
  3047. </div>
  3048. </td><td>18 V
  3049. </td><td>3 V
  3050. </td><td>18 V
  3051. </td><td>5 mA
  3052. </td><td>QFN
  3053. </td><td>Reel
  3054. </td>
  3055. </tr><tr class="SearchResultsRowEven" data-partnumber="576-PLED13S" data-index="14">
  3056. <td class="td-select" align="center">
  3057. <div style="padding: 5px 5px 0 5px;">
  3058. <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>
  3059. </div>
  3060. </td><td><a href='/ProductDetail/Littelfuse/PLED13S/?qs=sGAEpiMZZMsYQtbqwpxHH%252bVE8ulh3feHBX3w4V8AO3Q%3d'><img title='Littelfuse PLED13S' alt='Littelfuse PLED13S' id=356580076 src='/images/littelfuse/sm/pled.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/littelfuse/images/pled.jpg</div></a></td><td>
  3061. <div style="text-align:left;">
  3062. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED13S/?qs=sGAEpiMZZMsYQtbqwpxHH%252bVE8ulh3feHBX3w4V8AO3Q%3d">576-PLED13S</a><br />
  3063. <br />
  3064. <br />
  3065. 要购买完整 卷轴,请订购 2500 的倍数:
  3066. </div></td><td>
  3067. <div class="mfrDiv">
  3068. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED13S/?qs=sGAEpiMZZMsYQtbqwpxHH%252bVE8ulh3feHBX3w4V8AO3Q%3d">PLED13S</a><br />
  3069. <br />
  3070. <div style="width: 100%; text-align: center;">
  3071. </div>
  3072. <div style="width: 100%; text-align: center;">
  3073. </div>
  3074. </div>
  3075. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  3076. </td><td>LED保护设备 LED PROTECTOR Bi 13V DO214 2L RoHS
  3077. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3078. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfusepled">了解更多</a>
  3079. </div>
  3080. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3081. </div>
  3082. </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;Littelfuse&quot;,&quot;576-PLED13S | PLED13S&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PLED6-58939.pdf" target="_blank">数据表</a>
  3083. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">6,449<br/>有库存</span>
  3084. <table>
  3085. <tr align="center">
  3086. <td style="padding-top: 5px">
  3087. </td>
  3088. </tr>
  3089. <tr align="center">
  3090. <td style="padding-top: 5px; padding-bottom: 5px">
  3091. </td>
  3092. </tr>
  3093. </table></td><td>
  3094. <table class="PriceBreaks" cellspacing="0" border="0">
  3095. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3096. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3097. </td>
  3098. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3099. </td>
  3100. </tr>
  3101. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3102. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3103. 剪切带
  3104. </td>
  3105. </tr>
  3106. <tr>
  3107. <td class="PriceBreakQuantity">
  3108. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  3109. </td>
  3110. <td class="PriceBreakPrice">
  3111. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥5.85</span>
  3112. </td>
  3113. </tr>
  3114. <tr>
  3115. <td class="PriceBreakQuantity">
  3116. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,10);">10:</a>
  3117. </td>
  3118. <td class="PriceBreakPrice">
  3119. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥4.5396</span>
  3120. </td>
  3121. </tr>
  3122. <tr>
  3123. <td class="PriceBreakQuantity">
  3124. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  3125. </td>
  3126. <td class="PriceBreakPrice">
  3127. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2.9367</span>
  3128. </td>
  3129. </tr>
  3130. <tr>
  3131. <td class="PriceBreakQuantity">
  3132. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,1000);">1,000:</a>
  3133. </td>
  3134. <td class="PriceBreakPrice">
  3135. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.3517</span>
  3136. </td>
  3137. </tr>
  3138. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3139. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3140. 卷轴
  3141. </td>
  3142. </tr>
  3143. <tr>
  3144. <td class="PriceBreakQuantity">
  3145. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(12,2500);">2,500:</a>
  3146. </td>
  3147. <td class="PriceBreakPrice">
  3148. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥1.9305</span>
  3149. </td>
  3150. </tr>
  3151. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  3152. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3153. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,10000);">10,000:</a>
  3154. </td>
  3155. <td class="PriceBreakPrice">
  3156. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Littelfuse/PLED13S/?qs=sGAEpiMZZMsYQtbqwpxHH%252bVE8ulh3feHBX3w4V8AO3Q%3d">查看</a>
  3157. </td>
  3158. </tr>
  3159. <tr>
  3160. <td><br /></td>
  3161. </tr>
  3162. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3163. <td colspan="2" style="text-align: center;">
  3164. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED13S/?qs=sGAEpiMZZMsYQtbqwpxHH%252bVE8ulh3feHBX3w4V8AO3Q%3d">MouseReel 提供服务支持</a>
  3165. </td>
  3166. </tr>
  3167. </table>
  3168. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy&#39;)">
  3169. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(12,this.value);" /><br />
  3170. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 12);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy" title="购买 PLED13S" class="buy-button" /><br />
  3171. <table cellspacing="0" border="0" style="width: 100%;">
  3172. <tr>
  3173. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3174. 最低:
  3175. </td>
  3176. <td style="padding-left: 2px; text-align: left;">
  3177. 1
  3178. </td>
  3179. </tr>
  3180. <tr>
  3181. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3182. 多个:
  3183. </td>
  3184. <td style="padding-left: 2px; text-align: left;">
  3185. 1
  3186. </td>
  3187. </tr>
  3188. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_trReel">
  3189. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3190. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(12,2500);">卷轴</a>:
  3191. </td>
  3192. <td style="padding-left: 2px; text-align: left;">
  3193. <em class="SearchResultsReel">
  3194. 2,500
  3195. </em>
  3196. </td>
  3197. </tr>
  3198. </table>
  3199. </div>
  3200. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  3201. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3202. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Hii4GFw9iOmrt%252bv4gxTtqQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=Hii4GFw9iOmrt%252bv4gxTtqQ%3d%3d" target="_blank">详细信息</a>
  3203. </div>
  3204. </td><td>13 V
  3205. </td><td>3 V
  3206. </td><td>13 V
  3207. </td><td>5 mA
  3208. </td><td>DO-214AA (SMB)
  3209. </td><td>Reel
  3210. </td>
  3211. </tr><tr class="SearchResultsRowOdd" data-partnumber="652-LSP1300BJR-S" data-index="15">
  3212. <td class="td-select" align="center">
  3213. <div style="padding: 5px 5px 0 5px;">
  3214. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$chkSelect" onclick="javascript:RowSelected(15, this.checked);" /></span>
  3215. </div>
  3216. </td><td><a href='/ProductDetail/Bourns/LSP1300BJR-S/?qs=sGAEpiMZZMsYQtbqwpxHH9cnO%2fohTJSy7A8NmCejG0s%3d'><img title='Bourns LSP1300BJR-S' alt='Bourns LSP1300BJR-S' id=513442775 src='/images/mouserimages/sm/DO_214_AA_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/DO_214_AA_t.jpg</div></a></td><td>
  3217. <div style="text-align:left;">
  3218. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/LSP1300BJR-S/?qs=sGAEpiMZZMsYQtbqwpxHH9cnO%2fohTJSy7A8NmCejG0s%3d">652-LSP1300BJR-S</a><br />
  3219. <br />
  3220. <br />
  3221. 要购买完整 卷轴,请订购 3000 的倍数:
  3222. </div></td><td>
  3223. <div class="mfrDiv">
  3224. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/LSP1300BJR-S/?qs=sGAEpiMZZMsYQtbqwpxHH9cnO%2fohTJSy7A8NmCejG0s%3d">LSP1300BJR-S</a><br />
  3225. <br />
  3226. <div style="width: 100%; text-align: center;">
  3227. </div>
  3228. <div style="width: 100%; text-align: center;">
  3229. </div>
  3230. </div>
  3231. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  3232. </td><td>LED保护设备 LED Shunt Protector 13volts 3 LEDs
  3233. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3234. </div>
  3235. </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;Bourns&quot;,&quot;652-LSP1300BJR-S | LSP1300BJR-S&quot;]);" href="http://www.mouser.com/ds/2/54/SP-777430.pdf" target="_blank">数据表</a>
  3236. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">11,670<br/>有库存</span>
  3237. <table>
  3238. <tr align="center">
  3239. <td style="padding-top: 5px">
  3240. </td>
  3241. </tr>
  3242. <tr align="center">
  3243. <td style="padding-top: 5px; padding-bottom: 5px">
  3244. </td>
  3245. </tr>
  3246. </table></td><td>
  3247. <table class="PriceBreaks" cellspacing="0" border="0">
  3248. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3249. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3250. </td>
  3251. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3252. </td>
  3253. </tr>
  3254. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3255. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3256. 剪切带
  3257. </td>
  3258. </tr>
  3259. <tr>
  3260. <td class="PriceBreakQuantity">
  3261. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  3262. </td>
  3263. <td class="PriceBreakPrice">
  3264. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥7.0902</span>
  3265. </td>
  3266. </tr>
  3267. <tr>
  3268. <td class="PriceBreakQuantity">
  3269. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  3270. </td>
  3271. <td class="PriceBreakPrice">
  3272. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.5107</span>
  3273. </td>
  3274. </tr>
  3275. <tr>
  3276. <td class="PriceBreakQuantity">
  3277. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  3278. </td>
  3279. <td class="PriceBreakPrice">
  3280. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.5568</span>
  3281. </td>
  3282. </tr>
  3283. <tr>
  3284. <td class="PriceBreakQuantity">
  3285. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,1000);">1,000:</a>
  3286. </td>
  3287. <td class="PriceBreakPrice">
  3288. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.8548</span>
  3289. </td>
  3290. </tr>
  3291. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3292. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3293. 卷轴
  3294. </td>
  3295. </tr>
  3296. <tr>
  3297. <td class="PriceBreakQuantity">
  3298. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(13,3000);">3,000:</a>
  3299. </td>
  3300. <td class="PriceBreakPrice">
  3301. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.3283</span>
  3302. </td>
  3303. </tr>
  3304. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  3305. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3306. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(13,24000);">24,000:</a>
  3307. </td>
  3308. <td class="PriceBreakPrice">
  3309. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Bourns/LSP1300BJR-S/?qs=sGAEpiMZZMsYQtbqwpxHH9cnO%2fohTJSy7A8NmCejG0s%3d">查看</a>
  3310. </td>
  3311. </tr>
  3312. <tr>
  3313. <td><br /></td>
  3314. </tr>
  3315. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3316. <td colspan="2" style="text-align: center;">
  3317. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/LSP1300BJR-S/?qs=sGAEpiMZZMsYQtbqwpxHH9cnO%2fohTJSy7A8NmCejG0s%3d">MouseReel 提供服务支持</a>
  3318. </td>
  3319. </tr>
  3320. </table>
  3321. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy&#39;)">
  3322. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(13,this.value);" /><br />
  3323. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 13);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy" title="购买 LSP1300BJR-S" class="buy-button" /><br />
  3324. <table cellspacing="0" border="0" style="width: 100%;">
  3325. <tr>
  3326. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3327. 最低:
  3328. </td>
  3329. <td style="padding-left: 2px; text-align: left;">
  3330. 1
  3331. </td>
  3332. </tr>
  3333. <tr>
  3334. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3335. 多个:
  3336. </td>
  3337. <td style="padding-left: 2px; text-align: left;">
  3338. 1
  3339. </td>
  3340. </tr>
  3341. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_trReel">
  3342. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3343. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(13,3000);">卷轴</a>:
  3344. </td>
  3345. <td style="padding-left: 2px; text-align: left;">
  3346. <em class="SearchResultsReel">
  3347. 3,000
  3348. </em>
  3349. </td>
  3350. </tr>
  3351. </table>
  3352. </div>
  3353. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  3354. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3355. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Z7qkYvvDTE4FPCNy7Gy5CQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=Z7qkYvvDTE4FPCNy7Gy5CQ%3d%3d" target="_blank">详细信息</a>
  3356. </div>
  3357. </td><td>
  3358. </td><td>1.2 V
  3359. </td><td>13 V
  3360. </td><td>30 mA
  3361. </td><td>DO-214AA-2
  3362. </td><td>Reel
  3363. </td>
  3364. </tr><tr class="SearchResultsRowEven" data-partnumber="652-LSP1800AJR-S" data-index="16">
  3365. <td class="td-select" align="center">
  3366. <div style="padding: 5px 5px 0 5px;">
  3367. <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>
  3368. </div>
  3369. </td><td><a href='/ProductDetail/Bourns/LSP1800AJR-S/?qs=sGAEpiMZZMsYQtbqwpxHHzOM%2fm9pGDUhJ9zVwt9LxJ4%3d'><img title='Bourns LSP1800AJR-S' alt='Bourns LSP1800AJR-S' id=652831804 src='/images/mouserimages/sm/DO_214_AA_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/DO_214_AA_t.jpg</div></a></td><td>
  3370. <div style="text-align:left;">
  3371. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/LSP1800AJR-S/?qs=sGAEpiMZZMsYQtbqwpxHHzOM%2fm9pGDUhJ9zVwt9LxJ4%3d">652-LSP1800AJR-S</a><br />
  3372. <br />
  3373. <br />
  3374. 要购买完整 卷轴,请订购 5000 的倍数:
  3375. </div></td><td>
  3376. <div class="mfrDiv">
  3377. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/LSP1800AJR-S/?qs=sGAEpiMZZMsYQtbqwpxHHzOM%2fm9pGDUhJ9zVwt9LxJ4%3d">LSP1800AJR-S</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_ctl16_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  3385. </td><td>LED保护设备 18volts
  3386. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3387. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../bournsLSPxxxxAJR/">了解更多</a>
  3388. </div>
  3389. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3390. </div>
  3391. </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;Bourns&quot;,&quot;652-LSP1800AJR-S | LSP1800AJR-S&quot;]);" href="http://www.mouser.com/ds/2/54/SP-777430.pdf" target="_blank">数据表</a>
  3392. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">4,709<br/>有库存</span>
  3393. <table>
  3394. <tr align="center">
  3395. <td style="padding-top: 5px">
  3396. </td>
  3397. </tr>
  3398. <tr align="center">
  3399. <td style="padding-top: 5px; padding-bottom: 5px">
  3400. </td>
  3401. </tr>
  3402. </table></td><td>
  3403. <table class="PriceBreaks" cellspacing="0" border="0">
  3404. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3405. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3406. </td>
  3407. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3408. </td>
  3409. </tr>
  3410. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3411. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3412. 剪切带
  3413. </td>
  3414. </tr>
  3415. <tr>
  3416. <td class="PriceBreakQuantity">
  3417. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  3418. </td>
  3419. <td class="PriceBreakPrice">
  3420. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥7.0083</span>
  3421. </td>
  3422. </tr>
  3423. <tr>
  3424. <td class="PriceBreakQuantity">
  3425. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,10);">10:</a>
  3426. </td>
  3427. <td class="PriceBreakPrice">
  3428. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.4054</span>
  3429. </td>
  3430. </tr>
  3431. <tr>
  3432. <td class="PriceBreakQuantity">
  3433. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
  3434. </td>
  3435. <td class="PriceBreakPrice">
  3436. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.4983</span>
  3437. </td>
  3438. </tr>
  3439. <tr>
  3440. <td class="PriceBreakQuantity">
  3441. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,1000);">1,000:</a>
  3442. </td>
  3443. <td class="PriceBreakPrice">
  3444. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.7963</span>
  3445. </td>
  3446. </tr>
  3447. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3448. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3449. 卷轴
  3450. </td>
  3451. </tr>
  3452. <tr>
  3453. <td class="PriceBreakQuantity">
  3454. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(14,5000);">5,000:</a>
  3455. </td>
  3456. <td class="PriceBreakPrice">
  3457. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.2815</span>
  3458. </td>
  3459. </tr>
  3460. <tr>
  3461. <td class="PriceBreakQuantity">
  3462. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(14,10000);">10,000:</a>
  3463. </td>
  3464. <td class="PriceBreakPrice">
  3465. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/LSP1800AJR-S/?qs=sGAEpiMZZMsYQtbqwpxHHzOM%2fm9pGDUhJ9zVwt9LxJ4%3d' >查看</a></span>
  3466. </td>
  3467. </tr>
  3468. <tr>
  3469. <td><br /></td>
  3470. </tr>
  3471. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3472. <td colspan="2" style="text-align: center;">
  3473. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/LSP1800AJR-S/?qs=sGAEpiMZZMsYQtbqwpxHHzOM%2fm9pGDUhJ9zVwt9LxJ4%3d">MouseReel 提供服务支持</a>
  3474. </td>
  3475. </tr>
  3476. </table>
  3477. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy&#39;)">
  3478. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(14,this.value);" /><br />
  3479. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 14);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy" title="购买 LSP1800AJR-S" class="buy-button" /><br />
  3480. <table cellspacing="0" border="0" style="width: 100%;">
  3481. <tr>
  3482. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3483. 最低:
  3484. </td>
  3485. <td style="padding-left: 2px; text-align: left;">
  3486. 1
  3487. </td>
  3488. </tr>
  3489. <tr>
  3490. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3491. 多个:
  3492. </td>
  3493. <td style="padding-left: 2px; text-align: left;">
  3494. 1
  3495. </td>
  3496. </tr>
  3497. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_trReel">
  3498. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3499. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(14,5000);">卷轴</a>:
  3500. </td>
  3501. <td style="padding-left: 2px; text-align: left;">
  3502. <em class="SearchResultsReel">
  3503. 5,000
  3504. </em>
  3505. </td>
  3506. </tr>
  3507. </table>
  3508. </div>
  3509. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  3510. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3511. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=CO88iVfZK2L22TkywpU9gw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=CO88iVfZK2L22TkywpU9gw%3d%3d" target="_blank">详细信息</a>
  3512. </div>
  3513. </td><td>
  3514. </td><td>1.2 V
  3515. </td><td>18 V
  3516. </td><td>30 mA
  3517. </td><td>DO-214AA-2
  3518. </td><td>Reel
  3519. </td>
  3520. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-PLED9Q12" data-index="17">
  3521. <td class="td-select" align="center">
  3522. <div style="padding: 5px 5px 0 5px;">
  3523. <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>
  3524. </div>
  3525. </td><td><a href='/ProductDetail/Littelfuse/PLED9Q12/?qs=sGAEpiMZZMsYQtbqwpxHH4PzaXxSaBqTKDzHaQaOaKo%3d'><img title='Littelfuse PLED9Q12' alt='Littelfuse PLED9Q12' id=359935215 src='/images/littelfuse/sm/pled.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/littelfuse/images/pled.jpg</div></a></td><td>
  3526. <div style="text-align:left;">
  3527. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED9Q12/?qs=sGAEpiMZZMsYQtbqwpxHH4PzaXxSaBqTKDzHaQaOaKo%3d">576-PLED9Q12</a><br />
  3528. <br />
  3529. <br />
  3530. 要购买完整 卷轴,请订购 5000 的倍数:
  3531. </div></td><td>
  3532. <div class="mfrDiv">
  3533. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED9Q12/?qs=sGAEpiMZZMsYQtbqwpxHH4PzaXxSaBqTKDzHaQaOaKo%3d">PLED9Q12</a><br />
  3534. <br />
  3535. <div style="width: 100%; text-align: center;">
  3536. </div>
  3537. <div style="width: 100%; text-align: center;">
  3538. </div>
  3539. </div>
  3540. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  3541. </td><td>LED保护设备 LED PROTECTOR Bi 9V QFN 3X3 2L RoHS
  3542. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3543. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfusepled">了解更多</a>
  3544. </div>
  3545. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3546. </div>
  3547. </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;Littelfuse&quot;,&quot;576-PLED9Q12 | PLED9Q12&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PLED6-58939.pdf" target="_blank">数据表</a>
  3548. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">10,000<br/>有库存</span>
  3549. <table>
  3550. <tr align="center">
  3551. <td style="padding-top: 5px">
  3552. </td>
  3553. </tr>
  3554. <tr align="center">
  3555. <td style="padding-top: 5px; padding-bottom: 5px">
  3556. </td>
  3557. </tr>
  3558. </table></td><td>
  3559. <table class="PriceBreaks" cellspacing="0" border="0">
  3560. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3561. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3562. </td>
  3563. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3564. </td>
  3565. </tr>
  3566. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3567. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3568. 剪切带
  3569. </td>
  3570. </tr>
  3571. <tr>
  3572. <td class="PriceBreakQuantity">
  3573. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  3574. </td>
  3575. <td class="PriceBreakPrice">
  3576. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥6.318</span>
  3577. </td>
  3578. </tr>
  3579. <tr>
  3580. <td class="PriceBreakQuantity">
  3581. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,10);">10:</a>
  3582. </td>
  3583. <td class="PriceBreakPrice">
  3584. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥4.914</span>
  3585. </td>
  3586. </tr>
  3587. <tr>
  3588. <td class="PriceBreakQuantity">
  3589. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,100);">100:</a>
  3590. </td>
  3591. <td class="PriceBreakPrice">
  3592. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.1707</span>
  3593. </td>
  3594. </tr>
  3595. <tr>
  3596. <td class="PriceBreakQuantity">
  3597. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,1000);">1,000:</a>
  3598. </td>
  3599. <td class="PriceBreakPrice">
  3600. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.2932</span>
  3601. </td>
  3602. </tr>
  3603. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3604. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3605. 卷轴
  3606. </td>
  3607. </tr>
  3608. <tr>
  3609. <td class="PriceBreakQuantity">
  3610. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(15,5000);">5,000:</a>
  3611. </td>
  3612. <td class="PriceBreakPrice">
  3613. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.0826</span>
  3614. </td>
  3615. </tr>
  3616. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  3617. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3618. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(15,10000);">10,000:</a>
  3619. </td>
  3620. <td class="PriceBreakPrice">
  3621. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Littelfuse/PLED9Q12/?qs=sGAEpiMZZMsYQtbqwpxHH4PzaXxSaBqTKDzHaQaOaKo%3d">查看</a>
  3622. </td>
  3623. </tr>
  3624. <tr>
  3625. <td><br /></td>
  3626. </tr>
  3627. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3628. <td colspan="2" style="text-align: center;">
  3629. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED9Q12/?qs=sGAEpiMZZMsYQtbqwpxHH4PzaXxSaBqTKDzHaQaOaKo%3d">MouseReel 提供服务支持</a>
  3630. </td>
  3631. </tr>
  3632. </table>
  3633. </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;)">
  3634. <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 />
  3635. <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="购买 PLED9Q12" class="buy-button" /><br />
  3636. <table cellspacing="0" border="0" style="width: 100%;">
  3637. <tr>
  3638. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3639. 最低:
  3640. </td>
  3641. <td style="padding-left: 2px; text-align: left;">
  3642. 1
  3643. </td>
  3644. </tr>
  3645. <tr>
  3646. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3647. 多个:
  3648. </td>
  3649. <td style="padding-left: 2px; text-align: left;">
  3650. 1
  3651. </td>
  3652. </tr>
  3653. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_trReel">
  3654. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3655. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(15,5000);">卷轴</a>:
  3656. </td>
  3657. <td style="padding-left: 2px; text-align: left;">
  3658. <em class="SearchResultsReel">
  3659. 5,000
  3660. </em>
  3661. </td>
  3662. </tr>
  3663. </table>
  3664. </div>
  3665. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  3666. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3667. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=8l7MuloVI74N712tozP2DQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=8l7MuloVI74N712tozP2DQ%3d%3d" target="_blank">详细信息</a>
  3668. </div>
  3669. </td><td>9 V
  3670. </td><td>3 V
  3671. </td><td>9 V
  3672. </td><td>5 mA
  3673. </td><td>QFN
  3674. </td><td>Reel
  3675. </td>
  3676. </tr><tr class="SearchResultsRowEven" data-partnumber="652-LSP0900BJR-S" data-index="18">
  3677. <td class="td-select" align="center">
  3678. <div style="padding: 5px 5px 0 5px;">
  3679. <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>
  3680. </div>
  3681. </td><td><a href='/ProductDetail/Bourns/LSP0900BJR-S/?qs=sGAEpiMZZMsYQtbqwpxHH9cnO%2fohTJSyzFlWNv3L%252bgE%3d'><img title='Bourns LSP0900BJR-S' alt='Bourns LSP0900BJR-S' id=513442771 src='/images/mouserimages/sm/DO_214_AA_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/DO_214_AA_t.jpg</div></a></td><td>
  3682. <div style="text-align:left;">
  3683. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/LSP0900BJR-S/?qs=sGAEpiMZZMsYQtbqwpxHH9cnO%2fohTJSyzFlWNv3L%252bgE%3d">652-LSP0900BJR-S</a><br />
  3684. <br />
  3685. <br />
  3686. 要购买完整 卷轴,请订购 3000 的倍数:
  3687. </div></td><td>
  3688. <div class="mfrDiv">
  3689. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/LSP0900BJR-S/?qs=sGAEpiMZZMsYQtbqwpxHH9cnO%2fohTJSyzFlWNv3L%252bgE%3d">LSP0900BJR-S</a><br />
  3690. <br />
  3691. <div style="width: 100%; text-align: center;">
  3692. </div>
  3693. <div style="width: 100%; text-align: center;">
  3694. </div>
  3695. </div>
  3696. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  3697. </td><td>LED保护设备 LED Shunt Protector 9volts 2 LEDs
  3698. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3699. </div>
  3700. </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;Bourns&quot;,&quot;652-LSP0900BJR-S | LSP0900BJR-S&quot;]);" href="http://www.mouser.com/ds/2/54/SP-777430.pdf" target="_blank">数据表</a>
  3701. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">11,995<br/>有库存</span>
  3702. <table>
  3703. <tr align="center">
  3704. <td style="padding-top: 5px">
  3705. </td>
  3706. </tr>
  3707. <tr align="center">
  3708. <td style="padding-top: 5px; padding-bottom: 5px">
  3709. </td>
  3710. </tr>
  3711. </table></td><td>
  3712. <table class="PriceBreaks" cellspacing="0" border="0">
  3713. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3714. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3715. </td>
  3716. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3717. </td>
  3718. </tr>
  3719. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3720. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3721. 剪切带
  3722. </td>
  3723. </tr>
  3724. <tr>
  3725. <td class="PriceBreakQuantity">
  3726. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  3727. </td>
  3728. <td class="PriceBreakPrice">
  3729. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥6.8562</span>
  3730. </td>
  3731. </tr>
  3732. <tr>
  3733. <td class="PriceBreakQuantity">
  3734. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  3735. </td>
  3736. <td class="PriceBreakPrice">
  3737. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.2884</span>
  3738. </td>
  3739. </tr>
  3740. <tr>
  3741. <td class="PriceBreakQuantity">
  3742. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,100);">100:</a>
  3743. </td>
  3744. <td class="PriceBreakPrice">
  3745. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.4164</span>
  3746. </td>
  3747. </tr>
  3748. <tr>
  3749. <td class="PriceBreakQuantity">
  3750. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,1000);">1,000:</a>
  3751. </td>
  3752. <td class="PriceBreakPrice">
  3753. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.7378</span>
  3754. </td>
  3755. </tr>
  3756. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3757. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3758. 卷轴
  3759. </td>
  3760. </tr>
  3761. <tr>
  3762. <td class="PriceBreakQuantity">
  3763. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(16,3000);">3,000:</a>
  3764. </td>
  3765. <td class="PriceBreakPrice">
  3766. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.2464</span>
  3767. </td>
  3768. </tr>
  3769. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  3770. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3771. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(16,9000);">9,000:</a>
  3772. </td>
  3773. <td class="PriceBreakPrice">
  3774. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Bourns/LSP0900BJR-S/?qs=sGAEpiMZZMsYQtbqwpxHH9cnO%2fohTJSyzFlWNv3L%252bgE%3d">查看</a>
  3775. </td>
  3776. </tr>
  3777. <tr>
  3778. <td><br /></td>
  3779. </tr>
  3780. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3781. <td colspan="2" style="text-align: center;">
  3782. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/LSP0900BJR-S/?qs=sGAEpiMZZMsYQtbqwpxHH9cnO%2fohTJSyzFlWNv3L%252bgE%3d">MouseReel 提供服务支持</a>
  3783. </td>
  3784. </tr>
  3785. </table>
  3786. </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;)">
  3787. <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 />
  3788. <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="购买 LSP0900BJR-S" class="buy-button" /><br />
  3789. <table cellspacing="0" border="0" style="width: 100%;">
  3790. <tr>
  3791. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3792. 最低:
  3793. </td>
  3794. <td style="padding-left: 2px; text-align: left;">
  3795. 1
  3796. </td>
  3797. </tr>
  3798. <tr>
  3799. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3800. 多个:
  3801. </td>
  3802. <td style="padding-left: 2px; text-align: left;">
  3803. 1
  3804. </td>
  3805. </tr>
  3806. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_trReel">
  3807. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3808. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(16,3000);">卷轴</a>:
  3809. </td>
  3810. <td style="padding-left: 2px; text-align: left;">
  3811. <em class="SearchResultsReel">
  3812. 3,000
  3813. </em>
  3814. </td>
  3815. </tr>
  3816. </table>
  3817. </div>
  3818. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  3819. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3820. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Z7qkYvvDTE76WcI68q3SxQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=Z7qkYvvDTE76WcI68q3SxQ%3d%3d" target="_blank">详细信息</a>
  3821. </div>
  3822. </td><td>
  3823. </td><td>1.2 V
  3824. </td><td>9 V
  3825. </td><td>30 mA
  3826. </td><td>DO-214AA-2
  3827. </td><td>Reel
  3828. </td>
  3829. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-PLED18SW" data-index="19">
  3830. <td class="td-select" align="center">
  3831. <div style="padding: 5px 5px 0 5px;">
  3832. <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>
  3833. </div>
  3834. </td><td><a href='/ProductDetail/Littelfuse/PLED18SW/?qs=sGAEpiMZZMsYQtbqwpxHHw%252bg3jzZ%2f0WVpP%2fXykbMOhI%3d'><img title='Littelfuse PLED18SW' alt='Littelfuse PLED18SW' id=977615207 src='/images/littelfuse/sm/PLED_SW.jpg' /></a></td><td>
  3835. <div style="text-align:left;">
  3836. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED18SW/?qs=sGAEpiMZZMsYQtbqwpxHHw%252bg3jzZ%2f0WVpP%2fXykbMOhI%3d">576-PLED18SW</a><br />
  3837. <br />
  3838. <br />
  3839. 要购买完整 卷轴,请订购 2500 的倍数:
  3840. </div></td><td>
  3841. <div class="mfrDiv">
  3842. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED18SW/?qs=sGAEpiMZZMsYQtbqwpxHHw%252bg3jzZ%2f0WVpP%2fXykbMOhI%3d">PLED18SW</a><br />
  3843. <br />
  3844. <div style="width: 100%; text-align: center;">
  3845. </div>
  3846. <div style="width: 100%; text-align: center;">
  3847. </div>
  3848. </div>
  3849. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  3850. </td><td>LED保护设备 5A 18V WHT Body LED Protectors
  3851. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3852. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Littelfuse-PLEDxSW-LED-Protectors/">了解更多</a>
  3853. </div>
  3854. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3855. </div>
  3856. </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;Littelfuse&quot;,&quot;576-PLED18SW | PLED18SW&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_LED_Protector_PLEDxSW_Datasheet.pdf-259086.pdf" target="_blank">数据表</a>
  3857. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">5,111<br/>有库存</span>
  3858. <table>
  3859. <tr align="center">
  3860. <td style="padding-top: 5px">
  3861. </td>
  3862. </tr>
  3863. <tr align="center">
  3864. <td style="padding-top: 5px; padding-bottom: 5px">
  3865. </td>
  3866. </tr>
  3867. </table></td><td>
  3868. <table class="PriceBreaks" cellspacing="0" border="0">
  3869. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3870. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3871. </td>
  3872. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3873. </td>
  3874. </tr>
  3875. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3876. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3877. 剪切带
  3878. </td>
  3879. </tr>
  3880. <tr>
  3881. <td class="PriceBreakQuantity">
  3882. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  3883. </td>
  3884. <td class="PriceBreakPrice">
  3885. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥6.7041</span>
  3886. </td>
  3887. </tr>
  3888. <tr>
  3889. <td class="PriceBreakQuantity">
  3890. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,10);">10:</a>
  3891. </td>
  3892. <td class="PriceBreakPrice">
  3893. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.1597</span>
  3894. </td>
  3895. </tr>
  3896. <tr>
  3897. <td class="PriceBreakQuantity">
  3898. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,100);">100:</a>
  3899. </td>
  3900. <td class="PriceBreakPrice">
  3901. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.3345</span>
  3902. </td>
  3903. </tr>
  3904. <tr>
  3905. <td class="PriceBreakQuantity">
  3906. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,1000);">1,000:</a>
  3907. </td>
  3908. <td class="PriceBreakPrice">
  3909. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.6676</span>
  3910. </td>
  3911. </tr>
  3912. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3913. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3914. 卷轴
  3915. </td>
  3916. </tr>
  3917. <tr>
  3918. <td class="PriceBreakQuantity">
  3919. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(17,2500);">2,500:</a>
  3920. </td>
  3921. <td class="PriceBreakPrice">
  3922. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.1879</span>
  3923. </td>
  3924. </tr>
  3925. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  3926. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3927. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(17,10000);">10,000:</a>
  3928. </td>
  3929. <td class="PriceBreakPrice">
  3930. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Littelfuse/PLED18SW/?qs=sGAEpiMZZMsYQtbqwpxHHw%252bg3jzZ%2f0WVpP%2fXykbMOhI%3d">查看</a>
  3931. </td>
  3932. </tr>
  3933. <tr>
  3934. <td><br /></td>
  3935. </tr>
  3936. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3937. <td colspan="2" style="text-align: center;">
  3938. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED18SW/?qs=sGAEpiMZZMsYQtbqwpxHHw%252bg3jzZ%2f0WVpP%2fXykbMOhI%3d">MouseReel 提供服务支持</a>
  3939. </td>
  3940. </tr>
  3941. </table>
  3942. </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;)">
  3943. <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 />
  3944. <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="购买 PLED18SW" class="buy-button" /><br />
  3945. <table cellspacing="0" border="0" style="width: 100%;">
  3946. <tr>
  3947. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3948. 最低:
  3949. </td>
  3950. <td style="padding-left: 2px; text-align: left;">
  3951. 1
  3952. </td>
  3953. </tr>
  3954. <tr>
  3955. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3956. 多个:
  3957. </td>
  3958. <td style="padding-left: 2px; text-align: left;">
  3959. 1
  3960. </td>
  3961. </tr>
  3962. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_trReel">
  3963. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3964. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(17,2500);">卷轴</a>:
  3965. </td>
  3966. <td style="padding-left: 2px; text-align: left;">
  3967. <em class="SearchResultsReel">
  3968. 2,500
  3969. </em>
  3970. </td>
  3971. </tr>
  3972. </table>
  3973. </div>
  3974. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  3975. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3976. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=o8nliC2DWRfF0SYMVqQLrw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=o8nliC2DWRfF0SYMVqQLrw%3d%3d" target="_blank">详细信息</a>
  3977. </div>
  3978. </td><td>33 V
  3979. </td><td>
  3980. </td><td>18 V
  3981. </td><td>5 mA
  3982. </td><td>DO-214AA
  3983. </td><td>Reel
  3984. </td>
  3985. </tr><tr class="SearchResultsRowEven" data-partnumber="576-PLED13Q12" data-index="20">
  3986. <td class="td-select" align="center">
  3987. <div style="padding: 5px 5px 0 5px;">
  3988. <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>
  3989. </div>
  3990. </td><td><a href='/ProductDetail/Littelfuse/PLED13Q12/?qs=sGAEpiMZZMsYQtbqwpxHH4PzaXxSaBqTH9xst0umYZM%3d'><img title='Littelfuse PLED13Q12' alt='Littelfuse PLED13Q12' id=359935213 src='/images/littelfuse/sm/pled.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/littelfuse/images/pled.jpg</div></a></td><td>
  3991. <div style="text-align:left;">
  3992. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED13Q12/?qs=sGAEpiMZZMsYQtbqwpxHH4PzaXxSaBqTH9xst0umYZM%3d">576-PLED13Q12</a><br />
  3993. <br />
  3994. <br />
  3995. 要购买完整 卷轴,请订购 5000 的倍数:
  3996. </div></td><td>
  3997. <div class="mfrDiv">
  3998. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED13Q12/?qs=sGAEpiMZZMsYQtbqwpxHH4PzaXxSaBqTH9xst0umYZM%3d">PLED13Q12</a><br />
  3999. <br />
  4000. <div style="width: 100%; text-align: center;">
  4001. </div>
  4002. <div style="width: 100%; text-align: center;">
  4003. </div>
  4004. </div>
  4005. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  4006. </td><td>LED保护设备 LED PROTECTOR Bi 13V QFN 3X3 2L RoHS
  4007. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4008. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfusepled">了解更多</a>
  4009. </div>
  4010. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4011. </div>
  4012. </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;Littelfuse&quot;,&quot;576-PLED13Q12 | PLED13Q12&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PLED6-58939.pdf" target="_blank">数据表</a>
  4013. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">8,586<br/>有库存</span>
  4014. <table>
  4015. <tr align="center">
  4016. <td style="padding-top: 5px">
  4017. </td>
  4018. </tr>
  4019. <tr align="center">
  4020. <td style="padding-top: 5px; padding-bottom: 5px">
  4021. </td>
  4022. </tr>
  4023. </table></td><td>
  4024. <table class="PriceBreaks" cellspacing="0" border="0">
  4025. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4026. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4027. </td>
  4028. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4029. </td>
  4030. </tr>
  4031. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4032. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4033. 剪切带
  4034. </td>
  4035. </tr>
  4036. <tr>
  4037. <td class="PriceBreakQuantity">
  4038. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  4039. </td>
  4040. <td class="PriceBreakPrice">
  4041. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥6.318</span>
  4042. </td>
  4043. </tr>
  4044. <tr>
  4045. <td class="PriceBreakQuantity">
  4046. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,10);">10:</a>
  4047. </td>
  4048. <td class="PriceBreakPrice">
  4049. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥4.914</span>
  4050. </td>
  4051. </tr>
  4052. <tr>
  4053. <td class="PriceBreakQuantity">
  4054. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  4055. </td>
  4056. <td class="PriceBreakPrice">
  4057. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.1707</span>
  4058. </td>
  4059. </tr>
  4060. <tr>
  4061. <td class="PriceBreakQuantity">
  4062. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,1000);">1,000:</a>
  4063. </td>
  4064. <td class="PriceBreakPrice">
  4065. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.2932</span>
  4066. </td>
  4067. </tr>
  4068. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4069. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4070. 卷轴
  4071. </td>
  4072. </tr>
  4073. <tr>
  4074. <td class="PriceBreakQuantity">
  4075. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(18,5000);">5,000:</a>
  4076. </td>
  4077. <td class="PriceBreakPrice">
  4078. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.0826</span>
  4079. </td>
  4080. </tr>
  4081. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  4082. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4083. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(18,10000);">10,000:</a>
  4084. </td>
  4085. <td class="PriceBreakPrice">
  4086. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Littelfuse/PLED13Q12/?qs=sGAEpiMZZMsYQtbqwpxHH4PzaXxSaBqTH9xst0umYZM%3d">查看</a>
  4087. </td>
  4088. </tr>
  4089. <tr>
  4090. <td><br /></td>
  4091. </tr>
  4092. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  4093. <td colspan="2" style="text-align: center;">
  4094. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED13Q12/?qs=sGAEpiMZZMsYQtbqwpxHH4PzaXxSaBqTH9xst0umYZM%3d">MouseReel 提供服务支持</a>
  4095. </td>
  4096. </tr>
  4097. </table>
  4098. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_btnBuy&#39;)">
  4099. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(18,this.value);" /><br />
  4100. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 18);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_btnBuy" title="购买 PLED13Q12" class="buy-button" /><br />
  4101. <table cellspacing="0" border="0" style="width: 100%;">
  4102. <tr>
  4103. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4104. 最低:
  4105. </td>
  4106. <td style="padding-left: 2px; text-align: left;">
  4107. 1
  4108. </td>
  4109. </tr>
  4110. <tr>
  4111. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4112. 多个:
  4113. </td>
  4114. <td style="padding-left: 2px; text-align: left;">
  4115. 1
  4116. </td>
  4117. </tr>
  4118. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_trReel">
  4119. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4120. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(18,5000);">卷轴</a>:
  4121. </td>
  4122. <td style="padding-left: 2px; text-align: left;">
  4123. <em class="SearchResultsReel">
  4124. 5,000
  4125. </em>
  4126. </td>
  4127. </tr>
  4128. </table>
  4129. </div>
  4130. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  4131. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4132. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=8l7MuloVI74sh%252b9Q1by3Sg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=8l7MuloVI74sh%252b9Q1by3Sg%3d%3d" target="_blank">详细信息</a>
  4133. </div>
  4134. </td><td>13 V
  4135. </td><td>3 V
  4136. </td><td>13 V
  4137. </td><td>5 mA
  4138. </td><td>QFN
  4139. </td><td>Reel
  4140. </td>
  4141. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-PLED6UQ12" data-index="21">
  4142. <td class="td-select" align="center">
  4143. <div style="padding: 5px 5px 0 5px;">
  4144. <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>
  4145. </div>
  4146. </td><td><a href='/ProductDetail/Littelfuse/PLED6UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOij%252bqftsyYomP679VLu%2fnS2Q%3d%3d'><img title='Littelfuse PLED6UQ12' alt='Littelfuse PLED6UQ12' id=1034883619 src='/images/Littelfuse/sm/PLED series.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/Littelfuse/images/PLED series.jpg</div></a></td><td>
  4147. <div style="text-align:left;">
  4148. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED6UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOij%252bqftsyYomP679VLu%2fnS2Q%3d%3d">576-PLED6UQ12</a><br />
  4149. <br />
  4150. <br />
  4151. 要购买完整 卷轴,请订购 5000 的倍数:
  4152. </div></td><td>
  4153. <div class="mfrDiv">
  4154. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED6UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOij%252bqftsyYomP679VLu%2fnS2Q%3d%3d">PLED6UQ12</a><br />
  4155. <br />
  4156. <div style="width: 100%; text-align: center;">
  4157. </div>
  4158. <div style="width: 100%; text-align: center;">
  4159. </div>
  4160. </div>
  4161. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  4162. </td><td>LED保护设备 Uni 6V 3X3 2L
  4163. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4164. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Littelfuse-PLEDxSW-LED-Protectors">了解更多</a>
  4165. </div>
  4166. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4167. </div>
  4168. </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;Littelfuse&quot;,&quot;576-PLED6UQ12 | PLED6UQ12&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_LED_Protector_PLEDxUx_Datasheet.pdf-272066.pdf" target="_blank">数据表</a>
  4169. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">5,087<br/>有库存</span>
  4170. <table>
  4171. <tr align="center">
  4172. <td style="padding-top: 5px">
  4173. </td>
  4174. </tr>
  4175. <tr align="center">
  4176. <td style="padding-top: 5px; padding-bottom: 5px">
  4177. </td>
  4178. </tr>
  4179. </table></td><td>
  4180. <table class="PriceBreaks" cellspacing="0" border="0">
  4181. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4182. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4183. </td>
  4184. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4185. </td>
  4186. </tr>
  4187. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4188. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4189. 剪切带
  4190. </td>
  4191. </tr>
  4192. <tr>
  4193. <td class="PriceBreakQuantity">
  4194. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  4195. </td>
  4196. <td class="PriceBreakPrice">
  4197. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥7.2423</span>
  4198. </td>
  4199. </tr>
  4200. <tr>
  4201. <td class="PriceBreakQuantity">
  4202. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,10);">10:</a>
  4203. </td>
  4204. <td class="PriceBreakPrice">
  4205. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.7681</span>
  4206. </td>
  4207. </tr>
  4208. <tr>
  4209. <td class="PriceBreakQuantity">
  4210. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  4211. </td>
  4212. <td class="PriceBreakPrice">
  4213. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥4.4226</span>
  4214. </td>
  4215. </tr>
  4216. <tr>
  4217. <td class="PriceBreakQuantity">
  4218. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,500);">500:</a>
  4219. </td>
  4220. <td class="PriceBreakPrice">
  4221. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3.9312</span>
  4222. </td>
  4223. </tr>
  4224. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4225. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4226. 卷轴
  4227. </td>
  4228. </tr>
  4229. <tr>
  4230. <td class="PriceBreakQuantity">
  4231. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(19,5000);">5,000:</a>
  4232. </td>
  4233. <td class="PriceBreakPrice">
  4234. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.6676</span>
  4235. </td>
  4236. </tr>
  4237. <tr>
  4238. <td class="PriceBreakQuantity">
  4239. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(19,10000);">10,000:</a>
  4240. </td>
  4241. <td class="PriceBreakPrice">
  4242. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Littelfuse/PLED6UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOij%252bqftsyYomP679VLu%2fnS2Q%3d%3d' >查看</a></span>
  4243. </td>
  4244. </tr>
  4245. <tr>
  4246. <td><br /></td>
  4247. </tr>
  4248. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4249. <td colspan="2" style="text-align: center;">
  4250. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED6UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOij%252bqftsyYomP679VLu%2fnS2Q%3d%3d">MouseReel 提供服务支持</a>
  4251. </td>
  4252. </tr>
  4253. </table>
  4254. </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;)">
  4255. <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 />
  4256. <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="购买 PLED6UQ12" class="buy-button" /><br />
  4257. <table cellspacing="0" border="0" style="width: 100%;">
  4258. <tr>
  4259. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4260. 最低:
  4261. </td>
  4262. <td style="padding-left: 2px; text-align: left;">
  4263. 1
  4264. </td>
  4265. </tr>
  4266. <tr>
  4267. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4268. 多个:
  4269. </td>
  4270. <td style="padding-left: 2px; text-align: left;">
  4271. 1
  4272. </td>
  4273. </tr>
  4274. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_trReel">
  4275. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4276. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(19,5000);">卷轴</a>:
  4277. </td>
  4278. <td style="padding-left: 2px; text-align: left;">
  4279. <em class="SearchResultsReel">
  4280. 5,000
  4281. </em>
  4282. </td>
  4283. </tr>
  4284. </table>
  4285. </div>
  4286. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  4287. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4288. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=FzSWZTgp5JNSPT9wveenfA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=FzSWZTgp5JNSPT9wveenfA%3d%3d" target="_blank">详细信息</a>
  4289. </div>
  4290. </td><td>16 V
  4291. </td><td>1.2 V
  4292. </td><td>6 V
  4293. </td><td>30 mA
  4294. </td><td>QFN
  4295. </td><td>Reel
  4296. </td>
  4297. </tr><tr class="SearchResultsRowEven" data-partnumber="511-LBP01-0803SC5" data-index="22">
  4298. <td class="td-select" align="center">
  4299. <div style="padding: 5px 5px 0 5px;">
  4300. <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>
  4301. </div>
  4302. </td><td><a href='/ProductDetail/STMicroelectronics/LBP01-0803SC5/?qs=sGAEpiMZZMsYQtbqwpxHH9ms4VYumHfZI27HKFLn5eY%3d'><img title='STMicroelectronics LBP01-0803SC5' alt='STMicroelectronics LBP01-0803SC5' id=789412991 src='/images/stmicroelectronics/sm/sot23-5l.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/sot23-5l.jpg</div></a></td><td>
  4303. <div style="text-align:left;">
  4304. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/LBP01-0803SC5/?qs=sGAEpiMZZMsYQtbqwpxHH9ms4VYumHfZI27HKFLn5eY%3d">511-LBP01-0803SC5</a><br />
  4305. <br />
  4306. <br />
  4307. 要购买完整 卷轴,请订购 3000 的倍数:
  4308. </div></td><td>
  4309. <div class="mfrDiv">
  4310. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/LBP01-0803SC5/?qs=sGAEpiMZZMsYQtbqwpxHH9ms4VYumHfZI27HKFLn5eY%3d">LBP01-0803SC5</a><br />
  4311. <br />
  4312. <div style="width: 100%; text-align: center;">
  4313. </div>
  4314. <div style="width: 100%; text-align: center;">
  4315. </div>
  4316. </div>
  4317. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
  4318. </td><td>LED保护设备 LED Bypass 100nA 1A 15kV 8kV UNI
  4319. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4320. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../stmicro-lbp01/">了解更多</a>
  4321. </div>
  4322. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4323. </div>
  4324. </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;STMicroelectronics&quot;,&quot;511-LBP01-0803SC5 | LBP01-0803SC5&quot;]);" href="http://www.mouser.com/ds/2/389/DM00051031-252050.pdf" target="_blank">数据表</a>
  4325. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">13,060<br/>有库存</span>
  4326. <table>
  4327. <tr align="center">
  4328. <td style="padding-top: 5px">
  4329. </td>
  4330. </tr>
  4331. <tr align="center">
  4332. <td style="padding-top: 5px; padding-bottom: 5px">
  4333. </td>
  4334. </tr>
  4335. </table></td><td>
  4336. <table class="PriceBreaks" cellspacing="0" border="0">
  4337. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4338. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4339. </td>
  4340. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4341. </td>
  4342. </tr>
  4343. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4344. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4345. 剪切带
  4346. </td>
  4347. </tr>
  4348. <tr>
  4349. <td class="PriceBreakQuantity">
  4350. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  4351. </td>
  4352. <td class="PriceBreakPrice">
  4353. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥5.3937</span>
  4354. </td>
  4355. </tr>
  4356. <tr>
  4357. <td class="PriceBreakQuantity">
  4358. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,10);">10:</a>
  4359. </td>
  4360. <td class="PriceBreakPrice">
  4361. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥4.5396</span>
  4362. </td>
  4363. </tr>
  4364. <tr>
  4365. <td class="PriceBreakQuantity">
  4366. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,100);">100:</a>
  4367. </td>
  4368. <td class="PriceBreakPrice">
  4369. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2.925</span>
  4370. </td>
  4371. </tr>
  4372. <tr>
  4373. <td class="PriceBreakQuantity">
  4374. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,1000);">1,000:</a>
  4375. </td>
  4376. <td class="PriceBreakPrice">
  4377. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.34</span>
  4378. </td>
  4379. </tr>
  4380. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4381. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4382. 卷轴
  4383. </td>
  4384. </tr>
  4385. <tr>
  4386. <td class="PriceBreakQuantity">
  4387. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(20,3000);">3,000:</a>
  4388. </td>
  4389. <td class="PriceBreakPrice">
  4390. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥1.9773</span>
  4391. </td>
  4392. </tr>
  4393. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  4394. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4395. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(20,9000);">9,000:</a>
  4396. </td>
  4397. <td class="PriceBreakPrice">
  4398. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/STMicroelectronics/LBP01-0803SC5/?qs=sGAEpiMZZMsYQtbqwpxHH9ms4VYumHfZI27HKFLn5eY%3d">查看</a>
  4399. </td>
  4400. </tr>
  4401. <tr>
  4402. <td><br /></td>
  4403. </tr>
  4404. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  4405. <td colspan="2" style="text-align: center;">
  4406. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/STMicroelectronics/LBP01-0803SC5/?qs=sGAEpiMZZMsYQtbqwpxHH9ms4VYumHfZI27HKFLn5eY%3d">MouseReel 提供服务支持</a>
  4407. </td>
  4408. </tr>
  4409. </table>
  4410. </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;)">
  4411. <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 />
  4412. <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="购买 LBP01-0803SC5" class="buy-button" /><br />
  4413. <table cellspacing="0" border="0" style="width: 100%;">
  4414. <tr>
  4415. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4416. 最低:
  4417. </td>
  4418. <td style="padding-left: 2px; text-align: left;">
  4419. 1
  4420. </td>
  4421. </tr>
  4422. <tr>
  4423. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4424. 多个:
  4425. </td>
  4426. <td style="padding-left: 2px; text-align: left;">
  4427. 1
  4428. </td>
  4429. </tr>
  4430. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_trReel">
  4431. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4432. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(20,3000);">卷轴</a>:
  4433. </td>
  4434. <td style="padding-left: 2px; text-align: left;">
  4435. <em class="SearchResultsReel">
  4436. 3,000
  4437. </em>
  4438. </td>
  4439. </tr>
  4440. </table>
  4441. </div>
  4442. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  4443. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4444. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=hJHLt4qw3QN%2fxFucQJzg%252bA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=hJHLt4qw3QN%2fxFucQJzg%252bA%3d%3d" target="_blank">详细信息</a>
  4445. </div>
  4446. </td><td>0.8 V
  4447. </td><td>
  4448. </td><td>
  4449. </td><td>
  4450. </td><td>SOT-23-5L
  4451. </td><td>Reel
  4452. </td>
  4453. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-PLED18UQ12" data-index="23">
  4454. <td class="td-select" align="center">
  4455. <div style="padding: 5px 5px 0 5px;">
  4456. <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>
  4457. </div>
  4458. </td><td><a href='/ProductDetail/Littelfuse/PLED18UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOiRklVS%2fat5juqrs73L9VNSw%3d%3d'><img title='Littelfuse PLED18UQ12' alt='Littelfuse PLED18UQ12' id=1034883623 src='/images/Littelfuse/sm/PLED series.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/Littelfuse/images/PLED series.jpg</div></a></td><td>
  4459. <div style="text-align:left;">
  4460. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED18UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOiRklVS%2fat5juqrs73L9VNSw%3d%3d">576-PLED18UQ12</a><br />
  4461. <br />
  4462. <br />
  4463. 要购买完整 卷轴,请订购 5000 的倍数:
  4464. </div></td><td>
  4465. <div class="mfrDiv">
  4466. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED18UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOiRklVS%2fat5juqrs73L9VNSw%3d%3d">PLED18UQ12</a><br />
  4467. <br />
  4468. <div style="width: 100%; text-align: center;">
  4469. </div>
  4470. <div style="width: 100%; text-align: center;">
  4471. </div>
  4472. </div>
  4473. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  4474. </td><td>LED保护设备 Uni 18V 3X3 2L
  4475. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4476. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Littelfuse-PLEDxSW-LED-Protectors">了解更多</a>
  4477. </div>
  4478. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4479. </div>
  4480. </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;Littelfuse&quot;,&quot;576-PLED18UQ12 | PLED18UQ12&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_LED_Protector_PLEDxUx_Datasheet.pdf-272066.pdf" target="_blank">数据表</a>
  4481. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">4,650<br/>有库存</span>
  4482. <table>
  4483. <tr align="center">
  4484. <td style="padding-top: 5px">
  4485. </td>
  4486. </tr>
  4487. <tr align="center">
  4488. <td style="padding-top: 5px; padding-bottom: 5px">
  4489. </td>
  4490. </tr>
  4491. </table></td><td>
  4492. <table class="PriceBreaks" cellspacing="0" border="0">
  4493. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4494. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4495. </td>
  4496. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4497. </td>
  4498. </tr>
  4499. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4500. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4501. 剪切带
  4502. </td>
  4503. </tr>
  4504. <tr>
  4505. <td class="PriceBreakQuantity">
  4506. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  4507. </td>
  4508. <td class="PriceBreakPrice">
  4509. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥7.2423</span>
  4510. </td>
  4511. </tr>
  4512. <tr>
  4513. <td class="PriceBreakQuantity">
  4514. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  4515. </td>
  4516. <td class="PriceBreakPrice">
  4517. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.7681</span>
  4518. </td>
  4519. </tr>
  4520. <tr>
  4521. <td class="PriceBreakQuantity">
  4522. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,100);">100:</a>
  4523. </td>
  4524. <td class="PriceBreakPrice">
  4525. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥4.4226</span>
  4526. </td>
  4527. </tr>
  4528. <tr>
  4529. <td class="PriceBreakQuantity">
  4530. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,500);">500:</a>
  4531. </td>
  4532. <td class="PriceBreakPrice">
  4533. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3.9312</span>
  4534. </td>
  4535. </tr>
  4536. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4537. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4538. 卷轴
  4539. </td>
  4540. </tr>
  4541. <tr>
  4542. <td class="PriceBreakQuantity">
  4543. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(21,5000);">5,000:</a>
  4544. </td>
  4545. <td class="PriceBreakPrice">
  4546. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.6676</span>
  4547. </td>
  4548. </tr>
  4549. <tr>
  4550. <td class="PriceBreakQuantity">
  4551. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(21,10000);">10,000:</a>
  4552. </td>
  4553. <td class="PriceBreakPrice">
  4554. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Littelfuse/PLED18UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOiRklVS%2fat5juqrs73L9VNSw%3d%3d' >查看</a></span>
  4555. </td>
  4556. </tr>
  4557. <tr>
  4558. <td><br /></td>
  4559. </tr>
  4560. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4561. <td colspan="2" style="text-align: center;">
  4562. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED18UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOiRklVS%2fat5juqrs73L9VNSw%3d%3d">MouseReel 提供服务支持</a>
  4563. </td>
  4564. </tr>
  4565. </table>
  4566. </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;)">
  4567. <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 />
  4568. <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="购买 PLED18UQ12" class="buy-button" /><br />
  4569. <table cellspacing="0" border="0" style="width: 100%;">
  4570. <tr>
  4571. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4572. 最低:
  4573. </td>
  4574. <td style="padding-left: 2px; text-align: left;">
  4575. 1
  4576. </td>
  4577. </tr>
  4578. <tr>
  4579. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4580. 多个:
  4581. </td>
  4582. <td style="padding-left: 2px; text-align: left;">
  4583. 1
  4584. </td>
  4585. </tr>
  4586. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_trReel">
  4587. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4588. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(21,5000);">卷轴</a>:
  4589. </td>
  4590. <td style="padding-left: 2px; text-align: left;">
  4591. <em class="SearchResultsReel">
  4592. 5,000
  4593. </em>
  4594. </td>
  4595. </tr>
  4596. </table>
  4597. </div>
  4598. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  4599. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4600. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=FzSWZTgp5JMnDHlDXuV71g%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=FzSWZTgp5JMnDHlDXuV71g%3d%3d" target="_blank">详细信息</a>
  4601. </div>
  4602. </td><td>33 V
  4603. </td><td>1.2 V
  4604. </td><td>18 V
  4605. </td><td>30 mA
  4606. </td><td>QFN
  4607. </td><td>Reel
  4608. </td>
  4609. </tr><tr class="SearchResultsRowEven" data-partnumber="576-PLED9UQ12" data-index="24">
  4610. <td class="td-select" align="center">
  4611. <div style="padding: 5px 5px 0 5px;">
  4612. <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>
  4613. </div>
  4614. </td><td><a href='/ProductDetail/Littelfuse/PLED9UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOir8BW8AKFZGxzzLFLFjTYZA%3d%3d'><img title='Littelfuse PLED9UQ12' alt='Littelfuse PLED9UQ12' id=1034883621 src='/images/Littelfuse/sm/PLED series.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/Littelfuse/images/PLED series.jpg</div></a></td><td>
  4615. <div style="text-align:left;">
  4616. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED9UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOir8BW8AKFZGxzzLFLFjTYZA%3d%3d">576-PLED9UQ12</a><br />
  4617. <br />
  4618. <br />
  4619. 要购买完整 卷轴,请订购 5000 的倍数:
  4620. </div></td><td>
  4621. <div class="mfrDiv">
  4622. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED9UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOir8BW8AKFZGxzzLFLFjTYZA%3d%3d">PLED9UQ12</a><br />
  4623. <br />
  4624. <div style="width: 100%; text-align: center;">
  4625. </div>
  4626. <div style="width: 100%; text-align: center;">
  4627. </div>
  4628. </div>
  4629. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  4630. </td><td>LED保护设备 Uni 9V 3X3 2L
  4631. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4632. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Littelfuse-PLEDxSW-LED-Protectors">了解更多</a>
  4633. </div>
  4634. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4635. </div>
  4636. </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;Littelfuse&quot;,&quot;576-PLED9UQ12 | PLED9UQ12&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_LED_Protector_PLEDxUx_Datasheet.pdf-272066.pdf" target="_blank">数据表</a>
  4637. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">4,740<br/>有库存</span>
  4638. <table>
  4639. <tr align="center">
  4640. <td style="padding-top: 5px">
  4641. </td>
  4642. </tr>
  4643. <tr align="center">
  4644. <td style="padding-top: 5px; padding-bottom: 5px">
  4645. </td>
  4646. </tr>
  4647. </table></td><td>
  4648. <table class="PriceBreaks" cellspacing="0" border="0">
  4649. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4650. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4651. </td>
  4652. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4653. </td>
  4654. </tr>
  4655. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4656. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4657. 剪切带
  4658. </td>
  4659. </tr>
  4660. <tr>
  4661. <td class="PriceBreakQuantity">
  4662. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  4663. </td>
  4664. <td class="PriceBreakPrice">
  4665. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥7.2423</span>
  4666. </td>
  4667. </tr>
  4668. <tr>
  4669. <td class="PriceBreakQuantity">
  4670. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  4671. </td>
  4672. <td class="PriceBreakPrice">
  4673. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.7681</span>
  4674. </td>
  4675. </tr>
  4676. <tr>
  4677. <td class="PriceBreakQuantity">
  4678. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  4679. </td>
  4680. <td class="PriceBreakPrice">
  4681. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥4.4226</span>
  4682. </td>
  4683. </tr>
  4684. <tr>
  4685. <td class="PriceBreakQuantity">
  4686. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,500);">500:</a>
  4687. </td>
  4688. <td class="PriceBreakPrice">
  4689. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3.9312</span>
  4690. </td>
  4691. </tr>
  4692. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4693. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4694. 卷轴
  4695. </td>
  4696. </tr>
  4697. <tr>
  4698. <td class="PriceBreakQuantity">
  4699. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(22,5000);">5,000:</a>
  4700. </td>
  4701. <td class="PriceBreakPrice">
  4702. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.6676</span>
  4703. </td>
  4704. </tr>
  4705. <tr>
  4706. <td class="PriceBreakQuantity">
  4707. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(22,10000);">10,000:</a>
  4708. </td>
  4709. <td class="PriceBreakPrice">
  4710. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Littelfuse/PLED9UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOir8BW8AKFZGxzzLFLFjTYZA%3d%3d' >查看</a></span>
  4711. </td>
  4712. </tr>
  4713. <tr>
  4714. <td><br /></td>
  4715. </tr>
  4716. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4717. <td colspan="2" style="text-align: center;">
  4718. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED9UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOir8BW8AKFZGxzzLFLFjTYZA%3d%3d">MouseReel 提供服务支持</a>
  4719. </td>
  4720. </tr>
  4721. </table>
  4722. </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;)">
  4723. <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 />
  4724. <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="购买 PLED9UQ12" class="buy-button" /><br />
  4725. <table cellspacing="0" border="0" style="width: 100%;">
  4726. <tr>
  4727. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4728. 最低:
  4729. </td>
  4730. <td style="padding-left: 2px; text-align: left;">
  4731. 1
  4732. </td>
  4733. </tr>
  4734. <tr>
  4735. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4736. 多个:
  4737. </td>
  4738. <td style="padding-left: 2px; text-align: left;">
  4739. 1
  4740. </td>
  4741. </tr>
  4742. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_trReel">
  4743. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4744. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(22,5000);">卷轴</a>:
  4745. </td>
  4746. <td style="padding-left: 2px; text-align: left;">
  4747. <em class="SearchResultsReel">
  4748. 5,000
  4749. </em>
  4750. </td>
  4751. </tr>
  4752. </table>
  4753. </div>
  4754. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  4755. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4756. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=FzSWZTgp5JMtWEeKG5VbPg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=FzSWZTgp5JMtWEeKG5VbPg%3d%3d" target="_blank">详细信息</a>
  4757. </div>
  4758. </td><td>18 V
  4759. </td><td>1.2 V
  4760. </td><td>9 V
  4761. </td><td>30 mA
  4762. </td><td>QFN
  4763. </td><td>Reel
  4764. </td>
  4765. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-PLED13UQ12" data-index="25">
  4766. <td class="td-select" align="center">
  4767. <div style="padding: 5px 5px 0 5px;">
  4768. <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>
  4769. </div>
  4770. </td><td><a href='/ProductDetail/Littelfuse/PLED13UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOicxIbpaCsd0GIgYhSE9R4Mw%3d%3d'><img title='Littelfuse PLED13UQ12' alt='Littelfuse PLED13UQ12' id=1034883625 src='/images/Littelfuse/sm/PLED series.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/Littelfuse/images/PLED series.jpg</div></a></td><td>
  4771. <div style="text-align:left;">
  4772. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED13UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOicxIbpaCsd0GIgYhSE9R4Mw%3d%3d">576-PLED13UQ12</a><br />
  4773. <br />
  4774. <br />
  4775. 要购买完整 卷轴,请订购 5000 的倍数:
  4776. </div></td><td>
  4777. <div class="mfrDiv">
  4778. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED13UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOicxIbpaCsd0GIgYhSE9R4Mw%3d%3d">PLED13UQ12</a><br />
  4779. <br />
  4780. <div style="width: 100%; text-align: center;">
  4781. </div>
  4782. <div style="width: 100%; text-align: center;">
  4783. </div>
  4784. </div>
  4785. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  4786. </td><td>LED保护设备 Uni 13V 3X3 2L
  4787. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4788. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Littelfuse-PLEDxSW-LED-Protectors">了解更多</a>
  4789. </div>
  4790. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4791. </div>
  4792. </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;Littelfuse&quot;,&quot;576-PLED13UQ12 | PLED13UQ12&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_LED_Protector_PLEDxUx_Datasheet.pdf-272066.pdf" target="_blank">数据表</a>
  4793. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">5,000<br/>有库存</span>
  4794. <table>
  4795. <tr align="center">
  4796. <td style="padding-top: 5px">
  4797. </td>
  4798. </tr>
  4799. <tr align="center">
  4800. <td style="padding-top: 5px; padding-bottom: 5px">
  4801. </td>
  4802. </tr>
  4803. </table></td><td>
  4804. <table class="PriceBreaks" cellspacing="0" border="0">
  4805. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4806. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4807. </td>
  4808. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4809. </td>
  4810. </tr>
  4811. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4812. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4813. 剪切带
  4814. </td>
  4815. </tr>
  4816. <tr>
  4817. <td class="PriceBreakQuantity">
  4818. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  4819. </td>
  4820. <td class="PriceBreakPrice">
  4821. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥7.2423</span>
  4822. </td>
  4823. </tr>
  4824. <tr>
  4825. <td class="PriceBreakQuantity">
  4826. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  4827. </td>
  4828. <td class="PriceBreakPrice">
  4829. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.7681</span>
  4830. </td>
  4831. </tr>
  4832. <tr>
  4833. <td class="PriceBreakQuantity">
  4834. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
  4835. </td>
  4836. <td class="PriceBreakPrice">
  4837. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥4.4226</span>
  4838. </td>
  4839. </tr>
  4840. <tr>
  4841. <td class="PriceBreakQuantity">
  4842. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,500);">500:</a>
  4843. </td>
  4844. <td class="PriceBreakPrice">
  4845. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3.9312</span>
  4846. </td>
  4847. </tr>
  4848. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4849. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4850. 卷轴
  4851. </td>
  4852. </tr>
  4853. <tr>
  4854. <td class="PriceBreakQuantity">
  4855. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(23,5000);">5,000:</a>
  4856. </td>
  4857. <td class="PriceBreakPrice">
  4858. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.6676</span>
  4859. </td>
  4860. </tr>
  4861. <tr>
  4862. <td class="PriceBreakQuantity">
  4863. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(23,10000);">10,000:</a>
  4864. </td>
  4865. <td class="PriceBreakPrice">
  4866. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Littelfuse/PLED13UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOicxIbpaCsd0GIgYhSE9R4Mw%3d%3d' >查看</a></span>
  4867. </td>
  4868. </tr>
  4869. <tr>
  4870. <td><br /></td>
  4871. </tr>
  4872. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4873. <td colspan="2" style="text-align: center;">
  4874. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED13UQ12/?qs=sGAEpiMZZMsYQtbqwpxHHxI03siaFDOicxIbpaCsd0GIgYhSE9R4Mw%3d%3d">MouseReel 提供服务支持</a>
  4875. </td>
  4876. </tr>
  4877. </table>
  4878. </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;)">
  4879. <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 />
  4880. <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="购买 PLED13UQ12" class="buy-button" /><br />
  4881. <table cellspacing="0" border="0" style="width: 100%;">
  4882. <tr>
  4883. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4884. 最低:
  4885. </td>
  4886. <td style="padding-left: 2px; text-align: left;">
  4887. 1
  4888. </td>
  4889. </tr>
  4890. <tr>
  4891. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4892. 多个:
  4893. </td>
  4894. <td style="padding-left: 2px; text-align: left;">
  4895. 1
  4896. </td>
  4897. </tr>
  4898. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_trReel">
  4899. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4900. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(23,5000);">卷轴</a>:
  4901. </td>
  4902. <td style="padding-left: 2px; text-align: left;">
  4903. <em class="SearchResultsReel">
  4904. 5,000
  4905. </em>
  4906. </td>
  4907. </tr>
  4908. </table>
  4909. </div>
  4910. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  4911. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4912. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=FzSWZTgp5JP8odbwwh70Og%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=FzSWZTgp5JP8odbwwh70Og%3d%3d" target="_blank">详细信息</a>
  4913. </div>
  4914. </td><td>26 V
  4915. </td><td>1.2 V
  4916. </td><td>13 V
  4917. </td><td>30 mA
  4918. </td><td>QFN
  4919. </td><td>Reel
  4920. </td>
  4921. </tr><tr class="SearchResultsRowEven" data-partnumber="576-PLED5Q12" data-index="26">
  4922. <td class="td-select" align="center">
  4923. <div style="padding: 5px 5px 0 5px;">
  4924. <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>
  4925. </div>
  4926. </td><td><a href='/ProductDetail/Littelfuse/PLED5Q12/?qs=sGAEpiMZZMsYQtbqwpxHH7cR7jLrXcCdoFxD3epA9WM%3d'><img title='Littelfuse PLED5Q12' alt='Littelfuse PLED5Q12' id=439847117 src='/images/littelfuse/sm/Hi Res_PLED5.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/littelfuse/images/Hi Res_PLED5.jpg</div></a></td><td>
  4927. <div style="text-align:left;">
  4928. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED5Q12/?qs=sGAEpiMZZMsYQtbqwpxHH7cR7jLrXcCdoFxD3epA9WM%3d">576-PLED5Q12</a><br />
  4929. <br />
  4930. <br />
  4931. 要购买完整 卷轴,请订购 3000 的倍数:
  4932. </div></td><td>
  4933. <div class="mfrDiv">
  4934. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED5Q12/?qs=sGAEpiMZZMsYQtbqwpxHH7cR7jLrXcCdoFxD3epA9WM%3d">PLED5Q12</a><br />
  4935. <br />
  4936. <div style="width: 100%; text-align: center;">
  4937. </div>
  4938. <div style="width: 100%; text-align: center;">
  4939. </div>
  4940. </div>
  4941. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  4942. </td><td>LED保护设备 LED PROTECTOR 5V 500mA QFN
  4943. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4944. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfusepled">了解更多</a>
  4945. </div>
  4946. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4947. </div>
  4948. </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;Littelfuse&quot;,&quot;576-PLED5Q12 | PLED5Q12&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PLED_5_QFN-916.pdf" target="_blank">数据表</a>
  4949. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">4,522<br/>有库存</span>
  4950. <table>
  4951. <tr align="center">
  4952. <td style="padding-top: 5px">
  4953. </td>
  4954. </tr>
  4955. <tr align="center">
  4956. <td style="padding-top: 5px; padding-bottom: 5px">
  4957. </td>
  4958. </tr>
  4959. </table></td><td>
  4960. <table class="PriceBreaks" cellspacing="0" border="0">
  4961. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4962. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4963. </td>
  4964. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4965. </td>
  4966. </tr>
  4967. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4968. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4969. 剪切带
  4970. </td>
  4971. </tr>
  4972. <tr>
  4973. <td class="PriceBreakQuantity">
  4974. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  4975. </td>
  4976. <td class="PriceBreakPrice">
  4977. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥5.0076</span>
  4978. </td>
  4979. </tr>
  4980. <tr>
  4981. <td class="PriceBreakQuantity">
  4982. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  4983. </td>
  4984. <td class="PriceBreakPrice">
  4985. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3.6972</span>
  4986. </td>
  4987. </tr>
  4988. <tr>
  4989. <td class="PriceBreakQuantity">
  4990. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,100);">100:</a>
  4991. </td>
  4992. <td class="PriceBreakPrice">
  4993. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2.3283</span>
  4994. </td>
  4995. </tr>
  4996. <tr>
  4997. <td class="PriceBreakQuantity">
  4998. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,1000);">1,000:</a>
  4999. </td>
  5000. <td class="PriceBreakPrice">
  5001. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1.7901</span>
  5002. </td>
  5003. </tr>
  5004. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  5005. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  5006. 卷轴
  5007. </td>
  5008. </tr>
  5009. <tr>
  5010. <td class="PriceBreakQuantity">
  5011. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(24,3000);">3,000:</a>
  5012. </td>
  5013. <td class="PriceBreakPrice">
  5014. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥1.4859</span>
  5015. </td>
  5016. </tr>
  5017. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  5018. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5019. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(24,9000);">9,000:</a>
  5020. </td>
  5021. <td class="PriceBreakPrice">
  5022. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Littelfuse/PLED5Q12/?qs=sGAEpiMZZMsYQtbqwpxHH7cR7jLrXcCdoFxD3epA9WM%3d">查看</a>
  5023. </td>
  5024. </tr>
  5025. <tr>
  5026. <td><br /></td>
  5027. </tr>
  5028. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  5029. <td colspan="2" style="text-align: center;">
  5030. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED5Q12/?qs=sGAEpiMZZMsYQtbqwpxHH7cR7jLrXcCdoFxD3epA9WM%3d">MouseReel 提供服务支持</a>
  5031. </td>
  5032. </tr>
  5033. </table>
  5034. </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;)">
  5035. <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 />
  5036. <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="购买 PLED5Q12" class="buy-button" /><br />
  5037. <table cellspacing="0" border="0" style="width: 100%;">
  5038. <tr>
  5039. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5040. 最低:
  5041. </td>
  5042. <td style="padding-left: 2px; text-align: left;">
  5043. 1
  5044. </td>
  5045. </tr>
  5046. <tr>
  5047. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5048. 多个:
  5049. </td>
  5050. <td style="padding-left: 2px; text-align: left;">
  5051. 1
  5052. </td>
  5053. </tr>
  5054. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_trReel">
  5055. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5056. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(24,3000);">卷轴</a>:
  5057. </td>
  5058. <td style="padding-left: 2px; text-align: left;">
  5059. <em class="SearchResultsReel">
  5060. 3,000
  5061. </em>
  5062. </td>
  5063. </tr>
  5064. </table>
  5065. </div>
  5066. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  5067. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5068. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=mYzaOn%252b7n7SxUfZ6dfgfzg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=mYzaOn%252b7n7SxUfZ6dfgfzg%3d%3d" target="_blank">详细信息</a>
  5069. </div>
  5070. </td><td>4.6 V
  5071. </td><td>1 V
  5072. </td><td>3.5 V
  5073. </td><td>5 mA
  5074. </td><td>QFN
  5075. </td><td>Reel
  5076. </td>
  5077. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-PLED6Q12" data-index="27">
  5078. <td class="td-select" align="center">
  5079. <div style="padding: 5px 5px 0 5px;">
  5080. <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>
  5081. </div>
  5082. </td><td><a href='/ProductDetail/Littelfuse/PLED6Q12/?qs=sGAEpiMZZMsYQtbqwpxHHzWYRfWbTMFnYDGGZqE4NAw%3d'><img title='Littelfuse PLED6Q12' alt='Littelfuse PLED6Q12' id=296227421 src='/images/littelfuse/sm/pled.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/littelfuse/images/pled.jpg</div></a></td><td>
  5083. <div style="text-align:left;">
  5084. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/PLED6Q12/?qs=sGAEpiMZZMsYQtbqwpxHHzWYRfWbTMFnYDGGZqE4NAw%3d">576-PLED6Q12</a><br />
  5085. <br />
  5086. <br />
  5087. 要购买完整 卷轴,请订购 5000 的倍数:
  5088. </div></td><td>
  5089. <div class="mfrDiv">
  5090. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/PLED6Q12/?qs=sGAEpiMZZMsYQtbqwpxHHzWYRfWbTMFnYDGGZqE4NAw%3d">PLED6Q12</a><br />
  5091. <br />
  5092. <div style="width: 100%; text-align: center;">
  5093. </div>
  5094. <div style="width: 100%; text-align: center;">
  5095. </div>
  5096. </div>
  5097. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  5098. </td><td>LED保护设备 LED PROTECTOR Bi 6V
  5099. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5100. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfusepled">了解更多</a>
  5101. </div>
  5102. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5103. </div>
  5104. </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;Littelfuse&quot;,&quot;576-PLED6Q12 | PLED6Q12&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PLED6-58939.pdf" target="_blank">数据表</a>
  5105. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">4,747<br/>有库存</span>
  5106. <table>
  5107. <tr align="center">
  5108. <td style="padding-top: 5px">
  5109. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/Littelfuse/PLED6Q12/?qs=sGAEpiMZZMsYQtbqwpxHHzWYRfWbTMFnYDGGZqE4NAw%3d">更多信息可用 </a>
  5110. </td>
  5111. </tr>
  5112. <tr align="center">
  5113. <td style="padding-top: 5px; padding-bottom: 5px">
  5114. </td>
  5115. </tr>
  5116. </table></td><td>
  5117. <table class="PriceBreaks" cellspacing="0" border="0">
  5118. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5119. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5120. </td>
  5121. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5122. </td>
  5123. </tr>
  5124. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  5125. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  5126. 剪切带
  5127. </td>
  5128. </tr>
  5129. <tr>
  5130. <td class="PriceBreakQuantity">
  5131. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  5132. </td>
  5133. <td class="PriceBreakPrice">
  5134. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥6.318</span>
  5135. </td>
  5136. </tr>
  5137. <tr>
  5138. <td class="PriceBreakQuantity">
  5139. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  5140. </td>
  5141. <td class="PriceBreakPrice">
  5142. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥4.914</span>
  5143. </td>
  5144. </tr>
  5145. <tr>
  5146. <td class="PriceBreakQuantity">
  5147. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  5148. </td>
  5149. <td class="PriceBreakPrice">
  5150. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.1707</span>
  5151. </td>
  5152. </tr>
  5153. <tr>
  5154. <td class="PriceBreakQuantity">
  5155. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,1000);">1,000:</a>
  5156. </td>
  5157. <td class="PriceBreakPrice">
  5158. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.5389</span>
  5159. </td>
  5160. </tr>
  5161. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  5162. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  5163. 卷轴
  5164. </td>
  5165. </tr>
  5166. <tr>
  5167. <td class="PriceBreakQuantity">
  5168. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(25,5000);">5,000:</a>
  5169. </td>
  5170. <td class="PriceBreakPrice">
  5171. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.0826</span>
  5172. </td>
  5173. </tr>
  5174. <tr>
  5175. <td class="PriceBreakQuantity">
  5176. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(25,10000);">10,000:</a>
  5177. </td>
  5178. <td class="PriceBreakPrice">
  5179. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Littelfuse/PLED6Q12/?qs=sGAEpiMZZMsYQtbqwpxHHzWYRfWbTMFnYDGGZqE4NAw%3d' >查看</a></span>
  5180. </td>
  5181. </tr>
  5182. <tr>
  5183. <td><br /></td>
  5184. </tr>
  5185. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  5186. <td colspan="2" style="text-align: center;">
  5187. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Littelfuse/PLED6Q12/?qs=sGAEpiMZZMsYQtbqwpxHHzWYRfWbTMFnYDGGZqE4NAw%3d">MouseReel 提供服务支持</a>
  5188. </td>
  5189. </tr>
  5190. </table>
  5191. </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;)">
  5192. <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 />
  5193. <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="购买 PLED6Q12" class="buy-button" /><br />
  5194. <table cellspacing="0" border="0" style="width: 100%;">
  5195. <tr>
  5196. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5197. 最低:
  5198. </td>
  5199. <td style="padding-left: 2px; text-align: left;">
  5200. 1
  5201. </td>
  5202. </tr>
  5203. <tr>
  5204. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5205. 多个:
  5206. </td>
  5207. <td style="padding-left: 2px; text-align: left;">
  5208. 1
  5209. </td>
  5210. </tr>
  5211. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_trReel">
  5212. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5213. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(25,5000);">卷轴</a>:
  5214. </td>
  5215. <td style="padding-left: 2px; text-align: left;">
  5216. <em class="SearchResultsReel">
  5217. 5,000
  5218. </em>
  5219. </td>
  5220. </tr>
  5221. </table>
  5222. </div>
  5223. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  5224. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5225. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=48idu%2fIJN4S9Dz8pT7OA%2fA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=48idu%2fIJN4S9Dz8pT7OA%2fA%3d%3d" target="_blank">详细信息</a>
  5226. </div>
  5227. </td><td>6 V
  5228. </td><td>1.5 V
  5229. </td><td>6 V
  5230. </td><td>5 mA
  5231. </td><td>QFN
  5232. </td><td>Reel
  5233. </td>
  5234. </tr>
  5235. </table>
  5236. </div>
  5237. </td>
  5238. </tr>
  5239. <tr>
  5240. <td class="tdSearchResultsPagingBottom">
  5241. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  5242. <tr>
  5243. <td>
  5244. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  5245. </td>
  5246. <td>
  5247. <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" />
  5248. </td>
  5249. <td>
  5250. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  5251. </td>
  5252. <td style="padding-left: 40px;">
  5253. <div class="floatrightpager">
  5254. <span class="bold">
  5255. 页面:
  5256. </span>
  5257. <span id="ctl00_ContentMain_PagerBottom"><span id="ctl00_ContentMain_PagerBottom_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerBottom_1" href="/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi/?No=25">下一页</a></span>
  5258. </div>
  5259. </td>
  5260. </tr>
  5261. </table>
  5262. </td>
  5263. </tr>
  5264. <tr>
  5265. <td>
  5266. <!--- Search Tips --->
  5267. </td>
  5268. </tr>
  5269. <tr>
  5270. <td>
  5271. <!-- SOP Section 2 -->
  5272. </td>
  5273. </tr>
  5274. </table>
  5275. </div>
  5276. </div><!-- #liProducts-->
  5277. <!-- Datasheets tab -->
  5278. <!-- #liDatasheets-->
  5279. <!-- Images tab -->
  5280. <!-- #liImages-->
  5281. <!-- Newest Products tab -->
  5282. <!-- #liProducts-->
  5283. </div>
  5284. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  5285. <div>
  5286. <span class="popular-searches-label">热门搜索:</span>
  5287. <span class="popular-searches-links"><a href='/Circuit-Protection/LED-Protection-Devices/_/N-7ksfi?P=1z0x4sq&pop=e5d1' onclick="ga('send','event','Popular Search Refine Click','LED Protection Devices','33 V LED Protection Devices')">33 V LED保护设备</a></span>
  5288. </div>
  5289. </div>
  5290. <div style="visibility: hidden;">
  5291. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  5292. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  5293. <span id="SearchResultCount">82</span>
  5294. <div id="disclaimer">
  5295. 图像仅供参考<br/>请参阅产品规格</div>
  5296. </div>
  5297. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Circuit-Protection/LED-Protection-Devices" />
  5298. <script type="text/javascript" src='../../../../javascript/ProductImage.js'></script>
  5299. <script type="text/javascript" src='../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  5300. <script type="text/javascript" src='../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  5301. <!--[if gte IE 9]><!-->
  5302. <script type="text/javascript" src='../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  5303. <!--<![endif]-->
  5304. <!--[if lt IE 9]>
  5305. <script type="text/javascript" src='../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  5306. <![endif]-->
  5307. <script type="text/javascript" src='../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  5308. <script type="text/javascript">
  5309. var subdomain = 'cn2';
  5310. </script>
  5311. </div>
  5312. <div class="aspNetHidden">
  5313. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  5314. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  5315. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  5316. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  5317. </div>
  5318. <script type="text/javascript">
  5319. //<![CDATA[
  5320. var mfrIDsArray = new Array;
  5321. //]]>
  5322. </script>
  5323. <script src='../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  5324. <script type="text/javascript">
  5325. //<![CDATA[
  5326. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  5327. </script>
  5328. <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>
  5329. <script type="text/javascript">
  5330. //<![CDATA[
  5331. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  5332. //]]>
  5333. </script>
  5334. <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>
  5335. <script type="text/javascript">
  5336. //<![CDATA[
  5337. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688303^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688563^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688657^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000209^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$688606^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$688610';
  5338. theForm.oldSubmit = theForm.submit;
  5339. theForm.submit = WebForm_SaveScrollPositionSubmit;
  5340. theForm.oldOnSubmit = theForm.onsubmit;
  5341. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  5342. //]]>
  5343. </script>
  5344. </form>
  5345. <div id="content-container2" class="hidden">
  5346. <div id="content-fixed-width2" class="content-fixed-width">
  5347. </div>
  5348. </div>
  5349. <div id="wideFooter" class="wideFooter">
  5350. <div id="footer" class="container">
  5351. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB10|20160304.2" />
  5352. <div id="ft_table1">
  5353. <div class="row">
  5354. <div class="col-xs-12">
  5355. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  5356. <div class="floatleft padding5right">
  5357. <strong class="h3">
  5358. 快速电子邮件注册</strong>&nbsp;&nbsp;
  5359. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  5360. </div>
  5361. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  5362. 提交
  5363. </a>
  5364. </div>
  5365. <div id="ft_icons" class="ft_icons">
  5366. <div id="ft_social">
  5367. <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>
  5368. <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>
  5369. <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>
  5370. <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">
  5371. <div class="ico-social fb"></div>
  5372. </a>
  5373. <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">
  5374. <div class="ico-social tw"></div>
  5375. </a>
  5376. <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">
  5377. <div class="ico-social rss"></div>
  5378. </a>
  5379. <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">
  5380. <div class="ico-social yt"></div>
  5381. </a>
  5382. <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">
  5383. <div class="ico-social gp"></div>
  5384. </a>
  5385. <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">
  5386. <div class="ico-social ln"></div>
  5387. </a>
  5388. <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">
  5389. <div class="ico-social sb"></div>
  5390. </a>
  5391. <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">
  5392. <div class="ico-social blog"></div>
  5393. </a>
  5394. </div>
  5395. </div>
  5396. </div>
  5397. </div>
  5398. </div>
  5399. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  5400. <div class="ft_wrapper">
  5401. <div id="ft_links" class="row">
  5402. <div class="col-xs-3 paddingBtm10 hidden-xs">
  5403. <strong class="paddingTopBtm10 inline-block">
  5404. 公司</strong>
  5405. <ul>
  5406. <li>
  5407. <a id="ctl00_Footer1_lnk26" href="../../../../aboutus/">关于我们</a></li>
  5408. <li>
  5409. <a id="ctl00_Footer1_lnk28" href="../../../../educationalsales/">教育销售</a></li>
  5410. <li>
  5411. <a id="ctl00_Footer1_lnk31" href="../../../../pressroom/">新闻中心</a></li>
  5412. <li>
  5413. <a id="ctl00_Footer1_lnk32" href="../../../../careers/">Mouser 工作机会</a></li>
  5414. <li>
  5415. <a id="ctl00_Footer1_lnk29" href="../../../../quality/">品质保证</a></li>
  5416. <li>
  5417. <a id="ctl00_Footer1_lnk30" href="../../../../environmental/">环境保护</a></li>
  5418. </ul>
  5419. </div>
  5420. <div class="col-xs-3 hidden-xs">
  5421. <strong class="paddingTopBtm10 inline-block">
  5422. 快速链接</strong>
  5423. <ul>
  5424. <li><a id="A7" href="/blog">
  5425. Mouser博客</a></li>
  5426. <li>
  5427. <a id="ctl00_Footer1_hlnk1" href="../../../../new/">最新产品</a></li>
  5428. <li>
  5429. <a id="ctl00_Footer1_hlnk2" href="../../../../new/products/">新产品</a></li>
  5430. <li>
  5431. <a id="ctl00_Footer1_hlnk3" href="../../../../applications/">新技术</a></li>
  5432. </ul>
  5433. </div>
  5434. <div class="col-xs-12 col-sm-3">
  5435. <strong class="paddingTopBtm10 inline-block">
  5436. 支持</strong>
  5437. <ul>
  5438. <li><a id="A3" href="/feedback.aspx">
  5439. 反馈</a></li>
  5440. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  5441. 帮助</a></li>
  5442. <li>
  5443. <a id="ctl00_Footer1_lnk27" href="../../../../contact/">联系我们</a></li>
  5444. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  5445. 浏览器支持</a></li>
  5446. <li><a id="A6" href="/cookie-policy/">
  5447. Cookie政策</a></li>
  5448. </ul>
  5449. </div>
  5450. <div class="col-xs-12 col-sm-3">
  5451. <strong class="paddingTopBtm10 inline-block">
  5452. 昴氏(上海)电子贸易有限公司</strong>
  5453. <ul>
  5454. <li>
  5455. <h4>
  5456. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  5457. </li>
  5458. </ul>
  5459. </div>
  5460. </div>
  5461. </div>
  5462. </div>
  5463. <div class="row">
  5464. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  5465. <div id="ft_copy">
  5466. <span class="ft_terms">
  5467. <a id="A1" href="/privacypolicy/">
  5468. 隐私政策</a>
  5469. &nbsp;&nbsp;|&nbsp;&nbsp;
  5470. <a id="href3" href="/saleterms/">
  5471. 销售条款</a>
  5472. <br />
  5473. </span>
  5474. <span class="ft_copyright">
  5475. 版权所有©2016 Mouser Electronics, Inc
  5476. |
  5477. 沪ICP备15042575号-1
  5478. <br />
  5479. </span>
  5480. <span class="ft_trade">
  5481. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  5482. </span>
  5483. <span class="ft_hq">
  5484. Corporate headquarters and logistics center in Mansfield, Texas USA.
  5485. </span>
  5486. <br />
  5487. <span class="ft_ClassicMobile">
  5488. <strong>
  5489. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../m_Home.aspx">通过移动设备查看</a></strong>
  5490. </span>
  5491. </div>
  5492. </div>
  5493. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  5494. <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>
  5495. <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>
  5496. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  5497. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  5498. </a>
  5499. <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>
  5500. <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;
  5501. </a>
  5502. </div>
  5503. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  5504. <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>
  5505. <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>
  5506. <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>
  5507. <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>
  5508. </div>
  5509. </div>
  5510. <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>
  5511. <script type="text/javascript">
  5512. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  5513. </script>
  5514. </div>
  5515. </div>
  5516. <script src="../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  5517. <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>
  5518. </body>
  5519. </html>