106.html 278 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491
  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_1aff6b8c-1e79-4b20-8a33-aaaa2f0841a0-33904-298770';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. 保险丝 | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应保险丝 。Mouser提供保险丝 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="保险丝" /><meta name="verify-v1" content="bhrmPa5uloYbiuM+lDu4z+y0qUGeKGW5FfFMprQAqlU=" /><meta name="viewport" content="width=1000, initial-scale=1" /><meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
  38. <!-- BASE STYLE SHEET -->
  39. <link rel="shortcut icon" href="../../../../favicon.ico" /><link rel="alternate" type="application/rss+xml" title="RSS" href="../../../../rss/rss.xml" />
  40. <!--[if IE 7]>
  41. <link rel="stylesheet" type="text/css" href="../../../../css/ie7.css" />
  42. <![endif]-->
  43. <!--[if IE 8]>
  44. <link rel="stylesheet" type="text/css" href="../../../../css/ie8.css" />
  45. <![endif]-->
  46. <!--[if IE 9]>
  47. <link rel="stylesheet" type="text/css" href="../../../../css/ie9.css" />
  48. <![endif]-->
  49. <script type="text/javascript">
  50. function OpenBackordered(URL) {
  51. var MsgWindow;
  52. MsgWindow = window.open(URL, "MsgWindow", "scrollbars=1,height=500,width=650,menubar=0,resizable=1");
  53. }
  54. </script>
  55. <script type="text/javascript"> var _gaq = _gaq || [];var pluginUrl ='//www.google-analytics.com/plugins/ga/inpage_linkid.js';_gaq.push(['_require', 'inpage_linkid', pluginUrl]); _gaq.push(['_setAccount', "UA-521079-1"]);_gaq.push(['_setDomainName', "mouser.cn"]);_gaq.push(['_setAllowLinker', true]);_gaq.push(['_setAllowAnchor', true]);_gaq.push(["_setCustomVar",1,"Language","zh-CN",3]);_gaq.push(["_setCustomVar",30,"s35h","032ULPIqY8juNvgDTQPcLuuqlejszBR/JtnLxPZ7G0U=",2]);_gaq.push(["_setCustomVar",31,"Cart","d52d9367-7ce7-4a74-8e3e-f7d81093a006",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA126AA195",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '576-0451001.MRSN',
  65. 'name': 'Surface Mount Fuses 125V 1A',
  66. 'category': 'Surface Mount Fuses',
  67. 'brand': 'Littelfuse',
  68. 'variant': '0451001.MRSN',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '576-142.7010.5502',
  74. 'name': 'Automotive Fuses 58V 50A 1000A',
  75. 'category': 'Automotive Fuses',
  76. 'brand': 'Littelfuse',
  77. 'variant': '142.7010.5502',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '576-142.7010.6152',
  83. 'name': 'Automotive Fuses 58V 150A 1000A',
  84. 'category': 'Automotive Fuses',
  85. 'brand': 'Littelfuse',
  86. 'variant': '142.7010.6152',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '576-1812L260/16MR',
  92. 'name': 'Resettable Fuses - PPTC PTC 16V POLY SURF',
  93. 'category': 'Resettable Fuses - PPTC',
  94. 'brand': 'Littelfuse',
  95. 'variant': '1812L260/16MR',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '652-MF-SMDF050-2',
  101. 'name': 'Resettable Fuses - PPTC 0.55A 60V 0.2ohm Hold 0.55A Trip1.2a',
  102. 'category': 'Resettable Fuses - PPTC',
  103. 'brand': 'Bourns',
  104. 'variant': 'MF-SMDF050-2',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '576-0251.062MXL',
  110. 'name': 'Fuses with Leads (Through Hole) 125V .062A',
  111. 'category': 'Fuses with Leads (Through Hole)',
  112. 'brand': 'Littelfuse',
  113. 'variant': '0251.062MXL',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '576-0603L010YR',
  119. 'name': 'Resettable Fuses - PPTC PTC 15V 0603 .100A POLY SURF MOUNT',
  120. 'category': 'Resettable Fuses - PPTC',
  121. 'brand': 'Littelfuse',
  122. 'variant': '0603L010YR',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '504-TR2/6125FF2-R',
  128. 'name': 'Surface Mount Fuses SMD BRICK 2A',
  129. 'category': 'Surface Mount Fuses',
  130. 'brand': 'Bussmann / Eaton',
  131. 'variant': 'TR2/6125FF2-R',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '650-MINISMDC014F-2',
  137. 'name': 'Resettable Fuses - PPTC .14A 60V 10A Imax',
  138. 'category': 'Resettable Fuses - PPTC',
  139. 'brand': 'TE Connectivity / Raychem',
  140. 'variant': 'miniSMDC014F-2',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '652-MF-PSMF010X-2',
  146. 'name': 'Resettable Fuses - PPTC 0.10A 15V 1ohm',
  147. 'category': 'Resettable Fuses - PPTC',
  148. 'brand': 'Bourns',
  149. 'variant': 'MF-PSMF010X-2',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '581-F0402G0R05FNTR',
  155. 'name': 'Surface Mount Fuses 0402 50mA fuse',
  156. 'category': 'Surface Mount Fuses',
  157. 'brand': 'AVX',
  158. 'variant': 'F0402G0R05FNTR',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '576-0805L050',
  164. 'name': 'Resettable Fuses - PPTC 0.50A 6V 0805',
  165. 'category': 'Resettable Fuses - PPTC',
  166. 'brand': 'Littelfuse',
  167. 'variant': '0805L050WR',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '504-BK/GMC-1-R',
  173. 'name': 'Cartridge Fuses 1A 250VAC TD GMC Series',
  174. 'category': 'Cartridge Fuses',
  175. 'brand': 'Bussmann / Eaton',
  176. 'variant': 'BK/GMC-1-R',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '576-0463020.ER',
  182. 'name': 'Surface Mount Fuses 20A 250V Fast Acting High Current',
  183. 'category': 'Surface Mount Fuses',
  184. 'brand': 'Littelfuse',
  185. 'variant': '0463020.ER',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '576-1206L035YR',
  191. 'name': 'Resettable Fuses - PPTC 6V .35A .1s',
  192. 'category': 'Resettable Fuses - PPTC',
  193. 'brand': 'Littelfuse',
  194. 'variant': '1206L035YR',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '576-0402L035SLKR',
  200. 'name': 'Resettable Fuses - PPTC 6V POLYFUSE 0402 LoRho SL .350A',
  201. 'category': 'Resettable Fuses - PPTC',
  202. 'brand': 'Littelfuse',
  203. 'variant': '0402L035SLKR',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '576-0402L020SLKR',
  209. 'name': 'Resettable Fuses - PPTC 6V POLYFUSE 0402 LoRho SL .100A',
  210. 'category': 'Resettable Fuses - PPTC',
  211. 'brand': 'Littelfuse',
  212. 'variant': '0402L020SLKR',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '576-0402L010SLKR',
  218. 'name': 'Resettable Fuses - PPTC 6V POLYFUSE 0402 LoRho SL .100A',
  219. 'category': 'Resettable Fuses - PPTC',
  220. 'brand': 'Littelfuse',
  221. 'variant': '0402L010SLKR',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '576-0402L050SLKR',
  227. 'name': 'Resettable Fuses - PPTC 6V POLYFUSE 0402 LoRho SL .500A',
  228. 'category': 'Resettable Fuses - PPTC',
  229. 'brand': 'Littelfuse',
  230. 'variant': '0402L050SLKR',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '576-0435.750KR',
  236. 'name': 'Surface Mount Fuses 32V .75A 0402 Very Fast Acting',
  237. 'category': 'Surface Mount Fuses',
  238. 'brand': 'Littelfuse',
  239. 'variant': '0435.750KR',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '576-0251.062MAT1L',
  245. 'name': 'Fuses with Leads (Through Hole) 125V .062A',
  246. 'category': 'Fuses with Leads (Through Hole)',
  247. 'brand': 'Littelfuse',
  248. 'variant': '0251.062MAT1L',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '576-0259.500MX913',
  254. 'name': 'Fuses with Leads (Through Hole) 125V .5A PICO UL913',
  255. 'category': 'Fuses with Leads (Through Hole)',
  256. 'brand': 'Littelfuse',
  257. 'variant': '0259.500MX913',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '576-0481010.VXLP',
  263. 'name': 'Specialty Fuses 125V ALARM 10A W/LENS RoHS',
  264. 'category': 'Specialty Fuses',
  265. 'brand': 'Littelfuse',
  266. 'variant': '0481010.VXLP',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '652-MFR010',
  272. 'name': 'Resettable Fuses - PPTC 60v Max 40Amps Max Hold .10 Trip .20',
  273. 'category': 'Resettable Fuses - PPTC',
  274. 'brand': 'Bourns',
  275. 'variant': 'MF-R010',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '652-MF-USMF010-2',
  281. 'name': 'Resettable Fuses - PPTC 0.10A 30V 0.80ohm Hold .10A Trip .3A',
  282. 'category': 'Resettable Fuses - PPTC',
  283. 'brand': 'Bourns',
  284. 'variant': 'MF-USMF010-2',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','032ULPIqY8juNvgDTQPcLuuqlejszBR/JtnLxPZ7G0U=');
  290. ga('set','dimension31','d52d9367-7ce7-4a74-8e3e-f7d81093a006');
  291. ga('set','dimension13','163AA125AA126AA195');
  292. ga('set','metric2',34235);
  293. ga('set','dimension5','Fuses');
  294. ga('set','dimension48','ba85y');
  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/Fuses/_/N-ba85y/?No=25" rel="next" content="http://www.mouser.cn/Circuit-Protection/Fuses/_/N-ba85y/?No=25" /><link href="http://www.mouser.cn/Circuit-Protection/Fuses/_/N-ba85y" rel="canonical" content="http://www.mouser.cn/Circuit-Protection/Fuses/_/N-ba85y" /><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/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Circuit-Protection/Fuses/_/N-ba85y/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Circuit-Protection/Fuses/_/N-ba85y/" /><script type="text/javascript" src="/msryrbaerqbcbdbrrfrrxteyr.js" defer></script><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>
  300. <script type="text/javascript">
  301. var w=window;
  302. if(w.performance||w.mozPerformance||w.msPerformance||w.webkitPerformance){var d=document,AKSB=AKSB||{};AKSB.q=[];AKSB.mark=function(a,b){AKSB.q.push(["mark",a,b||(new Date).getTime()])};AKSB.measure=function(a,b,c){AKSB.q.push(["measure",a,b,c||(new Date).getTime()])};AKSB.done=function(a){AKSB.q.push(["done",a])};AKSB.mark("firstbyte",(new Date).getTime());AKSB.prof={custid:"35125",ustr:"cs",originlat:0,clientrtt:31,ghostip:"182.118.62.143",
  303. ipv6:false,pct:10,xhrtest:false,clientip:"163.125.126.195",requestid:"448326c",protocol:"",blver:5,akM:"ca2",akN:"ae",akTT:"O",akTX:"1",akTI:"448326c",ai:"218298"};(function(a){var b=d.createElement("script");b.async="async";b.src=a;a=d.getElementsByTagName("script");a=a[a.length-1];a.parentNode.insertBefore(b,
  304. a)})(("https:"===d.location.protocol?"https:":"http:")+"//ds-aksb-a.akamaihd.net/aksb.min.js")};
  305. </script>
  306. </head>
  307. <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
  308. <script src='../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
  309. <script src='../../../../flash/js/empty.file.js' type="text/javascript"></script>
  310. <script src='../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
  311. <script src='../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
  312. <script src='../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
  313. <!--[if lt IE 9]>
  314. <script src='../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
  315. <![endif]-->
  316. <form method="post" action="/Circuit-Protection/Fuses/_/N-ba85y/" id="aspnetForm">
  317. <div class="aspNetHidden">
  318. <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
  319. <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
  320. <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" />
  321. <input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
  322. </div>
  323. <script type="text/javascript">
  324. //<![CDATA[
  325. var theForm = document.forms['aspnetForm'];
  326. if (!theForm) {
  327. theForm = document.aspnetForm;
  328. }
  329. function __doPostBack(eventTarget, eventArgument) {
  330. if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
  331. theForm.__EVENTTARGET.value = eventTarget;
  332. theForm.__EVENTARGUMENT.value = eventArgument;
  333. theForm.submit();
  334. }
  335. }
  336. //]]>
  337. </script>
  338. <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZIfBoSL8TZnsnOFihh6T3B3-ZDc9vWAo-Dvo5VSdzj9CkFL2Zg2&amp;t=635802997220000000" type="text/javascript"></script>
  339. <script type="text/javascript">
  340. //<![CDATA[
  341. var lasttemplateid='18952918';
  342. var subdomainname = '.mouser.cn';
  343. var lang = 'zh-CN';
  344. var country = 'CN';
  345. var shippingCountry = 'CN';
  346. var usdSubdomain = 'www';
  347. var subdomain = 'cn2';
  348. function attributecount() { return true; }
  349. var navids='18952918';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
  350. 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');
  351. }
  352. function GenerateClientID(prefix, i, suffix) {
  353. if (i < 10) { return prefix + '0' + String(i) + suffix; }
  354. else { return prefix + String(i) + suffix; }
  355. }
  356. var checked = false;
  357. function SelectAll() {
  358. checked = !checked;
  359. var i = 3;
  360. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  361. while (i < 29) {
  362. if (chkSelect != null) chkSelect.checked = checked;
  363. i = i + 1;
  364. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  365. }
  366. }
  367. function IsAllChecked(checked) {
  368. var i = 3;
  369. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  370. while (i < 29) {
  371. if (chkSelect != null && chkSelect.checked != checked) return false;
  372. i = i + 1;
  373. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  374. }
  375. return true;
  376. }
  377. function IsAnyChecked(checked) {
  378. return !IsAllChecked(!checked);
  379. }
  380. function SelectRow(row, checked) {
  381. document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
  382. }
  383. function RowSelected(index, checked) { }
  384. //]]>
  385. </script>
  386. <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&amp;t=5f9d5645" type="text/javascript"></script>
  387. <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&amp;t=5f9d5645" type="text/javascript"></script>
  388. <div id="cookie-notification-bar">
  389. </div>
  390. <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
  391. <div id="wideGab" class="wideGab">
  392. <div id="ctl00_globalActionBar" class="global-action-bar">
  393. <div id="gab-container" class="container">
  394. <div id="contact" class="row">
  395. <div class="topPadding col-xs-6">
  396. <div class="inline-block">
  397. <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
  398. <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>&nbsp;
  399. 400-821-6111</a><span id="xqystvxeaxesuf"><a rel="file" style="display: none;" href="beuvdedusduqsxwbzebzy.html">zrcuqbtxdtwatvcqccqdzr</a></span>
  400. &nbsp;&nbsp;&nbsp;&nbsp;<span class="pipe">|</span>&nbsp;&nbsp;&nbsp;&nbsp;
  401. <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
  402. 反馈</a>
  403. </div>
  404. <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>
  405. </span>&nbsp;&nbsp;
  406. </div>
  407. <div class="col-xs-6 align-right">
  408. <div id="tdImg" class="inline-block topPadding9px">
  409. <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">
  410. <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
  411. <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>
  412. </div>
  413. <div class="topPadding inline-block">
  414. <span class="pipe">|</span>&nbsp;&nbsp;&nbsp;
  415. <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwsTwt16d7AwdRGIJTpvNELoofocpyAqgR08oeLaUCaCldcJhE5HWNv5fW%2faVvwZ%252b4g%3d">更改国家</a>
  416. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwsTwt16d7AwdRGIJTpvNELoofocpyAqgR08oeLaUCaCldcJhE5HWNv5fW%2faVvwZ%252b4g%3d"><img id="ctl00_gab1_img7" class="visualAttributeImage" src="../../../../images/international/flags/cn2.gif" alt="更改位置" style="border-width: 1px;" /></a>
  417. <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
  418. <span id="ctl00_gab1_lbl1">RMB</span>
  419. </div>
  420. </div>
  421. </div>
  422. </div>
  423. <div style="clear: both;"></div>
  424. <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
  425. class="thickbox"></a>
  426. <div id="divCurrencyPopup" class="currency-popup">
  427. <div class="currency-close">
  428. <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();">&nbsp;</a>
  429. </div>
  430. <div>
  431. <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>
  432. <br/>
  433. <div style="padding: 0 20px 0 20px">
  434. <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
  435. <br />
  436. <table width="95%">
  437. <tr>
  438. <td width="20%">
  439. <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
  440. </td>
  441. <td>
  442. <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
  443. <br/>
  444. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
  445. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
  446. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
  447. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
  448. </td>
  449. </tr>
  450. </table>
  451. </div>
  452. </div>
  453. </div>
  454. <div id="cartDialog" class="CartDialog" style="display: none;">
  455. <table id="miniCartOnly">
  456. <tr id="divall">
  457. <td id="tdCart">
  458. <table style="width: 100%; padding: 0px; border: 0px">
  459. <tr>
  460. <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
  461. <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
  462. </td>
  463. <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
  464. <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
  465. </td>
  466. </tr>
  467. </table>
  468. <table id="tableMiniCartItms">
  469. <tr id="trCart">
  470. <td>
  471. <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  472. <table id="tblMiniCart">
  473. <thead>
  474. <tr>
  475. <th class="miniCartColumn">制造商</th>
  476. <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
  477. <th class="miniCartColumn MiniCartHdBg">数量</th>
  478. <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
  479. </tr>
  480. </thead>
  481. </table>
  482. <script type="text/javascript">
  483. var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
  484. var currentGuid = 'd52d9367-7ce7-4a74-8e3e-f7d81093a006';
  485. var currentCountryCode = 'CN';
  486. var currentCurrencyCode= 'RMB';
  487. var currencyCulture = 'zh-CN';
  488. var cultureCode = 'zh-CN';
  489. var customerID = '';
  490. </script>
  491. <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  492. </td>
  493. </tr>
  494. </table>
  495. <div style="display: none; padding-top: 10px" id="divSingleItem">
  496. <table id="tblSingeItem">
  497. <tr>
  498. <!-- Here goes the single item -->
  499. <td style="padding-right: 15px">
  500. <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
  501. <td style="align: right; padding-right: 2px" id="tdSingleItms">
  502. <div id="divAll">
  503. <div id="wrapper">
  504. <div id="divLbl">
  505. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
  506. </div>
  507. <div id="divHyp">
  508. </div>
  509. </div>
  510. <div id="divRest">
  511. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
  512. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
  513. <br />
  514. <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
  515. </div>
  516. </div>
  517. </td>
  518. </tr>
  519. </table>
  520. </div>
  521. <div id="divForCart" class="divMsgLnkTotal" style="display: none">
  522. <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
  523. <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
  524. <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
  525. <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
  526. <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>
  527. </div>
  528. </div>
  529. </td>
  530. <td style="display: none" id="trCartSubTotal">
  531. <table class="tblMiniCartSub">
  532. <tr>
  533. <td align="right" style="padding-bottom: 5px; padding-top: 2px">
  534. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
  535. <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
  536. </td>
  537. </tr>
  538. <tr>
  539. <td align="right" style="padding-bottom: 5px">
  540. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
  541. </td>
  542. </tr>
  543. <tr>
  544. <td align="left" style="padding-bottom: 5px">
  545. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
  546. </td>
  547. </tr>
  548. <tr>
  549. <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
  550. <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>
  551. <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>
  552. </td>
  553. </tr>
  554. </table>
  555. <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
  556. </td>
  557. </tr>
  558. <tr id="trHideModalCheckBox" style="display: none">
  559. <td colspan="2">
  560. <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
  561. </td>
  562. </tr>
  563. </table>
  564. <script type="text/javascript">
  565. $(document).ready(function () {
  566. MiniCart.source = 'refine';
  567. });
  568. </script>
  569. </div>
  570. <script type="text/javascript">
  571. function OpenCurrencyPopup() {
  572. $("#tblink").trigger('click');
  573. }
  574. function CloseCurrencyPopup() {
  575. var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
  576. var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
  577. if (ddlCurrency != null && hidCurrencyValue != null) {
  578. ddlCurrency.selectedIndex = hidCurrencyValue.value;
  579. }
  580. window.location.reload();
  581. }
  582. </script>
  583. </div>
  584. </div>
  585. <div id="wideHeader" class="wideHeader">
  586. <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
  587. <div id="search" class="row">
  588. <div id="logo" class='col-xs-4'>
  589. <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
  590. </div>
  591. <div id="search-block" class="col-xs-4">
  592. <div id="search-title">
  593. 物料编号/关键字
  594. </div>
  595. <div id="search-bar">
  596. <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_NavHeader_btn1&#39;)">
  597. <div id="searchPartNumberBox" class="search-box inline-block">
  598. <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
  599. <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
  600. </div>
  601. <div class="inline-block">
  602. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
  603. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
  604. </div>
  605. </div>
  606. </div>
  607. </div>
  608. <div id="account" class="col-xs-4 align-right">
  609. <ul>
  610. <li>
  611. </li>
  612. <li>
  613. <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwsTwt16d7AwdRGIJTpvNELoofocpyAqgR08oeLaUCaCldcJhE5HWNv5fW%2faVvwZ%252b4g%3d">登录</a>
  614. </li>
  615. <li>
  616. </li>
  617. <li>
  618. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  619. </li>
  620. <li>
  621. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  622. </li>
  623. <li>
  624. <!-- Mush:TBC -->
  625. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  626. </li>
  627. </ul>
  628. </div>
  629. </div>
  630. <div id="navArea" class="row">
  631. <div class="col-xs-12">
  632. <div id="navMain" class="inline-block">
  633. <div class="navbar">
  634. <ul class="topnav">
  635. <li>
  636. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  637. <ul class="subnav" id="subnav">
  638. <li>
  639. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  643. </li>
  644. <li>
  645. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  646. </li>
  647. <li>
  648. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  649. </li>
  650. </ul>
  651. </li>
  652. <li>
  653. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  654. <ul class="subnav" id="subnav">
  655. <li>
  656. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  657. </li>
  658. <li>
  659. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  660. </li>
  661. <li>
  662. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  663. </li>
  664. <li>
  665. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  666. </li>
  667. </ul>
  668. </li>
  669. <li>
  670. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  671. <ul class="subnav" id="subnav">
  672. <li>
  673. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  674. </li>
  675. <li>
  676. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  677. </li>
  678. <li>
  679. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  680. </li>
  681. <li>
  682. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  683. </li>
  684. <li>
  685. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  686. </li>
  687. <li>
  688. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  689. </li>
  690. <li>
  691. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  692. </li>
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  695. </li>
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  704. </li>
  705. </ul>
  706. </li>
  707. <li>
  708. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  709. <ul class="subnav" id="subnav">
  710. <li>
  711. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  712. </li>
  713. <li>
  714. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  715. </li>
  716. <li>
  717. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  718. </li>
  719. <li>
  720. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  721. </li>
  722. <li>
  723. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  724. </li>
  725. <li>
  726. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  727. </li>
  728. <li>
  729. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  730. </li>
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  733. </li>
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  739. </li>
  740. </ul>
  741. </li>
  742. <li>
  743. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  744. <ul class="subnav" id="subnav">
  745. <li>
  746. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  747. </li>
  748. <li>
  749. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  750. </li>
  751. <li>
  752. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  753. </li>
  754. <li>
  755. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  756. </li>
  757. </ul>
  758. </li>
  759. <li>
  760. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  761. <ul class="subnav" id="subnav">
  762. <li>
  763. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  764. </li>
  765. <li>
  766. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  767. </li>
  768. <li>
  769. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  770. </li>
  771. <li>
  772. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  773. </li>
  774. <li>
  775. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  776. </li>
  777. </ul>
  778. </li>
  779. </ul>
  780. </div>
  781. </div>
  782. <div class="onlineCatalog inline-block">
  783. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  784. </div>
  785. </div>
  786. </div>
  787. </div>
  788. <div style="visibility: hidden; height: 0px;">
  789. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  790. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  791. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  792. </div>
  793. <script type="text/javascript">
  794. $(document).ready(function () {
  795. //* change to html5 catalog if javascript is enabled *
  796. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  797. });
  798. </script>
  799. <script type="text/javascript" src='../../../../javascript/genLib.js'></script>
  800. </div>
  801. <div id="ctl00_divWide" class="divWide">
  802. <link rel="stylesheet" type="text/css" href='../../../../css/fontawesome/css/font-awesome.min.css' />
  803. <br />
  804. <strong></strong>
  805. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  806. <strong>></strong>
  807. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-5g3c/" style="font-size: 9pt; font-weight: bold;">电路保护</a>
  808. <strong>></strong>
  809. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">保险丝</a>
  810. <hr />
  811. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  812. <div class="categorySearchLimits">
  813. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  814. </div>
  815. </div>
  816. </div>
  817. <table border="0" width="100%">
  818. <tr>
  819. <td>
  820. <div id="ctl00_ContentMain_pnl3">
  821. <div id="category-top" class="category-content">
  822. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> 保险丝</h1></a>
  823. <img id="ctl00_ContentMain_imageCat" class="category-img" src="../../../../images/DisplayCategories/18952918.png" alt="保险丝" />
  824. <!--Marketing Content-->
  825. <table id="ctl00_ContentMain_tbl5">
  826. <tr>
  827. <td>
  828. <div class="marketing-content2">
  829. <strong>保险丝(Fuses)</strong>,应有尽有。Mouser Electronics(贸泽电子)提供多家业界顶尖制造商的保险丝产品。Mouser Electronics(贸泽电子)是众多保险丝原厂的授权分销商,包括Bourns(伯恩斯)、Cooper Bussmann、Littelfuse、Schurter、TE Connectivity......等多家知名厂商。想了解更多保险丝产品,请浏览下列产品分类。
  830. </div>
  831. </td>
  832. </tr>
  833. </table>
  834. <div id="ctl00_ContentMain_refinemfglogo">
  835. </div>
  836. </div><!--.category-content-->
  837. </div>
  838. </td>
  839. </tr>
  840. <tr>
  841. <td>
  842. </td>
  843. </tr>
  844. <tr>
  845. <td>
  846. <div id="refine-page2">
  847. </div>
  848. </td>
  849. </tr>
  850. </table>
  851. <div id="ctl00_ContentMain_divTabs" class="row">
  852. <div class="col-xs-12">
  853. <div id="tabsNavigation" >
  854. <ul>
  855. <li id="ctl00_ContentMain_liProductsTab" class="active">
  856. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(34,235)</span></a>
  857. </li>
  858. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  859. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Fuses&#39;);" href="../../Datasheets/_/N-ba85y">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(2,092)</span></a>
  860. </li>
  861. <li id="ctl00_ContentMain_liImagesTab" class="">
  862. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Fuses&#39;);" href="../../Images/_/N-ba85y">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(1,030)</span></a>
  863. </li>
  864. <li id="ctl00_ContentMain_liNewestTab" class="">
  865. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Fuses&#39;);" href="../../Newest-Products/_/N-ba85y">最新产品</a>
  866. </li>
  867. </ul>
  868. </div>
  869. </div>
  870. </div>
  871. <div id="tabDivs" class="tab-divs">
  872. <!-- Hide the View links if javascript is disabled -->
  873. <noscript>
  874. <style type="text/css">
  875. .list-visual
  876. {
  877. display: none;
  878. }
  879. </style>
  880. </noscript>
  881. <div id="CategoryControlTop">
  882. <table class="table-categories">
  883. <tr><td valign="top">
  884. <input type="hidden" name="ctl00$ContentMain$uc6$listCategories$ctl01$hdnCatID" id="ctl00_ContentMain_uc6_listCategories_ctl01_hdnCatID" value="18952918" />
  885. <div class="topCatTitle">
  886. <div class="col-xs-8 no-left-pad">
  887. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkCategory" class="SearchResultsTopLevelCategory" href="./"><h2>保险丝类型</h2></a>
  888. </div>
  889. <div class="text-right">
  890. <div class="list-visual">
  891. <ul>
  892. <li class="right-border active">
  893. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;List&#39;, &#39;Fuses&#39;); SwitchListView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkListView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkListView&#39;,&#39;&#39;)">
  894. <i class="fa fa-th-list"></i>&nbsp;列表</a>
  895. </li>
  896. <li>
  897. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;Visual&#39;, &#39;Fuses&#39;); SwitchVisualView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkVisualView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkVisualView&#39;,&#39;&#39;)">
  898. <i class="fa fa-th-large"></i>&nbsp;目视</a>
  899. </li>
  900. </ul>
  901. </div>
  902. </div>
  903. </div>
  904. <ul class="sub-cats">
  905. <table id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories" cellspacing="0" style="width:100%;border-collapse:collapse;">
  906. <tr>
  907. <td>
  908. <li class="sub-cat">
  909. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../images/DisplayCategories/18953105.png" alt="Automotive Fuses" /></div>
  910. <div class="div-cat-title">
  911. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Automotive-Fuses/_/N-ba8b5/"><h3>汽车保险丝</h3></a>
  912. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lblRecordCount">1,813</span>)</span>
  913. </div>
  914. </li>
  915. </td><td>
  916. <li class="sub-cat">
  917. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../images/DisplayCategories/18953333.png" alt="Fuses with Leads (Through Hole)" /></div>
  918. <div class="div-cat-title">
  919. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Fuses-with-Leads-Through-Hole/_/N-ba8hh/"><h3>带引线的保险丝(通孔型)</h3></a>
  920. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lblRecordCount">3,282</span>)</span>
  921. </div>
  922. </li>
  923. </td><td>
  924. <li class="sub-cat">
  925. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../images/DisplayCategories/18953114.png" alt="Specialty Fuses" /></div>
  926. <div class="div-cat-title">
  927. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Specialty-Fuses/_/N-ba8be/"><h3>特种保险丝</h3></a>
  928. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_lblRecordCount">10,021</span>)</span>
  929. </div>
  930. </li>
  931. </td>
  932. </tr><tr>
  933. <td>
  934. <li class="sub-cat">
  935. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../images/DisplayCategories/18953316.png" alt="Cartridge Fuses" /></div>
  936. <div class="div-cat-title">
  937. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Cartridge-Fuses/_/N-ba8h0/"><h3>保险丝管</h3></a>
  938. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lblRecordCount">9,662</span>)</span>
  939. </div>
  940. </li>
  941. </td><td>
  942. <li class="sub-cat">
  943. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../images/DisplayCategories/18953325.png" alt="Industrial &amp; Electrical Fuses" /></div>
  944. <div class="div-cat-title">
  945. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Industrial-Electrical-Fuses/_/N-ba8h9/"><h3>工业与电气保险丝</h3></a>
  946. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lblRecordCount">3,097</span>)</span>
  947. </div>
  948. </li>
  949. </td><td>
  950. <li class="sub-cat">
  951. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../images/DisplayCategories/18953310.png" alt="Surface Mount Fuses" /></div>
  952. <div class="div-cat-title">
  953. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Surface-Mount-Fuses/_/N-ba8gu/"><h3>表面贴装式保险丝</h3></a>
  954. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl07_lblRecordCount">3,085</span>)</span>
  955. </div>
  956. </li>
  957. </td>
  958. </tr><tr>
  959. <td>
  960. <li class="sub-cat">
  961. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../images/DisplayCategories/18953120.png" alt="Fuse Kits &amp; Assortments" /></div>
  962. <div class="div-cat-title">
  963. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Fuse-Kits-Assortments/_/N-ba8bk/"><h3>保险丝套件与多件套</h3></a>
  964. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lblRecordCount">335</span>)</span>
  965. </div>
  966. </li>
  967. </td><td>
  968. <li class="sub-cat">
  969. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../images/DisplayCategories/18960434.png" alt="Resettable Fuses - PPTC" /></div>
  970. <div class="div-cat-title">
  971. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Resettable-Fuses-PPTC/_/N-badyq/"><h3>可复位保险丝—PPTC</h3></a>
  972. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_lblRecordCount">2,940</span>)</span>
  973. </div>
  974. </li>
  975. </td><td></td>
  976. </tr>
  977. </table></ul>
  978. </td></tr></table>
  979. <div id="search-left-col">
  980. </div>
  981. </div>
  982. <script type="text/javascript">
  983. //<![CDATA[
  984. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  985. //]]>
  986. </script>
  987. <div id="ctl00_ContentMain_liProducts">
  988. <div id="refineSearchDiv">
  989. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  990. <div id="refine-keyword-search-2">
  991. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  992. <div id="boxPartSearch2">
  993. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  994. <tr>
  995. <td rowspan="3" style="vertical-align: middle">
  996. <div id="searchPartNumberBox" class="search-box" >
  997. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  998. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  999. </div>
  1000. </td>
  1001. </tr>
  1002. <tr>
  1003. <td class="chk-Search">
  1004. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  1005. </td>
  1006. </tr>
  1007. <tr>
  1008. <td class="chk-Search">
  1009. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_ContentMain_uc2_chkRoHSCompliant" type="checkbox" name="ctl00$ContentMain$uc2$chkRoHSCompliant" /><label for="ctl00_ContentMain_uc2_chkRoHSCompliant">符合RoHS</label></span>
  1010. </td>
  1011. </tr>
  1012. </table>
  1013. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  1014. </div>
  1015. <script type="text/javascript" src='../../../../flash/js/Placeholders.min.js'></script>
  1016. <script type="text/javascript" src='../../../../flash/js/watermark.js'></script>
  1017. </div>
  1018. </div>
  1019. <div id="refine-mfg-select-2">
  1020. </div>
  1021. <div class="clear">
  1022. </div>
  1023. <table class="SearchParametricTable2">
  1024. <tr>
  1025. <td>
  1026. <div id="AttributesDiv2">
  1027. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  1028. <div class="categorySearchLimits">
  1029. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  1030. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<span title="电路保护"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254136|Circuit Protection" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx254136|Circuit Protection" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx18952918|Fuses&#39;).checked = false;" /></span>&nbsp;<b>电路保护</b>&nbsp;&#62;&nbsp;<span title="保险丝"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx18952918|Fuses" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx18952918|Fuses" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254136|Circuit Protection&#39;).checked = true;" /></span>&nbsp;<b>保险丝</b>
  1031. </div>
  1032. </div>
  1033. <hr/>
  1034. </div>
  1035. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  1036. <p class="applied-filter-lbl">
  1037. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  1038. <span id="ctl00_ContentMain_uc5_lblreccount">34,235 匹配</span>
  1039. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  1040. </p>
  1041. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  1042. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  1043. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  1044. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../images/icon_tooltip.png" />
  1045. <br />
  1046. </div>
  1047. </div>
  1048. <table id="tb1" style="width: 100%;">
  1049. <tr>
  1050. <td>
  1051. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  1052. <tr>
  1053. <td>
  1054. <table cellpadding="0" cellspacing="0">
  1055. <tr>
  1056. <td>
  1057. <table>
  1058. <tr>
  1059. <td>
  1060. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  1061. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  1062. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1063. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1064. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1065. sorted parametric attributes from an endeca attribute group --->
  1066. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  1067. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  1068. &nbsp;
  1069. </div>
  1070. </td>
  1071. </tr>
  1072. <tr>
  1073. <td>
  1074. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  1075. <option value="4285299907">Adaptive Interconnect Electronics</option>
  1076. <option value="4294759391">AEM</option>
  1077. <option value="4294759664">Altech</option>
  1078. <option value="4294764080">Amphenol</option>
  1079. <option value="4294758869">AMPROBE</option>
  1080. <option value="4294759694">AVX</option>
  1081. <option value="4291501706">B&amp;B Electronics</option>
  1082. <option value="4294759237">B&amp;K Precision</option>
  1083. <option value="4284634897">Bel</option>
  1084. <option value="4294759693">Bourns</option>
  1085. <option value="4294759264">Continental Industries</option>
  1086. <option value="4292773685">Crystek</option>
  1087. <option value="4288463162">Diodes Incorporated</option>
  1088. <option value="4284899682">Eaton</option>
  1089. <option value="4294759256">FCI</option>
  1090. <option value="4294758872">Fluke</option>
  1091. <option value="4287829429">Grayhill</option>
  1092. <option value="4294424657">Honeywell</option>
  1093. <option value="4294013539">Kamaya</option>
  1094. <option value="4294759671">KOA Speer</option>
  1095. <option value="4294759313">Littelfuse</option>
  1096. <option value="4289574402">Metcal</option>
  1097. <option value="4294759208">Molex</option>
  1098. <option value="4294759663">ON Semiconductor</option>
  1099. <option value="4292890524">Panasonic</option>
  1100. <option value="4294759378">Phoenix Contact</option>
  1101. <option value="4290493392">Schneider Electric</option>
  1102. <option value="4294764378">Schurter</option>
  1103. <option value="4292402259">Skyworks</option>
  1104. <option value="4294763307">Souriau</option>
  1105. <option value="4292733690">TE Connectivity</option>
  1106. <option value="4294759685">Vishay</option>
  1107. <option value="4294400163">Walsin</option>
  1108. </select>
  1109. </td>
  1110. </tr>
  1111. <tr>
  1112. <td>
  1113. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1114. </td>
  1115. </tr>
  1116. </table>
  1117. </td>
  1118. <td valign="bottom" style="width: 15px;">
  1119. &nbsp;
  1120. </td>
  1121. </tr>
  1122. </table>
  1123. </td><td>
  1124. <table cellpadding="0" cellspacing="0">
  1125. <tr>
  1126. <td>
  1127. <table>
  1128. <tr>
  1129. <td>
  1130. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">产品</span>
  1131. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1132. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1133. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  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$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1139. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688640" />
  1140. </div>
  1141. </td>
  1142. </tr>
  1143. <tr>
  1144. <td>
  1145. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688640">
  1146. <option value="4294407232">Axial Lead and Cartridge Fuses</option>
  1147. <option value="4273518545">Blade Fuse</option>
  1148. <option value="4294407220">Bolt Down Fuse</option>
  1149. <option value="4273518485">Bosch Torpedo Type Fuse</option>
  1150. <option value="4290316550">Cable Limiters</option>
  1151. <option value="4273518522">Cartridge Box Fuse</option>
  1152. <option value="4282551648">Ceramic Fuse</option>
  1153. <option value="4292834008">Class CC Fuse</option>
  1154. <option value="4273435948">Class CD Fuse</option>
  1155. <option value="4273435949">Class CF Fuse</option>
  1156. <option value="4273435957">Class G Fuse</option>
  1157. <option value="4273436161">Class H Fuse</option>
  1158. <option value="4273436171">Class J Fuse</option>
  1159. <option value="4273435954">Class K5 and H Fuse</option>
  1160. <option value="4273436143">Class K5 Fuse</option>
  1161. <option value="4273436162">Class L Fuse</option>
  1162. <option value="4273436169">Class RK1 Fuse</option>
  1163. <option value="4273436140">Class RK5 Fuse</option>
  1164. <option value="4273436163">Class T Fuse</option>
  1165. <option value="4273518444">Diode Resistor Shunt Fuse</option>
  1166. <option value="4273516014">Flasher</option>
  1167. <option value="4273516217">Fuse Accessory</option>
  1168. <option value="4273518716">Fuse Assortment</option>
  1169. <option value="4288039693">Fuse Insert</option>
  1170. <option value="4294407147">Fuse Kit</option>
  1171. <option value="4273518224">Fuse Rack</option>
  1172. <option value="4273518694">Glass Fuse</option>
  1173. <option value="4273518408">Hi-Rel Fuse</option>
  1174. <option value="4290024946">High Current Thermal Fuses</option>
  1175. <option value="4273518306">Lift Truck and Battery Operated Fuse</option>
  1176. <option value="4290316402">Medium Voltage Fuses</option>
  1177. <option value="4294407211">Midget Fuse</option>
  1178. <option value="4273518553">PCB Mount Fuse</option>
  1179. <option value="4288039684">Plug-In Fuse</option>
  1180. <option value="4288195240">Solar String Fuses</option>
  1181. <option value="4292844738">Specialty Fuse</option>
  1182. <option value="4290316557">Specialty Fuses</option>
  1183. <option value="4273463468">Surface Mount Ceramic Fuse</option>
  1184. <option value="4294407225">Surface Mount Fuse</option>
  1185. <option value="4273463450">Surface Mount Fuse with Fuse Clip</option>
  1186. <option value="4273463686">Surface Mount Fuse with Fuse Holder</option>
  1187. <option value="4273463482">Surface Mount Glass Fuse</option>
  1188. <option value="4273517022">Telecommunication Power Fuse</option>
  1189. <option value="4288039682">Thermal Release Fuse</option>
  1190. </select>
  1191. </td>
  1192. </tr>
  1193. <tr>
  1194. <td>
  1195. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1196. </td>
  1197. </tr>
  1198. </table>
  1199. </td>
  1200. <td valign="bottom" style="width: 15px;">
  1201. &nbsp;
  1202. </td>
  1203. </tr>
  1204. </table>
  1205. </td><td>
  1206. <table cellpadding="0" cellspacing="0">
  1207. <tr>
  1208. <td>
  1209. <table>
  1210. <tr>
  1211. <td>
  1212. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">主体类型</span>
  1213. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1214. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1215. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1216. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1217. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1218. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1219. sorted parametric attributes from an endeca attribute group --->
  1220. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1221. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="688302" />
  1222. </div>
  1223. </td>
  1224. </tr>
  1225. <tr>
  1226. <td>
  1227. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688302" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_688302">
  1228. <option value="4290304477">Cable Fuse Links</option>
  1229. <option value="4290305010">Cartridge Blade Fuses</option>
  1230. <option value="4290305147">Cartridge Fuses</option>
  1231. <option value="4290305065">Cartridge Leaded Fuses</option>
  1232. <option value="4289103263">Cylindrical</option>
  1233. <option value="4289083317">Cylindrical Leaded</option>
  1234. <option value="4290305100">Flat Body Blade Fuses</option>
  1235. <option value="4290210348">Housed Fuses</option>
  1236. <option value="4290304873">In Line Fuses</option>
  1237. <option value="4290305120">Leaded Fuses</option>
  1238. <option value="4290211065">Non-Housing Fuses</option>
  1239. <option value="4290305020">Round Body Blade Fuses</option>
  1240. <option value="4290305038">Round Body Fuses</option>
  1241. <option value="4289860584">Round Body Pin Fuses</option>
  1242. <option value="4290304988">Square Body Blade Fuses</option>
  1243. <option value="4290304853">Square Body Fuses</option>
  1244. <option value="4289860535">Square Body Pin Fuses</option>
  1245. </select>
  1246. </td>
  1247. </tr>
  1248. <tr>
  1249. <td>
  1250. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1251. </td>
  1252. </tr>
  1253. </table>
  1254. </td>
  1255. <td valign="bottom" style="width: 15px;">
  1256. &nbsp;
  1257. </td>
  1258. </tr>
  1259. </table>
  1260. </td><td>
  1261. <table cellpadding="0" cellspacing="0">
  1262. <tr>
  1263. <td>
  1264. <table>
  1265. <tr>
  1266. <td>
  1267. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">电流额定值</span>
  1268. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1269. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1270. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1271. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1272. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1273. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1274. sorted parametric attributes from an endeca attribute group --->
  1275. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1276. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="688370" />
  1277. </div>
  1278. </td>
  1279. </tr>
  1280. <tr>
  1281. <td>
  1282. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688370" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_688370">
  1283. <option value="4294647228">2 mA</option>
  1284. <option value="4294647138">3 mA</option>
  1285. <option value="4294647978">5 mA</option>
  1286. <option value="4294640894">7 mA</option>
  1287. <option value="4294646988">0.01 A</option>
  1288. <option value="4294642144">10 mA</option>
  1289. <option value="4294647983">15 mA</option>
  1290. <option value="4290210975">15.625 mA</option>
  1291. <option value="4294647971">20 mA</option>
  1292. <option value="4294647984">25 mA</option>
  1293. <option value="4294649080">30 mA</option>
  1294. <option value="4294646125">0.031 A</option>
  1295. <option value="4294005552">31 mA</option>
  1296. <option value="4290211035">31.25 mA</option>
  1297. <option value="4294646864">32 mA</option>
  1298. <option value="4294645575">0.04 A</option>
  1299. <option value="4294646120">40 mA</option>
  1300. <option value="4294647980">50 mA</option>
  1301. <option value="4294647986">60 mA</option>
  1302. <option value="4294645900">62 mA</option>
  1303. <option value="4290211010">62.5 mA</option>
  1304. <option value="4294646537">63 mA</option>
  1305. <option value="4290210454">63.81 mA</option>
  1306. <option value="4294435169">70 mA</option>
  1307. <option value="4294639196">75 mA</option>
  1308. <option value="4294647987">80 mA</option>
  1309. <option value="4271176102">80 mA to 10 A</option>
  1310. <option value="4294647972">100 mA</option>
  1311. <option value="4294646126">125 mA</option>
  1312. <option value="4294648565">150 mA</option>
  1313. <option value="4294646168">160 mA</option>
  1314. <option value="4271176084">160 mA to 10 A</option>
  1315. <option value="4294645366">0.175 A</option>
  1316. <option value="4292974089">175 mA</option>
  1317. <option value="4294646545">180 mA</option>
  1318. <option value="4290211002">187 mA</option>
  1319. <option value="4290210977">187.5 mA</option>
  1320. <option value="4294647982">200 mA</option>
  1321. <option value="4294646554">250 mA</option>
  1322. <option value="4294647317">300 mA</option>
  1323. <option value="4292507574">310 mA</option>
  1324. <option value="4290210973">312.5 mA</option>
  1325. <option value="4294646110">315 mA</option>
  1326. <option value="4294646083">350 mA</option>
  1327. <option value="4294645902">375 mA</option>
  1328. <option value="4294646578">400 mA</option>
  1329. <option value="4291359630">440 mA</option>
  1330. <option value="4294648552">450 mA</option>
  1331. <option value="4294648567">0.5 A</option>
  1332. <option value="4294648564">500 mA</option>
  1333. <option value="4271176090">500 mA to 10 A</option>
  1334. <option value="4294645906">600 mA</option>
  1335. <option value="4290210964">625 mA</option>
  1336. <option value="4294646990">630 mA</option>
  1337. <option value="4294004927">650 mA</option>
  1338. <option value="4290211023">680 mA</option>
  1339. <option value="4294645905">700 mA</option>
  1340. <option value="4294644754">710 mA</option>
  1341. <option value="4294645901">750 mA</option>
  1342. <option value="4294646884">0.8 A</option>
  1343. <option value="4294646175">800 mA</option>
  1344. <option value="4290210451">875 mA</option>
  1345. <option value="4294648563">1 A</option>
  1346. <option value="4291335904">1 A to 30 A</option>
  1347. <option value="4294646098">1.12 A</option>
  1348. <option value="4294645108">1.125 A</option>
  1349. <option value="4294004912">1.16 A</option>
  1350. <option value="4294645635">1.2 A</option>
  1351. <option value="4294647493">1.25 A</option>
  1352. <option value="4294648862">1.3 A</option>
  1353. <option value="4294644775">1.33 A</option>
  1354. <option value="4294646071">1.4 A</option>
  1355. <option value="4294648571">1.5 A</option>
  1356. <option value="4294647506">1.6 A</option>
  1357. <option value="4294647562">1.75 A</option>
  1358. <option value="4294646093">1.8 A</option>
  1359. <option value="4291469611">2 A</option>
  1360. <option value="4294649106">2 A</option>
  1361. <option value="4290758769">2 A to 30 A</option>
  1362. <option value="4294646847">2.25 A</option>
  1363. <option value="4294649134">2.5 A</option>
  1364. <option value="4290210482">2.75 A</option>
  1365. <option value="4294646969">2.8 A</option>
  1366. <option value="4294649033">3 A</option>
  1367. <option value="4294647248">3.15 A</option>
  1368. <option value="4294647033">3.2 A</option>
  1369. <option value="4294648543">3.5 A</option>
  1370. <option value="4294648783">4 A</option>
  1371. <option value="4294646169">4.5 A</option>
  1372. <option value="4294649104">5 A</option>
  1373. <option value="4294645675">5.5 A</option>
  1374. <option value="4294646069">5.6 A</option>
  1375. <option value="4294649030">6 A</option>
  1376. <option value="4294646072">6.25 A</option>
  1377. <option value="4294649005">6.3 A</option>
  1378. <option value="4294646123">6.5 A</option>
  1379. <option value="4294648772">7 A</option>
  1380. <option value="4294648768">7.5 A</option>
  1381. <option value="4294649109">8 A</option>
  1382. <option value="4294648771">9 A</option>
  1383. <option value="4288175500">9.1 A</option>
  1384. <option value="4273019719">9.12 A</option>
  1385. <option value="4273019720">9.15 A</option>
  1386. <option value="4273019711">9.16 A</option>
  1387. <option value="4273019721">9.2 A</option>
  1388. <option value="4294649083">10 A</option>
  1389. <option value="4294644713">10.08 A</option>
  1390. <option value="4294646854">11 A</option>
  1391. <option value="4294648778">12 A</option>
  1392. <option value="4294646863">12.5 A</option>
  1393. <option value="4294648779">13 A</option>
  1394. <option value="4294648774">14 A</option>
  1395. <option value="4294649120">15 A</option>
  1396. <option value="4294648767">16 A</option>
  1397. <option value="4294634904">17 A</option>
  1398. <option value="4294646170">17.5 A</option>
  1399. <option value="4294645094">18 A</option>
  1400. <option value="4294646087">19 A</option>
  1401. <option value="4294649127">20 A</option>
  1402. <option value="4294645611">21 A</option>
  1403. <option value="4294648538">23 A</option>
  1404. <option value="4294634633">24 A</option>
  1405. <option value="4294648781">25 A</option>
  1406. <option value="4290210528">29 A</option>
  1407. <option value="4294649124">30 A</option>
  1408. <option value="4290210794">31.5 A</option>
  1409. <option value="4294648569">32 A</option>
  1410. <option value="4294648775">35 A</option>
  1411. <option value="4290210490">35.5 A</option>
  1412. <option value="4294644756">36 A</option>
  1413. <option value="4294649069">40 A</option>
  1414. <option value="4294648786">45 A</option>
  1415. <option value="4294648787">50 A</option>
  1416. <option value="4294646627">55 A</option>
  1417. <option value="4294635140">56 A</option>
  1418. <option value="4294648761">60 A</option>
  1419. <option value="4294648550">63 A</option>
  1420. <option value="4294646162">65 A</option>
  1421. <option value="4292849108">68 A</option>
  1422. <option value="4294648751">70 A</option>
  1423. <option value="4291717993">71 A</option>
  1424. <option value="4294646381">75 A</option>
  1425. <option value="4294648636">80 A</option>
  1426. <option value="4294635098">85 A</option>
  1427. <option value="4294648777">90 A</option>
  1428. <option value="4294649074">100 A</option>
  1429. <option value="4294646094">110 A</option>
  1430. <option value="4290210817">112 A</option>
  1431. <option value="4294648754">120 A</option>
  1432. <option value="4294648572">125 A</option>
  1433. <option value="4294646166">130 A</option>
  1434. <option value="4294648665">135 A</option>
  1435. <option value="4294645016">140 A</option>
  1436. <option value="4294648753">150 A</option>
  1437. <option value="4294646134">160 A</option>
  1438. <option value="4294646138">170 A</option>
  1439. <option value="4294646490">175 A</option>
  1440. <option value="4294646151">180 A</option>
  1441. <option value="4294578160">190 A</option>
  1442. <option value="4294648734">200 A</option>
  1443. <option value="4294606072">220 A</option>
  1444. <option value="4294646097">224 A</option>
  1445. <option value="4294646522">225 A</option>
  1446. <option value="4294646139">230 A</option>
  1447. <option value="4292689682">240 A</option>
  1448. <option value="4294646432">250 A</option>
  1449. <option value="4292826072">260 A</option>
  1450. <option value="4292402628">270 A</option>
  1451. <option value="4294646131">275 A</option>
  1452. <option value="4294646086">280 A</option>
  1453. <option value="4294646137">300 A</option>
  1454. <option value="4294646160">310 A</option>
  1455. <option value="4294646127">315 A</option>
  1456. <option value="4294606084">320 A</option>
  1457. <option value="4294646064">325 A</option>
  1458. <option value="4292405204">330 A</option>
  1459. <option value="4294607339">340 A</option>
  1460. <option value="4294646133">350 A</option>
  1461. <option value="4294646128">355 A</option>
  1462. <option value="4294648557">365 A</option>
  1463. <option value="4294646096">380 A</option>
  1464. <option value="4294646115">390 A</option>
  1465. <option value="4294648743">400 A</option>
  1466. <option value="4294646116">425 A</option>
  1467. <option value="4292823464">430 A</option>
  1468. <option value="4290210354">440 A</option>
  1469. <option value="4294646145">450 A</option>
  1470. <option value="4294646144">480 A</option>
  1471. <option value="4294646248">500 A</option>
  1472. <option value="4290210809">525 A</option>
  1473. <option value="4294646155">550 A</option>
  1474. <option value="4292404833">560 A</option>
  1475. <option value="4294648732">600 A</option>
  1476. <option value="4294644940">601 A</option>
  1477. <option value="4290210782">610 A</option>
  1478. <option value="4294646101">630 A</option>
  1479. <option value="4294646159">650 A</option>
  1480. <option value="4294644703">675 A</option>
  1481. <option value="4294646140">700 A</option>
  1482. <option value="4290210777">710 A</option>
  1483. <option value="4294645102">750 A</option>
  1484. <option value="4294646112">800 A</option>
  1485. <option value="4290210705">801 A</option>
  1486. <option value="4294578163">850 A</option>
  1487. <option value="4294646132">900 A</option>
  1488. <option value="4291359779">1 kA</option>
  1489. <option value="4291359780">1.1 kA</option>
  1490. <option value="4291718106">1.2 kA</option>
  1491. <option value="4291359769">1.25 kA</option>
  1492. <option value="4291359719">1.3 kA</option>
  1493. <option value="4291359731">1.35 kA</option>
  1494. <option value="4291359770">1.4 kA</option>
  1495. <option value="4291359766">1.5 kA</option>
  1496. <option value="4291718105">1.6 kA</option>
  1497. <option value="4290210808">1.7 kA</option>
  1498. <option value="4291359767">1.8 kA</option>
  1499. <option value="4290210667">1.875 kA</option>
  1500. <option value="4291359720">1.9 kA</option>
  1501. <option value="4291718107">2 kA</option>
  1502. <option value="4290210706">2.001 kA</option>
  1503. <option value="4291359717">2.1 kA</option>
  1504. <option value="4291359716">2.2 kA</option>
  1505. <option value="4291359761">2.25 kA</option>
  1506. <option value="4291359721">2.3 kA</option>
  1507. <option value="4291359762">2.4 kA</option>
  1508. <option value="4291359775">2.5 kA</option>
  1509. <option value="4290210676">2.7 kA</option>
  1510. <option value="4290210805">2.8 kA</option>
  1511. <option value="4291359777">3 kA</option>
  1512. <option value="4290210702">3.001 kA</option>
  1513. <option value="4290210484">3.1 kA</option>
  1514. <option value="4290210489">3.125 kA</option>
  1515. <option value="4291359725">3.2 kA</option>
  1516. <option value="4291359764">3.5 kA</option>
  1517. <option value="4290210675">3.6 kA</option>
  1518. <option value="4290210807">3.7 kA</option>
  1519. <option value="4291359718">3.8 kA</option>
  1520. <option value="4291359776">4 kA</option>
  1521. <option value="4290210803">4.2 kA</option>
  1522. <option value="4290210540">4.4 kA</option>
  1523. <option value="4294607269">4.5 kA</option>
  1524. <option value="4291359727">5 kA</option>
  1525. <option value="4290210804">5.4 kA</option>
  1526. <option value="4291359726">6 kA</option>
  1527. <option value="4290210806">6.5 kA</option>
  1528. <option value="4291011584">10 kA</option>
  1529. <option value="4291044545">40 kA</option>
  1530. <option value="4290210811">375 kA</option>
  1531. <option value="4289641740">-</option>
  1532. <option value="4290210745">100M125 A</option>
  1533. <option value="4290210744">100M160 A</option>
  1534. <option value="4290210743">100M200 A</option>
  1535. <option value="4290210739">200M250 A</option>
  1536. <option value="4290210738">200M315 A</option>
  1537. <option value="4290210690">20M25 A</option>
  1538. <option value="4290210689">20M32 A</option>
  1539. <option value="4290210687">20M36 A</option>
  1540. <option value="4290210737">315M400 A</option>
  1541. <option value="4290210686">32M36 A</option>
  1542. <option value="4290210768">32M40 A</option>
  1543. <option value="4290210688">32M50 A</option>
  1544. <option value="4290210767">32M63 A</option>
  1545. <option value="4290210736">400M500 A</option>
  1546. <option value="4290210762">63M100 A</option>
  1547. <option value="4290210761">63M80 A</option>
  1548. </select>
  1549. </td>
  1550. </tr>
  1551. <tr>
  1552. <td>
  1553. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1554. </td>
  1555. </tr>
  1556. </table>
  1557. </td>
  1558. <td valign="bottom" style="width: 15px;">
  1559. &nbsp;
  1560. </td>
  1561. </tr>
  1562. </table>
  1563. </td><td>
  1564. <table cellpadding="0" cellspacing="0">
  1565. <tr>
  1566. <td>
  1567. <table>
  1568. <tr>
  1569. <td>
  1570. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">电压额定值 AC</span>
  1571. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1572. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1573. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1574. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1575. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1576. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1577. sorted parametric attributes from an endeca attribute group --->
  1578. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1579. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="688770" />
  1580. </div>
  1581. </td>
  1582. </tr>
  1583. <tr>
  1584. <td>
  1585. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$688770" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_688770">
  1586. <option value="4292747720">24 V</option>
  1587. <option value="4294648463">25 V</option>
  1588. <option value="4294644118">32 V</option>
  1589. <option value="4273001682">32 VAC</option>
  1590. <option value="4294648358">48 V</option>
  1591. <option value="4294647418">50 V</option>
  1592. <option value="4294648403">60 V</option>
  1593. <option value="4290305124">63 V</option>
  1594. <option value="4292741201">65 V</option>
  1595. <option value="4273002380">65 VAC</option>
  1596. <option value="4294644136">72 V</option>
  1597. <option value="4294648427">75 V</option>
  1598. <option value="4292471222">100 V</option>
  1599. <option value="4294646673">115 V</option>
  1600. <option value="4294643970">120 V</option>
  1601. <option value="4292747786">125 V</option>
  1602. <option value="4292747729">125 V, 250 V</option>
  1603. <option value="4292747807">125 VAC</option>
  1604. <option value="4294648380">130 V</option>
  1605. <option value="4294649149">150 V</option>
  1606. <option value="4274663730">150 VAC</option>
  1607. <option value="4292475644">170 V</option>
  1608. <option value="4291224276">208 V</option>
  1609. <option value="4292475604">220 V</option>
  1610. <option value="4294647428">230 V</option>
  1611. <option value="4292707788">240 V</option>
  1612. <option value="4294648371">250 V</option>
  1613. <option value="4290304039">250 V / 600 V</option>
  1614. <option value="4281807596">250 V, 350 V</option>
  1615. <option value="4292747766">250 VAC</option>
  1616. <option value="4271176082">250 VAC to 277 VAC</option>
  1617. <option value="4292471172">277 V</option>
  1618. <option value="4290210549">280 V</option>
  1619. <option value="4294648418">300 V</option>
  1620. <option value="4274662035">300 VAC</option>
  1621. <option value="4294646025">350 V</option>
  1622. <option value="4273019724">350 VAC</option>
  1623. <option value="4294643976">380 V</option>
  1624. <option value="4292471768">400 V</option>
  1625. <option value="4292471540">415 V</option>
  1626. <option value="4294647435">420 V</option>
  1627. <option value="4294646417">440 V</option>
  1628. <option value="4287746692">440 VAC</option>
  1629. <option value="4290304321">450 V</option>
  1630. <option value="4268931445">450 VAC</option>
  1631. <option value="4294646638">480 V</option>
  1632. <option value="4292475631">500 V</option>
  1633. <option value="4291011329">500 VAC</option>
  1634. <option value="4294647373">550 V</option>
  1635. <option value="4292471767">600 V</option>
  1636. <option value="4292747767">600 VAC</option>
  1637. <option value="4294646539">625 V</option>
  1638. <option value="4290304942">650 V</option>
  1639. <option value="4294646524">660 V</option>
  1640. <option value="4290304980">690 V</option>
  1641. <option value="4290305004">700 V</option>
  1642. <option value="4294646634">750 V</option>
  1643. <option value="4290304738">800 V</option>
  1644. <option value="4290210724">850 V</option>
  1645. <option value="4290304953">900 V</option>
  1646. <option value="4290615332">1 kV</option>
  1647. <option value="4273021226">1 kVAC</option>
  1648. <option value="4294646663">1000 V</option>
  1649. <option value="4291469863">1.1 kV</option>
  1650. <option value="4290304967">1.2 kV</option>
  1651. <option value="4272878694">1.2 kVAC</option>
  1652. <option value="4286354605">1250 V</option>
  1653. <option value="4290304940">1.3 kV</option>
  1654. <option value="4290615195">1.4 kV</option>
  1655. <option value="4291512751">1.5 kV</option>
  1656. <option value="4272878695">1.5 kVAC</option>
  1657. <option value="4290304345">2.1 kV</option>
  1658. <option value="4290615189">2.4 kV</option>
  1659. <option value="4290304639">2.4 kV / 4.8 kV</option>
  1660. <option value="4290304714">2.5 kV</option>
  1661. <option value="4290304832">2.54 kV</option>
  1662. <option value="4290305007">2.75 kV</option>
  1663. <option value="4290210700">3 kA</option>
  1664. <option value="4290304430">3.6 kV</option>
  1665. <option value="4290305021">3.8 kV</option>
  1666. <option value="4290210699">4 kA</option>
  1667. <option value="4290304929">4.8 kV</option>
  1668. <option value="4290210698">5 kA</option>
  1669. <option value="4290304706">5 kV</option>
  1670. <option value="4290304797">5.08 kV</option>
  1671. <option value="4290304992">5.5 kV</option>
  1672. <option value="4290210697">6 kA</option>
  1673. <option value="4290304972">7 kV</option>
  1674. <option value="4290304811">7.2 kV</option>
  1675. <option value="4290304418">7.5 kV</option>
  1676. <option value="4290305013">8.25 kV</option>
  1677. <option value="4290304725">8.3 kV</option>
  1678. <option value="4290304779">10 kV</option>
  1679. <option value="4290304454">12 kV</option>
  1680. <option value="4290304758">14.4 kV</option>
  1681. <option value="4290304474">15 kV</option>
  1682. <option value="4290305011">15.5 kV</option>
  1683. <option value="4290304407">17 kV</option>
  1684. <option value="4290304445">17.5 kV</option>
  1685. <option value="4290304439">22 kV</option>
  1686. <option value="4290304438">23 kV</option>
  1687. <option value="4290304437">24 kV</option>
  1688. <option value="4290304984">25 kV</option>
  1689. <option value="4290304931">25.5 kV</option>
  1690. <option value="4290304979">25.8 kV</option>
  1691. <option value="4290304835">27 kV</option>
  1692. <option value="4290304615">27.54 kV</option>
  1693. <option value="4290304433">27.6 kV</option>
  1694. <option value="4290304432">33 kV</option>
  1695. <option value="4290304429">36 kV</option>
  1696. <option value="4290304970">38 kV</option>
  1697. <option value="4290304423">44 kV</option>
  1698. <option value="4290304420">72.5 kV</option>
  1699. <option value="4289033610">-</option>
  1700. </select>
  1701. </td>
  1702. </tr>
  1703. <tr>
  1704. <td>
  1705. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1706. </td>
  1707. </tr>
  1708. </table>
  1709. </td>
  1710. <td valign="bottom" style="width: 15px;">
  1711. &nbsp;
  1712. </td>
  1713. </tr>
  1714. </table>
  1715. </td><td>
  1716. <table cellpadding="0" cellspacing="0">
  1717. <tr>
  1718. <td>
  1719. <table>
  1720. <tr>
  1721. <td>
  1722. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">电压额定值 DC</span>
  1723. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1724. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1725. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1726. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1727. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1728. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1729. sorted parametric attributes from an endeca attribute group --->
  1730. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1731. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="688771" />
  1732. </div>
  1733. </td>
  1734. </tr>
  1735. <tr>
  1736. <td>
  1737. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$688771" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_688771">
  1738. <option value="4292736964">12 VDC</option>
  1739. <option value="4276089871">14 VDC</option>
  1740. <option value="4288260387">16 VDC</option>
  1741. <option value="4288280698">24 VDC</option>
  1742. <option value="4292489117">32 VDC</option>
  1743. <option value="4273000785">36 VDC</option>
  1744. <option value="4278992399">48 VDC</option>
  1745. <option value="4288260379">50 VDC</option>
  1746. <option value="4269031590">58 VDC</option>
  1747. <option value="4278992398">60 VDC</option>
  1748. <option value="4288260378">63 VDC</option>
  1749. <option value="4276089756">65 VDC</option>
  1750. <option value="4273000702">70 VDC</option>
  1751. <option value="4273019723">72 VDC</option>
  1752. <option value="4273000784">75 VDC</option>
  1753. <option value="4288260305">80 VDC</option>
  1754. <option value="4273000902">86 VDC</option>
  1755. <option value="4273001202">90 VDC</option>
  1756. <option value="4288260306">100 VDC</option>
  1757. <option value="4271401605">125 VAC</option>
  1758. <option value="4288269012">125 VDC</option>
  1759. <option value="4271176081">125 VDC to 250 VDC</option>
  1760. <option value="4273001609">130 VDC</option>
  1761. <option value="4273001630">140 VDC</option>
  1762. <option value="4273002193">150 VDC</option>
  1763. <option value="4288260222">160 VDC</option>
  1764. <option value="4274663733">170 VDC</option>
  1765. <option value="4288260247">200 VDC</option>
  1766. <option value="4278992397">240 VDC</option>
  1767. <option value="4292737771">250 VDC</option>
  1768. <option value="4267214114">277 VDC</option>
  1769. <option value="4274616640">300 VDC</option>
  1770. <option value="4275139194">350 VDC</option>
  1771. <option value="4288260219">400 VDC</option>
  1772. <option value="4288260218">420 VDC</option>
  1773. <option value="4268931680">425 VDC</option>
  1774. <option value="4267218097">440 VDC</option>
  1775. <option value="4288260217">450 VDC</option>
  1776. <option value="4273001681">480 VDC</option>
  1777. <option value="4288260216">500 VDC</option>
  1778. <option value="4275132092">550 VDC</option>
  1779. <option value="4269031477">600 VDC</option>
  1780. <option value="4267218092">650 VDC</option>
  1781. <option value="4267214382">660 VDC</option>
  1782. <option value="4267218079">690 VDC</option>
  1783. <option value="4273002202">700 VDC</option>
  1784. <option value="4273002040">750 VDC</option>
  1785. <option value="4273002187">800 VDC</option>
  1786. <option value="4267216080">900 VDC</option>
  1787. <option value="4274993199">1 kVDC</option>
  1788. <option value="4274966652">1.2 kVDC</option>
  1789. <option value="4267216079">1.25 kVDC</option>
  1790. <option value="4273002249">1.5 kVDC</option>
  1791. <option value="4289033659">-</option>
  1792. </select>
  1793. </td>
  1794. </tr>
  1795. <tr>
  1796. <td>
  1797. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1798. </td>
  1799. </tr>
  1800. </table>
  1801. </td>
  1802. <td valign="bottom" style="width: 15px;">
  1803. &nbsp;
  1804. </td>
  1805. </tr>
  1806. </table>
  1807. </td><td>
  1808. <table cellpadding="0" cellspacing="0">
  1809. <tr>
  1810. <td>
  1811. <table>
  1812. <tr>
  1813. <td>
  1814. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">保险丝类型</span>
  1815. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  1816. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1817. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1818. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1819. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1820. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1821. sorted parametric attributes from an endeca attribute group --->
  1822. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  1823. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="1000000062" />
  1824. </div>
  1825. </td>
  1826. </tr>
  1827. <tr>
  1828. <td>
  1829. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000062" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_1000000062">
  1830. <option value="4294735487">Fast Blow</option>
  1831. <option value="4290211056">Medium / Normal Blow</option>
  1832. <option value="4294407226">Time Delay / Slow Blow</option>
  1833. </select>
  1834. </td>
  1835. </tr>
  1836. <tr>
  1837. <td>
  1838. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1839. </td>
  1840. </tr>
  1841. </table>
  1842. </td>
  1843. <td valign="bottom" style="width: 15px;">
  1844. &nbsp;
  1845. </td>
  1846. </tr>
  1847. </table>
  1848. </td>
  1849. </tr>
  1850. </table>
  1851. <table class="ApplyFilter">
  1852. <tr>
  1853. <td class="ApplyFilterColumn1">
  1854. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1855. </td>
  1856. <td class="ApplyFilterColumn2">
  1857. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  1858. </td>
  1859. <td class="ApplyFilterColumn2_5">
  1860. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  1861. </td>
  1862. <td class="ApplyFilterColumn3">
  1863. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1864. </td>
  1865. </tr>
  1866. </table>
  1867. </td>
  1868. </tr>
  1869. </table>
  1870. </div>
  1871. </td>
  1872. </tr>
  1873. </table>
  1874. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  1875. height: 70px; display: none; background: white; border: 1px solid #000;'>
  1876. <br />
  1877. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  1878. <br />
  1879. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  1880. <!--Close Window-->
  1881. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  1882. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  1883. </a>&nbsp;&nbsp;</div>
  1884. </div>
  1885. <div id ="VisualAttributePopup" class="hidden" >
  1886. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  1887. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  1888. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  1889. </div>
  1890. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id= "loadingimgspinner" src="/Images/spinner2.gif" /></div>
  1891. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  1892. <table id="tblAttributes" >
  1893. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  1894. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  1895. <td class="visualAttributeImage">
  1896. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  1897. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  1898. </td>
  1899. <td>
  1900. <table class="visualAttValueDesc">
  1901. <tr>
  1902. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  1903. </tr>
  1904. <tr>
  1905. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  1906. </tr>
  1907. <tr data-bind="if: ImagePath1 ">
  1908. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs"/></div></td>
  1909. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  1910. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  1911. </tr>
  1912. </table>
  1913. </td>
  1914. </tr>
  1915. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  1916. </tbody>
  1917. </table>
  1918. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id= "Img1" src="/Images/spinner2.gif" />
  1919. <div data-bind="if: hasMoreOptions" align="center">
  1920. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  1921. </div>
  1922. </div>
  1923. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  1924. <div class="visualAttributesBtnDiv">
  1925. <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" />
  1926. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  1927. <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" />
  1928. </div>
  1929. </div>
  1930. <style type="text/css">
  1931. /* These styles are to customize "Visual Parametrics" modal window */
  1932. .ui-dialog { position: absolute; padding: 0px !important; width: 300px; overflow: hidden;}
  1933. .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .6em !important; background: none; overflow: auto; zoom: 1; max-height: 450px;}
  1934. .ui-dialog .ui-dialog-titlebar { padding: .4em .5em !important; position: relative; background: none repeat scroll 0 0 #E0E4E9; font-size:15px; }
  1935. .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border-bottom-right-radius: 0; }
  1936. .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-bottom-left-radius: 0; }
  1937. </style>
  1938. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1939. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  1940. </div>
  1941. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  1942. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  1943. <script src='../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  1944. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1945. <script type="text/javascript">
  1946. $().ready(function () {
  1947. ko.applyBindings(new DisplayAttributesModel());
  1948. ko.bindingHandlers.hoverToggle = {
  1949. update: function (element, valueAccessor) {
  1950. var css = valueAccessor();
  1951. var isSelected = $(element).hasClass("selectedAttribute");
  1952. if (!isSelected) {
  1953. ko.utils.registerEventHandler(element, "mouseenter", function () {
  1954. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  1955. });
  1956. ko.utils.registerEventHandler(element, "mouseleave", function () {
  1957. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  1958. });
  1959. }
  1960. }
  1961. };
  1962. });
  1963. </script>
  1964. </div>
  1965. <div id="refine-mfg-logo2">
  1966. </div>
  1967. </div>
  1968. <br />
  1969. <table border="0" width="100%">
  1970. <tr>
  1971. <td>
  1972. </td>
  1973. </tr>
  1974. <tr>
  1975. <td>
  1976. <!--- Search Features --->
  1977. </td>
  1978. </tr>
  1979. <tr>
  1980. <td>
  1981. <div id="refine-page">
  1982. </div>
  1983. </td>
  1984. </tr>
  1985. <tr>
  1986. <td class="refine-show-products">
  1987. <span class="redtextb">
  1988. </span> <span class="redtextb">
  1989. </span> <span class="redtextb">
  1990. </span> <span class="redtextb">
  1991. </span>
  1992. <span class="redtextb">
  1993. </span>
  1994. </td>
  1995. </tr>
  1996. <tr>
  1997. <td>
  1998. </td>
  1999. </tr>
  2000. <tr>
  2001. <td>
  2002. <!--- Special Order Parts New --->
  2003. <!-- SOP Section 1 -->
  2004. </td>
  2005. </tr>
  2006. </table>
  2007. <div id="searchResultsTbl">
  2008. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  2009. <tr>
  2010. <td class="tdSearchResultsPagingTop">
  2011. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  2012. <tr>
  2013. <td>
  2014. <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" />
  2015. </td>
  2016. <td>
  2017. <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" />
  2018. </td>
  2019. <td>
  2020. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  2021. </td>
  2022. <td style="padding-left: 40px;">
  2023. <div class="floatrightpager">
  2024. <span class="bold">
  2025. 页面:
  2026. </span>
  2027. <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/Fuses/_/N-ba85y/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_1369" class="first-last" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=34225">1370</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=25">下一页</a></span>
  2028. </div>
  2029. </td>
  2030. </tr>
  2031. </table>
  2032. </td>
  2033. </tr>
  2034. <tr>
  2035. <td>
  2036. <div>
  2037. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  2038. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  2039. <th class="td-select" scope="col" style="width:35px;">
  2040. 选择
  2041. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  2042. </th><th scope="col">制造商 零件编号
  2043. </th><th scope="col">制造商
  2044. </th><th scope="col">描述
  2045. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../Images/Search/pdf.gif" alt="文件" />
  2046. </th><th scope="col">供货情况
  2047. </th><th scope="col">单价(含17%增值税)
  2048. <br />
  2049. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  2050. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  2051. </th><th class="SearchResultParametricColumnHeading" scope="col">产品
  2052. </th><th class="SearchResultParametricColumnHeading" scope="col">主体类型
  2053. </th><th class="SearchResultParametricColumnHeading" scope="col">电流额定值
  2054. </th><th class="SearchResultParametricColumnHeading" scope="col">电压额定值 AC
  2055. </th><th class="SearchResultParametricColumnHeading" scope="col">电压额定值 DC
  2056. </th><th class="SearchResultParametricColumnHeading" scope="col">保险丝类型
  2057. </th>
  2058. </tr><tr class="SearchResultsSortCell">
  2059. <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$Product>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$Product>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$Body Style>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$Body Style>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$Current Rating>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl43&#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$Current Rating>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl45&#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$Voltage Rating AC>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl47&#39;,&#39;&#39;)"><img title="按 电压额定值 AC Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 电压额定值 AC Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Voltage Rating AC>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl49&#39;,&#39;&#39;)"><img title="按 电压额定值 AC Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 电压额定值 AC Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Voltage Rating DC>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl51&#39;,&#39;&#39;)"><img title="按 电压额定值 DC Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 电压额定值 DC Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Voltage Rating DC>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl53&#39;,&#39;&#39;)"><img title="按 电压额定值 DC Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 电压额定值 DC Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Fuse Type>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$Fuse Type>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>
  2060. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-0451001.MRSN" data-index="3">
  2061. <td class="td-select" align="center">
  2062. <div style="padding: 5px 5px 0 5px;">
  2063. <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>
  2064. </div>
  2065. </td><td></td><td>
  2066. <div style="text-align:left;">
  2067. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0451001MRSN/?qs=sGAEpiMZZMsIz3CjQ1xegUgSD4ecDjRv0mT14Zb8ts1HMcDzi4JUcg%3d%3d">576-0451001.MRSN</a><br />
  2068. <br />
  2069. <br />
  2070. 要购买完整 卷轴,请订购 1000 的倍数:
  2071. </div></td><td>
  2072. <div class="mfrDiv">
  2073. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0451001MRSN/?qs=sGAEpiMZZMsIz3CjQ1xegUgSD4ecDjRv0mT14Zb8ts1HMcDzi4JUcg%3d%3d">0451001.MRSN</a><br />
  2074. <br />
  2075. <div style="width: 100%; text-align: center;">
  2076. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2077. </div>
  2078. <div style="width: 100%; text-align: center;">
  2079. </div>
  2080. </div>
  2081. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2082. </td><td>表面贴装式保险丝 125V 1A
  2083. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2084. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2085. </div>
  2086. </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;Littelfuse&quot;,&quot;576-0451001.MRSN | 0451001.MRSN&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_Fuse_451_453_Datasheet.pdf-693443.pdf" target="_blank">数据表</a>
  2087. </td><td>
  2088. <table>
  2089. <tr align="center">
  2090. <td style="padding-top: 5px">
  2091. </td>
  2092. </tr>
  2093. <tr align="center">
  2094. <td style="padding-top: 5px; padding-bottom: 5px">
  2095. </td>
  2096. </tr>
  2097. </table></td><td>
  2098. </td><td class="SearchResultsBuyColumn">
  2099. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_pnlRestricted">
  2100. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2101. </div>
  2102. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  2103. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2104. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=iWu5SQyTpo%252bTTN%252bHYNozlA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=iWu5SQyTpo%252bTTN%252bHYNozlA%3d%3d" target="_blank">详细信息</a>
  2105. </div>
  2106. </td><td>
  2107. </td><td>
  2108. </td><td>
  2109. </td><td>
  2110. </td><td>
  2111. </td><td>
  2112. </td>
  2113. </tr><tr class="SearchResultsRowEven" data-partnumber="576-142.7010.5502" data-index="4">
  2114. <td class="td-select" align="center">
  2115. <div style="padding: 5px 5px 0 5px;">
  2116. <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>
  2117. </div>
  2118. </td><td></td><td>
  2119. <div style="text-align:left;">
  2120. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/14270105502/?qs=sGAEpiMZZMsIz3CjQ1xegZzFwEh%252bYqHh47y4%2fOPJWRvyYFDnsX3tBw%3d%3d">576-142.7010.5502</a><br />
  2121. <br />
  2122. <br />
  2123. </div></td><td>
  2124. <div class="mfrDiv">
  2125. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/14270105502/?qs=sGAEpiMZZMsIz3CjQ1xegZzFwEh%252bYqHh47y4%2fOPJWRvyYFDnsX3tBw%3d%3d">142.7010.5502</a><br />
  2126. <br />
  2127. <div style="width: 100%; text-align: center;">
  2128. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2129. </div>
  2130. <div style="width: 100%; text-align: center;">
  2131. </div>
  2132. </div>
  2133. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2134. </td><td>汽车保险丝 58V 50A 1000A
  2135. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2136. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2137. </div>
  2138. </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-142.7010.5502 | 142.7010.5502&quot;]);" href="http://www.mouser.com/ds/2/240/littelfuse_bf1_58v_datasheet-523203.pdf" target="_blank">数据表</a>
  2139. </td><td>
  2140. <table>
  2141. <tr align="center">
  2142. <td style="padding-top: 5px">
  2143. </td>
  2144. </tr>
  2145. <tr align="center">
  2146. <td style="padding-top: 5px; padding-bottom: 5px">
  2147. </td>
  2148. </tr>
  2149. </table></td><td>
  2150. </td><td class="SearchResultsBuyColumn">
  2151. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_pnlRestricted">
  2152. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2153. </div>
  2154. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  2155. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2156. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uWqGCZLHRg83RovL2RywSg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=uWqGCZLHRg83RovL2RywSg%3d%3d" target="_blank">详细信息</a>
  2157. </div>
  2158. </td><td>Bolt Down Fuse
  2159. </td><td>
  2160. </td><td>50 A
  2161. </td><td>-
  2162. </td><td>-
  2163. </td><td>Medium / Normal Blow
  2164. </td>
  2165. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-142.7010.6152" data-index="5">
  2166. <td class="td-select" align="center">
  2167. <div style="padding: 5px 5px 0 5px;">
  2168. <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>
  2169. </div>
  2170. </td><td></td><td>
  2171. <div style="text-align:left;">
  2172. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/14270106152/?qs=sGAEpiMZZMsIz3CjQ1xegZzFwEh%252bYqHhLnd%2f8Evh4AYOzQDI9YvUgA%3d%3d">576-142.7010.6152</a><br />
  2173. <br />
  2174. <br />
  2175. </div></td><td>
  2176. <div class="mfrDiv">
  2177. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/14270106152/?qs=sGAEpiMZZMsIz3CjQ1xegZzFwEh%252bYqHhLnd%2f8Evh4AYOzQDI9YvUgA%3d%3d">142.7010.6152</a><br />
  2178. <br />
  2179. <div style="width: 100%; text-align: center;">
  2180. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2181. </div>
  2182. <div style="width: 100%; text-align: center;">
  2183. </div>
  2184. </div>
  2185. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2186. </td><td>汽车保险丝 58V 150A 1000A
  2187. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2188. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2189. </div>
  2190. </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;Littelfuse&quot;,&quot;576-142.7010.6152 | 142.7010.6152&quot;]);" href="http://www.mouser.com/ds/2/240/littelfuse_bf1_58v_datasheet-523203.pdf" target="_blank">数据表</a>
  2191. </td><td>
  2192. <table>
  2193. <tr align="center">
  2194. <td style="padding-top: 5px">
  2195. </td>
  2196. </tr>
  2197. <tr align="center">
  2198. <td style="padding-top: 5px; padding-bottom: 5px">
  2199. </td>
  2200. </tr>
  2201. </table></td><td>
  2202. </td><td class="SearchResultsBuyColumn">
  2203. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_pnlRestricted">
  2204. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2205. </div>
  2206. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2207. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2208. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uWqGCZLHRg%2fWUQ%252bWllID6Q%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=uWqGCZLHRg%2fWUQ%252bWllID6Q%3d%3d" target="_blank">详细信息</a>
  2209. </div>
  2210. </td><td>Bolt Down Fuse
  2211. </td><td>
  2212. </td><td>150 A
  2213. </td><td>-
  2214. </td><td>-
  2215. </td><td>Medium / Normal Blow
  2216. </td>
  2217. </tr><tr class="SearchResultsRowEven" data-partnumber="576-1812L260/16MR" data-index="6">
  2218. <td class="td-select" align="center">
  2219. <div style="padding: 5px 5px 0 5px;">
  2220. <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>
  2221. </div>
  2222. </td><td></td><td>
  2223. <div style="text-align:left;">
  2224. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/1812L260-16MR/?qs=sGAEpiMZZMsIz3CjQ1xegUgSD4ecDjRv%2fZno9VjrS8HAWTO30E8ctg%3d%3d">576-1812L260/16MR</a><br />
  2225. <br />
  2226. <br />
  2227. 要购买完整 卷轴,请订购 1000 的倍数:
  2228. </div></td><td>
  2229. <div class="mfrDiv">
  2230. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/1812L260-16MR/?qs=sGAEpiMZZMsIz3CjQ1xegUgSD4ecDjRv%2fZno9VjrS8HAWTO30E8ctg%3d%3d">1812L260/16MR</a><br />
  2231. <br />
  2232. <div style="width: 100%; text-align: center;">
  2233. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2234. </div>
  2235. <div style="width: 100%; text-align: center;">
  2236. </div>
  2237. </div>
  2238. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2239. </td><td>可复位保险丝—PPTC PTC 16V POLY SURF
  2240. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2241. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2242. </div>
  2243. </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;Littelfuse&quot;,&quot;576-1812L260/16MR | 1812L260/16MR&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PTC_1812L_Datasheet.pdf-693388.pdf" target="_blank">数据表</a>
  2244. </td><td>
  2245. <table>
  2246. <tr align="center">
  2247. <td style="padding-top: 5px">
  2248. </td>
  2249. </tr>
  2250. <tr align="center">
  2251. <td style="padding-top: 5px; padding-bottom: 5px">
  2252. </td>
  2253. </tr>
  2254. </table></td><td>
  2255. </td><td class="SearchResultsBuyColumn">
  2256. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_pnlRestricted">
  2257. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2258. </div>
  2259. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  2260. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2261. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=qIBGZ1wPgzDD7NxVp0m0Qg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=qIBGZ1wPgzDD7NxVp0m0Qg%3d%3d" target="_blank">详细信息</a>
  2262. </div>
  2263. </td><td>
  2264. </td><td>
  2265. </td><td>
  2266. </td><td>
  2267. </td><td>
  2268. </td><td>
  2269. </td>
  2270. </tr><tr class="SearchResultsRowOdd" data-partnumber="652-MF-SMDF050-2" data-index="7">
  2271. <td class="td-select" align="center">
  2272. <div style="padding: 5px 5px 0 5px;">
  2273. <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>
  2274. </div>
  2275. </td><td><a href='/ProductDetail/Bourns/MF-SMDF050-2/?qs=sGAEpiMZZMsIz3CjQ1xegRRiNzHhjA4S7xW7X%252b02ZWs%3d'><img title='Bourns MF-SMDF050-2' alt='Bourns MF-SMDF050-2' id=2360691 src='/images/bourns/sm/MF-SMDF.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/bourns/images/MF-SMDF.jpg</div></a></td><td>
  2276. <div style="text-align:left;">
  2277. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/MF-SMDF050-2/?qs=sGAEpiMZZMsIz3CjQ1xegRRiNzHhjA4S7xW7X%252b02ZWs%3d">652-MF-SMDF050-2</a><br />
  2278. <br />
  2279. <br />
  2280. 要购买完整 卷轴,请订购 6000 的倍数:
  2281. </div></td><td>
  2282. <div class="mfrDiv">
  2283. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/MF-SMDF050-2/?qs=sGAEpiMZZMsIz3CjQ1xegRRiNzHhjA4S7xW7X%252b02ZWs%3d">MF-SMDF050-2</a><br />
  2284. <br />
  2285. <div style="width: 100%; text-align: center;">
  2286. </div>
  2287. <div style="width: 100%; text-align: center;">
  2288. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  2289. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  2290. </div>
  2291. </div>
  2292. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  2293. </td><td>可复位保险丝—PPTC 0.55A 60V 0.2ohm Hold 0.55A Trip1.2a
  2294. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2295. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2296. </div>
  2297. </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;Bourns&quot;,&quot;652-MF-SMDF050-2 | MF-SMDF050-2&quot;]);" href="http://www.mouser.com/ds/2/54/fsmdf2-777754.pdf" target="_blank">数据表</a>
  2298. </td><td>
  2299. <table>
  2300. <tr align="center">
  2301. <td style="padding-top: 5px">
  2302. </td>
  2303. </tr>
  2304. <tr align="center">
  2305. <td style="padding-top: 5px; padding-bottom: 5px">
  2306. </td>
  2307. </tr>
  2308. </table></td><td>
  2309. </td><td class="SearchResultsBuyColumn">
  2310. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlRestricted">
  2311. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2312. </div>
  2313. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2314. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2315. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uC0GqbDLZhLIDFtvhMzxyw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=uC0GqbDLZhLIDFtvhMzxyw%3d%3d" target="_blank">详细信息</a>
  2316. </div>
  2317. </td><td>
  2318. </td><td>
  2319. </td><td>
  2320. </td><td>
  2321. </td><td>
  2322. </td><td>
  2323. </td>
  2324. </tr><tr class="SearchResultsRowEven" data-partnumber="576-0251.062MXL" data-index="8">
  2325. <td class="td-select" align="center">
  2326. <div style="padding: 5px 5px 0 5px;">
  2327. <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>
  2328. </div>
  2329. </td><td><a href='/ProductDetail/Littelfuse/0251062MXL/?qs=sGAEpiMZZMsIz3CjQ1xegWrlMY7vL59hk4idYGwgnbQ%3d'><img title='Littelfuse 0251.062MXL' alt='Littelfuse 0251.062MXL' id=33147098 src='/images/littelfuse/sm/251_253_series_PICO_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/littelfuse/images/251_253_series_PICO_DSL.jpg</div></a></td><td>
  2330. <div style="text-align:left;">
  2331. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0251062MXL/?qs=sGAEpiMZZMsIz3CjQ1xegWrlMY7vL59hk4idYGwgnbQ%3d">576-0251.062MXL</a><br />
  2332. <br />
  2333. <br />
  2334. </div></td><td>
  2335. <div class="mfrDiv">
  2336. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0251062MXL/?qs=sGAEpiMZZMsIz3CjQ1xegWrlMY7vL59hk4idYGwgnbQ%3d">0251.062MXL</a><br />
  2337. <br />
  2338. <div style="width: 100%; text-align: center;">
  2339. </div>
  2340. <div style="width: 100%; text-align: center;">
  2341. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  2342. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  2343. </div>
  2344. </div>
  2345. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2346. </td><td>带引线的保险丝(通孔型) 125V .062A
  2347. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2348. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2349. </div>
  2350. </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-0251.062MXL | 0251.062MXL&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_Fuse_251_253_Datasheet.pdf-522535.pdf" target="_blank">数据表</a>
  2351. </td><td>
  2352. <table>
  2353. <tr align="center">
  2354. <td style="padding-top: 5px">
  2355. </td>
  2356. </tr>
  2357. <tr align="center">
  2358. <td style="padding-top: 5px; padding-bottom: 5px">
  2359. </td>
  2360. </tr>
  2361. </table></td><td>
  2362. </td><td class="SearchResultsBuyColumn">
  2363. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_pnlRestricted">
  2364. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2365. </div>
  2366. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2367. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2368. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=AxkyN2p2SLX49QL34VZ33A%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=AxkyN2p2SLX49QL34VZ33A%3d%3d" target="_blank">详细信息</a>
  2369. </div>
  2370. </td><td>PCB Mount Fuse
  2371. </td><td>Leaded Fuses
  2372. </td><td>62 mA
  2373. </td><td>125 V
  2374. </td><td>125 VDC
  2375. </td><td>Fast Blow
  2376. </td>
  2377. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-0603L010YR" data-index="9">
  2378. <td class="td-select" align="center">
  2379. <div style="padding: 5px 5px 0 5px;">
  2380. <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>
  2381. </div>
  2382. </td><td><a href='/ProductDetail/Littelfuse/0603L010YR/?qs=sGAEpiMZZMsIz3CjQ1xegWLHHXKF1lfSppTmHivIgI0%3d'><img title='Littelfuse 0603L010YR' alt='Littelfuse 0603L010YR' id=206068513 src='/images/littelfuse/sm/0603l.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/0603l.jpg</div></a></td><td>
  2383. <div style="text-align:left;">
  2384. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0603L010YR/?qs=sGAEpiMZZMsIz3CjQ1xegWLHHXKF1lfSppTmHivIgI0%3d">576-0603L010YR</a><br />
  2385. <br />
  2386. <br />
  2387. 要购买完整 卷轴,请订购 4000 的倍数:
  2388. </div></td><td>
  2389. <div class="mfrDiv">
  2390. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0603L010YR/?qs=sGAEpiMZZMsIz3CjQ1xegWLHHXKF1lfSppTmHivIgI0%3d">0603L010YR</a><br />
  2391. <br />
  2392. <div style="width: 100%; text-align: center;">
  2393. </div>
  2394. <div style="width: 100%; text-align: center;">
  2395. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  2396. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  2397. </div>
  2398. </div>
  2399. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2400. </td><td>可复位保险丝—PPTC PTC 15V 0603 .100A POLY SURF MOUNT
  2401. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2402. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2403. </div>
  2404. </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-0603L010YR | 0603L010YR&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PTC_0603L-47970.pdf" target="_blank">数据表</a>
  2405. </td><td>
  2406. <table>
  2407. <tr align="center">
  2408. <td style="padding-top: 5px">
  2409. </td>
  2410. </tr>
  2411. <tr align="center">
  2412. <td style="padding-top: 5px; padding-bottom: 5px">
  2413. </td>
  2414. </tr>
  2415. </table></td><td>
  2416. </td><td class="SearchResultsBuyColumn">
  2417. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_pnlRestricted">
  2418. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2419. </div>
  2420. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  2421. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2422. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=J%252bOSWPz%252br4bwl0kwNcrzWw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=J%252bOSWPz%252br4bwl0kwNcrzWw%3d%3d" target="_blank">详细信息</a>
  2423. </div>
  2424. </td><td>
  2425. </td><td>
  2426. </td><td>
  2427. </td><td>
  2428. </td><td>
  2429. </td><td>
  2430. </td>
  2431. </tr><tr class="SearchResultsRowEven" data-partnumber="504-TR2/6125FF2-R" data-index="10">
  2432. <td class="td-select" align="center">
  2433. <div style="padding: 5px 5px 0 5px;">
  2434. <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>
  2435. </div>
  2436. </td><td><a href='/ProductDetail/Bussmann-Eaton/TR2-6125FF2-R/?qs=sGAEpiMZZMsIz3CjQ1xega9SMMmwA5XMBmS32%252b9KZKM%3d'><img title='Bussmann / Eaton TR2/6125FF2-R' alt='Bussmann / Eaton TR2/6125FF2-R' id=52974689 src='/images/eatoncorporation/sm/tr2_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/eatoncorporation/images/tr2_SPL.jpg</div></a></td><td>
  2437. <div style="text-align:left;">
  2438. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bussmann-Eaton/TR2-6125FF2-R/?qs=sGAEpiMZZMsIz3CjQ1xega9SMMmwA5XMBmS32%252b9KZKM%3d">504-TR2/6125FF2-R</a><br />
  2439. <br />
  2440. <br />
  2441. 要购买完整 卷轴,请订购 5000 的倍数:
  2442. </div></td><td>
  2443. <div class="mfrDiv">
  2444. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bussmann-Eaton/TR2-6125FF2-R/?qs=sGAEpiMZZMsIz3CjQ1xega9SMMmwA5XMBmS32%252b9KZKM%3d">TR2/6125FF2-R</a><br />
  2445. <br />
  2446. <div style="width: 100%; text-align: center;">
  2447. </div>
  2448. <div style="width: 100%; text-align: center;">
  2449. </div>
  2450. </div>
  2451. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../Bussmann">Bussmann / Eaton</a>
  2452. </td><td>表面贴装式保险丝 SMD BRICK 2A
  2453. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2454. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2455. </div>
  2456. </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;Bussmann / Eaton&quot;,&quot;504-TR2/6125FF2-R | TR2/6125FF2-R&quot;]);" href="http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_4326_6125FF_Series.pdf" target="_blank">数据表</a>
  2457. </td><td>
  2458. <table>
  2459. <tr align="center">
  2460. <td style="padding-top: 5px">
  2461. </td>
  2462. </tr>
  2463. <tr align="center">
  2464. <td style="padding-top: 5px; padding-bottom: 5px">
  2465. </td>
  2466. </tr>
  2467. </table></td><td>
  2468. </td><td class="SearchResultsBuyColumn">
  2469. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlRestricted">
  2470. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2471. </div>
  2472. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  2473. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2474. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=tDhpntXm%2fIPDKwsZGm4H7A%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=tDhpntXm%2fIPDKwsZGm4H7A%3d%3d" target="_blank">详细信息</a>
  2475. </div>
  2476. </td><td>Surface Mount Fuse
  2477. </td><td>
  2478. </td><td>2 A
  2479. </td><td>72 V
  2480. </td><td>
  2481. </td><td>Fast Blow
  2482. </td>
  2483. </tr><tr class="SearchResultsRowOdd" data-partnumber="650-MINISMDC014F-2" data-index="11">
  2484. <td class="td-select" align="center">
  2485. <div style="padding: 5px 5px 0 5px;">
  2486. <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>
  2487. </div>
  2488. </td><td><a href='/ProductDetail/TE-Connectivity-Raychem/miniSMDC014F-2/?qs=sGAEpiMZZMsIz3CjQ1xegTuI8IswNYBbspNtfzKhHI8%3d'><img title='TE Connectivity / Raychem miniSMDC014F-2' alt='TE Connectivity / Raychem miniSMDC014F-2' id=19725800 src='/images/tycoelectronics/sm/prminismdc014f.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/tycoelectronics/images/prminismdc014f.jpg</div></a></td><td>
  2489. <div style="text-align:left;">
  2490. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/TE-Connectivity-Raychem/miniSMDC014F-2/?qs=sGAEpiMZZMsIz3CjQ1xegTuI8IswNYBbspNtfzKhHI8%3d">650-MINISMDC014F-2</a><br />
  2491. <br />
  2492. <br />
  2493. 要购买完整 卷轴,请订购 2000 的倍数:
  2494. </div></td><td>
  2495. <div class="mfrDiv">
  2496. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/TE-Connectivity-Raychem/miniSMDC014F-2/?qs=sGAEpiMZZMsIz3CjQ1xegTuI8IswNYBbspNtfzKhHI8%3d">miniSMDC014F-2</a><br />
  2497. <br />
  2498. <div style="width: 100%; text-align: center;">
  2499. </div>
  2500. <div style="width: 100%; text-align: center;">
  2501. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  2502. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  2503. </div>
  2504. </div>
  2505. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../raychem">TE Connectivity / Raychem</a>
  2506. </td><td>可复位保险丝—PPTC .14A 60V 10A Imax
  2507. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2508. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2509. </div>
  2510. </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;TE Connectivity / Raychem&quot;,&quot;650-MINISMDC014F-2 | miniSMDC014F-2&quot;]);" href="http://www.mouser.com/ds/2/418/NG_CS_CLP00010_A_CLP00010-727195.pdf" target="_blank">数据表</a>
  2511. </td><td>
  2512. <table>
  2513. <tr align="center">
  2514. <td style="padding-top: 5px">
  2515. </td>
  2516. </tr>
  2517. <tr align="center">
  2518. <td style="padding-top: 5px; padding-bottom: 5px">
  2519. </td>
  2520. </tr>
  2521. </table></td><td>
  2522. </td><td class="SearchResultsBuyColumn">
  2523. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_pnlRestricted">
  2524. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2525. </div>
  2526. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  2527. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2528. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=WjtSHU7OABMUCZHNvp3dWw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=WjtSHU7OABMUCZHNvp3dWw%3d%3d" target="_blank">详细信息</a>
  2529. </div>
  2530. </td><td>
  2531. </td><td>
  2532. </td><td>
  2533. </td><td>
  2534. </td><td>
  2535. </td><td>
  2536. </td>
  2537. </tr><tr class="SearchResultsRowEven" data-partnumber="652-MF-PSMF010X-2" data-index="12">
  2538. <td class="td-select" align="center">
  2539. <div style="padding: 5px 5px 0 5px;">
  2540. <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>
  2541. </div>
  2542. </td><td><a href='/ProductDetail/Bourns/MF-PSMF010X-2/?qs=sGAEpiMZZMsIz3CjQ1xegdZFN6x1UC2dLiurQI52fm4%3d'><img title='Bourns MF-PSMF010X-2' alt='Bourns MF-PSMF010X-2' id=248957609 src='/images/bourns/sm/psmf.jpg'/></a></td><td>
  2543. <div style="text-align:left;">
  2544. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/MF-PSMF010X-2/?qs=sGAEpiMZZMsIz3CjQ1xegdZFN6x1UC2dLiurQI52fm4%3d">652-MF-PSMF010X-2</a><br />
  2545. <br />
  2546. <br />
  2547. 要购买完整 卷轴,请订购 3000 的倍数:
  2548. </div></td><td>
  2549. <div class="mfrDiv">
  2550. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/MF-PSMF010X-2/?qs=sGAEpiMZZMsIz3CjQ1xegdZFN6x1UC2dLiurQI52fm4%3d">MF-PSMF010X-2</a><br />
  2551. <br />
  2552. <div style="width: 100%; text-align: center;">
  2553. </div>
  2554. <div style="width: 100%; text-align: center;">
  2555. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  2556. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  2557. </div>
  2558. </div>
  2559. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  2560. </td><td>可复位保险丝—PPTC 0.10A 15V 1ohm
  2561. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2562. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../new/bourns/bourns_mf_psmf/">了解更多</a>
  2563. </div>
  2564. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2565. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2566. </div>
  2567. </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;Bourns&quot;,&quot;652-MF-PSMF010X-2 | MF-PSMF010X-2&quot;]);" href="http://www.mouser.com/ds/2/54/fpsmf-777676.pdf" target="_blank">数据表</a>
  2568. </td><td>
  2569. <table>
  2570. <tr align="center">
  2571. <td style="padding-top: 5px">
  2572. </td>
  2573. </tr>
  2574. <tr align="center">
  2575. <td style="padding-top: 5px; padding-bottom: 5px">
  2576. </td>
  2577. </tr>
  2578. </table></td><td>
  2579. </td><td class="SearchResultsBuyColumn">
  2580. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_pnlRestricted">
  2581. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2582. </div>
  2583. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  2584. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2585. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=78FDcVKttu%252bU%252b4XPa3IhSA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=78FDcVKttu%252bU%252b4XPa3IhSA%3d%3d" target="_blank">详细信息</a>
  2586. </div>
  2587. </td><td>
  2588. </td><td>
  2589. </td><td>
  2590. </td><td>
  2591. </td><td>
  2592. </td><td>
  2593. </td>
  2594. </tr><tr class="SearchResultsRowOdd" data-partnumber="581-F0402G0R05FNTR" data-index="13">
  2595. <td class="td-select" align="center">
  2596. <div style="padding: 5px 5px 0 5px;">
  2597. <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>
  2598. </div>
  2599. </td><td><a href='/ProductDetail/AVX/F0402G0R05FNTR/?qs=sGAEpiMZZMsIz3CjQ1xegfMqFROShz%2fDM874Kr3Ik8s%3d'><img title='AVX F0402G0R05FNTR' alt='AVX F0402G0R05FNTR' id=501364700 src='/images/avx/sm/LargeAVXAccuGuard.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/avx/images/LargeAVXAccuGuard.jpg</div></a></td><td>
  2600. <div style="text-align:left;">
  2601. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/AVX/F0402G0R05FNTR/?qs=sGAEpiMZZMsIz3CjQ1xegfMqFROShz%2fDM874Kr3Ik8s%3d">581-F0402G0R05FNTR</a><br />
  2602. <br />
  2603. <br />
  2604. 要购买完整 卷轴,请订购 5000 的倍数:
  2605. </div></td><td>
  2606. <div class="mfrDiv">
  2607. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/AVX/F0402G0R05FNTR/?qs=sGAEpiMZZMsIz3CjQ1xegfMqFROShz%2fDM874Kr3Ik8s%3d">F0402G0R05FNTR</a><br />
  2608. <br />
  2609. <div style="width: 100%; text-align: center;">
  2610. </div>
  2611. <div style="width: 100%; text-align: center;">
  2612. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  2613. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  2614. </div>
  2615. </div>
  2616. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../AVX">AVX</a>
  2617. </td><td>表面贴装式保险丝 0402 50mA fuse
  2618. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2619. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../avxAccuguard/">了解更多</a>
  2620. </div>
  2621. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2622. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2623. </div>
  2624. </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;AVX&quot;,&quot;581-F0402G0R05FNTR | F0402G0R05FNTR&quot;]);" href="http://www.mouser.com/ds/2/40/accug2minilc-38833.pdf" target="_blank">数据表</a>
  2625. </td><td>
  2626. <table>
  2627. <tr align="center">
  2628. <td style="padding-top: 5px">
  2629. </td>
  2630. </tr>
  2631. <tr align="center">
  2632. <td style="padding-top: 5px; padding-bottom: 5px">
  2633. </td>
  2634. </tr>
  2635. </table></td><td>
  2636. </td><td class="SearchResultsBuyColumn">
  2637. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlRestricted">
  2638. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2639. </div>
  2640. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  2641. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2642. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Vw158fVV319%252bbSpkBivNbg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=Vw158fVV319%252bbSpkBivNbg%3d%3d" target="_blank">详细信息</a>
  2643. </div>
  2644. </td><td>Surface Mount Fuse
  2645. </td><td>
  2646. </td><td>50 mA
  2647. </td><td>
  2648. </td><td>32 VDC
  2649. </td><td>Fast Blow
  2650. </td>
  2651. </tr><tr class="SearchResultsRowEven" data-partnumber="576-0805L050" data-index="14">
  2652. <td class="td-select" align="center">
  2653. <div style="padding: 5px 5px 0 5px;">
  2654. <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>
  2655. </div>
  2656. </td><td><a href='/ProductDetail/Littelfuse/0805L050WR/?qs=sGAEpiMZZMsIz3CjQ1xegTEIpQnw74dnAGyPYFbN%252bV0%3d'><img title='Littelfuse 0805L050WR' alt='Littelfuse 0805L050WR' id=30247089 src='/images/littelfuse/sm/0805l002.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/0805l002.jpg</div></a></td><td>
  2657. <div style="text-align:left;">
  2658. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0805L050WR/?qs=sGAEpiMZZMsIz3CjQ1xegTEIpQnw74dnAGyPYFbN%252bV0%3d">576-0805L050</a><br />
  2659. <br />
  2660. <br />
  2661. 要购买完整 卷轴,请订购 3000 的倍数:
  2662. </div></td><td>
  2663. <div class="mfrDiv">
  2664. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0805L050WR/?qs=sGAEpiMZZMsIz3CjQ1xegTEIpQnw74dnAGyPYFbN%252bV0%3d">0805L050WR</a><br />
  2665. <br />
  2666. <div style="width: 100%; text-align: center;">
  2667. </div>
  2668. <div style="width: 100%; text-align: center;">
  2669. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  2670. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  2671. </div>
  2672. </div>
  2673. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2674. </td><td>可复位保险丝—PPTC 0.50A 6V 0805
  2675. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2676. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2677. </div>
  2678. </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-0805L050 | 0805L050WR&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_0805L-32472.pdf" target="_blank">数据表</a>
  2679. </td><td>
  2680. <table>
  2681. <tr align="center">
  2682. <td style="padding-top: 5px">
  2683. </td>
  2684. </tr>
  2685. <tr align="center">
  2686. <td style="padding-top: 5px; padding-bottom: 5px">
  2687. </td>
  2688. </tr>
  2689. </table></td><td>
  2690. </td><td class="SearchResultsBuyColumn">
  2691. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_pnlRestricted">
  2692. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2693. </div>
  2694. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  2695. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2696. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=rb4uICqHZ8Oi0z5BC%252b3kbg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=rb4uICqHZ8Oi0z5BC%252b3kbg%3d%3d" target="_blank">详细信息</a>
  2697. </div>
  2698. </td><td>
  2699. </td><td>
  2700. </td><td>
  2701. </td><td>
  2702. </td><td>
  2703. </td><td>
  2704. </td>
  2705. </tr><tr class="SearchResultsRowOdd" data-partnumber="504-BK/GMC-1-R" data-index="15">
  2706. <td class="td-select" align="center">
  2707. <div style="padding: 5px 5px 0 5px;">
  2708. <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>
  2709. </div>
  2710. </td><td><a href='/ProductDetail/Bussmann-Eaton/BK-GMC-1-R/?qs=sGAEpiMZZMsIz3CjQ1xegR8PufwtdR8uZc3uifjWZcI%3d'><img title='Bussmann / Eaton BK/GMC-1-R' alt='Bussmann / Eaton BK/GMC-1-R' id=33486149 src='/images/eatoncorporation/sm/gmx.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/eatoncorporation/images/gmx.jpg</div></a></td><td>
  2711. <div style="text-align:left;">
  2712. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bussmann-Eaton/BK-GMC-1-R/?qs=sGAEpiMZZMsIz3CjQ1xegR8PufwtdR8uZc3uifjWZcI%3d">504-BK/GMC-1-R</a><br />
  2713. <br />
  2714. <br />
  2715. </div></td><td>
  2716. <div class="mfrDiv">
  2717. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bussmann-Eaton/BK-GMC-1-R/?qs=sGAEpiMZZMsIz3CjQ1xegR8PufwtdR8uZc3uifjWZcI%3d">BK/GMC-1-R</a><br />
  2718. <br />
  2719. <div style="width: 100%; text-align: center;">
  2720. </div>
  2721. <div style="width: 100%; text-align: center;">
  2722. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  2723. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  2724. </div>
  2725. </div>
  2726. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../Bussmann">Bussmann / Eaton</a>
  2727. </td><td>保险丝管 1A 250VAC TD GMC Series
  2728. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2729. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2730. </div>
  2731. </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;Bussmann / Eaton&quot;,&quot;504-BK/GMC-1-R | BK/GMC-1-R&quot;]);" href="http://www.mouser.com/ds/2/87/bus-elx-ds-4395-gmc-335885.pdf" target="_blank">数据表</a>
  2732. </td><td>
  2733. <table>
  2734. <tr align="center">
  2735. <td style="padding-top: 5px">
  2736. </td>
  2737. </tr>
  2738. <tr align="center">
  2739. <td style="padding-top: 5px; padding-bottom: 5px">
  2740. </td>
  2741. </tr>
  2742. </table></td><td>
  2743. </td><td class="SearchResultsBuyColumn">
  2744. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_pnlRestricted">
  2745. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2746. </div>
  2747. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  2748. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2749. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=njY%252bBSf1TOpUFZWJDzKOtQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=njY%252bBSf1TOpUFZWJDzKOtQ%3d%3d" target="_blank">详细信息</a>
  2750. </div>
  2751. </td><td>Glass Fuse
  2752. </td><td>Cylindrical
  2753. </td><td>1 A
  2754. </td><td>250 V
  2755. </td><td>
  2756. </td><td>Medium / Normal Blow
  2757. </td>
  2758. </tr><tr class="SearchResultsRowEven" data-partnumber="576-0463020.ER" data-index="16">
  2759. <td class="td-select" align="center">
  2760. <div style="padding: 5px 5px 0 5px;">
  2761. <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>
  2762. </div>
  2763. </td><td><a href='/ProductDetail/Littelfuse/0463020ER/?qs=sGAEpiMZZMsIz3CjQ1xegQBDg7A5GIIfjXK8hNO6q0w%3d'><img title='Littelfuse 0463020.ER' alt='Littelfuse 0463020.ER' id=929732746 src='/images/littelfuse/sm/463_Series_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/463_Series_SPL.jpg</div></a></td><td>
  2764. <div style="text-align:left;">
  2765. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0463020ER/?qs=sGAEpiMZZMsIz3CjQ1xegQBDg7A5GIIfjXK8hNO6q0w%3d">576-0463020.ER</a><br />
  2766. <br />
  2767. <br />
  2768. 要购买完整 卷轴,请订购 2500 的倍数:
  2769. </div></td><td>
  2770. <div class="mfrDiv">
  2771. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0463020ER/?qs=sGAEpiMZZMsIz3CjQ1xegQBDg7A5GIIfjXK8hNO6q0w%3d">0463020.ER</a><br />
  2772. <br />
  2773. <div style="width: 100%; text-align: center;">
  2774. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2775. </div>
  2776. <div style="width: 100%; text-align: center;">
  2777. </div>
  2778. </div>
  2779. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2780. </td><td>表面贴装式保险丝 20A 250V Fast Acting High Current
  2781. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2782. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfuse-463-nano2-fuse">了解更多</a>
  2783. </div>
  2784. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2785. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2786. </div>
  2787. </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;Littelfuse&quot;,&quot;576-0463020.ER | 0463020.ER&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_Fuse_463_Datasheet.pdf-319343.pdf" target="_blank">数据表</a>
  2788. </td><td>
  2789. <table>
  2790. <tr align="center">
  2791. <td style="padding-top: 5px">
  2792. </td>
  2793. </tr>
  2794. <tr align="center">
  2795. <td style="padding-top: 5px; padding-bottom: 5px">
  2796. </td>
  2797. </tr>
  2798. </table></td><td>
  2799. </td><td class="SearchResultsBuyColumn">
  2800. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlRestricted">
  2801. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2802. </div>
  2803. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  2804. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2805. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=7hFfldMF97%2fjehuhUcKy0w%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=7hFfldMF97%2fjehuhUcKy0w%3d%3d" target="_blank">详细信息</a>
  2806. </div>
  2807. </td><td>Surface Mount Ceramic Fuse
  2808. </td><td>
  2809. </td><td>20 A
  2810. </td><td>250 V
  2811. </td><td>100 VDC
  2812. </td><td>Fast Blow
  2813. </td>
  2814. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-1206L035YR" data-index="17">
  2815. <td class="td-select" align="center">
  2816. <div style="padding: 5px 5px 0 5px;">
  2817. <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>
  2818. </div>
  2819. </td><td><a href='/ProductDetail/Littelfuse/1206L035YR/?qs=sGAEpiMZZMsIz3CjQ1xegfV9hnZiCDpKvfzxBJac%252bBk%3d'><img title='Littelfuse 1206L035YR' alt='Littelfuse 1206L035YR' id=37731399 src='/images/littelfuse/sm/1206l002.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/1206l002.jpg</div></a></td><td>
  2820. <div style="text-align:left;">
  2821. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/1206L035YR/?qs=sGAEpiMZZMsIz3CjQ1xegfV9hnZiCDpKvfzxBJac%252bBk%3d">576-1206L035YR</a><br />
  2822. <br />
  2823. <br />
  2824. 要购买完整 卷轴,请订购 4000 的倍数:
  2825. </div></td><td>
  2826. <div class="mfrDiv">
  2827. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/1206L035YR/?qs=sGAEpiMZZMsIz3CjQ1xegfV9hnZiCDpKvfzxBJac%252bBk%3d">1206L035YR</a><br />
  2828. <br />
  2829. <div style="width: 100%; text-align: center;">
  2830. </div>
  2831. <div style="width: 100%; text-align: center;">
  2832. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  2833. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  2834. </div>
  2835. </div>
  2836. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2837. </td><td>可复位保险丝—PPTC 6V .35A .1s
  2838. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2839. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2840. </div>
  2841. </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-1206L035YR | 1206L035YR&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_1206L-46746.pdf" target="_blank">数据表</a>
  2842. </td><td>
  2843. <table>
  2844. <tr align="center">
  2845. <td style="padding-top: 5px">
  2846. </td>
  2847. </tr>
  2848. <tr align="center">
  2849. <td style="padding-top: 5px; padding-bottom: 5px">
  2850. </td>
  2851. </tr>
  2852. </table></td><td>
  2853. </td><td class="SearchResultsBuyColumn">
  2854. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_pnlRestricted">
  2855. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2856. </div>
  2857. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  2858. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2859. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=kFCqvQDKRvBwqEPKPz2VTA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=kFCqvQDKRvBwqEPKPz2VTA%3d%3d" target="_blank">详细信息</a>
  2860. </div>
  2861. </td><td>
  2862. </td><td>
  2863. </td><td>
  2864. </td><td>
  2865. </td><td>
  2866. </td><td>
  2867. </td>
  2868. </tr><tr class="SearchResultsRowEven" data-partnumber="576-0402L035SLKR" data-index="18">
  2869. <td class="td-select" align="center">
  2870. <div style="padding: 5px 5px 0 5px;">
  2871. <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>
  2872. </div>
  2873. </td><td><a href='/ProductDetail/Littelfuse/0402L035SLKR/?qs=sGAEpiMZZMsIz3CjQ1xegaVUY0kfTRNLQo1KnPJc%2fMg%3d'><img title='Littelfuse 0402L035SLKR' alt='Littelfuse 0402L035SLKR' id=830235070 src='/images/littelfuse/sm/LoRhoSLPPTCHiResphoto1.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/LoRhoSLPPTCHiResphoto1.jpg</div></a></td><td>
  2874. <div style="text-align:left;">
  2875. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0402L035SLKR/?qs=sGAEpiMZZMsIz3CjQ1xegaVUY0kfTRNLQo1KnPJc%2fMg%3d">576-0402L035SLKR</a><br />
  2876. <br />
  2877. <br />
  2878. 要购买完整 卷轴,请订购 10000 的倍数:
  2879. </div></td><td>
  2880. <div class="mfrDiv">
  2881. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0402L035SLKR/?qs=sGAEpiMZZMsIz3CjQ1xegaVUY0kfTRNLQo1KnPJc%2fMg%3d">0402L035SLKR</a><br />
  2882. <br />
  2883. <div style="width: 100%; text-align: center;">
  2884. </div>
  2885. <div style="width: 100%; text-align: center;">
  2886. </div>
  2887. </div>
  2888. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2889. </td><td>可复位保险丝—PPTC 6V POLYFUSE 0402 LoRho SL .350A
  2890. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2891. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfuselorho/">了解更多</a>
  2892. </div>
  2893. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2894. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2895. </div>
  2896. </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;Littelfuse&quot;,&quot;576-0402L035SLKR | 0402L035SLKR&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PTC_LoRho_Datasheet.pdf-469227.pdf" target="_blank">数据表</a>
  2897. </td><td>
  2898. <table>
  2899. <tr align="center">
  2900. <td style="padding-top: 5px">
  2901. </td>
  2902. </tr>
  2903. <tr align="center">
  2904. <td style="padding-top: 5px; padding-bottom: 5px">
  2905. </td>
  2906. </tr>
  2907. </table></td><td>
  2908. </td><td class="SearchResultsBuyColumn">
  2909. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlRestricted">
  2910. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2911. </div>
  2912. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  2913. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2914. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=HPD3LBo0NEIS5179Fg7weg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=HPD3LBo0NEIS5179Fg7weg%3d%3d" target="_blank">详细信息</a>
  2915. </div>
  2916. </td><td>
  2917. </td><td>
  2918. </td><td>
  2919. </td><td>
  2920. </td><td>
  2921. </td><td>
  2922. </td>
  2923. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-0402L020SLKR" data-index="19">
  2924. <td class="td-select" align="center">
  2925. <div style="padding: 5px 5px 0 5px;">
  2926. <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>
  2927. </div>
  2928. </td><td><a href='/ProductDetail/Littelfuse/0402L020SLKR/?qs=sGAEpiMZZMsIz3CjQ1xegaVUY0kfTRNLuNWfy3epvWg%3d'><img title='Littelfuse 0402L020SLKR' alt='Littelfuse 0402L020SLKR' id=830235068 src='/images/littelfuse/sm/LoRhoSLPPTCHiResphoto1.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/LoRhoSLPPTCHiResphoto1.jpg</div></a></td><td>
  2929. <div style="text-align:left;">
  2930. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0402L020SLKR/?qs=sGAEpiMZZMsIz3CjQ1xegaVUY0kfTRNLuNWfy3epvWg%3d">576-0402L020SLKR</a><br />
  2931. <br />
  2932. <br />
  2933. 要购买完整 卷轴,请订购 10000 的倍数:
  2934. </div></td><td>
  2935. <div class="mfrDiv">
  2936. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0402L020SLKR/?qs=sGAEpiMZZMsIz3CjQ1xegaVUY0kfTRNLuNWfy3epvWg%3d">0402L020SLKR</a><br />
  2937. <br />
  2938. <div style="width: 100%; text-align: center;">
  2939. </div>
  2940. <div style="width: 100%; text-align: center;">
  2941. </div>
  2942. </div>
  2943. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2944. </td><td>可复位保险丝—PPTC 6V POLYFUSE 0402 LoRho SL .100A
  2945. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2946. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfuselorho/">了解更多</a>
  2947. </div>
  2948. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2949. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2950. </div>
  2951. </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-0402L020SLKR | 0402L020SLKR&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PTC_LoRho_Datasheet.pdf-365270.pdf" target="_blank">数据表</a>
  2952. </td><td>
  2953. <table>
  2954. <tr align="center">
  2955. <td style="padding-top: 5px">
  2956. </td>
  2957. </tr>
  2958. <tr align="center">
  2959. <td style="padding-top: 5px; padding-bottom: 5px">
  2960. </td>
  2961. </tr>
  2962. </table></td><td>
  2963. </td><td class="SearchResultsBuyColumn">
  2964. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlRestricted">
  2965. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  2966. </div>
  2967. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  2968. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2969. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=HPD3LBo0NEK6inVFsuIPng%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=HPD3LBo0NEK6inVFsuIPng%3d%3d" target="_blank">详细信息</a>
  2970. </div>
  2971. </td><td>
  2972. </td><td>
  2973. </td><td>
  2974. </td><td>
  2975. </td><td>
  2976. </td><td>
  2977. </td>
  2978. </tr><tr class="SearchResultsRowEven" data-partnumber="576-0402L010SLKR" data-index="20">
  2979. <td class="td-select" align="center">
  2980. <div style="padding: 5px 5px 0 5px;">
  2981. <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>
  2982. </div>
  2983. </td><td><a href='/ProductDetail/Littelfuse/0402L010SLKR/?qs=sGAEpiMZZMsIz3CjQ1xegaVUY0kfTRNLaGYbFr5yCXE%3d'><img title='Littelfuse 0402L010SLKR' alt='Littelfuse 0402L010SLKR' id=830235066 src='/images/littelfuse/sm/LoRhoSLPPTCHiResphoto1.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/LoRhoSLPPTCHiResphoto1.jpg</div></a></td><td>
  2984. <div style="text-align:left;">
  2985. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0402L010SLKR/?qs=sGAEpiMZZMsIz3CjQ1xegaVUY0kfTRNLaGYbFr5yCXE%3d">576-0402L010SLKR</a><br />
  2986. <br />
  2987. <br />
  2988. 要购买完整 卷轴,请订购 10000 的倍数:
  2989. </div></td><td>
  2990. <div class="mfrDiv">
  2991. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0402L010SLKR/?qs=sGAEpiMZZMsIz3CjQ1xegaVUY0kfTRNLaGYbFr5yCXE%3d">0402L010SLKR</a><br />
  2992. <br />
  2993. <div style="width: 100%; text-align: center;">
  2994. </div>
  2995. <div style="width: 100%; text-align: center;">
  2996. </div>
  2997. </div>
  2998. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  2999. </td><td>可复位保险丝—PPTC 6V POLYFUSE 0402 LoRho SL .100A
  3000. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3001. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfuselorho/">了解更多</a>
  3002. </div>
  3003. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3004. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3005. </div>
  3006. </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-0402L010SLKR | 0402L010SLKR&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PTC_LoRho_Datasheet.pdf-365270.pdf" target="_blank">数据表</a>
  3007. </td><td>
  3008. <table>
  3009. <tr align="center">
  3010. <td style="padding-top: 5px">
  3011. </td>
  3012. </tr>
  3013. <tr align="center">
  3014. <td style="padding-top: 5px; padding-bottom: 5px">
  3015. </td>
  3016. </tr>
  3017. </table></td><td>
  3018. </td><td class="SearchResultsBuyColumn">
  3019. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_pnlRestricted">
  3020. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  3021. </div>
  3022. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  3023. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3024. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=HPD3LBo0NEI8lMr9HqEnNw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=HPD3LBo0NEI8lMr9HqEnNw%3d%3d" target="_blank">详细信息</a>
  3025. </div>
  3026. </td><td>
  3027. </td><td>
  3028. </td><td>
  3029. </td><td>
  3030. </td><td>
  3031. </td><td>
  3032. </td>
  3033. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-0402L050SLKR" data-index="21">
  3034. <td class="td-select" align="center">
  3035. <div style="padding: 5px 5px 0 5px;">
  3036. <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>
  3037. </div>
  3038. </td><td><a href='/ProductDetail/Littelfuse/0402L050SLKR/?qs=sGAEpiMZZMsIz3CjQ1xegaVUY0kfTRNLkiSR2ruiSwk%3d'><img title='Littelfuse 0402L050SLKR' alt='Littelfuse 0402L050SLKR' id=830235072 src='/images/littelfuse/sm/LoRhoSLPPTCHiResphoto1.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/LoRhoSLPPTCHiResphoto1.jpg</div></a></td><td>
  3039. <div style="text-align:left;">
  3040. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0402L050SLKR/?qs=sGAEpiMZZMsIz3CjQ1xegaVUY0kfTRNLkiSR2ruiSwk%3d">576-0402L050SLKR</a><br />
  3041. <br />
  3042. <br />
  3043. 要购买完整 卷轴,请订购 10000 的倍数:
  3044. </div></td><td>
  3045. <div class="mfrDiv">
  3046. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0402L050SLKR/?qs=sGAEpiMZZMsIz3CjQ1xegaVUY0kfTRNLkiSR2ruiSwk%3d">0402L050SLKR</a><br />
  3047. <br />
  3048. <div style="width: 100%; text-align: center;">
  3049. </div>
  3050. <div style="width: 100%; text-align: center;">
  3051. </div>
  3052. </div>
  3053. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  3054. </td><td>可复位保险丝—PPTC 6V POLYFUSE 0402 LoRho SL .500A
  3055. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3056. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfuselorho/">了解更多</a>
  3057. </div>
  3058. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3059. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3060. </div>
  3061. </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-0402L050SLKR | 0402L050SLKR&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_PTC_LoRho_Datasheet.pdf-365270.pdf" target="_blank">数据表</a>
  3062. </td><td>
  3063. <table>
  3064. <tr align="center">
  3065. <td style="padding-top: 5px">
  3066. </td>
  3067. </tr>
  3068. <tr align="center">
  3069. <td style="padding-top: 5px; padding-bottom: 5px">
  3070. </td>
  3071. </tr>
  3072. </table></td><td>
  3073. </td><td class="SearchResultsBuyColumn">
  3074. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_pnlRestricted">
  3075. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  3076. </div>
  3077. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  3078. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3079. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=HPD3LBo0NEIqg8cGZQHeJg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=HPD3LBo0NEIqg8cGZQHeJg%3d%3d" target="_blank">详细信息</a>
  3080. </div>
  3081. </td><td>
  3082. </td><td>
  3083. </td><td>
  3084. </td><td>
  3085. </td><td>
  3086. </td><td>
  3087. </td>
  3088. </tr><tr class="SearchResultsRowEven" data-partnumber="576-0435.750KR" data-index="22">
  3089. <td class="td-select" align="center">
  3090. <div style="padding: 5px 5px 0 5px;">
  3091. <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>
  3092. </div>
  3093. </td><td><a href='/ProductDetail/Littelfuse/0435750KR/?qs=sGAEpiMZZMsIz3CjQ1xegWrlMY7vL59hNYwu%252bl%2fXMns%3d'><img title='Littelfuse 0435.750KR' alt='Littelfuse 0435.750KR' id=33147918 src='/images/littelfuse/sm/435.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/435.jpg</div></a></td><td>
  3094. <div style="text-align:left;">
  3095. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0435750KR/?qs=sGAEpiMZZMsIz3CjQ1xegWrlMY7vL59hNYwu%252bl%2fXMns%3d">576-0435.750KR</a><br />
  3096. <br />
  3097. <br />
  3098. 要购买完整 卷轴,请订购 10000 的倍数:
  3099. </div></td><td>
  3100. <div class="mfrDiv">
  3101. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0435750KR/?qs=sGAEpiMZZMsIz3CjQ1xegWrlMY7vL59hNYwu%252bl%2fXMns%3d">0435.750KR</a><br />
  3102. <br />
  3103. <div style="width: 100%; text-align: center;">
  3104. </div>
  3105. <div style="width: 100%; text-align: center;">
  3106. </div>
  3107. </div>
  3108. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  3109. </td><td>表面贴装式保险丝 32V .75A 0402 Very Fast Acting
  3110. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3111. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3112. </div>
  3113. </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;Littelfuse&quot;,&quot;576-0435.750KR | 0435.750KR&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_Fuse_435-66939.pdf" target="_blank">数据表</a>
  3114. </td><td>
  3115. <table>
  3116. <tr align="center">
  3117. <td style="padding-top: 5px">
  3118. </td>
  3119. </tr>
  3120. <tr align="center">
  3121. <td style="padding-top: 5px; padding-bottom: 5px">
  3122. </td>
  3123. </tr>
  3124. </table></td><td>
  3125. </td><td class="SearchResultsBuyColumn">
  3126. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_pnlRestricted">
  3127. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  3128. </div>
  3129. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  3130. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3131. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=RrEgbA4V8n2hc6wW8F7sKA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=RrEgbA4V8n2hc6wW8F7sKA%3d%3d" target="_blank">详细信息</a>
  3132. </div>
  3133. </td><td>Surface Mount Fuse
  3134. </td><td>
  3135. </td><td>750 mA
  3136. </td><td>32 V
  3137. </td><td>32 VDC
  3138. </td><td>Fast Blow
  3139. </td>
  3140. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-0251.062MAT1L" data-index="23">
  3141. <td class="td-select" align="center">
  3142. <div style="padding: 5px 5px 0 5px;">
  3143. <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>
  3144. </div>
  3145. </td><td><a href='/ProductDetail/Littelfuse/0251062MAT1L/?qs=sGAEpiMZZMsIz3CjQ1xegWrlMY7vL59hBkHSqd7%252br1s%3d'><img title='Littelfuse 0251.062MAT1L' alt='Littelfuse 0251.062MAT1L' id=33149299 src='/images/littelfuse/sm/251_253_series_PICO_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/littelfuse/images/251_253_series_PICO_DSL.jpg</div></a></td><td>
  3146. <div style="text-align:left;">
  3147. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0251062MAT1L/?qs=sGAEpiMZZMsIz3CjQ1xegWrlMY7vL59hBkHSqd7%252br1s%3d">576-0251.062MAT1L</a><br />
  3148. <br />
  3149. <br />
  3150. 要购买完整 弹药盒,请订购 1000 的倍数:
  3151. </div></td><td>
  3152. <div class="mfrDiv">
  3153. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0251062MAT1L/?qs=sGAEpiMZZMsIz3CjQ1xegWrlMY7vL59hBkHSqd7%252br1s%3d">0251.062MAT1L</a><br />
  3154. <br />
  3155. <div style="width: 100%; text-align: center;">
  3156. </div>
  3157. <div style="width: 100%; text-align: center;">
  3158. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  3159. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  3160. </div>
  3161. </div>
  3162. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  3163. </td><td>带引线的保险丝(通孔型) 125V .062A
  3164. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3165. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3166. </div>
  3167. </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-0251.062MAT1L | 0251.062MAT1L&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_Fuse_251_253_Datasheet.pdf-522535.pdf" target="_blank">数据表</a>
  3168. </td><td>
  3169. <table>
  3170. <tr align="center">
  3171. <td style="padding-top: 5px">
  3172. </td>
  3173. </tr>
  3174. <tr align="center">
  3175. <td style="padding-top: 5px; padding-bottom: 5px">
  3176. </td>
  3177. </tr>
  3178. </table></td><td>
  3179. </td><td class="SearchResultsBuyColumn">
  3180. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_pnlRestricted">
  3181. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  3182. </div>
  3183. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  3184. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3185. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=pQ%2fTveQnJ9TGgZ69cVY2OA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=pQ%2fTveQnJ9TGgZ69cVY2OA%3d%3d" target="_blank">详细信息</a>
  3186. </div>
  3187. </td><td>PCB Mount Fuse
  3188. </td><td>Leaded Fuses
  3189. </td><td>62 mA
  3190. </td><td>125 V
  3191. </td><td>125 VDC
  3192. </td><td>Fast Blow
  3193. </td>
  3194. </tr><tr class="SearchResultsRowEven" data-partnumber="576-0259.500MX913" data-index="24">
  3195. <td class="td-select" align="center">
  3196. <div style="padding: 5px 5px 0 5px;">
  3197. <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>
  3198. </div>
  3199. </td><td><a href='/ProductDetail/Littelfuse/0259500MX913/?qs=sGAEpiMZZMsIz3CjQ1xegQBDg7A5GIIfo41VH8IVn6E%3d'><img title='Littelfuse 0259.500MX913' alt='Littelfuse 0259.500MX913' id=929732508 src='/images/littelfuse/sm/PICO259.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/PICO259.jpg</div></a></td><td>
  3200. <div style="text-align:left;">
  3201. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0259500MX913/?qs=sGAEpiMZZMsIz3CjQ1xegQBDg7A5GIIfo41VH8IVn6E%3d">576-0259.500MX913</a><br />
  3202. <br />
  3203. <br />
  3204. </div></td><td>
  3205. <div class="mfrDiv">
  3206. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0259500MX913/?qs=sGAEpiMZZMsIz3CjQ1xegQBDg7A5GIIfo41VH8IVn6E%3d">0259.500MX913</a><br />
  3207. <br />
  3208. <div style="width: 100%; text-align: center;">
  3209. </div>
  3210. <div style="width: 100%; text-align: center;">
  3211. </div>
  3212. </div>
  3213. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  3214. </td><td>带引线的保险丝(通孔型) 125V .5A PICO UL913
  3215. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3216. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../littelfuse-pico259">了解更多</a>
  3217. </div>
  3218. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3219. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3220. </div>
  3221. </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-0259.500MX913 | 0259.500MX913&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_Fuse_PICO_259_UL913_Datasheet.pdf-221349.pdf" target="_blank">数据表</a>
  3222. </td><td>
  3223. <table>
  3224. <tr align="center">
  3225. <td style="padding-top: 5px">
  3226. </td>
  3227. </tr>
  3228. <tr align="center">
  3229. <td style="padding-top: 5px; padding-bottom: 5px">
  3230. </td>
  3231. </tr>
  3232. </table></td><td>
  3233. </td><td class="SearchResultsBuyColumn">
  3234. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_pnlRestricted">
  3235. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  3236. </div>
  3237. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  3238. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3239. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=7hFfldMF979FJ23JIQHRsg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=7hFfldMF979FJ23JIQHRsg%3d%3d" target="_blank">详细信息</a>
  3240. </div>
  3241. </td><td>PCB Mount Fuse
  3242. </td><td>Leaded Fuses
  3243. </td><td>500 mA
  3244. </td><td>125 V
  3245. </td><td>125 VDC
  3246. </td><td>Time Delay / Slow Blow
  3247. </td>
  3248. </tr><tr class="SearchResultsRowOdd" data-partnumber="576-0481010.VXLP" data-index="25">
  3249. <td class="td-select" align="center">
  3250. <div style="padding: 5px 5px 0 5px;">
  3251. <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>
  3252. </div>
  3253. </td><td><a href='/ProductDetail/Littelfuse/0481010VXLP/?qs=sGAEpiMZZMsIz3CjQ1xegcVbt%2fi3CEFDY8qmtuV3W0A%3d'><img title='Littelfuse 0481010.VXLP' alt='Littelfuse 0481010.VXLP' id=453919520 src='/images/littelfuse/sm/481.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/481.jpg</div></a></td><td>
  3254. <div style="text-align:left;">
  3255. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Littelfuse/0481010VXLP/?qs=sGAEpiMZZMsIz3CjQ1xegcVbt%2fi3CEFDY8qmtuV3W0A%3d">576-0481010.VXLP</a><br />
  3256. <br />
  3257. <br />
  3258. </div></td><td>
  3259. <div class="mfrDiv">
  3260. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Littelfuse/0481010VXLP/?qs=sGAEpiMZZMsIz3CjQ1xegcVbt%2fi3CEFDY8qmtuV3W0A%3d">0481010.VXLP</a><br />
  3261. <br />
  3262. <div style="width: 100%; text-align: center;">
  3263. </div>
  3264. <div style="width: 100%; text-align: center;">
  3265. </div>
  3266. </div>
  3267. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../littelfuse">Littelfuse</a>
  3268. </td><td>特种保险丝 125V ALARM 10A W/LENS RoHS
  3269. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3270. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3271. </div>
  3272. </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-0481010.VXLP | 0481010.VXLP&quot;]);" href="http://www.mouser.com/ds/2/240/Littelfuse_Fuse_481-62048.pdf" target="_blank">数据表</a>
  3273. </td><td>
  3274. <table>
  3275. <tr align="center">
  3276. <td style="padding-top: 5px">
  3277. </td>
  3278. </tr>
  3279. <tr align="center">
  3280. <td style="padding-top: 5px; padding-bottom: 5px">
  3281. </td>
  3282. </tr>
  3283. </table></td><td>
  3284. </td><td class="SearchResultsBuyColumn">
  3285. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlRestricted">
  3286. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  3287. </div>
  3288. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  3289. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3290. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=wFCXERm3%252bOK%2fUIrjjaF0FA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=wFCXERm3%252bOK%2fUIrjjaF0FA%3d%3d" target="_blank">详细信息</a>
  3291. </div>
  3292. </td><td>Specialty Fuses
  3293. </td><td>Flat Body Blade Fuses
  3294. </td><td>10 A
  3295. </td><td>125 V
  3296. </td><td>125 VDC
  3297. </td><td>Fast Blow
  3298. </td>
  3299. </tr><tr class="SearchResultsRowEven" data-partnumber="652-MFR010" data-index="26">
  3300. <td class="td-select" align="center">
  3301. <div style="padding: 5px 5px 0 5px;">
  3302. <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>
  3303. </div>
  3304. </td><td><a href='/ProductDetail/Bourns/MF-R010/?qs=sGAEpiMZZMsIz3CjQ1xegRRiNzHhjA4SIWxfVTO%252bres%3d'><img title='Bourns MF-R010' alt='Bourns MF-R010' id=2369923 src='/images/bourns/sm/MF-R_STYLE_1.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/bourns/images/MF-R_STYLE_1.jpg</div></a></td><td>
  3305. <div style="text-align:left;">
  3306. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/MF-R010/?qs=sGAEpiMZZMsIz3CjQ1xegRRiNzHhjA4SIWxfVTO%252bres%3d">652-MFR010</a><br />
  3307. <br />
  3308. <br />
  3309. </div></td><td>
  3310. <div class="mfrDiv">
  3311. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/MF-R010/?qs=sGAEpiMZZMsIz3CjQ1xegRRiNzHhjA4SIWxfVTO%252bres%3d">MF-R010</a><br />
  3312. <br />
  3313. <div style="width: 100%; text-align: center;">
  3314. </div>
  3315. <div style="width: 100%; text-align: center;">
  3316. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  3317. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  3318. </div>
  3319. </div>
  3320. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  3321. </td><td>可复位保险丝—PPTC 60v Max 40Amps Max Hold .10 Trip .20
  3322. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3323. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3324. </div>
  3325. </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;Bourns&quot;,&quot;652-MFR010 | MF-R010&quot;]);" href="http://www.mouser.com/ds/2/54/fr-777680.pdf" target="_blank">数据表</a>
  3326. </td><td>
  3327. <table>
  3328. <tr align="center">
  3329. <td style="padding-top: 5px">
  3330. </td>
  3331. </tr>
  3332. <tr align="center">
  3333. <td style="padding-top: 5px; padding-bottom: 5px">
  3334. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAlternativePackaging" title="备用包装 | 652-MFR010" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQa2%252b488%2fADgORrrFKTZ7B82Ayd0BRvI%2f0KaKUkaCjQMP4lvS5xMb8k89bilszYM7C3nkZDVa%2fRTUWXqqknX94NCMUpJ4yOvtMZslDrr%252bh6cK31kOiLvTmn6ptKxfuyPfDjXu9ACdNyVf0lhfY0hHYz2YZvNu8c%2foAn%2flM%2f1%2f6a6w%3d%3d&amp;TB_iframe=true&amp;height=358&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3335. </td>
  3336. </tr>
  3337. </table></td><td>
  3338. </td><td class="SearchResultsBuyColumn">
  3339. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_pnlRestricted">
  3340. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  3341. </div>
  3342. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  3343. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3344. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=0bs03JlAqiuIo5zsbQWF2g%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=0bs03JlAqiuIo5zsbQWF2g%3d%3d" target="_blank">详细信息</a>
  3345. </div>
  3346. </td><td>
  3347. </td><td>
  3348. </td><td>
  3349. </td><td>
  3350. </td><td>
  3351. </td><td>
  3352. </td>
  3353. </tr><tr class="SearchResultsRowOdd" data-partnumber="652-MF-USMF010-2" data-index="27">
  3354. <td class="td-select" align="center">
  3355. <div style="padding: 5px 5px 0 5px;">
  3356. <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>
  3357. </div>
  3358. </td><td><a href='/ProductDetail/Bourns/MF-USMF010-2/?qs=sGAEpiMZZMsIz3CjQ1xegWpBLZ5uT9VLuzNC3sTJt%2fw%3d'><img title='Bourns MF-USMF010-2' alt='Bourns MF-USMF010-2' id=13924251 src='/images/bourns/sm/MSUSMF.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/bourns/images/MSUSMF.jpg</div></a></td><td>
  3359. <div style="text-align:left;">
  3360. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/MF-USMF010-2/?qs=sGAEpiMZZMsIz3CjQ1xegWpBLZ5uT9VLuzNC3sTJt%2fw%3d">652-MF-USMF010-2</a><br />
  3361. <br />
  3362. <br />
  3363. 要购买完整 卷轴,请订购 3000 的倍数:
  3364. </div></td><td>
  3365. <div class="mfrDiv">
  3366. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/MF-USMF010-2/?qs=sGAEpiMZZMsIz3CjQ1xegWpBLZ5uT9VLuzNC3sTJt%2fw%3d">MF-USMF010-2</a><br />
  3367. <br />
  3368. <div style="width: 100%; text-align: center;">
  3369. </div>
  3370. <div style="width: 100%; text-align: center;">
  3371. <span class="MultisimBlue"><a href="/multisimblue" target="blank" onclick="ga('send', 'event', 'Internal Click', 'MultiSIM Blue Icon', 'Refine Page');" ><img src="/images/MSB-Icon-19x19.png" alt=" MultiSIM BLUE有货" /></a></span><br/>
  3372. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_lnkMultiSIMBlue" title=" MultiSIM BLUE有货" class="MultisimBlue" onclick="ga(&#39;send&#39;, &#39;event&#39;, &#39;Internal Click&#39;, &#39;MultiSIM Blue Link&#39;, &#39;Refine Page&#39;);" href="../../../../multisimblue" target="_blank"> MultiSIM BLUE有货</a>
  3373. </div>
  3374. </div>
  3375. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  3376. </td><td>可复位保险丝—PPTC 0.10A 30V 0.80ohm Hold .10A Trip .3A
  3377. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3378. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3379. </div>
  3380. </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;Bourns&quot;,&quot;652-MF-USMF010-2 | MF-USMF010-2&quot;]);" href="http://www.mouser.com/ds/2/54/fusmf-777646.pdf" target="_blank">数据表</a>
  3381. </td><td>
  3382. <table>
  3383. <tr align="center">
  3384. <td style="padding-top: 5px">
  3385. </td>
  3386. </tr>
  3387. <tr align="center">
  3388. <td style="padding-top: 5px; padding-bottom: 5px">
  3389. </td>
  3390. </tr>
  3391. </table></td><td>
  3392. </td><td class="SearchResultsBuyColumn">
  3393. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_pnlRestricted">
  3394. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=Chine&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  3395. </div>
  3396. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  3397. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3398. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=umfiO%252bUqDD55xuB9LJD3Ew%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=umfiO%252bUqDD55xuB9LJD3Ew%3d%3d" target="_blank">详细信息</a>
  3399. </div>
  3400. </td><td>
  3401. </td><td>
  3402. </td><td>
  3403. </td><td>
  3404. </td><td>
  3405. </td><td>
  3406. </td>
  3407. </tr>
  3408. </table>
  3409. </div>
  3410. </td>
  3411. </tr>
  3412. <tr>
  3413. <td class="tdSearchResultsPagingBottom">
  3414. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  3415. <tr>
  3416. <td>
  3417. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  3418. </td>
  3419. <td>
  3420. <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" />
  3421. </td>
  3422. <td>
  3423. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  3424. </td>
  3425. <td style="padding-left: 40px;">
  3426. <div class="floatrightpager">
  3427. <span class="bold">
  3428. 页面:
  3429. </span>
  3430. <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/Fuses/_/N-ba85y/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_1369" class="first-last" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=34225">1370</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Circuit-Protection/Fuses/_/N-ba85y/?No=25">下一页</a></span>
  3431. </div>
  3432. </td>
  3433. </tr>
  3434. </table>
  3435. </td>
  3436. </tr>
  3437. <tr>
  3438. <td>
  3439. <!--- Search Tips --->
  3440. </td>
  3441. </tr>
  3442. <tr>
  3443. <td>
  3444. <!-- SOP Section 2 -->
  3445. </td>
  3446. </tr>
  3447. </table>
  3448. </div>
  3449. </div><!-- #liProducts-->
  3450. <!-- Datasheets tab -->
  3451. <!-- #liDatasheets-->
  3452. <!-- Images tab -->
  3453. <!-- #liImages-->
  3454. <!-- Newest Products tab -->
  3455. <!-- #liProducts-->
  3456. </div>
  3457. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  3458. <div>
  3459. <span class="popular-searches-label">热门搜索:</span>
  3460. <span class="popular-searches-links"><a href='/Circuit-Protection/Fuses/_/N-ba85y?P=1z0x8fm&pop=1zd2' onclick="ga('send','event','Popular Search Refine Click','Fuses','100 A Fuses')">100 A 保险丝</a> , <a href='/Circuit-Protection/Fuses/_/N-ba85y?P=1z0x8eeZ1yzmkevZ1z0s1tm&pop=ogvw' onclick="ga('send','event','Popular Search Refine Click','Fuses','6 A 600 V Time Delay / Slow Blow Fuses')">6 A 600 V Time Delay / Slow Blow 保险丝</a> , <a href='/Circuit-Protection/Fuses/Cartridge-Fuses/_/N-ba8h0/?P=1z0s1gq&pop=rcyl' onclick="ga('send','event','Popular Search Refine Click','Fuses','5 mm x 30 mm Cartridge Fuses')">5 mm x 30 mm 保险丝管</a> , <a href='/Circuit-Protection/Fuses/_/N-ba85y?P=1yxlxv9Z1z0x87jZ1z0x7w3Z1z0z33z&pop=txvx' onclick="ga('send','event','Popular Search Refine Click','Fuses','Cylindrical Leaded 4 A 250 V Fast Blow Fuses')">Cylindrical Leaded 4 A 250 V Fast Blow 保险丝</a> , <a href='/Circuit-Protection/Fuses/_/N-ba85y?P=1z0x8dpZ1z0x7w3Z1z0s1tm&pop=6rgk&pop=vw1d' onclick="ga('send','event','Popular Search Refine Click','Fuses','6.3 A 250 V Time Delay / Slow Blow Fuses')">6.3 A 250 V Time Delay / Slow Blow 保险丝</a> , <a href='/Circuit-Protection/Fuses/_/N-ba85y?P=1z0x87e&pop=3tcm' onclick="ga('send','event','Popular Search Refine Click','Fuses','12 A Fuses')">12 A 保险丝</a></span>
  3461. </div>
  3462. </div>
  3463. <div style="visibility: hidden;">
  3464. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  3465. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  3466. <span id="SearchResultCount">34235</span>
  3467. <div id="disclaimer">
  3468. 图像仅供参考<br/>请参阅产品规格</div>
  3469. </div>
  3470. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Circuit-Protection/Fuses" />
  3471. <script type="text/javascript" src='../../../../javascript/ProductImage.js'></script>
  3472. <script type="text/javascript" src='../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  3473. <script type="text/javascript" src='../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  3474. <!--[if gte IE 9]><!-->
  3475. <script type="text/javascript" src='../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  3476. <!--<![endif]-->
  3477. <!--[if lt IE 9]>
  3478. <script type="text/javascript" src='../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  3479. <![endif]-->
  3480. <script type="text/javascript" src='../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  3481. <script type="text/javascript">
  3482. var subdomain = 'cn2';
  3483. </script>
  3484. </div>
  3485. <div class="aspNetHidden">
  3486. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  3487. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  3488. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  3489. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  3490. </div>
  3491. <script type="text/javascript">
  3492. //<![CDATA[
  3493. var mfrIDsArray = new Array;
  3494. //]]>
  3495. </script>
  3496. <script src='../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  3497. <script type="text/javascript">
  3498. //<![CDATA[
  3499. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  3500. </script>
  3501. <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>
  3502. <script type="text/javascript">
  3503. //<![CDATA[
  3504. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  3505. //]]>
  3506. </script>
  3507. <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>
  3508. <script type="text/javascript">
  3509. //<![CDATA[
  3510. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688302^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688370^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$688770^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$688771^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000062';
  3511. theForm.oldSubmit = theForm.submit;
  3512. theForm.submit = WebForm_SaveScrollPositionSubmit;
  3513. theForm.oldOnSubmit = theForm.onsubmit;
  3514. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  3515. //]]>
  3516. </script>
  3517. </form>
  3518. <div id="content-container2" class="hidden">
  3519. <div id="content-fixed-width2" class="content-fixed-width">
  3520. </div>
  3521. </div>
  3522. <div id="wideFooter" class="wideFooter">
  3523. <div id="footer" class="container">
  3524. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB06|20160304.2" />
  3525. <div id="ft_table1">
  3526. <div class="row">
  3527. <div class="col-xs-12">
  3528. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  3529. <div class="floatleft padding5right">
  3530. <strong class="h3">
  3531. 快速电子邮件注册</strong>&nbsp;&nbsp;
  3532. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  3533. </div>
  3534. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  3535. 提交
  3536. </a>
  3537. </div>
  3538. <div id="ft_icons" class="ft_icons">
  3539. <div id="ft_social">
  3540. <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>
  3541. <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>
  3542. <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>
  3543. <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">
  3544. <div class="ico-social fb"></div>
  3545. </a>
  3546. <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">
  3547. <div class="ico-social tw"></div>
  3548. </a>
  3549. <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">
  3550. <div class="ico-social rss"></div>
  3551. </a>
  3552. <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">
  3553. <div class="ico-social yt"></div>
  3554. </a>
  3555. <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">
  3556. <div class="ico-social gp"></div>
  3557. </a>
  3558. <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">
  3559. <div class="ico-social ln"></div>
  3560. </a>
  3561. <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">
  3562. <div class="ico-social sb"></div>
  3563. </a>
  3564. <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">
  3565. <div class="ico-social blog"></div>
  3566. </a>
  3567. </div>
  3568. </div>
  3569. </div>
  3570. </div>
  3571. </div>
  3572. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  3573. <div class="ft_wrapper">
  3574. <div id="ft_links" class="row">
  3575. <div class="col-xs-3 paddingBtm10 hidden-xs">
  3576. <strong class="paddingTopBtm10 inline-block">
  3577. 公司</strong>
  3578. <ul>
  3579. <li>
  3580. <a id="ctl00_Footer1_lnk26" href="../../../../aboutus/">关于我们</a></li>
  3581. <li>
  3582. <a id="ctl00_Footer1_lnk28" href="../../../../educationalsales/">教育销售</a></li>
  3583. <li>
  3584. <a id="ctl00_Footer1_lnk31" href="../../../../pressroom/">新闻中心</a></li>
  3585. <li>
  3586. <a id="ctl00_Footer1_lnk32" href="../../../../careers/">Mouser 工作机会</a></li>
  3587. <li>
  3588. <a id="ctl00_Footer1_lnk29" href="../../../../quality/">品质保证</a></li>
  3589. <li>
  3590. <a id="ctl00_Footer1_lnk30" href="../../../../environmental/">环境保护</a></li>
  3591. </ul>
  3592. </div>
  3593. <div class="col-xs-3 hidden-xs">
  3594. <strong class="paddingTopBtm10 inline-block">
  3595. 快速链接</strong>
  3596. <ul>
  3597. <li><a id="A7" href="/blog">
  3598. Mouser博客</a></li>
  3599. <li>
  3600. <a id="ctl00_Footer1_hlnk1" href="../../../../new/">最新产品</a></li>
  3601. <li>
  3602. <a id="ctl00_Footer1_hlnk2" href="../../../../new/products/">新产品</a></li>
  3603. <li>
  3604. <a id="ctl00_Footer1_hlnk3" href="../../../../applications/">新技术</a></li>
  3605. </ul>
  3606. </div>
  3607. <div class="col-xs-12 col-sm-3">
  3608. <strong class="paddingTopBtm10 inline-block">
  3609. 支持</strong>
  3610. <ul>
  3611. <li><a id="A3" href="/feedback.aspx">
  3612. 反馈</a></li>
  3613. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  3614. 帮助</a></li>
  3615. <li>
  3616. <a id="ctl00_Footer1_lnk27" href="../../../../contact/">联系我们</a></li>
  3617. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  3618. 浏览器支持</a></li>
  3619. <li><a id="A6" href="/cookie-policy/">
  3620. Cookie政策</a></li>
  3621. </ul>
  3622. </div>
  3623. <div class="col-xs-12 col-sm-3">
  3624. <strong class="paddingTopBtm10 inline-block">
  3625. 昴氏(上海)电子贸易有限公司</strong>
  3626. <ul>
  3627. <li>
  3628. <h4>
  3629. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  3630. </li>
  3631. </ul>
  3632. </div>
  3633. </div>
  3634. </div>
  3635. </div>
  3636. <div class="row">
  3637. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  3638. <div id="ft_copy">
  3639. <span class="ft_terms">
  3640. <a id="A1" href="/privacypolicy/">
  3641. 隐私政策</a>
  3642. &nbsp;&nbsp;|&nbsp;&nbsp;
  3643. <a id="href3" href="/saleterms/">
  3644. 销售条款</a>
  3645. <br />
  3646. </span>
  3647. <span class="ft_copyright">
  3648. 版权所有©2016 Mouser Electronics, Inc
  3649. |
  3650. 沪ICP备15042575号-1
  3651. <br />
  3652. </span>
  3653. <span class="ft_trade">
  3654. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  3655. </span>
  3656. <span class="ft_hq">
  3657. Corporate headquarters and logistics center in Mansfield, Texas USA.
  3658. </span>
  3659. <br />
  3660. <span class="ft_ClassicMobile">
  3661. <strong>
  3662. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../m_Home.aspx">通过移动设备查看</a></strong>
  3663. </span>
  3664. </div>
  3665. </div>
  3666. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  3667. <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>
  3668. <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>
  3669. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  3670. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  3671. </a>
  3672. <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>
  3673. <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;
  3674. </a>
  3675. </div>
  3676. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  3677. <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>
  3678. <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>
  3679. <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>
  3680. <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>
  3681. </div>
  3682. </div>
  3683. <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>
  3684. <script type="text/javascript">
  3685. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  3686. </script>
  3687. </div>
  3688. </div>
  3689. <script src="../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  3690. <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>
  3691. </body>
  3692. </html>