98.html 346 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head id="ctl00_header">
  4. <!-- AppInternalsXpert BMX Integration Begin -->
  5. <script>
  6. if(!OPNET_ARXS){
  7. var OPNET_ARXS={startJS:Number(new Date()),
  8. clientId:'7496BECC1B8E33C4',appId:100040,
  9. collector:'perf.mouser.com',
  10. collectorHttpPort:80, collectorHttpsPort:443,
  11. sv:'0302',
  12. tag1:'', tag2:'', tag3:''};
  13. (function(){
  14. var w=window,l=w.addEventListener,m=w.attachEvent,
  15. d=document,s='script',t='load',o=OPNET_ARXS,
  16. z='-0b2c4d73f58414c86c7384150be8ca44',
  17. r=(('https:'===d.location.protocol)?
  18. 'https://953c27ce3b34cfb8cc56'+z+'.ssl':
  19. 'http://fb3f316d487bcc59f7ec'+z+'.r88')+
  20. '.cf1.rackcdn.com/opnet_browsermetrix.c.'+
  21. (o.ajax?'ajax.js':'js'),p=('onpagehide' in w),e=p?'pageshow':t,
  22. j=d.createElement(s),x=d.getElementsByTagName(s)[0],
  23. h=function(y){o.ldJS=new Date();o.per=y?y.persisted:null;},
  24. i=function(){o.ld=1;};o.cookie=d.cookie;d.cookie=
  25. '_op_aixPageId=0; path=/; expires='+(new Date(0)).toGMTString();
  26. o.cookieAfterDelete=d.cookie;j.async=1;j.src=r;
  27. if(l){l(e,h,false);if(p){l(t,i,false);}}else if(m)
  28. {m('on'+e,h);if(p){m('on'+t,i);}}
  29. if(o.sync){d.write('<'+s+' src=\''+r+'\'></'+s+'>');}
  30. else{x.parentNode.insertBefore(j,x);}
  31. })();}
  32. </script>
  33. <script>if(!OPNET_ARXS_PARAM){var OPNET_ARXS_PARAM={};} OPNET_ARXS_PARAM.pageId = 'a2_d43a5858-f3a0-4e20-8dea-f796fc4e73e4-4852-307273';</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","tDeCvkHY28GFRLDvns1k4VlA3hplEe1PKo1DIoPQOII=",2]);_gaq.push(["_setCustomVar",31,"Cart","ea87b1e2-92d8-4a7d-ac48-ce7395bbad9b",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA96AA68",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '652-TBU-CA065-100-WH',
  65. 'name': 'Surge Suppressors Bi-directional TBU',
  66. 'category': 'Surge Suppressors',
  67. 'brand': 'Bourns',
  68. 'variant': 'TBU-CA065-100-WH',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '652-C850-260-WH',
  74. 'name': 'Surge Suppressors 260mA 850Vimp',
  75. 'category': 'Surge Suppressors',
  76. 'brand': 'Bourns',
  77. 'variant': 'C850-260-WH',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '652-TBU-CA065-200-WH',
  83. 'name': 'Surge Suppressors Bi-directional TBU',
  84. 'category': 'Surge Suppressors',
  85. 'brand': 'Bourns',
  86. 'variant': 'TBU-CA065-200-WH',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '652-TBU-CA065-300-WH',
  92. 'name': 'Surge Suppressors Bi-directional TBU',
  93. 'category': 'Surge Suppressors',
  94. 'brand': 'Bourns',
  95. 'variant': 'TBU-CA065-300-WH',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '652-TBU-CA025-050-WH',
  101. 'name': 'Surge Suppressors Bi-directional TBU',
  102. 'category': 'Surge Suppressors',
  103. 'brand': 'Bourns',
  104. 'variant': 'TBU-CA025-050-WH',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '652-TBU-CA025-100-WH',
  110. 'name': 'Surge Suppressors Bi-directional TBU',
  111. 'category': 'Surge Suppressors',
  112. 'brand': 'Bourns',
  113. 'variant': 'TBU-CA025-100-WH',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '652-TBU-CA085-200-WH',
  119. 'name': 'Surge Suppressors Bi-directional TBU',
  120. 'category': 'Surge Suppressors',
  121. 'brand': 'Bourns',
  122. 'variant': 'TBU-CA085-200-WH',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '511-SMP75-8',
  128. 'name': 'Surge Suppressors 8V 75A Bidirect',
  129. 'category': 'Surge Suppressors',
  130. 'brand': 'STMicroelectronics',
  131. 'variant': 'SMP75-8',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '651-2839282',
  137. 'name': 'Surge Suppressors PT-BE/FM',
  138. 'category': 'Surge Suppressors',
  139. 'brand': 'Phoenix Contact',
  140. 'variant': '2839282',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '511-SMP100LC-65',
  146. 'name': 'Surge Suppressors 65V 50uA Bidirect',
  147. 'category': 'Surge Suppressors',
  148. 'brand': 'STMicroelectronics',
  149. 'variant': 'SMP100LC-65',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '651-2905228',
  155. 'name': 'Surge Suppressors PLT-SEC-T3-120-FM',
  156. 'category': 'Surge Suppressors',
  157. 'brand': 'Phoenix Contact',
  158. 'variant': '2905228',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '511-SMP100LC-25',
  164. 'name': 'Surge Suppressors 25V 50uA Bidirect',
  165. 'category': 'Surge Suppressors',
  166. 'brand': 'STMicroelectronics',
  167. 'variant': 'SMP100LC-25',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '652-TBU-CA085-100-WH',
  173. 'name': 'Surge Suppressors Bi-directional TBU',
  174. 'category': 'Surge Suppressors',
  175. 'brand': 'Bourns',
  176. 'variant': 'TBU-CA085-100-WH',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '652-TBU-CA085-300-WH',
  182. 'name': 'Surge Suppressors Bi-directional TBU',
  183. 'category': 'Surge Suppressors',
  184. 'brand': 'Bourns',
  185. 'variant': 'TBU-CA085-300-WH',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '652-TBU-CA065-050-WH',
  191. 'name': 'Surge Suppressors Bi-directional TBU',
  192. 'category': 'Surge Suppressors',
  193. 'brand': 'Bourns',
  194. 'variant': 'TBU-CA065-050-WH',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '652-TBU-CA065-500-WH',
  200. 'name': 'Surge Suppressors Bi-directional TBU',
  201. 'category': 'Surge Suppressors',
  202. 'brand': 'Bourns',
  203. 'variant': 'TBU-CA065-500-WH',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '652-TBU-CA085-500-WH',
  209. 'name': 'Surge Suppressors Bi-directional TBU',
  210. 'category': 'Surge Suppressors',
  211. 'brand': 'Bourns',
  212. 'variant': 'TBU-CA085-500-WH',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '652-TBU-DT085-200-WH',
  218. 'name': 'Surge Suppressors Dual Unidirectional TBU Device',
  219. 'category': 'Surge Suppressors',
  220. 'brand': 'Bourns',
  221. 'variant': 'TBU-DT085-200-WH',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '651-2807586',
  227. 'name': 'Surge Suppressors VAL-MS 120 ST',
  228. 'category': 'Surge Suppressors',
  229. 'brand': 'Phoenix Contact',
  230. 'variant': '2807586',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '651-2807609',
  236. 'name': 'Surge Suppressors VAL-MS 500 ST',
  237. 'category': 'Surge Suppressors',
  238. 'brand': 'Phoenix Contact',
  239. 'variant': '2807609',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '651-2881007',
  245. 'name': 'Surge Suppressors DT-LAN-CAT.6+ RJ45 SURGE',
  246. 'category': 'Surge Suppressors',
  247. 'brand': 'Phoenix Contact',
  248. 'variant': '2881007',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '511-RBO40-40G-TR',
  254. 'name': 'Surge Suppressors Reversed Battery OverVolt Prot',
  255. 'category': 'Surge Suppressors',
  256. 'brand': 'STMicroelectronics',
  257. 'variant': 'RBO40-40G-TR',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '651-2801305',
  263. 'name': 'Surge Suppressors CB 1/10-1/10 UT-BE',
  264. 'category': 'Surge Suppressors',
  265. 'brand': 'Phoenix Contact',
  266. 'variant': '2801305',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '651-2838186',
  272. 'name': 'Surge Suppressors TT-2PE-24DC',
  273. 'category': 'Surge Suppressors',
  274. 'brand': 'Phoenix Contact',
  275. 'variant': '2838186',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '511-SMP100LC-400',
  281. 'name': 'Surge Suppressors 400V 50uA Bidirect',
  282. 'category': 'Surge Suppressors',
  283. 'brand': 'STMicroelectronics',
  284. 'variant': 'SMP100LC-400',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','tDeCvkHY28GFRLDvns1k4VlA3hplEe1PKo1DIoPQOII=');
  290. ga('set','dimension31','ea87b1e2-92d8-4a7d-ac48-ce7395bbad9b');
  291. ga('set','dimension13','163AA125AA96AA68');
  292. ga('set','metric2',974);
  293. ga('set','dimension5','Surge Suppressors');
  294. ga('set','dimension48','5g3k');
  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/Surge-Suppressors/_/N-5g3k/?No=25" rel="next" content="http://www.mouser.cn/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=25" /><link href="http://www.mouser.cn/Circuit-Protection/Surge-Suppressors/_/N-5g3k" rel="canonical" content="http://www.mouser.cn/Circuit-Protection/Surge-Suppressors/_/N-5g3k" /><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/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" /><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#xqystvxeaxesuf{display:none!important}</style><!-- Optimized for speed - Stingray Aptimizer --></head>
  300. <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
  301. <script src='../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
  302. <script src='../../../../flash/js/empty.file.js' type="text/javascript"></script>
  303. <script src='../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
  304. <script src='../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
  305. <script src='../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
  306. <!--[if lt IE 9]>
  307. <script src='../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
  308. <![endif]-->
  309. <form method="post" action="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/" id="aspnetForm">
  310. <div class="aspNetHidden">
  311. <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
  312. <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
  313. <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" />
  314. <input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
  315. </div>
  316. <script type="text/javascript">
  317. //<![CDATA[
  318. var theForm = document.forms['aspnetForm'];
  319. if (!theForm) {
  320. theForm = document.aspnetForm;
  321. }
  322. function __doPostBack(eventTarget, eventArgument) {
  323. if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
  324. theForm.__EVENTTARGET.value = eventTarget;
  325. theForm.__EVENTARGUMENT.value = eventArgument;
  326. theForm.submit();
  327. }
  328. }
  329. //]]>
  330. </script>
  331. <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZIfBoSL8TZnsnOFihh6T3B3-ZDc9vWAo-Dvo5VSdzj9CkFL2Zg2&amp;t=635802997220000000" type="text/javascript"></script>
  332. <script type="text/javascript">
  333. //<![CDATA[
  334. var lasttemplateid='254144';
  335. var subdomainname = '.mouser.cn';
  336. var lang = 'zh-CN';
  337. var country = 'CN';
  338. var shippingCountry = 'CN';
  339. var usdSubdomain = 'www';
  340. var subdomain = 'cn2';
  341. function attributecount() { return true; }
  342. var navids='254144';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
  343. var left = (screen.width / 2) - (800 / 2);var top = (screen.height / 2) - (505 / 2); var msgWindow = window.open(url,'MsgWindow','height=505,width=800,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0');
  344. }
  345. function OpenPTCWindow(url) {var left = (screen.width / 2) - (542 / 2);var top = (screen.height / 2) - (531 / 2);
  346. window.open(url, "popup", "height=488,width=454,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0");
  347. }
  348. function GenerateClientID(prefix, i, suffix) {
  349. if (i < 10) { return prefix + '0' + String(i) + suffix; }
  350. else { return prefix + String(i) + suffix; }
  351. }
  352. var checked = false;
  353. function SelectAll() {
  354. checked = !checked;
  355. var i = 3;
  356. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  357. while (i < 29) {
  358. if (chkSelect != null) chkSelect.checked = checked;
  359. i = i + 1;
  360. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  361. }
  362. }
  363. function IsAllChecked(checked) {
  364. var i = 3;
  365. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  366. while (i < 29) {
  367. if (chkSelect != null && chkSelect.checked != checked) return false;
  368. i = i + 1;
  369. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  370. }
  371. return true;
  372. }
  373. function IsAnyChecked(checked) {
  374. return !IsAllChecked(!checked);
  375. }
  376. function SelectRow(row, checked) {
  377. document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
  378. }
  379. function RowSelected(index, checked) { }
  380. function GetQuantityTextboxByRow(row) {
  381. return GetQuantityTextboxByIndex(row + 2);
  382. }
  383. function GetQuantityTextboxByIndex(index) {
  384. return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
  385. }
  386. function SelectQuantity(row, quantity) {
  387. txtQuantity = GetQuantityTextboxByRow(row);
  388. if (txtQuantity == null) { return; }
  389. txtQuantity.value = quantity;
  390. SelectRow(row, true);
  391. }
  392. var qtyRegEx = /^([0]|\s)*$/;
  393. function IsQuantityEmptyOrZero(quantity) {
  394. return qtyRegEx.test(quantity);
  395. }
  396. function QuantityChanged(row, quantity) {
  397. SelectRow(row, !IsQuantityEmptyOrZero(quantity));
  398. }
  399. var QuantityRowSelectedBase = RowSelected;
  400. function QuantityRowSelected(index, checked) {
  401. QuantityRowSelectedBase(index, checked);
  402. txtQuantity = GetQuantityTextboxByIndex(index);
  403. if (txtQuantity == null) { return; }
  404. if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
  405. else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
  406. }
  407. RowSelected = QuantityRowSelected;
  408. //]]>
  409. </script>
  410. <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&amp;t=5f9d5645" type="text/javascript"></script>
  411. <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&amp;t=5f9d5645" type="text/javascript"></script>
  412. <div id="cookie-notification-bar">
  413. </div>
  414. <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
  415. <div id="wideGab" class="wideGab">
  416. <div id="ctl00_globalActionBar" class="global-action-bar">
  417. <div id="gab-container" class="container">
  418. <div id="contact" class="row">
  419. <div class="topPadding col-xs-6">
  420. <div class="inline-block">
  421. <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
  422. <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>&nbsp;
  423. 400-821-6111</a><a href="beuvdedusduqsxwbzebzy.html" style="display: none;" rel="file" id="xqystvxeaxesuf">zrcuqbtxdtwatvcqccqdzr</a>
  424. &nbsp;&nbsp;&nbsp;&nbsp;<span class="pipe">|</span>&nbsp;&nbsp;&nbsp;&nbsp;
  425. <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
  426. 反馈</a>
  427. </div>
  428. <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>
  429. </span>&nbsp;&nbsp;
  430. </div>
  431. <div class="col-xs-6 align-right">
  432. <div id="tdImg" class="inline-block topPadding9px">
  433. <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">
  434. <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
  435. <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>
  436. </div>
  437. <div class="topPadding inline-block">
  438. <span class="pipe">|</span>&nbsp;&nbsp;&nbsp;
  439. <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwsTwt16d7AwdRGIJTpvNELoofocpyAqgR2Ene1IBaqp6iqTMK%252bu5hdCSUAj%252bfxSePsLx1a%2fTGmBDw%3d%3d">更改国家</a>
  440. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwsTwt16d7AwdRGIJTpvNELoofocpyAqgR2Ene1IBaqp6iqTMK%252bu5hdCSUAj%252bfxSePsLx1a%2fTGmBDw%3d%3d"><img id="ctl00_gab1_img7" class="visualAttributeImage" src="../../../../images/international/flags/cn2.gif" alt="更改位置" style="border-width: 1px;" /></a>
  441. <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
  442. <span id="ctl00_gab1_lbl1">RMB</span>
  443. </div>
  444. </div>
  445. </div>
  446. </div>
  447. <div style="clear: both;"></div>
  448. <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
  449. class="thickbox"></a>
  450. <div id="divCurrencyPopup" class="currency-popup">
  451. <div class="currency-close">
  452. <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();">&nbsp;</a>
  453. </div>
  454. <div>
  455. <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>
  456. <br/>
  457. <div style="padding: 0 20px 0 20px">
  458. <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
  459. <br />
  460. <table width="95%">
  461. <tr>
  462. <td width="20%">
  463. <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
  464. </td>
  465. <td>
  466. <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
  467. <br/>
  468. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
  469. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
  470. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
  471. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
  472. </td>
  473. </tr>
  474. </table>
  475. </div>
  476. </div>
  477. </div>
  478. <div id="cartDialog" class="CartDialog" style="display: none;">
  479. <table id="miniCartOnly">
  480. <tr id="divall">
  481. <td id="tdCart">
  482. <table style="width: 100%; padding: 0px; border: 0px">
  483. <tr>
  484. <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
  485. <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
  486. </td>
  487. <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
  488. <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
  489. </td>
  490. </tr>
  491. </table>
  492. <table id="tableMiniCartItms">
  493. <tr id="trCart">
  494. <td>
  495. <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  496. <table id="tblMiniCart">
  497. <thead>
  498. <tr>
  499. <th class="miniCartColumn">制造商</th>
  500. <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
  501. <th class="miniCartColumn MiniCartHdBg">数量</th>
  502. <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
  503. </tr>
  504. </thead>
  505. </table>
  506. <script type="text/javascript">
  507. var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
  508. var currentGuid = 'ea87b1e2-92d8-4a7d-ac48-ce7395bbad9b';
  509. var currentCountryCode = 'CN';
  510. var currentCurrencyCode= 'RMB';
  511. var currencyCulture = 'zh-CN';
  512. var cultureCode = 'zh-CN';
  513. var customerID = '';
  514. </script>
  515. <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  516. </td>
  517. </tr>
  518. </table>
  519. <div style="display: none; padding-top: 10px" id="divSingleItem">
  520. <table id="tblSingeItem">
  521. <tr>
  522. <!-- Here goes the single item -->
  523. <td style="padding-right: 15px">
  524. <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
  525. <td style="align: right; padding-right: 2px" id="tdSingleItms">
  526. <div id="divAll">
  527. <div id="wrapper">
  528. <div id="divLbl">
  529. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
  530. </div>
  531. <div id="divHyp">
  532. </div>
  533. </div>
  534. <div id="divRest">
  535. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
  536. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
  537. <br />
  538. <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
  539. </div>
  540. </div>
  541. </td>
  542. </tr>
  543. </table>
  544. </div>
  545. <div id="divForCart" class="divMsgLnkTotal" style="display: none">
  546. <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
  547. <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
  548. <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
  549. <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
  550. <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>
  551. </div>
  552. </div>
  553. </td>
  554. <td style="display: none" id="trCartSubTotal">
  555. <table class="tblMiniCartSub">
  556. <tr>
  557. <td align="right" style="padding-bottom: 5px; padding-top: 2px">
  558. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
  559. <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
  560. </td>
  561. </tr>
  562. <tr>
  563. <td align="right" style="padding-bottom: 5px">
  564. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
  565. </td>
  566. </tr>
  567. <tr>
  568. <td align="left" style="padding-bottom: 5px">
  569. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
  570. </td>
  571. </tr>
  572. <tr>
  573. <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
  574. <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>
  575. <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>
  576. </td>
  577. </tr>
  578. </table>
  579. <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
  580. </td>
  581. </tr>
  582. <tr id="trHideModalCheckBox" style="display: none">
  583. <td colspan="2">
  584. <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
  585. </td>
  586. </tr>
  587. </table>
  588. <script type="text/javascript">
  589. $(document).ready(function () {
  590. MiniCart.source = 'refine';
  591. });
  592. </script>
  593. </div>
  594. <script type="text/javascript">
  595. function OpenCurrencyPopup() {
  596. $("#tblink").trigger('click');
  597. }
  598. function CloseCurrencyPopup() {
  599. var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
  600. var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
  601. if (ddlCurrency != null && hidCurrencyValue != null) {
  602. ddlCurrency.selectedIndex = hidCurrencyValue.value;
  603. }
  604. window.location.reload();
  605. }
  606. </script>
  607. </div>
  608. </div>
  609. <div id="wideHeader" class="wideHeader">
  610. <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
  611. <div id="search" class="row">
  612. <div id="logo" class='col-xs-4'>
  613. <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
  614. </div>
  615. <div id="search-block" class="col-xs-4">
  616. <div id="search-title">
  617. 物料编号/关键字
  618. </div>
  619. <div id="search-bar">
  620. <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_NavHeader_btn1&#39;)">
  621. <div id="searchPartNumberBox" class="search-box inline-block">
  622. <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
  623. <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
  624. </div>
  625. <div class="inline-block">
  626. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
  627. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
  628. </div>
  629. </div>
  630. </div>
  631. </div>
  632. <div id="account" class="col-xs-4 align-right">
  633. <ul>
  634. <li>
  635. </li>
  636. <li>
  637. <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwsTwt16d7AwdRGIJTpvNELoofocpyAqgR2Ene1IBaqp6iqTMK%252bu5hdCSUAj%252bfxSePsLx1a%2fTGmBDw%3d%3d">登录</a>
  638. </li>
  639. <li>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  643. </li>
  644. <li>
  645. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  646. </li>
  647. <li>
  648. <!-- Mush:TBC -->
  649. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  650. </li>
  651. </ul>
  652. </div>
  653. </div>
  654. <div id="navArea" class="row">
  655. <div class="col-xs-12">
  656. <div id="navMain" class="inline-block">
  657. <div class="navbar">
  658. <ul class="topnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  661. <ul class="subnav" id="subnav">
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  670. </li>
  671. <li>
  672. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  673. </li>
  674. </ul>
  675. </li>
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  678. <ul class="subnav" id="subnav">
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  687. </li>
  688. <li>
  689. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  690. </li>
  691. </ul>
  692. </li>
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  695. <ul class="subnav" id="subnav">
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  725. </li>
  726. <li>
  727. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  728. </li>
  729. </ul>
  730. </li>
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  733. <ul class="subnav" id="subnav">
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  760. </li>
  761. <li>
  762. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  763. </li>
  764. </ul>
  765. </li>
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  768. <ul class="subnav" id="subnav">
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  777. </li>
  778. <li>
  779. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  780. </li>
  781. </ul>
  782. </li>
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  785. <ul class="subnav" id="subnav">
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  797. </li>
  798. <li>
  799. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  800. </li>
  801. </ul>
  802. </li>
  803. </ul>
  804. </div>
  805. </div>
  806. <div class="onlineCatalog inline-block">
  807. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  808. </div>
  809. </div>
  810. </div>
  811. </div>
  812. <div style="visibility: hidden; height: 0px;">
  813. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  814. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  815. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  816. </div>
  817. <script type="text/javascript">
  818. $(document).ready(function () {
  819. //* change to html5 catalog if javascript is enabled *
  820. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  821. });
  822. </script>
  823. <script type="text/javascript" src='../../../../javascript/genLib.js'></script>
  824. </div>
  825. <div id="ctl00_divWide" class="divWide">
  826. <link rel="stylesheet" type="text/css" href='../../../../css/fontawesome/css/font-awesome.min.css' />
  827. <br />
  828. <strong></strong>
  829. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  830. <strong>></strong>
  831. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-5g3c/" style="font-size: 9pt; font-weight: bold;">电路保护</a>
  832. <strong>></strong>
  833. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">浪涌抑制器</a>
  834. <hr />
  835. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  836. <div class="categorySearchLimits">
  837. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  838. </div>
  839. </div>
  840. </div>
  841. <table border="0" width="100%">
  842. <tr>
  843. <td>
  844. <div id="ctl00_ContentMain_pnl3">
  845. <div id="category-top" class="category-content">
  846. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> 浪涌抑制器</h1></a>
  847. <img id="ctl00_ContentMain_imageCat" class="category-img" src="../../../../images/DisplayCategories/254144.png" alt="浪涌抑制器" />
  848. <!--Marketing Content-->
  849. <table id="ctl00_ContentMain_tbl5">
  850. <tr>
  851. <td>
  852. <div class="marketing-content2">
  853. <strong>瞬态浪涌抑制器(Surge Suppressors)</strong>,应有尽有。Mouser Electronics(贸泽电子)提供多家业界顶尖制造商的瞬态浪涌抑制器 产品。Mouser Electronics(贸泽电子)是众多瞬态浪涌抑制器原厂的授权分销商,包括Bourns(伯恩斯)、Littelfuse、Phoenix......等多家知名厂商。想了解更多瞬态浪涌抑制器产品,请浏览下列产品分类。
  854. </div>
  855. </td>
  856. </tr>
  857. </table>
  858. <div id="ctl00_ContentMain_refinemfglogo">
  859. </div>
  860. </div><!--.category-content-->
  861. </div>
  862. </td>
  863. </tr>
  864. <tr>
  865. <td>
  866. </td>
  867. </tr>
  868. <tr>
  869. <td>
  870. <div id="refine-page2">
  871. </div>
  872. </td>
  873. </tr>
  874. </table>
  875. <div id="ctl00_ContentMain_divTabs" class="row">
  876. <div class="col-xs-12">
  877. <div id="tabsNavigation" >
  878. <ul>
  879. <li id="ctl00_ContentMain_liProductsTab" class="active">
  880. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(974)</span></a>
  881. </li>
  882. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  883. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Surge Suppressors&#39;);" href="../../Datasheets/_/N-5g3k">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(557)</span></a>
  884. </li>
  885. <li id="ctl00_ContentMain_liImagesTab" class="">
  886. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Surge Suppressors&#39;);" href="../../Images/_/N-5g3k">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(416)</span></a>
  887. </li>
  888. <li id="ctl00_ContentMain_liNewestTab" class="">
  889. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Surge Suppressors&#39;);" href="../../Newest-Products/_/N-5g3k">最新产品</a>
  890. </li>
  891. </ul>
  892. </div>
  893. </div>
  894. </div>
  895. <div id="tabDivs" class="tab-divs">
  896. <script type="text/javascript">
  897. //<![CDATA[
  898. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  899. //]]>
  900. </script>
  901. <div id="ctl00_ContentMain_liProducts">
  902. <div id="refineSearchDiv">
  903. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  904. <div id="refine-keyword-search-2">
  905. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  906. <div id="boxPartSearch2">
  907. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  908. <tr>
  909. <td rowspan="3" style="vertical-align: middle">
  910. <div id="searchPartNumberBox" class="search-box" >
  911. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  912. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  913. </div>
  914. </td>
  915. </tr>
  916. <tr>
  917. <td class="chk-Search">
  918. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  919. </td>
  920. </tr>
  921. <tr>
  922. <td class="chk-Search">
  923. <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>
  924. </td>
  925. </tr>
  926. </table>
  927. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  928. </div>
  929. <script type="text/javascript" src='../../../../flash/js/Placeholders.min.js'></script>
  930. <script type="text/javascript" src='../../../../flash/js/watermark.js'></script>
  931. </div>
  932. </div>
  933. <div id="refine-mfg-select-2">
  934. </div>
  935. <div class="clear">
  936. </div>
  937. <table class="SearchParametricTable2">
  938. <tr>
  939. <td>
  940. <div id="AttributesDiv2">
  941. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  942. <div class="categorySearchLimits">
  943. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  944. <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_chkbx254144|Surge Suppressors&#39;).checked = false;" /></span>&nbsp;<b>电路保护</b>&nbsp;&#62;&nbsp;<span title="浪涌抑制器"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254144|Surge Suppressors" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx254144|Surge Suppressors" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254136|Circuit Protection&#39;).checked = true;" /></span>&nbsp;<b>浪涌抑制器</b>
  945. </div>
  946. </div>
  947. <hr/>
  948. </div>
  949. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  950. <p class="applied-filter-lbl">
  951. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  952. <span id="ctl00_ContentMain_uc5_lblreccount">974 匹配</span>
  953. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  954. </p>
  955. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  956. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  957. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  958. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../images/icon_tooltip.png" />
  959. <br />
  960. </div>
  961. </div>
  962. <table id="tb1" style="width: 100%;">
  963. <tr>
  964. <td>
  965. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  966. <tr>
  967. <td>
  968. <table cellpadding="0" cellspacing="0">
  969. <tr>
  970. <td>
  971. <table>
  972. <tr>
  973. <td>
  974. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  975. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  976. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  977. of parametric ids sent on the query string after the seo url is generated and redirected to.
  978. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  979. sorted parametric attributes from an endeca attribute group --->
  980. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  981. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  982. &nbsp;
  983. </div>
  984. </td>
  985. </tr>
  986. <tr>
  987. <td>
  988. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  989. <option value="4291501706">B&amp;B Electronics</option>
  990. <option value="4294759693">Bourns</option>
  991. <option value="4288463162">Diodes Incorporated</option>
  992. <option value="4284899682">Eaton</option>
  993. <option value="4281990696">EPCOS / TDK</option>
  994. <option value="4294759194">Lumex</option>
  995. <option value="4291596096">Maxim Integrated</option>
  996. <option value="4294759007">Mean Well</option>
  997. <option value="4294759378">Phoenix Contact</option>
  998. <option value="4290493392">Schneider Electric</option>
  999. <option value="4294764256">Sola/Hevi-Duty</option>
  1000. <option value="4294764375">STMicroelectronics</option>
  1001. <option value="4294758889">Tripp Lite</option>
  1002. </select>
  1003. </td>
  1004. </tr>
  1005. <tr>
  1006. <td>
  1007. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1008. </td>
  1009. </tr>
  1010. </table>
  1011. </td>
  1012. <td valign="bottom" style="width: 15px;">
  1013. &nbsp;
  1014. </td>
  1015. </tr>
  1016. </table>
  1017. </td><td>
  1018. <table cellpadding="0" cellspacing="0">
  1019. <tr>
  1020. <td>
  1021. <table>
  1022. <tr>
  1023. <td>
  1024. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">电压额定值</span>
  1025. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1026. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1027. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1028. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1029. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1030. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1031. sorted parametric attributes from an endeca attribute group --->
  1032. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1033. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688769" />
  1034. </div>
  1035. </td>
  1036. </tr>
  1037. <tr>
  1038. <td>
  1039. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688769" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688769">
  1040. <option value="4294641811">3.3 V</option>
  1041. <option value="4294646496">4 V</option>
  1042. <option value="4294648577">5 V</option>
  1043. <option value="4289440238">5 V, 8 V, 10 V</option>
  1044. <option value="4294640822">5 VAC</option>
  1045. <option value="4294641180">5 VDC</option>
  1046. <option value="4294646427">5.2 V</option>
  1047. <option value="4294648562">6 V</option>
  1048. <option value="4294641235">6 VDC</option>
  1049. <option value="4294648570">7 V</option>
  1050. <option value="4294648551">12 V</option>
  1051. <option value="4294649125">12 VDC</option>
  1052. <option value="4294644628">14 V</option>
  1053. <option value="4294643619">20 V</option>
  1054. <option value="4294616517">21 V</option>
  1055. <option value="4294643617">22 V</option>
  1056. <option value="4294649035">24 V</option>
  1057. <option value="4294648666">24 VDC</option>
  1058. <option value="4294630753">26 V</option>
  1059. <option value="4294647541">28 V</option>
  1060. <option value="4294647499">36 V</option>
  1061. <option value="4294641869">40 V</option>
  1062. <option value="4294634550">45 V</option>
  1063. <option value="4294646716">48 V</option>
  1064. <option value="4287836816">48 VAC, 68 VDC</option>
  1065. <option value="4294631648">48 VDC</option>
  1066. <option value="4294647542">56 V</option>
  1067. <option value="4294647283">60 V</option>
  1068. <option value="4294634968">60 VAC</option>
  1069. <option value="4294634557">60 VDC</option>
  1070. <option value="4294645614">65 V</option>
  1071. <option value="4294645386">75 V</option>
  1072. <option value="4294606938">75 VDC</option>
  1073. <option value="4294644999">90 V</option>
  1074. <option value="4294639912">100 V</option>
  1075. <option value="4294644724">110 V</option>
  1076. <option value="4294640833">110 VDC</option>
  1077. <option value="4294649105">120 V</option>
  1078. <option value="4294605756">120 V / 208 V</option>
  1079. <option value="4294628744">120 VAC</option>
  1080. <option value="4287836385">135 VAC, 185 VDC</option>
  1081. <option value="4294646801">150 V</option>
  1082. <option value="4294621136">175 V</option>
  1083. <option value="4294030703">175 VAC</option>
  1084. <option value="4294648575">180 V</option>
  1085. <option value="4294585991">180 VDC</option>
  1086. <option value="4294648554">185 V</option>
  1087. <option value="4292709271">208 V</option>
  1088. <option value="4272878698">208 VAC</option>
  1089. <option value="4294648573">230 V</option>
  1090. <option value="4294635128">230 VAC</option>
  1091. <option value="4294645610">240 V</option>
  1092. <option value="4291902044">240 V / 415 V</option>
  1093. <option value="4287982622">240 V, 415 V</option>
  1094. <option value="4294648530">240 VAC</option>
  1095. <option value="4294649016">250 V</option>
  1096. <option value="4294648553">256 V</option>
  1097. <option value="4294631987">260 V</option>
  1098. <option value="4272878697">264 VAC</option>
  1099. <option value="4294643618">270 V</option>
  1100. <option value="4294645385">277 V</option>
  1101. <option value="4294648559">280 V</option>
  1102. <option value="4294648745">300 V</option>
  1103. <option value="4294646800">320 V</option>
  1104. <option value="4294625642">330 V</option>
  1105. <option value="4294634987">335 VAC</option>
  1106. <option value="4294577036">347 V</option>
  1107. <option value="4294646852">350 V</option>
  1108. <option value="4294634245">360 V</option>
  1109. <option value="4294648548">400 V</option>
  1110. <option value="4294609764">415 V</option>
  1111. <option value="4294576993">425 V</option>
  1112. <option value="4294645183">440 V</option>
  1113. <option value="4294648556">450 V</option>
  1114. <option value="4294648746">480 V</option>
  1115. <option value="4294648755">500 V</option>
  1116. <option value="4294643468">500 VAC</option>
  1117. <option value="4294617305">525 V</option>
  1118. <option value="4288104242">585 V</option>
  1119. <option value="4294649121">600 V</option>
  1120. <option value="4294646775">690 V</option>
  1121. <option value="4294615288">720 V</option>
  1122. <option value="4294645218">750 V</option>
  1123. <option value="4294634630">800 V</option>
  1124. <option value="4294648546">850 V</option>
  1125. <option value="4294634784">1 kV</option>
  1126. <option value="4294634554">1000 VDC</option>
  1127. <option value="4288104230">1050 V</option>
  1128. <option value="4288104231">1170 V</option>
  1129. <option value="4289641736">-</option>
  1130. <option value="4290930853">230V</option>
  1131. </select>
  1132. </td>
  1133. </tr>
  1134. <tr>
  1135. <td>
  1136. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1137. </td>
  1138. </tr>
  1139. </table>
  1140. </td>
  1141. <td valign="bottom" style="width: 15px;">
  1142. &nbsp;
  1143. </td>
  1144. </tr>
  1145. </table>
  1146. </td><td>
  1147. <table cellpadding="0" cellspacing="0">
  1148. <tr>
  1149. <td>
  1150. <table>
  1151. <tr>
  1152. <td>
  1153. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">电流额定值</span>
  1154. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1155. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1156. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1157. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1158. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1159. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1160. sorted parametric attributes from an endeca attribute group --->
  1161. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1162. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="688370" />
  1163. </div>
  1164. </td>
  1165. </tr>
  1166. <tr>
  1167. <td>
  1168. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688370" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_688370">
  1169. <option value="4294585881">5 uA</option>
  1170. <option value="4294648566">0.25 mA</option>
  1171. <option value="4292974828">250 uA</option>
  1172. <option value="4285451820">260 uA</option>
  1173. <option value="4294648574">0.3 mA</option>
  1174. <option value="4294643461">300 uA</option>
  1175. <option value="4288231916">450 uA</option>
  1176. <option value="4294575625">0.5 mA</option>
  1177. <option value="4294647057">0.7 mA</option>
  1178. <option value="4294648547">1.1 mA</option>
  1179. <option value="4294647138">3 mA</option>
  1180. <option value="4294647980">50 mA</option>
  1181. <option value="4294647972">100 mA</option>
  1182. <option value="4294646574">120 mA</option>
  1183. <option value="4294647322">130 mA</option>
  1184. <option value="4294648565">150 mA</option>
  1185. <option value="4294646545">180 mA</option>
  1186. <option value="4294648578">185 mA</option>
  1187. <option value="4294647982">200 mA</option>
  1188. <option value="4294649140">220 mA</option>
  1189. <option value="4293994936">240 mA</option>
  1190. <option value="4294646554">250 mA</option>
  1191. <option value="4294639262">260 mA</option>
  1192. <option value="4294647317">300 mA</option>
  1193. <option value="4294646083">350 mA</option>
  1194. <option value="4294645902">375 mA</option>
  1195. <option value="4291044708">380 mA</option>
  1196. <option value="4294648552">450 mA</option>
  1197. <option value="4294648564">500 mA</option>
  1198. <option value="4294645906">600 mA</option>
  1199. <option value="4294645905">700 mA</option>
  1200. <option value="4294645901">750 mA</option>
  1201. <option value="4294648563">1 A</option>
  1202. <option value="4294401755">1000 mA</option>
  1203. <option value="4294646945">1.1 A</option>
  1204. <option value="4294648571">1.5 A</option>
  1205. <option value="4294649106">2 A</option>
  1206. <option value="4294648543">3.5 A</option>
  1207. <option value="4294649104">5 A</option>
  1208. <option value="4294649030">6 A</option>
  1209. <option value="4294649083">10 A</option>
  1210. <option value="4294649120">15 A</option>
  1211. <option value="4294648767">16 A</option>
  1212. <option value="4294649127">20 A</option>
  1213. <option value="4294648781">25 A</option>
  1214. <option value="4294648542">26 A</option>
  1215. <option value="4294648569">32 A</option>
  1216. <option value="4294649069">40 A</option>
  1217. <option value="4294646627">55 A</option>
  1218. <option value="4294646162">65 A</option>
  1219. <option value="4294648636">80 A</option>
  1220. <option value="4294649074">100 A</option>
  1221. <option value="4294646432">250 A</option>
  1222. <option value="4294646137">300 A</option>
  1223. <option value="4294648557">365 A</option>
  1224. <option value="4294646248">500 A</option>
  1225. <option value="4291359779">1 kA</option>
  1226. <option value="4291359775">2.5 kA</option>
  1227. <option value="4291359727">5 kA</option>
  1228. <option value="4291011584">10 kA</option>
  1229. <option value="4286354419">12.5 kA</option>
  1230. <option value="4290294169">15 kA</option>
  1231. <option value="4291011583">20 kA</option>
  1232. <option value="4291812258">25 kA</option>
  1233. <option value="4282836049">32 kA</option>
  1234. <option value="4291044545">40 kA</option>
  1235. <option value="4289641740">-</option>
  1236. </select>
  1237. </td>
  1238. </tr>
  1239. <tr>
  1240. <td>
  1241. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1242. </td>
  1243. </tr>
  1244. </table>
  1245. </td>
  1246. <td valign="bottom" style="width: 15px;">
  1247. &nbsp;
  1248. </td>
  1249. </tr>
  1250. </table>
  1251. </td><td>
  1252. <table cellpadding="0" cellspacing="0">
  1253. <tr>
  1254. <td>
  1255. <table>
  1256. <tr>
  1257. <td>
  1258. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">工作温度范围</span>
  1259. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1260. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1261. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1262. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1263. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1264. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1265. sorted parametric attributes from an endeca attribute group --->
  1266. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1267. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="688572" />
  1268. </div>
  1269. </td>
  1270. </tr>
  1271. <tr>
  1272. <td>
  1273. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688572" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_688572">
  1274. <option value="4290930887">0 C to 40 C</option>
  1275. <option value="4294021056">- 65 C to + 130 C</option>
  1276. <option value="4294020288">- 65 C to + 175 C</option>
  1277. <option value="4294024840">- 55 C to + 125 C</option>
  1278. <option value="4294024844">- 55 C to + 150 C</option>
  1279. <option value="4294021019">- 55 C to + 70 C</option>
  1280. <option value="4294017262">- 50 C to + 85 C</option>
  1281. <option value="4294024746">- 40 C to + 100 C</option>
  1282. <option value="4294024843">- 40 C to + 125 C</option>
  1283. <option value="4294024639">- 40 C to + 60 C</option>
  1284. <option value="4294023251">- 40 C to + 65 C</option>
  1285. <option value="4294024731">- 40 C to + 70 C</option>
  1286. <option value="4294024743">- 40 C to + 80 C</option>
  1287. <option value="4294024803">- 40 C to + 85 C</option>
  1288. <option value="4294021089">- 40 C to + 90 C</option>
  1289. <option value="4288740653">-40 C to + 70 C</option>
  1290. <option value="4294020918">- 30 C to + 60 C</option>
  1291. <option value="4294024636">- 25 C to + 75 C</option>
  1292. <option value="4294021075">- 25 C to + 80 C</option>
  1293. <option value="4294024732">- 25 C to + 85 C</option>
  1294. <option value="4294024767">- 20 C to + 80 C</option>
  1295. <option value="4292767551">- 15 C to + 65 C</option>
  1296. </select>
  1297. </td>
  1298. </tr>
  1299. <tr>
  1300. <td>
  1301. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1302. </td>
  1303. </tr>
  1304. </table>
  1305. </td>
  1306. <td valign="bottom" style="width: 15px;">
  1307. &nbsp;
  1308. </td>
  1309. </tr>
  1310. </table>
  1311. </td><td>
  1312. <table cellpadding="0" cellspacing="0">
  1313. <tr>
  1314. <td>
  1315. <table>
  1316. <tr>
  1317. <td>
  1318. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">端接类型</span>
  1319. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1320. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1321. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1322. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1323. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1324. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1325. sorted parametric attributes from an endeca attribute group --->
  1326. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1327. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="688737" />
  1328. </div>
  1329. </td>
  1330. </tr>
  1331. <tr>
  1332. <td>
  1333. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$688737" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_688737">
  1334. <option value="4294741869">Axial</option>
  1335. <option value="4294730358">DIN Rail</option>
  1336. <option value="4294735689">Plug</option>
  1337. <option value="4292084769">Push-In</option>
  1338. <option value="4294741289">Radial</option>
  1339. <option value="4294741845">Screw</option>
  1340. <option value="4292825417">SIP</option>
  1341. <option value="4294741774">SMD/SMT</option>
  1342. <option value="4294740267">Solder Pad</option>
  1343. <option value="4294738554">Through Hole</option>
  1344. <option value="4294741693">Wire</option>
  1345. <option value="4294729679">Wire Lead</option>
  1346. <option value="4294736952">Wire Leads</option>
  1347. </select>
  1348. </td>
  1349. </tr>
  1350. <tr>
  1351. <td>
  1352. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1353. </td>
  1354. </tr>
  1355. </table>
  1356. </td>
  1357. <td valign="bottom" style="width: 15px;">
  1358. &nbsp;
  1359. </td>
  1360. </tr>
  1361. </table>
  1362. </td><td>
  1363. <table cellpadding="0" cellspacing="0">
  1364. <tr>
  1365. <td>
  1366. <table>
  1367. <tr>
  1368. <td>
  1369. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  1370. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1371. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1372. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1373. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1374. sorted parametric attributes from an endeca attribute group --->
  1375. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1376. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="688606" />
  1377. &nbsp;
  1378. </div>
  1379. </td>
  1380. </tr>
  1381. <tr>
  1382. <td>
  1383. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_688606">
  1384. <option value="4289481334">-</option>
  1385. <option value="4288104276">43.3 mm x 17.5 mm x 44.8 mm</option>
  1386. <option value="4288104244">44.8 mm x 17.5 mm x 43.3 mm</option>
  1387. <option value="4288104229">65.5 mm x 53.4 mm x 90 mm</option>
  1388. <option value="4288104236">65.5 mm x 53.4 mm x 99 mm</option>
  1389. <option value="4288104243">77.5 mm x 17.5 mm x 90 mm</option>
  1390. <option value="4288104274">77.5 mm x 35.6 mm x 97 mm</option>
  1391. <option value="4294740926">D2PAK</option>
  1392. <option value="4294738691">DFN</option>
  1393. <option value="4294741010">DO-15</option>
  1394. <option value="4294741837">DO-214AA</option>
  1395. <option value="4294740941">DO-214AC</option>
  1396. <option value="4294730170">SIP-4</option>
  1397. <option value="4294729364">SIP-6</option>
  1398. <option value="4294741022">SMB</option>
  1399. <option value="4292825272">SMB-2</option>
  1400. <option value="4294741803">SO-8</option>
  1401. <option value="4294735478">SOT-23-5</option>
  1402. <option value="4294688942">SOT-23-5L</option>
  1403. <option value="4292849165">T-8</option>
  1404. <option value="4294719121">TQFN-16</option>
  1405. <option value="4294030704">TS-32</option>
  1406. <option value="4294030710">TS-35</option>
  1407. <option value="4292555613">UMAX-8</option>
  1408. <option value="4286021605">UQFN-2L</option>
  1409. </select>
  1410. </td>
  1411. </tr>
  1412. <tr>
  1413. <td>
  1414. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1415. </td>
  1416. </tr>
  1417. </table>
  1418. </td>
  1419. <td valign="bottom" style="width: 15px;">
  1420. &nbsp;
  1421. </td>
  1422. </tr>
  1423. </table>
  1424. </td>
  1425. </tr>
  1426. </table>
  1427. <table class="ApplyFilter">
  1428. <tr>
  1429. <td class="ApplyFilterColumn1">
  1430. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1431. </td>
  1432. <td class="ApplyFilterColumn2">
  1433. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  1434. </td>
  1435. <td class="ApplyFilterColumn2_5">
  1436. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  1437. </td>
  1438. <td class="ApplyFilterColumn3">
  1439. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1440. </td>
  1441. </tr>
  1442. </table>
  1443. </td>
  1444. </tr>
  1445. </table>
  1446. </div>
  1447. </td>
  1448. </tr>
  1449. </table>
  1450. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  1451. height: 70px; display: none; background: white; border: 1px solid #000;'>
  1452. <br />
  1453. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  1454. <br />
  1455. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  1456. <!--Close Window-->
  1457. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  1458. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  1459. </a>&nbsp;&nbsp;</div>
  1460. </div>
  1461. <div id ="VisualAttributePopup" class="hidden" >
  1462. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  1463. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  1464. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  1465. </div>
  1466. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id="loadingimgspinner" src="/Images/spinner2.gif" /></div>
  1467. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  1468. <table id="tblAttributes" >
  1469. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  1470. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  1471. <td class="visualAttributeImage">
  1472. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  1473. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  1474. </td>
  1475. <td>
  1476. <table class="visualAttValueDesc">
  1477. <tr>
  1478. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  1479. </tr>
  1480. <tr>
  1481. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  1482. </tr>
  1483. <tr data-bind="if: ImagePath1 ">
  1484. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs" /></div></td>
  1485. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  1486. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  1487. </tr>
  1488. </table>
  1489. </td>
  1490. </tr>
  1491. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  1492. </tbody>
  1493. </table>
  1494. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id="Img1" src="/Images/spinner2.gif" />
  1495. <div data-bind="if: hasMoreOptions" align="center">
  1496. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  1497. </div>
  1498. </div>
  1499. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  1500. <div class="visualAttributesBtnDiv">
  1501. <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" />
  1502. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  1503. <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" />
  1504. </div>
  1505. </div>
  1506. <style type="text/css">.ui-dialog{position:absolute;padding:0px !important;width:300px;overflow:hidden;}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.6em !important;background:none;overflow:auto;zoom:1;max-height:450px;}.ui-dialog .ui-dialog-titlebar{padding:.4em .5em !important;position:relative;background:none repeat scroll 0 0 #E0E4E9;font-size:15px;}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:0;}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:0;}</style>
  1507. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1508. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  1509. </div>
  1510. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  1511. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  1512. <script src='../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  1513. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1514. <script type="text/javascript">
  1515. $().ready(function () {
  1516. ko.applyBindings(new DisplayAttributesModel());
  1517. ko.bindingHandlers.hoverToggle = {
  1518. update: function (element, valueAccessor) {
  1519. var css = valueAccessor();
  1520. var isSelected = $(element).hasClass("selectedAttribute");
  1521. if (!isSelected) {
  1522. ko.utils.registerEventHandler(element, "mouseenter", function () {
  1523. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  1524. });
  1525. ko.utils.registerEventHandler(element, "mouseleave", function () {
  1526. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  1527. });
  1528. }
  1529. }
  1530. };
  1531. });
  1532. </script>
  1533. </div>
  1534. <div id="refine-mfg-logo2">
  1535. </div>
  1536. </div>
  1537. <br />
  1538. <table border="0" width="100%">
  1539. <tr>
  1540. <td>
  1541. </td>
  1542. </tr>
  1543. <tr>
  1544. <td>
  1545. <!--- Search Features --->
  1546. </td>
  1547. </tr>
  1548. <tr>
  1549. <td>
  1550. <div id="refine-page">
  1551. </div>
  1552. </td>
  1553. </tr>
  1554. <tr>
  1555. <td class="refine-show-products">
  1556. <span class="redtextb">
  1557. </span> <span class="redtextb">
  1558. </span> <span class="redtextb">
  1559. </span> <span class="redtextb">
  1560. </span>
  1561. <span class="redtextb">
  1562. </span>
  1563. </td>
  1564. </tr>
  1565. <tr>
  1566. <td>
  1567. </td>
  1568. </tr>
  1569. <tr>
  1570. <td>
  1571. <!--- Special Order Parts New --->
  1572. <!-- SOP Section 1 -->
  1573. </td>
  1574. </tr>
  1575. </table>
  1576. <div id="searchResultsTbl">
  1577. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  1578. <tr>
  1579. <td class="tdSearchResultsPagingTop">
  1580. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  1581. <tr>
  1582. <td>
  1583. <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" />
  1584. </td>
  1585. <td>
  1586. <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" />
  1587. </td>
  1588. <td>
  1589. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  1590. </td>
  1591. <td style="padding-left: 40px;">
  1592. <div class="floatrightpager">
  1593. <span class="bold">
  1594. 页面:
  1595. </span>
  1596. <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/Surge-Suppressors/_/N-5g3k/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_38" class="first-last" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=950">39</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=25">下一页</a></span>
  1597. </div>
  1598. </td>
  1599. </tr>
  1600. </table>
  1601. </td>
  1602. </tr>
  1603. <tr>
  1604. <td>
  1605. <div>
  1606. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  1607. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  1608. <th class="td-select" scope="col" style="width:35px;">
  1609. 选择
  1610. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  1611. </th><th scope="col">制造商 零件编号
  1612. </th><th scope="col">制造商
  1613. </th><th scope="col">描述
  1614. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../Images/Search/pdf.gif" alt="文件" />
  1615. </th><th scope="col">供货情况
  1616. </th><th scope="col">单价(含17%增值税)
  1617. <br />
  1618. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  1619. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  1620. </th><th class="SearchResultParametricColumnHeading" scope="col">电压额定值
  1621. </th><th class="SearchResultParametricColumnHeading" scope="col">电流额定值
  1622. </th><th class="SearchResultParametricColumnHeading" scope="col">工作温度范围
  1623. </th><th class="SearchResultParametricColumnHeading" scope="col">端接类型
  1624. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  1625. </th>
  1626. </tr><tr class="SearchResultsSortCell">
  1627. <td class="td-select" align="center"></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl16&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 Mouser 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl18&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 Mouser 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Ascending&#39;); return false;" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl02_ctl20" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl20&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl22&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl24&#39;,&#39;&#39;)"><img title="按 制造商 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl26&#39;,&#39;&#39;)"><img title="按 制造商 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Default>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl28&#39;,&#39;&#39;)"><img title="按 供货情况 Ascending 排序" src="../../../../Images/Search/btn_ActiveSort_Up.jpg" alt="按 供货情况 Ascending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl30&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 单价(含17%增值税) Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl32&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Voltage Rating>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl34&#39;,&#39;&#39;)"><img title="按 电压额定值 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 电压额定值 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Voltage Rating>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl36&#39;,&#39;&#39;)"><img title="按 电压额定值 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 电压额定值 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Current Rating>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl38&#39;,&#39;&#39;)"><img title="按 电流额定值 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 电流额定值 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Current Rating>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl40&#39;,&#39;&#39;)"><img title="按 电流额定值 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 电流额定值 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Operating Temperature Range>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl42&#39;,&#39;&#39;)"><img title="按 工作温度范围 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 工作温度范围 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Operating Temperature Range>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl44&#39;,&#39;&#39;)"><img title="按 工作温度范围 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 工作温度范围 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Termination Style>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl46&#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$Termination Style>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl48&#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$Package / Case>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl50&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 封装 / 箱体 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl52&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 / 箱体 Descending 排序" /></a></td>
  1628. </tr><tr class="SearchResultsRowOdd" data-partnumber="652-TBU-CA065-100-WH" data-index="3">
  1629. <td class="td-select" align="center">
  1630. <div style="padding: 5px 5px 0 5px;">
  1631. <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>
  1632. </div>
  1633. </td><td><a href='/ProductDetail/Bourns/TBU-CA065-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7KkwCJMor5PU%3d'><img title='Bourns TBU-CA065-100-WH' alt='Bourns TBU-CA065-100-WH' id=453517591 src='/images/bourns/sm/tbu-ca.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/tbu-ca.jpg</div></a></td><td>
  1634. <div style="text-align:left;">
  1635. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/TBU-CA065-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7KkwCJMor5PU%3d">652-TBU-CA065-100-WH</a><br />
  1636. <br />
  1637. <br />
  1638. 要购买完整 卷轴,请订购 3000 的倍数:
  1639. </div></td><td>
  1640. <div class="mfrDiv">
  1641. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/TBU-CA065-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7KkwCJMor5PU%3d">TBU-CA065-100-WH</a><br />
  1642. <br />
  1643. <div style="width: 100%; text-align: center;">
  1644. </div>
  1645. <div style="width: 100%; text-align: center;">
  1646. </div>
  1647. </div>
  1648. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  1649. </td><td>浪涌抑制器 Bi-directional TBU
  1650. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1651. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Bourns_TBU">了解更多</a>
  1652. </div>
  1653. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1654. </div>
  1655. </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;Bourns&quot;,&quot;652-TBU-CA065-100-WH | TBU-CA065-100-WH&quot;]);" href="http://www.mouser.com/ds/2/54/BU-CA-778169.pdf" target="_blank">数据表</a>
  1656. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">16,292<br/>有库存</span>
  1657. <table>
  1658. <tr align="center">
  1659. <td style="padding-top: 5px">
  1660. </td>
  1661. </tr>
  1662. <tr align="center">
  1663. <td style="padding-top: 5px; padding-bottom: 5px">
  1664. </td>
  1665. </tr>
  1666. </table></td><td>
  1667. <table class="PriceBreaks" cellspacing="0" border="0">
  1668. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1669. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1670. </td>
  1671. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1672. </td>
  1673. </tr>
  1674. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1675. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1676. 剪切带
  1677. </td>
  1678. </tr>
  1679. <tr>
  1680. <td class="PriceBreakQuantity">
  1681. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  1682. </td>
  1683. <td class="PriceBreakPrice">
  1684. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.4784</span>
  1685. </td>
  1686. </tr>
  1687. <tr>
  1688. <td class="PriceBreakQuantity">
  1689. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  1690. </td>
  1691. <td class="PriceBreakPrice">
  1692. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.9395</span>
  1693. </td>
  1694. </tr>
  1695. <tr>
  1696. <td class="PriceBreakQuantity">
  1697. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,100);">100:</a>
  1698. </td>
  1699. <td class="PriceBreakPrice">
  1700. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  1701. </td>
  1702. </tr>
  1703. <tr>
  1704. <td class="PriceBreakQuantity">
  1705. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,500);">500:</a>
  1706. </td>
  1707. <td class="PriceBreakPrice">
  1708. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6284</span>
  1709. </td>
  1710. </tr>
  1711. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  1712. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1713. 卷轴
  1714. </td>
  1715. </tr>
  1716. <tr>
  1717. <td class="PriceBreakQuantity">
  1718. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(1,3000);">3,000:</a>
  1719. </td>
  1720. <td class="PriceBreakPrice">
  1721. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥5.5107</span>
  1722. </td>
  1723. </tr>
  1724. <tr>
  1725. <td class="PriceBreakQuantity">
  1726. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(1,9000);">9,000:</a>
  1727. </td>
  1728. <td class="PriceBreakPrice">
  1729. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/TBU-CA065-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7KkwCJMor5PU%3d' >查看</a></span>
  1730. </td>
  1731. </tr>
  1732. <tr>
  1733. <td><br /></td>
  1734. </tr>
  1735. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  1736. <td colspan="2" style="text-align: center;">
  1737. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/TBU-CA065-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7KkwCJMor5PU%3d">MouseReel 提供服务支持</a>
  1738. </td>
  1739. </tr>
  1740. </table>
  1741. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy&#39;)">
  1742. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(1,this.value);" /><br />
  1743. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 1);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy" title="购买 TBU-CA065-100-WH" class="buy-button" /><br />
  1744. <table cellspacing="0" border="0" style="width: 100%;">
  1745. <tr>
  1746. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1747. 最低:
  1748. </td>
  1749. <td style="padding-left: 2px; text-align: left;">
  1750. 1
  1751. </td>
  1752. </tr>
  1753. <tr>
  1754. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1755. 多个:
  1756. </td>
  1757. <td style="padding-left: 2px; text-align: left;">
  1758. 1
  1759. </td>
  1760. </tr>
  1761. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_trReel">
  1762. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1763. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(1,3000);">卷轴</a>:
  1764. </td>
  1765. <td style="padding-left: 2px; text-align: left;">
  1766. <em class="SearchResultsReel">
  1767. 3,000
  1768. </em>
  1769. </td>
  1770. </tr>
  1771. </table>
  1772. </div>
  1773. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  1774. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1775. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGDY9MD46ykvXg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGDY9MD46ykvXg%3d%3d" target="_blank">详细信息</a>
  1776. </div>
  1777. </td><td>
  1778. </td><td>100 mA
  1779. </td><td>- 40 C to + 125 C
  1780. </td><td>Solder Pad
  1781. </td><td>DFN
  1782. </td>
  1783. </tr><tr class="SearchResultsRowEven" data-partnumber="652-C850-260-WH" data-index="4">
  1784. <td class="td-select" align="center">
  1785. <div style="padding: 5px 5px 0 5px;">
  1786. <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>
  1787. </div>
  1788. </td><td><a href='/ProductDetail/Bourns/C850-260-WH/?qs=sGAEpiMZZMtFLzWzeHO23OV7hzpkj4QXGzUv%252bEwXvq0%3d'><img title='Bourns C850-260-WH' alt='Bourns C850-260-WH' id=296100313 src='/images/bourns/sm/C650_C850.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/C650_C850.jpg</div></a></td><td>
  1789. <div style="text-align:left;">
  1790. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/C850-260-WH/?qs=sGAEpiMZZMtFLzWzeHO23OV7hzpkj4QXGzUv%252bEwXvq0%3d">652-C850-260-WH</a><br />
  1791. <br />
  1792. <br />
  1793. 要购买完整 卷轴,请订购 3000 的倍数:
  1794. </div></td><td>
  1795. <div class="mfrDiv">
  1796. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/C850-260-WH/?qs=sGAEpiMZZMtFLzWzeHO23OV7hzpkj4QXGzUv%252bEwXvq0%3d">C850-260-WH</a><br />
  1797. <br />
  1798. <div style="width: 100%; text-align: center;">
  1799. </div>
  1800. <div style="width: 100%; text-align: center;">
  1801. </div>
  1802. </div>
  1803. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  1804. </td><td>浪涌抑制器 260mA 850Vimp
  1805. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1806. </div>
  1807. </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;Bourns&quot;,&quot;652-C850-260-WH | C850-260-WH&quot;]);" href="http://www.mouser.com/ds/2/54/650_C850-777235.pdf" target="_blank">数据表<br /><br /></a>
  1808. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-0409-44&#39;);return false;" rel="nofollow" href="../../../../Cart/AdditionalProductInfo.aspx?part=5-0409-44" target="_blank">产品信息</a>
  1809. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">9,062<br/>有库存</span>
  1810. <table>
  1811. <tr align="center">
  1812. <td style="padding-top: 5px">
  1813. </td>
  1814. </tr>
  1815. <tr align="center">
  1816. <td style="padding-top: 5px; padding-bottom: 5px">
  1817. </td>
  1818. </tr>
  1819. </table></td><td>
  1820. <table class="PriceBreaks" cellspacing="0" border="0">
  1821. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1822. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1823. </td>
  1824. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1825. </td>
  1826. </tr>
  1827. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1828. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1829. 剪切带
  1830. </td>
  1831. </tr>
  1832. <tr>
  1833. <td class="PriceBreakQuantity">
  1834. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  1835. </td>
  1836. <td class="PriceBreakPrice">
  1837. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.4784</span>
  1838. </td>
  1839. </tr>
  1840. <tr>
  1841. <td class="PriceBreakQuantity">
  1842. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  1843. </td>
  1844. <td class="PriceBreakPrice">
  1845. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥12.168</span>
  1846. </td>
  1847. </tr>
  1848. <tr>
  1849. <td class="PriceBreakQuantity">
  1850. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  1851. </td>
  1852. <td class="PriceBreakPrice">
  1853. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥9.8514</span>
  1854. </td>
  1855. </tr>
  1856. <tr>
  1857. <td class="PriceBreakQuantity">
  1858. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,500);">500:</a>
  1859. </td>
  1860. <td class="PriceBreakPrice">
  1861. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6284</span>
  1862. </td>
  1863. </tr>
  1864. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  1865. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1866. 卷轴
  1867. </td>
  1868. </tr>
  1869. <tr>
  1870. <td class="PriceBreakQuantity">
  1871. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(2,3000);">3,000:</a>
  1872. </td>
  1873. <td class="PriceBreakPrice">
  1874. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥6.3297</span>
  1875. </td>
  1876. </tr>
  1877. <tr>
  1878. <td class="PriceBreakQuantity">
  1879. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(2,9000);">9,000:</a>
  1880. </td>
  1881. <td class="PriceBreakPrice">
  1882. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/C850-260-WH/?qs=sGAEpiMZZMtFLzWzeHO23OV7hzpkj4QXGzUv%252bEwXvq0%3d' >查看</a></span>
  1883. </td>
  1884. </tr>
  1885. <tr>
  1886. <td><br /></td>
  1887. </tr>
  1888. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  1889. <td colspan="2" style="text-align: center;">
  1890. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/C850-260-WH/?qs=sGAEpiMZZMtFLzWzeHO23OV7hzpkj4QXGzUv%252bEwXvq0%3d">MouseReel 提供服务支持</a>
  1891. </td>
  1892. </tr>
  1893. </table>
  1894. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy&#39;)">
  1895. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(2,this.value);" /><br />
  1896. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 2);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy" title="购买 C850-260-WH" class="buy-button" /><br />
  1897. <table cellspacing="0" border="0" style="width: 100%;">
  1898. <tr>
  1899. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1900. 最低:
  1901. </td>
  1902. <td style="padding-left: 2px; text-align: left;">
  1903. 1
  1904. </td>
  1905. </tr>
  1906. <tr>
  1907. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1908. 多个:
  1909. </td>
  1910. <td style="padding-left: 2px; text-align: left;">
  1911. 1
  1912. </td>
  1913. </tr>
  1914. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_trReel">
  1915. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1916. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(2,3000);">卷轴</a>:
  1917. </td>
  1918. <td style="padding-left: 2px; text-align: left;">
  1919. <em class="SearchResultsReel">
  1920. 3,000
  1921. </em>
  1922. </td>
  1923. </tr>
  1924. </table>
  1925. </div>
  1926. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  1927. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1928. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=kyrVDksE8he6xoNYYKJjrQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=kyrVDksE8he6xoNYYKJjrQ%3d%3d" target="_blank">详细信息</a>
  1929. </div>
  1930. </td><td>14 V
  1931. </td><td>260 mA
  1932. </td><td>- 40 C to + 85 C
  1933. </td><td>SMD/SMT
  1934. </td><td>
  1935. </td>
  1936. </tr><tr class="SearchResultsRowOdd" data-partnumber="652-TBU-CA065-200-WH" data-index="5">
  1937. <td class="td-select" align="center">
  1938. <div style="padding: 5px 5px 0 5px;">
  1939. <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>
  1940. </div>
  1941. </td><td><a href='/ProductDetail/Bourns/TBU-CA065-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7mEeghVieHkQ%3d'><img title='Bourns TBU-CA065-200-WH' alt='Bourns TBU-CA065-200-WH' id=453517593 src='/images/bourns/sm/tbu-ca.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/tbu-ca.jpg</div></a></td><td>
  1942. <div style="text-align:left;">
  1943. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/TBU-CA065-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7mEeghVieHkQ%3d">652-TBU-CA065-200-WH</a><br />
  1944. <br />
  1945. <br />
  1946. 要购买完整 卷轴,请订购 3000 的倍数:
  1947. </div></td><td>
  1948. <div class="mfrDiv">
  1949. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/TBU-CA065-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7mEeghVieHkQ%3d">TBU-CA065-200-WH</a><br />
  1950. <br />
  1951. <div style="width: 100%; text-align: center;">
  1952. </div>
  1953. <div style="width: 100%; text-align: center;">
  1954. </div>
  1955. </div>
  1956. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  1957. </td><td>浪涌抑制器 Bi-directional TBU
  1958. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1959. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Bourns_TBU/">了解更多</a>
  1960. </div>
  1961. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1962. </div>
  1963. </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;Bourns&quot;,&quot;652-TBU-CA065-200-WH | TBU-CA065-200-WH&quot;]);" href="http://www.mouser.com/ds/2/54/BU-CA-778169.pdf" target="_blank">数据表</a>
  1964. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">2,576<br/>有库存</span>
  1965. <table>
  1966. <tr align="center">
  1967. <td style="padding-top: 5px">
  1968. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/Bourns/TBU-CA065-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7mEeghVieHkQ%3d">更多信息可用 </a>
  1969. </td>
  1970. </tr>
  1971. <tr align="center">
  1972. <td style="padding-top: 5px; padding-bottom: 5px">
  1973. </td>
  1974. </tr>
  1975. </table></td><td>
  1976. <table class="PriceBreaks" cellspacing="0" border="0">
  1977. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1978. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1979. </td>
  1980. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1981. </td>
  1982. </tr>
  1983. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1984. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1985. 剪切带
  1986. </td>
  1987. </tr>
  1988. <tr>
  1989. <td class="PriceBreakQuantity">
  1990. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  1991. </td>
  1992. <td class="PriceBreakPrice">
  1993. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.4784</span>
  1994. </td>
  1995. </tr>
  1996. <tr>
  1997. <td class="PriceBreakQuantity">
  1998. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  1999. </td>
  2000. <td class="PriceBreakPrice">
  2001. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.9395</span>
  2002. </td>
  2003. </tr>
  2004. <tr>
  2005. <td class="PriceBreakQuantity">
  2006. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  2007. </td>
  2008. <td class="PriceBreakPrice">
  2009. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  2010. </td>
  2011. </tr>
  2012. <tr>
  2013. <td class="PriceBreakQuantity">
  2014. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,500);">500:</a>
  2015. </td>
  2016. <td class="PriceBreakPrice">
  2017. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6284</span>
  2018. </td>
  2019. </tr>
  2020. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2021. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2022. 卷轴
  2023. </td>
  2024. </tr>
  2025. <tr>
  2026. <td class="PriceBreakQuantity">
  2027. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(3,3000);">3,000:</a>
  2028. </td>
  2029. <td class="PriceBreakPrice">
  2030. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥5.5107</span>
  2031. </td>
  2032. </tr>
  2033. <tr>
  2034. <td class="PriceBreakQuantity">
  2035. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(3,9000);">9,000:</a>
  2036. </td>
  2037. <td class="PriceBreakPrice">
  2038. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/TBU-CA065-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7mEeghVieHkQ%3d' >查看</a></span>
  2039. </td>
  2040. </tr>
  2041. <tr>
  2042. <td><br /></td>
  2043. </tr>
  2044. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  2045. <td colspan="2" style="text-align: center;">
  2046. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/TBU-CA065-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7mEeghVieHkQ%3d">MouseReel 提供服务支持</a>
  2047. </td>
  2048. </tr>
  2049. </table>
  2050. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy&#39;)">
  2051. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(3,this.value);" /><br />
  2052. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 3);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy" title="购买 TBU-CA065-200-WH" class="buy-button" /><br />
  2053. <table cellspacing="0" border="0" style="width: 100%;">
  2054. <tr>
  2055. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2056. 最低:
  2057. </td>
  2058. <td style="padding-left: 2px; text-align: left;">
  2059. 1
  2060. </td>
  2061. </tr>
  2062. <tr>
  2063. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2064. 多个:
  2065. </td>
  2066. <td style="padding-left: 2px; text-align: left;">
  2067. 1
  2068. </td>
  2069. </tr>
  2070. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_trReel">
  2071. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2072. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(3,3000);">卷轴</a>:
  2073. </td>
  2074. <td style="padding-left: 2px; text-align: left;">
  2075. <em class="SearchResultsReel">
  2076. 3,000
  2077. </em>
  2078. </td>
  2079. </tr>
  2080. </table>
  2081. </div>
  2082. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2083. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2084. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGAWwzVAGt6HAg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGAWwzVAGt6HAg%3d%3d" target="_blank">详细信息</a>
  2085. </div>
  2086. </td><td>
  2087. </td><td>200 mA
  2088. </td><td>- 40 C to + 125 C
  2089. </td><td>Solder Pad
  2090. </td><td>DFN
  2091. </td>
  2092. </tr><tr class="SearchResultsRowEven" data-partnumber="652-TBU-CA065-300-WH" data-index="6">
  2093. <td class="td-select" align="center">
  2094. <div style="padding: 5px 5px 0 5px;">
  2095. <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>
  2096. </div>
  2097. </td><td><a href='/ProductDetail/Bourns/TBU-CA065-300-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7Hvvodu8gyDs%3d'><img title='Bourns TBU-CA065-300-WH' alt='Bourns TBU-CA065-300-WH' id=453517595 src='/images/bourns/sm/tbu-ca.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/tbu-ca.jpg</div></a></td><td>
  2098. <div style="text-align:left;">
  2099. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/TBU-CA065-300-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7Hvvodu8gyDs%3d">652-TBU-CA065-300-WH</a><br />
  2100. <br />
  2101. <br />
  2102. 要购买完整 卷轴,请订购 3000 的倍数:
  2103. </div></td><td>
  2104. <div class="mfrDiv">
  2105. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/TBU-CA065-300-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7Hvvodu8gyDs%3d">TBU-CA065-300-WH</a><br />
  2106. <br />
  2107. <div style="width: 100%; text-align: center;">
  2108. </div>
  2109. <div style="width: 100%; text-align: center;">
  2110. </div>
  2111. </div>
  2112. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  2113. </td><td>浪涌抑制器 Bi-directional TBU
  2114. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2115. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Bourns_TBU/">了解更多</a>
  2116. </div>
  2117. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2118. </div>
  2119. </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;Bourns&quot;,&quot;652-TBU-CA065-300-WH | TBU-CA065-300-WH&quot;]);" href="http://www.mouser.com/ds/2/54/BU-CA-778169.pdf" target="_blank">数据表</a>
  2120. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">7,741<br/>有库存</span>
  2121. <table>
  2122. <tr align="center">
  2123. <td style="padding-top: 5px">
  2124. </td>
  2125. </tr>
  2126. <tr align="center">
  2127. <td style="padding-top: 5px; padding-bottom: 5px">
  2128. </td>
  2129. </tr>
  2130. </table></td><td>
  2131. <table class="PriceBreaks" cellspacing="0" border="0">
  2132. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2133. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2134. </td>
  2135. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2136. </td>
  2137. </tr>
  2138. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2139. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2140. 剪切带
  2141. </td>
  2142. </tr>
  2143. <tr>
  2144. <td class="PriceBreakQuantity">
  2145. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  2146. </td>
  2147. <td class="PriceBreakPrice">
  2148. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.4784</span>
  2149. </td>
  2150. </tr>
  2151. <tr>
  2152. <td class="PriceBreakQuantity">
  2153. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,10);">10:</a>
  2154. </td>
  2155. <td class="PriceBreakPrice">
  2156. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.9395</span>
  2157. </td>
  2158. </tr>
  2159. <tr>
  2160. <td class="PriceBreakQuantity">
  2161. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,100);">100:</a>
  2162. </td>
  2163. <td class="PriceBreakPrice">
  2164. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  2165. </td>
  2166. </tr>
  2167. <tr>
  2168. <td class="PriceBreakQuantity">
  2169. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,500);">500:</a>
  2170. </td>
  2171. <td class="PriceBreakPrice">
  2172. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6284</span>
  2173. </td>
  2174. </tr>
  2175. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2176. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2177. 卷轴
  2178. </td>
  2179. </tr>
  2180. <tr>
  2181. <td class="PriceBreakQuantity">
  2182. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(4,3000);">3,000:</a>
  2183. </td>
  2184. <td class="PriceBreakPrice">
  2185. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥5.5107</span>
  2186. </td>
  2187. </tr>
  2188. <tr>
  2189. <td class="PriceBreakQuantity">
  2190. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(4,9000);">9,000:</a>
  2191. </td>
  2192. <td class="PriceBreakPrice">
  2193. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/TBU-CA065-300-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7Hvvodu8gyDs%3d' >查看</a></span>
  2194. </td>
  2195. </tr>
  2196. <tr>
  2197. <td><br /></td>
  2198. </tr>
  2199. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  2200. <td colspan="2" style="text-align: center;">
  2201. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/TBU-CA065-300-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7Hvvodu8gyDs%3d">MouseReel 提供服务支持</a>
  2202. </td>
  2203. </tr>
  2204. </table>
  2205. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_btnBuy&#39;)">
  2206. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl06$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(4,this.value);" /><br />
  2207. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl06$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 4);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_btnBuy" title="购买 TBU-CA065-300-WH" class="buy-button" /><br />
  2208. <table cellspacing="0" border="0" style="width: 100%;">
  2209. <tr>
  2210. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2211. 最低:
  2212. </td>
  2213. <td style="padding-left: 2px; text-align: left;">
  2214. 1
  2215. </td>
  2216. </tr>
  2217. <tr>
  2218. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2219. 多个:
  2220. </td>
  2221. <td style="padding-left: 2px; text-align: left;">
  2222. 1
  2223. </td>
  2224. </tr>
  2225. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_trReel">
  2226. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2227. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(4,3000);">卷轴</a>:
  2228. </td>
  2229. <td style="padding-left: 2px; text-align: left;">
  2230. <em class="SearchResultsReel">
  2231. 3,000
  2232. </em>
  2233. </td>
  2234. </tr>
  2235. </table>
  2236. </div>
  2237. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  2238. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2239. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGDK9lN%2fq6zZew%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGDK9lN%2fq6zZew%3d%3d" target="_blank">详细信息</a>
  2240. </div>
  2241. </td><td>
  2242. </td><td>300 mA
  2243. </td><td>- 40 C to + 125 C
  2244. </td><td>Solder Pad
  2245. </td><td>DFN
  2246. </td>
  2247. </tr><tr class="SearchResultsRowOdd" data-partnumber="652-TBU-CA025-050-WH" data-index="7">
  2248. <td class="td-select" align="center">
  2249. <div style="padding: 5px 5px 0 5px;">
  2250. <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>
  2251. </div>
  2252. </td><td><a href='/ProductDetail/Bourns/TBU-CA025-050-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7kaS9ZGPP05I%3d'><img title='Bourns TBU-CA025-050-WH' alt='Bourns TBU-CA025-050-WH' id=453517559 src='/images/bourns/sm/tbu-ca.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/tbu-ca.jpg</div></a></td><td>
  2253. <div style="text-align:left;">
  2254. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/TBU-CA025-050-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7kaS9ZGPP05I%3d">652-TBU-CA025-050-WH</a><br />
  2255. <br />
  2256. <br />
  2257. 要购买完整 卷轴,请订购 3000 的倍数:
  2258. </div></td><td>
  2259. <div class="mfrDiv">
  2260. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/TBU-CA025-050-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7kaS9ZGPP05I%3d">TBU-CA025-050-WH</a><br />
  2261. <br />
  2262. <div style="width: 100%; text-align: center;">
  2263. </div>
  2264. <div style="width: 100%; text-align: center;">
  2265. </div>
  2266. </div>
  2267. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  2268. </td><td>浪涌抑制器 Bi-directional TBU
  2269. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2270. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Bourns_TBU">了解更多</a>
  2271. </div>
  2272. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2273. </div>
  2274. </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-TBU-CA025-050-WH | TBU-CA025-050-WH&quot;]);" href="http://www.mouser.com/ds/2/54/BU-CA-778169.pdf" target="_blank">数据表</a>
  2275. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">3,859<br/>有库存</span>
  2276. <table>
  2277. <tr align="center">
  2278. <td style="padding-top: 5px">
  2279. </td>
  2280. </tr>
  2281. <tr align="center">
  2282. <td style="padding-top: 5px; padding-bottom: 5px">
  2283. </td>
  2284. </tr>
  2285. </table></td><td>
  2286. <table class="PriceBreaks" cellspacing="0" border="0">
  2287. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2288. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2289. </td>
  2290. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2291. </td>
  2292. </tr>
  2293. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2294. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2295. 剪切带
  2296. </td>
  2297. </tr>
  2298. <tr>
  2299. <td class="PriceBreakQuantity">
  2300. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  2301. </td>
  2302. <td class="PriceBreakPrice">
  2303. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.4784</span>
  2304. </td>
  2305. </tr>
  2306. <tr>
  2307. <td class="PriceBreakQuantity">
  2308. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  2309. </td>
  2310. <td class="PriceBreakPrice">
  2311. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.9395</span>
  2312. </td>
  2313. </tr>
  2314. <tr>
  2315. <td class="PriceBreakQuantity">
  2316. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,100);">100:</a>
  2317. </td>
  2318. <td class="PriceBreakPrice">
  2319. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  2320. </td>
  2321. </tr>
  2322. <tr>
  2323. <td class="PriceBreakQuantity">
  2324. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,500);">500:</a>
  2325. </td>
  2326. <td class="PriceBreakPrice">
  2327. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6284</span>
  2328. </td>
  2329. </tr>
  2330. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2331. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2332. 卷轴
  2333. </td>
  2334. </tr>
  2335. <tr>
  2336. <td class="PriceBreakQuantity">
  2337. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(5,3000);">3,000:</a>
  2338. </td>
  2339. <td class="PriceBreakPrice">
  2340. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥5.5107</span>
  2341. </td>
  2342. </tr>
  2343. <tr>
  2344. <td class="PriceBreakQuantity">
  2345. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(5,9000);">9,000:</a>
  2346. </td>
  2347. <td class="PriceBreakPrice">
  2348. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/TBU-CA025-050-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7kaS9ZGPP05I%3d' >查看</a></span>
  2349. </td>
  2350. </tr>
  2351. <tr>
  2352. <td><br /></td>
  2353. </tr>
  2354. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  2355. <td colspan="2" style="text-align: center;">
  2356. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/TBU-CA025-050-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7kaS9ZGPP05I%3d">MouseReel 提供服务支持</a>
  2357. </td>
  2358. </tr>
  2359. </table>
  2360. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_btnBuy&#39;)">
  2361. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(5,this.value);" /><br />
  2362. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 5);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_btnBuy" title="购买 TBU-CA025-050-WH" class="buy-button" /><br />
  2363. <table cellspacing="0" border="0" style="width: 100%;">
  2364. <tr>
  2365. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2366. 最低:
  2367. </td>
  2368. <td style="padding-left: 2px; text-align: left;">
  2369. 1
  2370. </td>
  2371. </tr>
  2372. <tr>
  2373. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2374. 多个:
  2375. </td>
  2376. <td style="padding-left: 2px; text-align: left;">
  2377. 1
  2378. </td>
  2379. </tr>
  2380. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_trReel">
  2381. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2382. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(5,3000);">卷轴</a>:
  2383. </td>
  2384. <td style="padding-left: 2px; text-align: left;">
  2385. <em class="SearchResultsReel">
  2386. 3,000
  2387. </em>
  2388. </td>
  2389. </tr>
  2390. </table>
  2391. </div>
  2392. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2393. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2394. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGDCKtmcbiFfKA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGDCKtmcbiFfKA%3d%3d" target="_blank">详细信息</a>
  2395. </div>
  2396. </td><td>
  2397. </td><td>50 mA
  2398. </td><td>- 40 C to + 125 C
  2399. </td><td>Solder Pad
  2400. </td><td>DFN
  2401. </td>
  2402. </tr><tr class="SearchResultsRowEven" data-partnumber="652-TBU-CA025-100-WH" data-index="8">
  2403. <td class="td-select" align="center">
  2404. <div style="padding: 5px 5px 0 5px;">
  2405. <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>
  2406. </div>
  2407. </td><td><a href='/ProductDetail/Bourns/TBU-CA025-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7lAxt1b%252bu5fM%3d'><img title='Bourns TBU-CA025-100-WH' alt='Bourns TBU-CA025-100-WH' id=453517561 src='/images/bourns/sm/tbu-ca.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/tbu-ca.jpg</div></a></td><td>
  2408. <div style="text-align:left;">
  2409. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/TBU-CA025-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7lAxt1b%252bu5fM%3d">652-TBU-CA025-100-WH</a><br />
  2410. <br />
  2411. <br />
  2412. 要购买完整 卷轴,请订购 3000 的倍数:
  2413. </div></td><td>
  2414. <div class="mfrDiv">
  2415. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/TBU-CA025-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7lAxt1b%252bu5fM%3d">TBU-CA025-100-WH</a><br />
  2416. <br />
  2417. <div style="width: 100%; text-align: center;">
  2418. </div>
  2419. <div style="width: 100%; text-align: center;">
  2420. </div>
  2421. </div>
  2422. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  2423. </td><td>浪涌抑制器 Bi-directional TBU
  2424. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2425. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Bourns_TBU">了解更多</a>
  2426. </div>
  2427. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2428. </div>
  2429. </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;Bourns&quot;,&quot;652-TBU-CA025-100-WH | TBU-CA025-100-WH&quot;]);" href="http://www.mouser.com/ds/2/54/BU-CA-778169.pdf" target="_blank">数据表</a>
  2430. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">2,506<br/>有库存</span>
  2431. <table>
  2432. <tr align="center">
  2433. <td style="padding-top: 5px">
  2434. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/Bourns/TBU-CA025-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7lAxt1b%252bu5fM%3d">更多信息可用 </a>
  2435. </td>
  2436. </tr>
  2437. <tr align="center">
  2438. <td style="padding-top: 5px; padding-bottom: 5px">
  2439. </td>
  2440. </tr>
  2441. </table></td><td>
  2442. <table class="PriceBreaks" cellspacing="0" border="0">
  2443. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2444. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2445. </td>
  2446. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2447. </td>
  2448. </tr>
  2449. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2450. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2451. 剪切带
  2452. </td>
  2453. </tr>
  2454. <tr>
  2455. <td class="PriceBreakQuantity">
  2456. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  2457. </td>
  2458. <td class="PriceBreakPrice">
  2459. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.4784</span>
  2460. </td>
  2461. </tr>
  2462. <tr>
  2463. <td class="PriceBreakQuantity">
  2464. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  2465. </td>
  2466. <td class="PriceBreakPrice">
  2467. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.9395</span>
  2468. </td>
  2469. </tr>
  2470. <tr>
  2471. <td class="PriceBreakQuantity">
  2472. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  2473. </td>
  2474. <td class="PriceBreakPrice">
  2475. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  2476. </td>
  2477. </tr>
  2478. <tr>
  2479. <td class="PriceBreakQuantity">
  2480. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,500);">500:</a>
  2481. </td>
  2482. <td class="PriceBreakPrice">
  2483. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6284</span>
  2484. </td>
  2485. </tr>
  2486. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2487. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2488. 卷轴
  2489. </td>
  2490. </tr>
  2491. <tr>
  2492. <td class="PriceBreakQuantity">
  2493. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(6,3000);">3,000:</a>
  2494. </td>
  2495. <td class="PriceBreakPrice">
  2496. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥5.5107</span>
  2497. </td>
  2498. </tr>
  2499. <tr>
  2500. <td class="PriceBreakQuantity">
  2501. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(6,9000);">9,000:</a>
  2502. </td>
  2503. <td class="PriceBreakPrice">
  2504. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/TBU-CA025-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7lAxt1b%252bu5fM%3d' >查看</a></span>
  2505. </td>
  2506. </tr>
  2507. <tr>
  2508. <td><br /></td>
  2509. </tr>
  2510. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  2511. <td colspan="2" style="text-align: center;">
  2512. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/TBU-CA025-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7lAxt1b%252bu5fM%3d">MouseReel 提供服务支持</a>
  2513. </td>
  2514. </tr>
  2515. </table>
  2516. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy&#39;)">
  2517. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(6,this.value);" /><br />
  2518. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 6);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy" title="购买 TBU-CA025-100-WH" class="buy-button" /><br />
  2519. <table cellspacing="0" border="0" style="width: 100%;">
  2520. <tr>
  2521. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2522. 最低:
  2523. </td>
  2524. <td style="padding-left: 2px; text-align: left;">
  2525. 1
  2526. </td>
  2527. </tr>
  2528. <tr>
  2529. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2530. 多个:
  2531. </td>
  2532. <td style="padding-left: 2px; text-align: left;">
  2533. 1
  2534. </td>
  2535. </tr>
  2536. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_trReel">
  2537. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2538. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(6,3000);">卷轴</a>:
  2539. </td>
  2540. <td style="padding-left: 2px; text-align: left;">
  2541. <em class="SearchResultsReel">
  2542. 3,000
  2543. </em>
  2544. </td>
  2545. </tr>
  2546. </table>
  2547. </div>
  2548. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2549. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2550. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGAMEFmG7pdV9A%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGAMEFmG7pdV9A%3d%3d" target="_blank">详细信息</a>
  2551. </div>
  2552. </td><td>
  2553. </td><td>100 mA
  2554. </td><td>- 40 C to + 125 C
  2555. </td><td>Solder Pad
  2556. </td><td>DFN
  2557. </td>
  2558. </tr><tr class="SearchResultsRowOdd" data-partnumber="652-TBU-CA085-200-WH" data-index="9">
  2559. <td class="td-select" align="center">
  2560. <div style="padding: 5px 5px 0 5px;">
  2561. <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>
  2562. </div>
  2563. </td><td><a href='/ProductDetail/Bourns/TBU-CA085-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7ZP1NavouFcU%3d'><img title='Bourns TBU-CA085-200-WH' alt='Bourns TBU-CA085-200-WH' id=453517603 src='/images/bourns/sm/tbu-ca.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/tbu-ca.jpg</div></a></td><td>
  2564. <div style="text-align:left;">
  2565. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/TBU-CA085-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7ZP1NavouFcU%3d">652-TBU-CA085-200-WH</a><br />
  2566. <br />
  2567. <br />
  2568. 要购买完整 卷轴,请订购 3000 的倍数:
  2569. </div></td><td>
  2570. <div class="mfrDiv">
  2571. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/TBU-CA085-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7ZP1NavouFcU%3d">TBU-CA085-200-WH</a><br />
  2572. <br />
  2573. <div style="width: 100%; text-align: center;">
  2574. </div>
  2575. <div style="width: 100%; text-align: center;">
  2576. </div>
  2577. </div>
  2578. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  2579. </td><td>浪涌抑制器 Bi-directional TBU
  2580. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2581. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Bourns_TBU">了解更多</a>
  2582. </div>
  2583. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2584. </div>
  2585. </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;Bourns&quot;,&quot;652-TBU-CA085-200-WH | TBU-CA085-200-WH&quot;]);" href="http://www.mouser.com/ds/2/54/BU-CA-778169.pdf" target="_blank">数据表</a>
  2586. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">5,344<br/>有库存</span>
  2587. <table>
  2588. <tr align="center">
  2589. <td style="padding-top: 5px">
  2590. </td>
  2591. </tr>
  2592. <tr align="center">
  2593. <td style="padding-top: 5px; padding-bottom: 5px">
  2594. </td>
  2595. </tr>
  2596. </table></td><td>
  2597. <table class="PriceBreaks" cellspacing="0" border="0">
  2598. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2599. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2600. </td>
  2601. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2602. </td>
  2603. </tr>
  2604. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2605. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2606. 剪切带
  2607. </td>
  2608. </tr>
  2609. <tr>
  2610. <td class="PriceBreakQuantity">
  2611. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  2612. </td>
  2613. <td class="PriceBreakPrice">
  2614. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.4784</span>
  2615. </td>
  2616. </tr>
  2617. <tr>
  2618. <td class="PriceBreakQuantity">
  2619. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  2620. </td>
  2621. <td class="PriceBreakPrice">
  2622. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.9395</span>
  2623. </td>
  2624. </tr>
  2625. <tr>
  2626. <td class="PriceBreakQuantity">
  2627. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  2628. </td>
  2629. <td class="PriceBreakPrice">
  2630. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  2631. </td>
  2632. </tr>
  2633. <tr>
  2634. <td class="PriceBreakQuantity">
  2635. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,500);">500:</a>
  2636. </td>
  2637. <td class="PriceBreakPrice">
  2638. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6284</span>
  2639. </td>
  2640. </tr>
  2641. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2642. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2643. 卷轴
  2644. </td>
  2645. </tr>
  2646. <tr>
  2647. <td class="PriceBreakQuantity">
  2648. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(7,3000);">3,000:</a>
  2649. </td>
  2650. <td class="PriceBreakPrice">
  2651. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥5.5107</span>
  2652. </td>
  2653. </tr>
  2654. <tr>
  2655. <td class="PriceBreakQuantity">
  2656. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(7,9000);">9,000:</a>
  2657. </td>
  2658. <td class="PriceBreakPrice">
  2659. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/TBU-CA085-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7ZP1NavouFcU%3d' >查看</a></span>
  2660. </td>
  2661. </tr>
  2662. <tr>
  2663. <td><br /></td>
  2664. </tr>
  2665. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  2666. <td colspan="2" style="text-align: center;">
  2667. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/TBU-CA085-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7ZP1NavouFcU%3d">MouseReel 提供服务支持</a>
  2668. </td>
  2669. </tr>
  2670. </table>
  2671. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy&#39;)">
  2672. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(7,this.value);" /><br />
  2673. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 7);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy" title="购买 TBU-CA085-200-WH" class="buy-button" /><br />
  2674. <table cellspacing="0" border="0" style="width: 100%;">
  2675. <tr>
  2676. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2677. 最低:
  2678. </td>
  2679. <td style="padding-left: 2px; text-align: left;">
  2680. 1
  2681. </td>
  2682. </tr>
  2683. <tr>
  2684. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2685. 多个:
  2686. </td>
  2687. <td style="padding-left: 2px; text-align: left;">
  2688. 1
  2689. </td>
  2690. </tr>
  2691. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_trReel">
  2692. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2693. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(7,3000);">卷轴</a>:
  2694. </td>
  2695. <td style="padding-left: 2px; text-align: left;">
  2696. <em class="SearchResultsReel">
  2697. 3,000
  2698. </em>
  2699. </td>
  2700. </tr>
  2701. </table>
  2702. </div>
  2703. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  2704. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2705. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGAOaz5IZ5bwFg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGAOaz5IZ5bwFg%3d%3d" target="_blank">详细信息</a>
  2706. </div>
  2707. </td><td>
  2708. </td><td>200 mA
  2709. </td><td>- 40 C to + 125 C
  2710. </td><td>Solder Pad
  2711. </td><td>DFN
  2712. </td>
  2713. </tr><tr class="SearchResultsRowEven" data-partnumber="511-SMP75-8" data-index="10">
  2714. <td class="td-select" align="center">
  2715. <div style="padding: 5px 5px 0 5px;">
  2716. <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>
  2717. </div>
  2718. </td><td><a href='/ProductDetail/STMicroelectronics/SMP75-8/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiibXGO7vuvaZ8%3d'><img title='STMicroelectronics SMP75-8' alt='STMicroelectronics SMP75-8' id=2228480 src='/images/stmicroelectronics/sm/smb.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/smb.jpg</div></a></td><td>
  2719. <div style="text-align:left;">
  2720. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/SMP75-8/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiibXGO7vuvaZ8%3d">511-SMP75-8</a><br />
  2721. <br />
  2722. <br />
  2723. 要购买完整 卷轴,请订购 2500 的倍数:
  2724. </div></td><td>
  2725. <div class="mfrDiv">
  2726. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/SMP75-8/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiibXGO7vuvaZ8%3d">SMP75-8</a><br />
  2727. <br />
  2728. <div style="width: 100%; text-align: center;">
  2729. </div>
  2730. <div style="width: 100%; text-align: center;">
  2731. <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/>
  2732. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_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>
  2733. </div>
  2734. </div>
  2735. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
  2736. </td><td>浪涌抑制器 8V 75A Bidirect
  2737. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2738. </div>
  2739. </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;STMicroelectronics&quot;,&quot;511-SMP75-8 | SMP75-8&quot;]);" href="http://www.mouser.com/ds/2/389/CD00001148-470133.pdf" target="_blank">数据表</a>
  2740. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">3,569<br/>有库存</span>
  2741. <table>
  2742. <tr align="center">
  2743. <td style="padding-top: 5px">
  2744. </td>
  2745. </tr>
  2746. <tr align="center">
  2747. <td style="padding-top: 5px; padding-bottom: 5px">
  2748. </td>
  2749. </tr>
  2750. </table></td><td>
  2751. <table class="PriceBreaks" cellspacing="0" border="0">
  2752. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2753. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2754. </td>
  2755. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2756. </td>
  2757. </tr>
  2758. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2759. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2760. 剪切带
  2761. </td>
  2762. </tr>
  2763. <tr>
  2764. <td class="PriceBreakQuantity">
  2765. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  2766. </td>
  2767. <td class="PriceBreakPrice">
  2768. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥7.6986</span>
  2769. </td>
  2770. </tr>
  2771. <tr>
  2772. <td class="PriceBreakQuantity">
  2773. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,10);">10:</a>
  2774. </td>
  2775. <td class="PriceBreakPrice">
  2776. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥6.1893</span>
  2777. </td>
  2778. </tr>
  2779. <tr>
  2780. <td class="PriceBreakQuantity">
  2781. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,100);">100:</a>
  2782. </td>
  2783. <td class="PriceBreakPrice">
  2784. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥4.7502</span>
  2785. </td>
  2786. </tr>
  2787. <tr>
  2788. <td class="PriceBreakQuantity">
  2789. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,500);">500:</a>
  2790. </td>
  2791. <td class="PriceBreakPrice">
  2792. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥4.2003</span>
  2793. </td>
  2794. </tr>
  2795. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2796. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2797. 卷轴
  2798. </td>
  2799. </tr>
  2800. <tr>
  2801. <td class="PriceBreakQuantity">
  2802. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(8,2500);">2,500:</a>
  2803. </td>
  2804. <td class="PriceBreakPrice">
  2805. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.9367</span>
  2806. </td>
  2807. </tr>
  2808. <tr>
  2809. <td class="PriceBreakQuantity">
  2810. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(8,10000);">10,000:</a>
  2811. </td>
  2812. <td class="PriceBreakPrice">
  2813. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/STMicroelectronics/SMP75-8/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiibXGO7vuvaZ8%3d' >查看</a></span>
  2814. </td>
  2815. </tr>
  2816. <tr>
  2817. <td><br /></td>
  2818. </tr>
  2819. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  2820. <td colspan="2" style="text-align: center;">
  2821. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/STMicroelectronics/SMP75-8/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiibXGO7vuvaZ8%3d">MouseReel 提供服务支持</a>
  2822. </td>
  2823. </tr>
  2824. </table>
  2825. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy&#39;)">
  2826. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(8,this.value);" /><br />
  2827. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 8);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy" title="购买 SMP75-8" class="buy-button" /><br />
  2828. <table cellspacing="0" border="0" style="width: 100%;">
  2829. <tr>
  2830. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2831. 最低:
  2832. </td>
  2833. <td style="padding-left: 2px; text-align: left;">
  2834. 1
  2835. </td>
  2836. </tr>
  2837. <tr>
  2838. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2839. 多个:
  2840. </td>
  2841. <td style="padding-left: 2px; text-align: left;">
  2842. 1
  2843. </td>
  2844. </tr>
  2845. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_trReel">
  2846. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2847. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(8,2500);">卷轴</a>:
  2848. </td>
  2849. <td style="padding-left: 2px; text-align: left;">
  2850. <em class="SearchResultsReel">
  2851. 2,500
  2852. </em>
  2853. </td>
  2854. </tr>
  2855. </table>
  2856. </div>
  2857. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  2858. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2859. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=7h7%252bPvzbnYZRPhGJR8JmNg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=7h7%252bPvzbnYZRPhGJR8JmNg%3d%3d" target="_blank">详细信息</a>
  2860. </div>
  2861. </td><td>
  2862. </td><td>
  2863. </td><td>- 55 C to + 150 C
  2864. </td><td>SMD/SMT
  2865. </td><td>DO-214AA
  2866. </td>
  2867. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-2839282" data-index="11">
  2868. <td class="td-select" align="center">
  2869. <div style="padding: 5px 5px 0 5px;">
  2870. <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>
  2871. </div>
  2872. </td><td><a href='/ProductDetail/Phoenix-Contact/2839282/?qs=sGAEpiMZZMtFLzWzeHO23IJiw6ffsNhW1K65KXNmRjU%3d'><img title='Phoenix Contact 2839282' alt='Phoenix Contact 2839282' id=2168322 src='/images/phoenixcontact/sm/34991_2000_int_04.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/phoenixcontact/images/34991_2000_int_04.jpg</div></a></td><td>
  2873. <div style="text-align:left;">
  2874. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Phoenix-Contact/2839282/?qs=sGAEpiMZZMtFLzWzeHO23IJiw6ffsNhW1K65KXNmRjU%3d">651-2839282</a><br />
  2875. <br />
  2876. <br />
  2877. </div></td><td>
  2878. <div class="mfrDiv">
  2879. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Phoenix-Contact/2839282/?qs=sGAEpiMZZMtFLzWzeHO23IJiw6ffsNhW1K65KXNmRjU%3d">2839282</a><br />
  2880. <br />
  2881. <div style="width: 100%; text-align: center;">
  2882. </div>
  2883. <div style="width: 100%; text-align: center;">
  2884. </div>
  2885. </div>
  2886. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../Phoenix-Contact">Phoenix Contact</a>
  2887. </td><td>浪涌抑制器 PT-BE/FM
  2888. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2889. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Phoenix-Surge-Protection-for-Measurement-Control/">了解更多</a>
  2890. </div>
  2891. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2892. </div>
  2893. </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;Phoenix Contact&quot;,&quot;651-2839282 | 2839282&quot;]);" href="http://www.phoenixcontact.com/us/products/2839282/pdf" target="_blank">数据表</a>
  2894. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">65<br/>有库存</span>
  2895. <table>
  2896. <tr align="center">
  2897. <td style="padding-top: 5px">
  2898. </td>
  2899. </tr>
  2900. <tr align="center">
  2901. <td style="padding-top: 5px; padding-bottom: 5px">
  2902. </td>
  2903. </tr>
  2904. </table></td><td>
  2905. <table class="PriceBreaks" cellspacing="0" border="0">
  2906. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2907. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2908. </td>
  2909. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2910. </td>
  2911. </tr>
  2912. <tr>
  2913. <td class="PriceBreakQuantity">
  2914. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  2915. </td>
  2916. <td class="PriceBreakPrice">
  2917. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥283.0113</span>
  2918. </td>
  2919. </tr>
  2920. <tr>
  2921. <td class="PriceBreakQuantity">
  2922. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,5);">5:</a>
  2923. </td>
  2924. <td class="PriceBreakPrice">
  2925. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥268.7607</span>
  2926. </td>
  2927. </tr>
  2928. <tr>
  2929. <td class="PriceBreakQuantity">
  2930. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
  2931. </td>
  2932. <td class="PriceBreakPrice">
  2933. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥260.3718</span>
  2934. </td>
  2935. </tr>
  2936. <tr>
  2937. <td class="PriceBreakQuantity">
  2938. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  2939. </td>
  2940. <td class="PriceBreakPrice">
  2941. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥252.1233</span>
  2942. </td>
  2943. </tr>
  2944. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2945. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2946. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(9,50);">50:</a>
  2947. </td>
  2948. <td class="PriceBreakPrice">
  2949. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Phoenix-Contact/2839282/?qs=sGAEpiMZZMtFLzWzeHO23IJiw6ffsNhW1K65KXNmRjU%3d">查看</a>
  2950. </td>
  2951. </tr>
  2952. <tr>
  2953. <td><br /></td>
  2954. </tr>
  2955. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2956. <td colspan="2" style="text-align: center;">
  2957. </td>
  2958. </tr>
  2959. </table>
  2960. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy&#39;)">
  2961. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(9,this.value);" /><br />
  2962. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 9);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy" title="购买 2839282" class="buy-button" /><br />
  2963. <table cellspacing="0" border="0" style="width: 100%;">
  2964. <tr>
  2965. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2966. 最低:
  2967. </td>
  2968. <td style="padding-left: 2px; text-align: left;">
  2969. 1
  2970. </td>
  2971. </tr>
  2972. <tr>
  2973. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2974. 多个:
  2975. </td>
  2976. <td style="padding-left: 2px; text-align: left;">
  2977. 1
  2978. </td>
  2979. </tr>
  2980. </table>
  2981. </div>
  2982. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  2983. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2984. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=WBPkLSvD3uu7m9UOoqExqA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=WBPkLSvD3uu7m9UOoqExqA%3d%3d" target="_blank">详细信息</a>
  2985. </div>
  2986. </td><td>250 V
  2987. </td><td>26 A
  2988. </td><td>- 40 C to + 85 C
  2989. </td><td>SMD/SMT
  2990. </td><td>
  2991. </td>
  2992. </tr><tr class="SearchResultsRowEven" data-partnumber="511-SMP100LC-65" data-index="12">
  2993. <td class="td-select" align="center">
  2994. <div style="padding: 5px 5px 0 5px;">
  2995. <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>
  2996. </div>
  2997. </td><td><a href='/ProductDetail/STMicroelectronics/SMP100LC-65/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiiZQaE0XjW9vM%3d'><img title='STMicroelectronics SMP100LC-65' alt='STMicroelectronics SMP100LC-65' id=2228493 src='/images/stmicroelectronics/sm/smb.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/smb.jpg</div></a></td><td>
  2998. <div style="text-align:left;">
  2999. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/SMP100LC-65/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiiZQaE0XjW9vM%3d">511-SMP100LC-65</a><br />
  3000. <br />
  3001. <br />
  3002. 要购买完整 卷轴,请订购 2500 的倍数:
  3003. </div></td><td>
  3004. <div class="mfrDiv">
  3005. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/SMP100LC-65/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiiZQaE0XjW9vM%3d">SMP100LC-65</a><br />
  3006. <br />
  3007. <div style="width: 100%; text-align: center;">
  3008. </div>
  3009. <div style="width: 100%; text-align: center;">
  3010. <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/>
  3011. <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>
  3012. </div>
  3013. </div>
  3014. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
  3015. </td><td>浪涌抑制器 65V 50uA Bidirect
  3016. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3017. </div>
  3018. </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;STMicroelectronics&quot;,&quot;511-SMP100LC-65 | SMP100LC-65&quot;]);" href="http://www.mouser.com/ds/2/389/CD00002051-250306.pdf" target="_blank">数据表</a>
  3019. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">5,259<br/>有库存</span>
  3020. <table>
  3021. <tr align="center">
  3022. <td style="padding-top: 5px">
  3023. </td>
  3024. </tr>
  3025. <tr align="center">
  3026. <td style="padding-top: 5px; padding-bottom: 5px">
  3027. </td>
  3028. </tr>
  3029. </table></td><td>
  3030. <table class="PriceBreaks" cellspacing="0" border="0">
  3031. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3032. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3033. </td>
  3034. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3035. </td>
  3036. </tr>
  3037. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3038. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3039. 剪切带
  3040. </td>
  3041. </tr>
  3042. <tr>
  3043. <td class="PriceBreakQuantity">
  3044. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  3045. </td>
  3046. <td class="PriceBreakPrice">
  3047. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥6.7743</span>
  3048. </td>
  3049. </tr>
  3050. <tr>
  3051. <td class="PriceBreakQuantity">
  3052. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  3053. </td>
  3054. <td class="PriceBreakPrice">
  3055. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.4756</span>
  3056. </td>
  3057. </tr>
  3058. <tr>
  3059. <td class="PriceBreakQuantity">
  3060. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,100);">100:</a>
  3061. </td>
  3062. <td class="PriceBreakPrice">
  3063. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥4.2003</span>
  3064. </td>
  3065. </tr>
  3066. <tr>
  3067. <td class="PriceBreakQuantity">
  3068. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,500);">500:</a>
  3069. </td>
  3070. <td class="PriceBreakPrice">
  3071. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3.7206</span>
  3072. </td>
  3073. </tr>
  3074. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3075. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3076. 卷轴
  3077. </td>
  3078. </tr>
  3079. <tr>
  3080. <td class="PriceBreakQuantity">
  3081. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(10,2500);">2,500:</a>
  3082. </td>
  3083. <td class="PriceBreakPrice">
  3084. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.5974</span>
  3085. </td>
  3086. </tr>
  3087. <tr>
  3088. <td class="PriceBreakQuantity">
  3089. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(10,10000);">10,000:</a>
  3090. </td>
  3091. <td class="PriceBreakPrice">
  3092. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/STMicroelectronics/SMP100LC-65/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiiZQaE0XjW9vM%3d' >查看</a></span>
  3093. </td>
  3094. </tr>
  3095. <tr>
  3096. <td><br /></td>
  3097. </tr>
  3098. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3099. <td colspan="2" style="text-align: center;">
  3100. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/STMicroelectronics/SMP100LC-65/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiiZQaE0XjW9vM%3d">MouseReel 提供服务支持</a>
  3101. </td>
  3102. </tr>
  3103. </table>
  3104. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_btnBuy&#39;)">
  3105. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(10,this.value);" /><br />
  3106. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 10);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_btnBuy" title="购买 SMP100LC-65" class="buy-button" /><br />
  3107. <table cellspacing="0" border="0" style="width: 100%;">
  3108. <tr>
  3109. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3110. 最低:
  3111. </td>
  3112. <td style="padding-left: 2px; text-align: left;">
  3113. 1
  3114. </td>
  3115. </tr>
  3116. <tr>
  3117. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3118. 多个:
  3119. </td>
  3120. <td style="padding-left: 2px; text-align: left;">
  3121. 1
  3122. </td>
  3123. </tr>
  3124. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_trReel">
  3125. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3126. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(10,2500);">卷轴</a>:
  3127. </td>
  3128. <td style="padding-left: 2px; text-align: left;">
  3129. <em class="SearchResultsReel">
  3130. 2,500
  3131. </em>
  3132. </td>
  3133. </tr>
  3134. </table>
  3135. </div>
  3136. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  3137. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3138. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=O%2fyjnYv%2fXBrmQdDGIo0TLw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=O%2fyjnYv%2fXBrmQdDGIo0TLw%3d%3d" target="_blank">详细信息</a>
  3139. </div>
  3140. </td><td>
  3141. </td><td>
  3142. </td><td>
  3143. </td><td>SMD/SMT
  3144. </td><td>DO-214AA
  3145. </td>
  3146. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-2905228" data-index="13">
  3147. <td class="td-select" align="center">
  3148. <div style="padding: 5px 5px 0 5px;">
  3149. <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>
  3150. </div>
  3151. </td><td><a href='/ProductDetail/Phoenix-Contact/2905228/?qs=sGAEpiMZZMtFLzWzeHO23FHHJr3zaOzNYC0vOB19dq4%3d'><img title='Phoenix Contact 2905228' alt='Phoenix Contact 2905228' id=1599174599 src='/images/phoenixcontact/sm/2905228_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/phoenixcontact/images/2905228_DSL.jpg</div></a></td><td>
  3152. <div style="text-align:left;">
  3153. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Phoenix-Contact/2905228/?qs=sGAEpiMZZMtFLzWzeHO23FHHJr3zaOzNYC0vOB19dq4%3d">651-2905228</a><br />
  3154. <br />
  3155. <br />
  3156. </div></td><td>
  3157. <div class="mfrDiv">
  3158. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Phoenix-Contact/2905228/?qs=sGAEpiMZZMtFLzWzeHO23FHHJr3zaOzNYC0vOB19dq4%3d">2905228</a><br />
  3159. <br />
  3160. <div style="width: 100%; text-align: center;">
  3161. <span><img src="/images/icon-lc-new-at-mouser-sm.png" alt="Mouser 的新产品" /><br/>Mouser 的新产品</span><br/><br/>
  3162. </div>
  3163. <div style="width: 100%; text-align: center;">
  3164. </div>
  3165. </div>
  3166. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../Phoenix-Contact">Phoenix Contact</a>
  3167. </td><td>浪涌抑制器 PLT-SEC-T3-120-FM
  3168. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3169. </div>
  3170. </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;Phoenix Contact&quot;,&quot;651-2905228 | 2905228&quot;]);" href="http://www.mouser.com/ds/2/324/ItemDetail_2905228-885610.pdf" target="_blank">数据表</a>
  3171. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">18<br/>有库存</span>
  3172. <table>
  3173. <tr align="center">
  3174. <td style="padding-top: 5px">
  3175. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/Phoenix-Contact/2905228/?qs=sGAEpiMZZMtFLzWzeHO23FHHJr3zaOzNYC0vOB19dq4%3d">更多信息可用 </a>
  3176. </td>
  3177. </tr>
  3178. <tr align="center">
  3179. <td style="padding-top: 5px; padding-bottom: 5px">
  3180. </td>
  3181. </tr>
  3182. </table></td><td>
  3183. <table class="PriceBreaks" cellspacing="0" border="0">
  3184. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3185. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3186. </td>
  3187. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3188. </td>
  3189. </tr>
  3190. <tr>
  3191. <td class="PriceBreakQuantity">
  3192. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  3193. </td>
  3194. <td class="PriceBreakPrice">
  3195. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,147.4424</span>
  3196. </td>
  3197. </tr>
  3198. <tr>
  3199. <td class="PriceBreakQuantity">
  3200. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,5);">5:</a>
  3201. </td>
  3202. <td class="PriceBreakPrice">
  3203. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1,089.6795</span>
  3204. </td>
  3205. </tr>
  3206. <tr>
  3207. <td class="PriceBreakQuantity">
  3208. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
  3209. </td>
  3210. <td class="PriceBreakPrice">
  3211. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,055.6442</span>
  3212. </td>
  3213. </tr>
  3214. <tr>
  3215. <td class="PriceBreakQuantity">
  3216. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  3217. </td>
  3218. <td class="PriceBreakPrice">
  3219. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1,022.2992</span>
  3220. </td>
  3221. </tr>
  3222. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3223. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3224. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(11,50);">50:</a>
  3225. </td>
  3226. <td class="PriceBreakPrice">
  3227. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Phoenix-Contact/2905228/?qs=sGAEpiMZZMtFLzWzeHO23FHHJr3zaOzNYC0vOB19dq4%3d">查看</a>
  3228. </td>
  3229. </tr>
  3230. <tr>
  3231. <td><br /></td>
  3232. </tr>
  3233. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3234. <td colspan="2" style="text-align: center;">
  3235. </td>
  3236. </tr>
  3237. </table>
  3238. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy&#39;)">
  3239. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(11,this.value);" /><br />
  3240. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 11);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy" title="购买 2905228" class="buy-button" /><br />
  3241. <table cellspacing="0" border="0" style="width: 100%;">
  3242. <tr>
  3243. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3244. 最低:
  3245. </td>
  3246. <td style="padding-left: 2px; text-align: left;">
  3247. 1
  3248. </td>
  3249. </tr>
  3250. <tr>
  3251. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3252. 多个:
  3253. </td>
  3254. <td style="padding-left: 2px; text-align: left;">
  3255. 1
  3256. </td>
  3257. </tr>
  3258. </table>
  3259. </div>
  3260. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  3261. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3262. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=VanobAzH6ypY2JRPiOPJoA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=VanobAzH6ypY2JRPiOPJoA%3d%3d" target="_blank">详细信息</a>
  3263. </div>
  3264. </td><td>
  3265. </td><td>
  3266. </td><td>
  3267. </td><td>
  3268. </td><td>
  3269. </td>
  3270. </tr><tr class="SearchResultsRowEven" data-partnumber="511-SMP100LC-25" data-index="14">
  3271. <td class="td-select" align="center">
  3272. <div style="padding: 5px 5px 0 5px;">
  3273. <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>
  3274. </div>
  3275. </td><td><a href='/ProductDetail/STMicroelectronics/SMP100LC-25/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiiRkKX1TbYdFY%3d'><img title='STMicroelectronics SMP100LC-25' alt='STMicroelectronics SMP100LC-25' id=2228494 src='/images/stmicroelectronics/sm/smb.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/smb.jpg</div></a></td><td>
  3276. <div style="text-align:left;">
  3277. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/SMP100LC-25/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiiRkKX1TbYdFY%3d">511-SMP100LC-25</a><br />
  3278. <br />
  3279. <br />
  3280. 要购买完整 卷轴,请订购 2500 的倍数:
  3281. </div></td><td>
  3282. <div class="mfrDiv">
  3283. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/SMP100LC-25/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiiRkKX1TbYdFY%3d">SMP100LC-25</a><br />
  3284. <br />
  3285. <div style="width: 100%; text-align: center;">
  3286. </div>
  3287. <div style="width: 100%; text-align: center;">
  3288. <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/>
  3289. <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>
  3290. </div>
  3291. </div>
  3292. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
  3293. </td><td>浪涌抑制器 25V 50uA Bidirect
  3294. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3295. </div>
  3296. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;STMicroelectronics&quot;,&quot;511-SMP100LC-25 | SMP100LC-25&quot;]);" href="http://www.mouser.com/ds/2/389/CD00002051-250306.pdf" target="_blank">数据表</a>
  3297. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">4,484<br/>有库存</span>
  3298. <table>
  3299. <tr align="center">
  3300. <td style="padding-top: 5px">
  3301. </td>
  3302. </tr>
  3303. <tr align="center">
  3304. <td style="padding-top: 5px; padding-bottom: 5px">
  3305. </td>
  3306. </tr>
  3307. </table></td><td>
  3308. <table class="PriceBreaks" cellspacing="0" border="0">
  3309. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3310. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3311. </td>
  3312. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3313. </td>
  3314. </tr>
  3315. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3316. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3317. 剪切带
  3318. </td>
  3319. </tr>
  3320. <tr>
  3321. <td class="PriceBreakQuantity">
  3322. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  3323. </td>
  3324. <td class="PriceBreakPrice">
  3325. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥6.9264</span>
  3326. </td>
  3327. </tr>
  3328. <tr>
  3329. <td class="PriceBreakQuantity">
  3330. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,10);">10:</a>
  3331. </td>
  3332. <td class="PriceBreakPrice">
  3333. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.7798</span>
  3334. </td>
  3335. </tr>
  3336. <tr>
  3337. <td class="PriceBreakQuantity">
  3338. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  3339. </td>
  3340. <td class="PriceBreakPrice">
  3341. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.7323</span>
  3342. </td>
  3343. </tr>
  3344. <tr>
  3345. <td class="PriceBreakQuantity">
  3346. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,1000);">1,000:</a>
  3347. </td>
  3348. <td class="PriceBreakPrice">
  3349. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.9835</span>
  3350. </td>
  3351. </tr>
  3352. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3353. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3354. 卷轴
  3355. </td>
  3356. </tr>
  3357. <tr>
  3358. <td class="PriceBreakQuantity">
  3359. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(12,2500);">2,500:</a>
  3360. </td>
  3361. <td class="PriceBreakPrice">
  3362. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.5155</span>
  3363. </td>
  3364. </tr>
  3365. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl06_trViewMore">
  3366. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3367. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl06_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,10000);">10,000:</a>
  3368. </td>
  3369. <td class="PriceBreakPrice">
  3370. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/STMicroelectronics/SMP100LC-25/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiiRkKX1TbYdFY%3d">查看</a>
  3371. </td>
  3372. </tr>
  3373. <tr>
  3374. <td><br /></td>
  3375. </tr>
  3376. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3377. <td colspan="2" style="text-align: center;">
  3378. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/STMicroelectronics/SMP100LC-25/?qs=sGAEpiMZZMtFLzWzeHO23IZ0lZL76BiiRkKX1TbYdFY%3d">MouseReel 提供服务支持</a>
  3379. </td>
  3380. </tr>
  3381. </table>
  3382. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy&#39;)">
  3383. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(12,this.value);" /><br />
  3384. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 12);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy" title="购买 SMP100LC-25" class="buy-button" /><br />
  3385. <table cellspacing="0" border="0" style="width: 100%;">
  3386. <tr>
  3387. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3388. 最低:
  3389. </td>
  3390. <td style="padding-left: 2px; text-align: left;">
  3391. 1
  3392. </td>
  3393. </tr>
  3394. <tr>
  3395. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3396. 多个:
  3397. </td>
  3398. <td style="padding-left: 2px; text-align: left;">
  3399. 1
  3400. </td>
  3401. </tr>
  3402. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_trReel">
  3403. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3404. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(12,2500);">卷轴</a>:
  3405. </td>
  3406. <td style="padding-left: 2px; text-align: left;">
  3407. <em class="SearchResultsReel">
  3408. 2,500
  3409. </em>
  3410. </td>
  3411. </tr>
  3412. </table>
  3413. </div>
  3414. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  3415. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3416. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=O%2fyjnYv%2fXBoxkzRHTW4EMw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=O%2fyjnYv%2fXBoxkzRHTW4EMw%3d%3d" target="_blank">详细信息</a>
  3417. </div>
  3418. </td><td>
  3419. </td><td>
  3420. </td><td>
  3421. </td><td>SMD/SMT
  3422. </td><td>DO-214AA
  3423. </td>
  3424. </tr><tr class="SearchResultsRowOdd" data-partnumber="652-TBU-CA085-100-WH" data-index="15">
  3425. <td class="td-select" align="center">
  3426. <div style="padding: 5px 5px 0 5px;">
  3427. <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>
  3428. </div>
  3429. </td><td><a href='/ProductDetail/Bourns/TBU-CA085-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7J6dNYH8gMWc%3d'><img title='Bourns TBU-CA085-100-WH' alt='Bourns TBU-CA085-100-WH' id=453517601 src='/images/bourns/sm/tbu-ca.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/tbu-ca.jpg</div></a></td><td>
  3430. <div style="text-align:left;">
  3431. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/TBU-CA085-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7J6dNYH8gMWc%3d">652-TBU-CA085-100-WH</a><br />
  3432. <br />
  3433. <br />
  3434. 要购买完整 卷轴,请订购 3000 的倍数:
  3435. </div></td><td>
  3436. <div class="mfrDiv">
  3437. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/TBU-CA085-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7J6dNYH8gMWc%3d">TBU-CA085-100-WH</a><br />
  3438. <br />
  3439. <div style="width: 100%; text-align: center;">
  3440. </div>
  3441. <div style="width: 100%; text-align: center;">
  3442. </div>
  3443. </div>
  3444. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  3445. </td><td>浪涌抑制器 Bi-directional TBU
  3446. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3447. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Bourns_TBU">了解更多</a>
  3448. </div>
  3449. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3450. </div>
  3451. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Bourns&quot;,&quot;652-TBU-CA085-100-WH | TBU-CA085-100-WH&quot;]);" href="http://www.mouser.com/ds/2/54/BU-CA-778169.pdf" target="_blank">数据表</a>
  3452. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">4,690<br/>有库存</span>
  3453. <table>
  3454. <tr align="center">
  3455. <td style="padding-top: 5px">
  3456. </td>
  3457. </tr>
  3458. <tr align="center">
  3459. <td style="padding-top: 5px; padding-bottom: 5px">
  3460. </td>
  3461. </tr>
  3462. </table></td><td>
  3463. <table class="PriceBreaks" cellspacing="0" border="0">
  3464. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3465. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3466. </td>
  3467. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3468. </td>
  3469. </tr>
  3470. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3471. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3472. 剪切带
  3473. </td>
  3474. </tr>
  3475. <tr>
  3476. <td class="PriceBreakQuantity">
  3477. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  3478. </td>
  3479. <td class="PriceBreakPrice">
  3480. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.4784</span>
  3481. </td>
  3482. </tr>
  3483. <tr>
  3484. <td class="PriceBreakQuantity">
  3485. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  3486. </td>
  3487. <td class="PriceBreakPrice">
  3488. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.9395</span>
  3489. </td>
  3490. </tr>
  3491. <tr>
  3492. <td class="PriceBreakQuantity">
  3493. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  3494. </td>
  3495. <td class="PriceBreakPrice">
  3496. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  3497. </td>
  3498. </tr>
  3499. <tr>
  3500. <td class="PriceBreakQuantity">
  3501. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,500);">500:</a>
  3502. </td>
  3503. <td class="PriceBreakPrice">
  3504. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6284</span>
  3505. </td>
  3506. </tr>
  3507. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3508. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3509. 卷轴
  3510. </td>
  3511. </tr>
  3512. <tr>
  3513. <td class="PriceBreakQuantity">
  3514. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(13,3000);">3,000:</a>
  3515. </td>
  3516. <td class="PriceBreakPrice">
  3517. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥5.5107</span>
  3518. </td>
  3519. </tr>
  3520. <tr>
  3521. <td class="PriceBreakQuantity">
  3522. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(13,9000);">9,000:</a>
  3523. </td>
  3524. <td class="PriceBreakPrice">
  3525. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/TBU-CA085-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7J6dNYH8gMWc%3d' >查看</a></span>
  3526. </td>
  3527. </tr>
  3528. <tr>
  3529. <td><br /></td>
  3530. </tr>
  3531. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3532. <td colspan="2" style="text-align: center;">
  3533. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/TBU-CA085-100-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7J6dNYH8gMWc%3d">MouseReel 提供服务支持</a>
  3534. </td>
  3535. </tr>
  3536. </table>
  3537. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy&#39;)">
  3538. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(13,this.value);" /><br />
  3539. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 13);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy" title="购买 TBU-CA085-100-WH" class="buy-button" /><br />
  3540. <table cellspacing="0" border="0" style="width: 100%;">
  3541. <tr>
  3542. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3543. 最低:
  3544. </td>
  3545. <td style="padding-left: 2px; text-align: left;">
  3546. 1
  3547. </td>
  3548. </tr>
  3549. <tr>
  3550. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3551. 多个:
  3552. </td>
  3553. <td style="padding-left: 2px; text-align: left;">
  3554. 1
  3555. </td>
  3556. </tr>
  3557. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_trReel">
  3558. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3559. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(13,3000);">卷轴</a>:
  3560. </td>
  3561. <td style="padding-left: 2px; text-align: left;">
  3562. <em class="SearchResultsReel">
  3563. 3,000
  3564. </em>
  3565. </td>
  3566. </tr>
  3567. </table>
  3568. </div>
  3569. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  3570. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3571. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGCwsuBO71fNPA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGCwsuBO71fNPA%3d%3d" target="_blank">详细信息</a>
  3572. </div>
  3573. </td><td>
  3574. </td><td>100 mA
  3575. </td><td>- 40 C to + 125 C
  3576. </td><td>Solder Pad
  3577. </td><td>DFN
  3578. </td>
  3579. </tr><tr class="SearchResultsRowEven" data-partnumber="652-TBU-CA085-300-WH" data-index="16">
  3580. <td class="td-select" align="center">
  3581. <div style="padding: 5px 5px 0 5px;">
  3582. <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>
  3583. </div>
  3584. </td><td><a href='/ProductDetail/Bourns/TBU-CA085-300-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7U%2f24iRvIXZI%3d'><img title='Bourns TBU-CA085-300-WH' alt='Bourns TBU-CA085-300-WH' id=453517605 src='/images/bourns/sm/tbu-ca.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/tbu-ca.jpg</div></a></td><td>
  3585. <div style="text-align:left;">
  3586. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/TBU-CA085-300-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7U%2f24iRvIXZI%3d">652-TBU-CA085-300-WH</a><br />
  3587. <br />
  3588. <br />
  3589. 要购买完整 卷轴,请订购 3000 的倍数:
  3590. </div></td><td>
  3591. <div class="mfrDiv">
  3592. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/TBU-CA085-300-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7U%2f24iRvIXZI%3d">TBU-CA085-300-WH</a><br />
  3593. <br />
  3594. <div style="width: 100%; text-align: center;">
  3595. </div>
  3596. <div style="width: 100%; text-align: center;">
  3597. </div>
  3598. </div>
  3599. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  3600. </td><td>浪涌抑制器 Bi-directional TBU
  3601. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3602. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Bourns_TBU">了解更多</a>
  3603. </div>
  3604. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3605. </div>
  3606. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Bourns&quot;,&quot;652-TBU-CA085-300-WH | TBU-CA085-300-WH&quot;]);" href="http://www.mouser.com/ds/2/54/BU-CA-778169.pdf" target="_blank">数据表</a>
  3607. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">3,596<br/>有库存</span>
  3608. <table>
  3609. <tr align="center">
  3610. <td style="padding-top: 5px">
  3611. </td>
  3612. </tr>
  3613. <tr align="center">
  3614. <td style="padding-top: 5px; padding-bottom: 5px">
  3615. </td>
  3616. </tr>
  3617. </table></td><td>
  3618. <table class="PriceBreaks" cellspacing="0" border="0">
  3619. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3620. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3621. </td>
  3622. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3623. </td>
  3624. </tr>
  3625. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3626. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3627. 剪切带
  3628. </td>
  3629. </tr>
  3630. <tr>
  3631. <td class="PriceBreakQuantity">
  3632. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  3633. </td>
  3634. <td class="PriceBreakPrice">
  3635. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.4784</span>
  3636. </td>
  3637. </tr>
  3638. <tr>
  3639. <td class="PriceBreakQuantity">
  3640. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,10);">10:</a>
  3641. </td>
  3642. <td class="PriceBreakPrice">
  3643. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.9395</span>
  3644. </td>
  3645. </tr>
  3646. <tr>
  3647. <td class="PriceBreakQuantity">
  3648. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
  3649. </td>
  3650. <td class="PriceBreakPrice">
  3651. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  3652. </td>
  3653. </tr>
  3654. <tr>
  3655. <td class="PriceBreakQuantity">
  3656. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,500);">500:</a>
  3657. </td>
  3658. <td class="PriceBreakPrice">
  3659. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6284</span>
  3660. </td>
  3661. </tr>
  3662. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3663. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3664. 卷轴
  3665. </td>
  3666. </tr>
  3667. <tr>
  3668. <td class="PriceBreakQuantity">
  3669. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(14,3000);">3,000:</a>
  3670. </td>
  3671. <td class="PriceBreakPrice">
  3672. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥5.5107</span>
  3673. </td>
  3674. </tr>
  3675. <tr>
  3676. <td class="PriceBreakQuantity">
  3677. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(14,9000);">9,000:</a>
  3678. </td>
  3679. <td class="PriceBreakPrice">
  3680. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/TBU-CA085-300-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7U%2f24iRvIXZI%3d' >查看</a></span>
  3681. </td>
  3682. </tr>
  3683. <tr>
  3684. <td><br /></td>
  3685. </tr>
  3686. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3687. <td colspan="2" style="text-align: center;">
  3688. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/TBU-CA085-300-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7U%2f24iRvIXZI%3d">MouseReel 提供服务支持</a>
  3689. </td>
  3690. </tr>
  3691. </table>
  3692. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy&#39;)">
  3693. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(14,this.value);" /><br />
  3694. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 14);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy" title="购买 TBU-CA085-300-WH" class="buy-button" /><br />
  3695. <table cellspacing="0" border="0" style="width: 100%;">
  3696. <tr>
  3697. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3698. 最低:
  3699. </td>
  3700. <td style="padding-left: 2px; text-align: left;">
  3701. 1
  3702. </td>
  3703. </tr>
  3704. <tr>
  3705. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3706. 多个:
  3707. </td>
  3708. <td style="padding-left: 2px; text-align: left;">
  3709. 1
  3710. </td>
  3711. </tr>
  3712. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_trReel">
  3713. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3714. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(14,3000);">卷轴</a>:
  3715. </td>
  3716. <td style="padding-left: 2px; text-align: left;">
  3717. <em class="SearchResultsReel">
  3718. 3,000
  3719. </em>
  3720. </td>
  3721. </tr>
  3722. </table>
  3723. </div>
  3724. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  3725. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3726. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGC5vh3ZMlLivw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGC5vh3ZMlLivw%3d%3d" target="_blank">详细信息</a>
  3727. </div>
  3728. </td><td>
  3729. </td><td>300 mA
  3730. </td><td>- 40 C to + 125 C
  3731. </td><td>Solder Pad
  3732. </td><td>DFN
  3733. </td>
  3734. </tr><tr class="SearchResultsRowOdd" data-partnumber="652-TBU-CA065-050-WH" data-index="17">
  3735. <td class="td-select" align="center">
  3736. <div style="padding: 5px 5px 0 5px;">
  3737. <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>
  3738. </div>
  3739. </td><td><a href='/ProductDetail/Bourns/TBU-CA065-050-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7aCT6%2fcdaGs4%3d'><img title='Bourns TBU-CA065-050-WH' alt='Bourns TBU-CA065-050-WH' id=453517589 src='/images/bourns/sm/tbu-ca.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/tbu-ca.jpg</div></a></td><td>
  3740. <div style="text-align:left;">
  3741. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/TBU-CA065-050-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7aCT6%2fcdaGs4%3d">652-TBU-CA065-050-WH</a><br />
  3742. <br />
  3743. <br />
  3744. 要购买完整 卷轴,请订购 3000 的倍数:
  3745. </div></td><td>
  3746. <div class="mfrDiv">
  3747. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/TBU-CA065-050-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7aCT6%2fcdaGs4%3d">TBU-CA065-050-WH</a><br />
  3748. <br />
  3749. <div style="width: 100%; text-align: center;">
  3750. </div>
  3751. <div style="width: 100%; text-align: center;">
  3752. </div>
  3753. </div>
  3754. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  3755. </td><td>浪涌抑制器 Bi-directional TBU
  3756. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3757. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Bourns_TBU">了解更多</a>
  3758. </div>
  3759. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3760. </div>
  3761. </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;Bourns&quot;,&quot;652-TBU-CA065-050-WH | TBU-CA065-050-WH&quot;]);" href="http://www.mouser.com/ds/2/54/BU-CA-778169.pdf" target="_blank">数据表</a>
  3762. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">3,253<br/>有库存</span>
  3763. <table>
  3764. <tr align="center">
  3765. <td style="padding-top: 5px">
  3766. </td>
  3767. </tr>
  3768. <tr align="center">
  3769. <td style="padding-top: 5px; padding-bottom: 5px">
  3770. </td>
  3771. </tr>
  3772. </table></td><td>
  3773. <table class="PriceBreaks" cellspacing="0" border="0">
  3774. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3775. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3776. </td>
  3777. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3778. </td>
  3779. </tr>
  3780. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3781. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3782. 剪切带
  3783. </td>
  3784. </tr>
  3785. <tr>
  3786. <td class="PriceBreakQuantity">
  3787. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  3788. </td>
  3789. <td class="PriceBreakPrice">
  3790. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.4784</span>
  3791. </td>
  3792. </tr>
  3793. <tr>
  3794. <td class="PriceBreakQuantity">
  3795. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,10);">10:</a>
  3796. </td>
  3797. <td class="PriceBreakPrice">
  3798. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.9395</span>
  3799. </td>
  3800. </tr>
  3801. <tr>
  3802. <td class="PriceBreakQuantity">
  3803. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,100);">100:</a>
  3804. </td>
  3805. <td class="PriceBreakPrice">
  3806. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  3807. </td>
  3808. </tr>
  3809. <tr>
  3810. <td class="PriceBreakQuantity">
  3811. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,500);">500:</a>
  3812. </td>
  3813. <td class="PriceBreakPrice">
  3814. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6284</span>
  3815. </td>
  3816. </tr>
  3817. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3818. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3819. 卷轴
  3820. </td>
  3821. </tr>
  3822. <tr>
  3823. <td class="PriceBreakQuantity">
  3824. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(15,3000);">3,000:</a>
  3825. </td>
  3826. <td class="PriceBreakPrice">
  3827. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥5.5107</span>
  3828. </td>
  3829. </tr>
  3830. <tr>
  3831. <td class="PriceBreakQuantity">
  3832. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(15,9000);">9,000:</a>
  3833. </td>
  3834. <td class="PriceBreakPrice">
  3835. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/TBU-CA065-050-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7aCT6%2fcdaGs4%3d' >查看</a></span>
  3836. </td>
  3837. </tr>
  3838. <tr>
  3839. <td><br /></td>
  3840. </tr>
  3841. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3842. <td colspan="2" style="text-align: center;">
  3843. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/TBU-CA065-050-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7aCT6%2fcdaGs4%3d">MouseReel 提供服务支持</a>
  3844. </td>
  3845. </tr>
  3846. </table>
  3847. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_btnBuy&#39;)">
  3848. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(15,this.value);" /><br />
  3849. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 15);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_btnBuy" title="购买 TBU-CA065-050-WH" class="buy-button" /><br />
  3850. <table cellspacing="0" border="0" style="width: 100%;">
  3851. <tr>
  3852. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3853. 最低:
  3854. </td>
  3855. <td style="padding-left: 2px; text-align: left;">
  3856. 1
  3857. </td>
  3858. </tr>
  3859. <tr>
  3860. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3861. 多个:
  3862. </td>
  3863. <td style="padding-left: 2px; text-align: left;">
  3864. 1
  3865. </td>
  3866. </tr>
  3867. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_trReel">
  3868. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3869. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(15,3000);">卷轴</a>:
  3870. </td>
  3871. <td style="padding-left: 2px; text-align: left;">
  3872. <em class="SearchResultsReel">
  3873. 3,000
  3874. </em>
  3875. </td>
  3876. </tr>
  3877. </table>
  3878. </div>
  3879. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  3880. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3881. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGC45o2UyYcjxQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGC45o2UyYcjxQ%3d%3d" target="_blank">详细信息</a>
  3882. </div>
  3883. </td><td>
  3884. </td><td>50 mA
  3885. </td><td>- 40 C to + 125 C
  3886. </td><td>Solder Pad
  3887. </td><td>DFN
  3888. </td>
  3889. </tr><tr class="SearchResultsRowEven" data-partnumber="652-TBU-CA065-500-WH" data-index="18">
  3890. <td class="td-select" align="center">
  3891. <div style="padding: 5px 5px 0 5px;">
  3892. <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>
  3893. </div>
  3894. </td><td><a href='/ProductDetail/Bourns/TBU-CA065-500-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7%2fYWPuYbzhes%3d'><img title='Bourns TBU-CA065-500-WH' alt='Bourns TBU-CA065-500-WH' id=453517597 src='/images/bourns/sm/tbu-ca.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/tbu-ca.jpg</div></a></td><td>
  3895. <div style="text-align:left;">
  3896. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/TBU-CA065-500-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7%2fYWPuYbzhes%3d">652-TBU-CA065-500-WH</a><br />
  3897. <br />
  3898. <br />
  3899. 要购买完整 卷轴,请订购 3000 的倍数:
  3900. </div></td><td>
  3901. <div class="mfrDiv">
  3902. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/TBU-CA065-500-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7%2fYWPuYbzhes%3d">TBU-CA065-500-WH</a><br />
  3903. <br />
  3904. <div style="width: 100%; text-align: center;">
  3905. </div>
  3906. <div style="width: 100%; text-align: center;">
  3907. </div>
  3908. </div>
  3909. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  3910. </td><td>浪涌抑制器 Bi-directional TBU
  3911. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3912. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Bourns_TBU">了解更多</a>
  3913. </div>
  3914. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3915. </div>
  3916. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Bourns&quot;,&quot;652-TBU-CA065-500-WH | TBU-CA065-500-WH&quot;]);" href="http://www.mouser.com/ds/2/54/BU-CA-778169.pdf" target="_blank">数据表</a>
  3917. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">5,811<br/>有库存</span>
  3918. <table>
  3919. <tr align="center">
  3920. <td style="padding-top: 5px">
  3921. </td>
  3922. </tr>
  3923. <tr align="center">
  3924. <td style="padding-top: 5px; padding-bottom: 5px">
  3925. </td>
  3926. </tr>
  3927. </table></td><td>
  3928. <table class="PriceBreaks" cellspacing="0" border="0">
  3929. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3930. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3931. </td>
  3932. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3933. </td>
  3934. </tr>
  3935. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3936. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3937. 剪切带
  3938. </td>
  3939. </tr>
  3940. <tr>
  3941. <td class="PriceBreakQuantity">
  3942. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  3943. </td>
  3944. <td class="PriceBreakPrice">
  3945. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.4784</span>
  3946. </td>
  3947. </tr>
  3948. <tr>
  3949. <td class="PriceBreakQuantity">
  3950. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  3951. </td>
  3952. <td class="PriceBreakPrice">
  3953. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.9395</span>
  3954. </td>
  3955. </tr>
  3956. <tr>
  3957. <td class="PriceBreakQuantity">
  3958. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,100);">100:</a>
  3959. </td>
  3960. <td class="PriceBreakPrice">
  3961. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  3962. </td>
  3963. </tr>
  3964. <tr>
  3965. <td class="PriceBreakQuantity">
  3966. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,500);">500:</a>
  3967. </td>
  3968. <td class="PriceBreakPrice">
  3969. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6284</span>
  3970. </td>
  3971. </tr>
  3972. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3973. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3974. 卷轴
  3975. </td>
  3976. </tr>
  3977. <tr>
  3978. <td class="PriceBreakQuantity">
  3979. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(16,3000);">3,000:</a>
  3980. </td>
  3981. <td class="PriceBreakPrice">
  3982. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥5.5107</span>
  3983. </td>
  3984. </tr>
  3985. <tr>
  3986. <td class="PriceBreakQuantity">
  3987. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(16,9000);">9,000:</a>
  3988. </td>
  3989. <td class="PriceBreakPrice">
  3990. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/TBU-CA065-500-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7%2fYWPuYbzhes%3d' >查看</a></span>
  3991. </td>
  3992. </tr>
  3993. <tr>
  3994. <td><br /></td>
  3995. </tr>
  3996. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3997. <td colspan="2" style="text-align: center;">
  3998. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/TBU-CA065-500-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7%2fYWPuYbzhes%3d">MouseReel 提供服务支持</a>
  3999. </td>
  4000. </tr>
  4001. </table>
  4002. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_btnBuy&#39;)">
  4003. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(16,this.value);" /><br />
  4004. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 16);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_btnBuy" title="购买 TBU-CA065-500-WH" class="buy-button" /><br />
  4005. <table cellspacing="0" border="0" style="width: 100%;">
  4006. <tr>
  4007. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4008. 最低:
  4009. </td>
  4010. <td style="padding-left: 2px; text-align: left;">
  4011. 1
  4012. </td>
  4013. </tr>
  4014. <tr>
  4015. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4016. 多个:
  4017. </td>
  4018. <td style="padding-left: 2px; text-align: left;">
  4019. 1
  4020. </td>
  4021. </tr>
  4022. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_trReel">
  4023. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4024. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(16,3000);">卷轴</a>:
  4025. </td>
  4026. <td style="padding-left: 2px; text-align: left;">
  4027. <em class="SearchResultsReel">
  4028. 3,000
  4029. </em>
  4030. </td>
  4031. </tr>
  4032. </table>
  4033. </div>
  4034. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  4035. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4036. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGDMvO4cFUG1ZQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGDMvO4cFUG1ZQ%3d%3d" target="_blank">详细信息</a>
  4037. </div>
  4038. </td><td>
  4039. </td><td>500 mA
  4040. </td><td>- 40 C to + 125 C
  4041. </td><td>Solder Pad
  4042. </td><td>DFN
  4043. </td>
  4044. </tr><tr class="SearchResultsRowOdd" data-partnumber="652-TBU-CA085-500-WH" data-index="19">
  4045. <td class="td-select" align="center">
  4046. <div style="padding: 5px 5px 0 5px;">
  4047. <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>
  4048. </div>
  4049. </td><td><a href='/ProductDetail/Bourns/TBU-CA085-500-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7bJYSAS7fA1c%3d'><img title='Bourns TBU-CA085-500-WH' alt='Bourns TBU-CA085-500-WH' id=453517607 src='/images/bourns/sm/tbu-ca.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/tbu-ca.jpg</div></a></td><td>
  4050. <div style="text-align:left;">
  4051. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/TBU-CA085-500-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7bJYSAS7fA1c%3d">652-TBU-CA085-500-WH</a><br />
  4052. <br />
  4053. <br />
  4054. 要购买完整 卷轴,请订购 3000 的倍数:
  4055. </div></td><td>
  4056. <div class="mfrDiv">
  4057. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/TBU-CA085-500-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7bJYSAS7fA1c%3d">TBU-CA085-500-WH</a><br />
  4058. <br />
  4059. <div style="width: 100%; text-align: center;">
  4060. </div>
  4061. <div style="width: 100%; text-align: center;">
  4062. </div>
  4063. </div>
  4064. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  4065. </td><td>浪涌抑制器 Bi-directional TBU
  4066. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4067. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Bourns_TBU">了解更多</a>
  4068. </div>
  4069. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4070. </div>
  4071. </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;Bourns&quot;,&quot;652-TBU-CA085-500-WH | TBU-CA085-500-WH&quot;]);" href="http://www.mouser.com/ds/2/54/BU-CA-778169.pdf" target="_blank">数据表</a>
  4072. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">3,168<br/>有库存</span>
  4073. <table>
  4074. <tr align="center">
  4075. <td style="padding-top: 5px">
  4076. </td>
  4077. </tr>
  4078. <tr align="center">
  4079. <td style="padding-top: 5px; padding-bottom: 5px">
  4080. </td>
  4081. </tr>
  4082. </table></td><td>
  4083. <table class="PriceBreaks" cellspacing="0" border="0">
  4084. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4085. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4086. </td>
  4087. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4088. </td>
  4089. </tr>
  4090. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4091. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4092. 剪切带
  4093. </td>
  4094. </tr>
  4095. <tr>
  4096. <td class="PriceBreakQuantity">
  4097. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  4098. </td>
  4099. <td class="PriceBreakPrice">
  4100. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.4784</span>
  4101. </td>
  4102. </tr>
  4103. <tr>
  4104. <td class="PriceBreakQuantity">
  4105. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,10);">10:</a>
  4106. </td>
  4107. <td class="PriceBreakPrice">
  4108. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.9395</span>
  4109. </td>
  4110. </tr>
  4111. <tr>
  4112. <td class="PriceBreakQuantity">
  4113. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,100);">100:</a>
  4114. </td>
  4115. <td class="PriceBreakPrice">
  4116. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  4117. </td>
  4118. </tr>
  4119. <tr>
  4120. <td class="PriceBreakQuantity">
  4121. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,500);">500:</a>
  4122. </td>
  4123. <td class="PriceBreakPrice">
  4124. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.6284</span>
  4125. </td>
  4126. </tr>
  4127. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4128. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4129. 卷轴
  4130. </td>
  4131. </tr>
  4132. <tr>
  4133. <td class="PriceBreakQuantity">
  4134. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(17,3000);">3,000:</a>
  4135. </td>
  4136. <td class="PriceBreakPrice">
  4137. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥5.5107</span>
  4138. </td>
  4139. </tr>
  4140. <tr>
  4141. <td class="PriceBreakQuantity">
  4142. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(17,9000);">9,000:</a>
  4143. </td>
  4144. <td class="PriceBreakPrice">
  4145. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/TBU-CA085-500-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7bJYSAS7fA1c%3d' >查看</a></span>
  4146. </td>
  4147. </tr>
  4148. <tr>
  4149. <td><br /></td>
  4150. </tr>
  4151. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4152. <td colspan="2" style="text-align: center;">
  4153. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/TBU-CA085-500-WH/?qs=sGAEpiMZZMtFLzWzeHO23LmsORJ7FDZ7bJYSAS7fA1c%3d">MouseReel 提供服务支持</a>
  4154. </td>
  4155. </tr>
  4156. </table>
  4157. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_btnBuy&#39;)">
  4158. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(17,this.value);" /><br />
  4159. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 17);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_btnBuy" title="购买 TBU-CA085-500-WH" class="buy-button" /><br />
  4160. <table cellspacing="0" border="0" style="width: 100%;">
  4161. <tr>
  4162. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4163. 最低:
  4164. </td>
  4165. <td style="padding-left: 2px; text-align: left;">
  4166. 1
  4167. </td>
  4168. </tr>
  4169. <tr>
  4170. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4171. 多个:
  4172. </td>
  4173. <td style="padding-left: 2px; text-align: left;">
  4174. 1
  4175. </td>
  4176. </tr>
  4177. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_trReel">
  4178. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4179. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(17,3000);">卷轴</a>:
  4180. </td>
  4181. <td style="padding-left: 2px; text-align: left;">
  4182. <em class="SearchResultsReel">
  4183. 3,000
  4184. </em>
  4185. </td>
  4186. </tr>
  4187. </table>
  4188. </div>
  4189. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  4190. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4191. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGCj23SxYpzppw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=1MMv1pxlgGCj23SxYpzppw%3d%3d" target="_blank">详细信息</a>
  4192. </div>
  4193. </td><td>
  4194. </td><td>500 mA
  4195. </td><td>- 40 C to + 125 C
  4196. </td><td>Solder Pad
  4197. </td><td>DFN
  4198. </td>
  4199. </tr><tr class="SearchResultsRowEven" data-partnumber="652-TBU-DT085-200-WH" data-index="20">
  4200. <td class="td-select" align="center">
  4201. <div style="padding: 5px 5px 0 5px;">
  4202. <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>
  4203. </div>
  4204. </td><td><a href='/ProductDetail/Bourns/TBU-DT085-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23N4QRnfWqH0Kq16F5hhWsmw%3d'><img title='Bourns TBU-DT085-200-WH' alt='Bourns TBU-DT085-200-WH' id=502437944 src='/images/bourns/sm/tbu-dt.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/tbu-dt.jpg</div></a></td><td>
  4205. <div style="text-align:left;">
  4206. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Bourns/TBU-DT085-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23N4QRnfWqH0Kq16F5hhWsmw%3d">652-TBU-DT085-200-WH</a><br />
  4207. <br />
  4208. <br />
  4209. 要购买完整 卷轴,请订购 3000 的倍数:
  4210. </div></td><td>
  4211. <div class="mfrDiv">
  4212. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Bourns/TBU-DT085-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23N4QRnfWqH0Kq16F5hhWsmw%3d">TBU-DT085-200-WH</a><br />
  4213. <br />
  4214. <div style="width: 100%; text-align: center;">
  4215. </div>
  4216. <div style="width: 100%; text-align: center;">
  4217. </div>
  4218. </div>
  4219. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../bourns">Bourns</a>
  4220. </td><td>浪涌抑制器 Dual Unidirectional TBU Device
  4221. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4222. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Bourns_TBU/">了解更多</a>
  4223. </div>
  4224. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4225. </div>
  4226. </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;Bourns&quot;,&quot;652-TBU-DT085-200-WH | TBU-DT085-200-WH&quot;]);" href="http://www.mouser.com/ds/2/54/BU-DT-778258.pdf" target="_blank">数据表</a>
  4227. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">5,237<br/>有库存</span>
  4228. <table>
  4229. <tr align="center">
  4230. <td style="padding-top: 5px">
  4231. </td>
  4232. </tr>
  4233. <tr align="center">
  4234. <td style="padding-top: 5px; padding-bottom: 5px">
  4235. </td>
  4236. </tr>
  4237. </table></td><td>
  4238. <table class="PriceBreaks" cellspacing="0" border="0">
  4239. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4240. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4241. </td>
  4242. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4243. </td>
  4244. </tr>
  4245. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4246. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4247. 剪切带
  4248. </td>
  4249. </tr>
  4250. <tr>
  4251. <td class="PriceBreakQuantity">
  4252. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  4253. </td>
  4254. <td class="PriceBreakPrice">
  4255. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥14.7069</span>
  4256. </td>
  4257. </tr>
  4258. <tr>
  4259. <td class="PriceBreakQuantity">
  4260. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,10);">10:</a>
  4261. </td>
  4262. <td class="PriceBreakPrice">
  4263. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥11.934</span>
  4264. </td>
  4265. </tr>
  4266. <tr>
  4267. <td class="PriceBreakQuantity">
  4268. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  4269. </td>
  4270. <td class="PriceBreakPrice">
  4271. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥9.5472</span>
  4272. </td>
  4273. </tr>
  4274. <tr>
  4275. <td class="PriceBreakQuantity">
  4276. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,500);">500:</a>
  4277. </td>
  4278. <td class="PriceBreakPrice">
  4279. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥8.3187</span>
  4280. </td>
  4281. </tr>
  4282. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4283. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4284. 卷轴
  4285. </td>
  4286. </tr>
  4287. <tr>
  4288. <td class="PriceBreakQuantity">
  4289. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(18,3000);">3,000:</a>
  4290. </td>
  4291. <td class="PriceBreakPrice">
  4292. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥6.0021</span>
  4293. </td>
  4294. </tr>
  4295. <tr>
  4296. <td class="PriceBreakQuantity">
  4297. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(18,9000);">9,000:</a>
  4298. </td>
  4299. <td class="PriceBreakPrice">
  4300. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/Bourns/TBU-DT085-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23N4QRnfWqH0Kq16F5hhWsmw%3d' >查看</a></span>
  4301. </td>
  4302. </tr>
  4303. <tr>
  4304. <td><br /></td>
  4305. </tr>
  4306. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4307. <td colspan="2" style="text-align: center;">
  4308. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/Bourns/TBU-DT085-200-WH/?qs=sGAEpiMZZMtFLzWzeHO23N4QRnfWqH0Kq16F5hhWsmw%3d">MouseReel 提供服务支持</a>
  4309. </td>
  4310. </tr>
  4311. </table>
  4312. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_btnBuy&#39;)">
  4313. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(18,this.value);" /><br />
  4314. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 18);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_btnBuy" title="购买 TBU-DT085-200-WH" class="buy-button" /><br />
  4315. <table cellspacing="0" border="0" style="width: 100%;">
  4316. <tr>
  4317. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4318. 最低:
  4319. </td>
  4320. <td style="padding-left: 2px; text-align: left;">
  4321. 1
  4322. </td>
  4323. </tr>
  4324. <tr>
  4325. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4326. 多个:
  4327. </td>
  4328. <td style="padding-left: 2px; text-align: left;">
  4329. 1
  4330. </td>
  4331. </tr>
  4332. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_trReel">
  4333. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4334. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(18,3000);">卷轴</a>:
  4335. </td>
  4336. <td style="padding-left: 2px; text-align: left;">
  4337. <em class="SearchResultsReel">
  4338. 3,000
  4339. </em>
  4340. </td>
  4341. </tr>
  4342. </table>
  4343. </div>
  4344. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  4345. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4346. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=NVrP39%252bDu7Hb6AK85NYUAw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=NVrP39%252bDu7Hb6AK85NYUAw%3d%3d" target="_blank">详细信息</a>
  4347. </div>
  4348. </td><td>
  4349. </td><td>200 mA
  4350. </td><td>- 40 C to + 85 C
  4351. </td><td>Solder Pad
  4352. </td><td>DFN
  4353. </td>
  4354. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-2807586" data-index="21">
  4355. <td class="td-select" align="center">
  4356. <div style="padding: 5px 5px 0 5px;">
  4357. <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>
  4358. </div>
  4359. </td><td><a href='/ProductDetail/Phoenix-Contact/2807586/?qs=sGAEpiMZZMtFLzWzeHO23M3FPo3GGhRCQhH%252boGEF9ek%3d'><img title='Phoenix Contact 2807586' alt='Phoenix Contact 2807586' id=2170788 src='/images/phoenixcontact/sm/34393_1000_int_04.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/phoenixcontact/images/34393_1000_int_04.jpg</div></a></td><td>
  4360. <div style="text-align:left;">
  4361. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Phoenix-Contact/2807586/?qs=sGAEpiMZZMtFLzWzeHO23M3FPo3GGhRCQhH%252boGEF9ek%3d">651-2807586</a><br />
  4362. <br />
  4363. <br />
  4364. </div></td><td>
  4365. <div class="mfrDiv">
  4366. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Phoenix-Contact/2807586/?qs=sGAEpiMZZMtFLzWzeHO23M3FPo3GGhRCQhH%252boGEF9ek%3d">2807586</a><br />
  4367. <br />
  4368. <div style="width: 100%; text-align: center;">
  4369. </div>
  4370. <div style="width: 100%; text-align: center;">
  4371. </div>
  4372. </div>
  4373. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../Phoenix-Contact">Phoenix Contact</a>
  4374. </td><td>浪涌抑制器 VAL-MS 120 ST
  4375. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4376. <img src="/Images/icon_ccn_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  4377. </div>
  4378. </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;Phoenix Contact&quot;,&quot;651-2807586 | 2807586&quot;]);" href="http://www.phoenixcontact.com/us/products/2807586/pdf" target="_blank">数据表</a>
  4379. </td><td>
  4380. <table>
  4381. <tr align="center">
  4382. <td style="padding-top: 5px">
  4383. </td>
  4384. </tr>
  4385. <tr align="center">
  4386. <td style="padding-top: 5px; padding-bottom: 5px">
  4387. </td>
  4388. </tr>
  4389. </table></td><td>
  4390. </td><td class="SearchResultsBuyColumn">
  4391. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_pnlRestricted">
  4392. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_lnkRestricted" title="该产品无法发货到中国。"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/CccPopUp.aspx","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>限制装运</a></a>
  4393. </div>
  4394. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  4395. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4396. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=GoC7PUC5kLeWotmJxWYDZQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=GoC7PUC5kLeWotmJxWYDZQ%3d%3d" target="_blank">详细信息</a>
  4397. </div>
  4398. </td><td>120 V
  4399. </td><td>0.3 mA
  4400. </td><td>- 40 C to + 80 C
  4401. </td><td>
  4402. </td><td>
  4403. </td>
  4404. </tr><tr class="SearchResultsRowEven" data-partnumber="651-2807609" data-index="22">
  4405. <td class="td-select" align="center">
  4406. <div style="padding: 5px 5px 0 5px;">
  4407. <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>
  4408. </div>
  4409. </td><td><a href='/ProductDetail/Phoenix-Contact/2807609/?qs=sGAEpiMZZMtFLzWzeHO23DeCOqn%2ffWCf%2fd%2fw%252bGjxtSQ%3d'><img title='Phoenix Contact 2807609' alt='Phoenix Contact 2807609' id=2167284 src='/images/phoenixcontact/sm/34393_1000_int_04.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/phoenixcontact/images/34393_1000_int_04.jpg</div></a></td><td>
  4410. <div style="text-align:left;">
  4411. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Phoenix-Contact/2807609/?qs=sGAEpiMZZMtFLzWzeHO23DeCOqn%2ffWCf%2fd%2fw%252bGjxtSQ%3d">651-2807609</a><br />
  4412. <br />
  4413. <br />
  4414. </div></td><td>
  4415. <div class="mfrDiv">
  4416. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Phoenix-Contact/2807609/?qs=sGAEpiMZZMtFLzWzeHO23DeCOqn%2ffWCf%2fd%2fw%252bGjxtSQ%3d">2807609</a><br />
  4417. <br />
  4418. <div style="width: 100%; text-align: center;">
  4419. </div>
  4420. <div style="width: 100%; text-align: center;">
  4421. </div>
  4422. </div>
  4423. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../Phoenix-Contact">Phoenix Contact</a>
  4424. </td><td>浪涌抑制器 VAL-MS 500 ST
  4425. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4426. </div>
  4427. </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;Phoenix Contact&quot;,&quot;651-2807609 | 2807609&quot;]);" href="http://www.phoenixcontact.com/us/products/2807609/pdf" target="_blank">数据表</a>
  4428. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">29<br/>有库存</span>
  4429. <table>
  4430. <tr align="center">
  4431. <td style="padding-top: 5px">
  4432. </td>
  4433. </tr>
  4434. <tr align="center">
  4435. <td style="padding-top: 5px; padding-bottom: 5px">
  4436. </td>
  4437. </tr>
  4438. </table></td><td>
  4439. <table class="PriceBreaks" cellspacing="0" border="0">
  4440. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4441. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4442. </td>
  4443. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4444. </td>
  4445. </tr>
  4446. <tr>
  4447. <td class="PriceBreakQuantity">
  4448. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  4449. </td>
  4450. <td class="PriceBreakPrice">
  4451. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥700.7832</span>
  4452. </td>
  4453. </tr>
  4454. <tr>
  4455. <td class="PriceBreakQuantity">
  4456. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,5);">5:</a>
  4457. </td>
  4458. <td class="PriceBreakPrice">
  4459. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥665.5194</span>
  4460. </td>
  4461. </tr>
  4462. <tr>
  4463. <td class="PriceBreakQuantity">
  4464. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,10);">10:</a>
  4465. </td>
  4466. <td class="PriceBreakPrice">
  4467. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥644.7285</span>
  4468. </td>
  4469. </tr>
  4470. <tr>
  4471. <td class="PriceBreakQuantity">
  4472. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,25);">25:</a>
  4473. </td>
  4474. <td class="PriceBreakPrice">
  4475. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥624.3939</span>
  4476. </td>
  4477. </tr>
  4478. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4479. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4480. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(20,50);">50:</a>
  4481. </td>
  4482. <td class="PriceBreakPrice">
  4483. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Phoenix-Contact/2807609/?qs=sGAEpiMZZMtFLzWzeHO23DeCOqn%2ffWCf%2fd%2fw%252bGjxtSQ%3d">查看</a>
  4484. </td>
  4485. </tr>
  4486. <tr>
  4487. <td><br /></td>
  4488. </tr>
  4489. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4490. <td colspan="2" style="text-align: center;">
  4491. </td>
  4492. </tr>
  4493. </table>
  4494. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy&#39;)">
  4495. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(20,this.value);" /><br />
  4496. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 20);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy" title="购买 2807609" class="buy-button" /><br />
  4497. <table cellspacing="0" border="0" style="width: 100%;">
  4498. <tr>
  4499. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4500. 最低:
  4501. </td>
  4502. <td style="padding-left: 2px; text-align: left;">
  4503. 1
  4504. </td>
  4505. </tr>
  4506. <tr>
  4507. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4508. 多个:
  4509. </td>
  4510. <td style="padding-left: 2px; text-align: left;">
  4511. 1
  4512. </td>
  4513. </tr>
  4514. </table>
  4515. </div>
  4516. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  4517. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4518. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=5m0KctpntlI9CTzHi5nYqw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=5m0KctpntlI9CTzHi5nYqw%3d%3d" target="_blank">详细信息</a>
  4519. </div>
  4520. </td><td>500 V
  4521. </td><td>0.25 mA
  4522. </td><td>- 40 C to + 80 C
  4523. </td><td>
  4524. </td><td>
  4525. </td>
  4526. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-2881007" data-index="23">
  4527. <td class="td-select" align="center">
  4528. <div style="padding: 5px 5px 0 5px;">
  4529. <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>
  4530. </div>
  4531. </td><td><a href='/ProductDetail/Phoenix-Contact/2881007/?qs=sGAEpiMZZMtFLzWzeHO23BDyludJupNLQo5lRX90Z9U%3d'><img title='Phoenix Contact 2881007' alt='Phoenix Contact 2881007' id=84637330 src='/images/phoenixcontact/sm/22521_1000_int_04.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/phoenixcontact/images/22521_1000_int_04.jpg</div></a></td><td>
  4532. <div style="text-align:left;">
  4533. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Phoenix-Contact/2881007/?qs=sGAEpiMZZMtFLzWzeHO23BDyludJupNLQo5lRX90Z9U%3d">651-2881007</a><br />
  4534. <br />
  4535. <br />
  4536. </div></td><td>
  4537. <div class="mfrDiv">
  4538. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Phoenix-Contact/2881007/?qs=sGAEpiMZZMtFLzWzeHO23BDyludJupNLQo5lRX90Z9U%3d">2881007</a><br />
  4539. <br />
  4540. <div style="width: 100%; text-align: center;">
  4541. </div>
  4542. <div style="width: 100%; text-align: center;">
  4543. </div>
  4544. </div>
  4545. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../Phoenix-Contact">Phoenix Contact</a>
  4546. </td><td>浪涌抑制器 DT-LAN-CAT.6+ RJ45 SURGE
  4547. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4548. </div>
  4549. </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;Phoenix Contact&quot;,&quot;651-2881007 | 2881007&quot;]);" href="http://www.phoenixcontact.com/us/products/2881007/pdf" target="_blank">数据表</a>
  4550. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">32<br/>有库存</span>
  4551. <table>
  4552. <tr align="center">
  4553. <td style="padding-top: 5px">
  4554. </td>
  4555. </tr>
  4556. <tr align="center">
  4557. <td style="padding-top: 5px; padding-bottom: 5px">
  4558. </td>
  4559. </tr>
  4560. </table></td><td>
  4561. <table class="PriceBreaks" cellspacing="0" border="0">
  4562. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4563. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4564. </td>
  4565. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4566. </td>
  4567. </tr>
  4568. <tr>
  4569. <td class="PriceBreakQuantity">
  4570. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  4571. </td>
  4572. <td class="PriceBreakPrice">
  4573. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥731.6712</span>
  4574. </td>
  4575. </tr>
  4576. <tr>
  4577. <td class="PriceBreakQuantity">
  4578. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,5);">5:</a>
  4579. </td>
  4580. <td class="PriceBreakPrice">
  4581. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥702.3276</span>
  4582. </td>
  4583. </tr>
  4584. <tr>
  4585. <td class="PriceBreakQuantity">
  4586. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  4587. </td>
  4588. <td class="PriceBreakPrice">
  4589. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥688.1589</span>
  4590. </td>
  4591. </tr>
  4592. <tr>
  4593. <td class="PriceBreakQuantity">
  4594. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,25);">25:</a>
  4595. </td>
  4596. <td class="PriceBreakPrice">
  4597. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥679.4541</span>
  4598. </td>
  4599. </tr>
  4600. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4601. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4602. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(21,50);">50:</a>
  4603. </td>
  4604. <td class="PriceBreakPrice">
  4605. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Phoenix-Contact/2881007/?qs=sGAEpiMZZMtFLzWzeHO23BDyludJupNLQo5lRX90Z9U%3d">查看</a>
  4606. </td>
  4607. </tr>
  4608. <tr>
  4609. <td><br /></td>
  4610. </tr>
  4611. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4612. <td colspan="2" style="text-align: center;">
  4613. </td>
  4614. </tr>
  4615. </table>
  4616. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy&#39;)">
  4617. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(21,this.value);" /><br />
  4618. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 21);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy" title="购买 2881007" class="buy-button" /><br />
  4619. <table cellspacing="0" border="0" style="width: 100%;">
  4620. <tr>
  4621. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4622. 最低:
  4623. </td>
  4624. <td style="padding-left: 2px; text-align: left;">
  4625. 1
  4626. </td>
  4627. </tr>
  4628. <tr>
  4629. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4630. 多个:
  4631. </td>
  4632. <td style="padding-left: 2px; text-align: left;">
  4633. 1
  4634. </td>
  4635. </tr>
  4636. </table>
  4637. </div>
  4638. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  4639. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4640. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=ymU7MgpS3ta3taMAotbRVA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=ymU7MgpS3ta3taMAotbRVA%3d%3d" target="_blank">详细信息</a>
  4641. </div>
  4642. </td><td>3.3 V
  4643. </td><td>10 kA
  4644. </td><td>- 40 C to + 70 C
  4645. </td><td>Plug
  4646. </td><td>
  4647. </td>
  4648. </tr><tr class="SearchResultsRowEven" data-partnumber="511-RBO40-40G-TR" data-index="24">
  4649. <td class="td-select" align="center">
  4650. <div style="padding: 5px 5px 0 5px;">
  4651. <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>
  4652. </div>
  4653. </td><td><a href='/ProductDetail/STMicroelectronics/RBO40-40G-TR/?qs=sGAEpiMZZMtFLzWzeHO23KodtX0yX6pX1b4QmK3Wzto%3d'><img title='STMicroelectronics RBO40-40G-TR' alt='STMicroelectronics RBO40-40G-TR' id=77792499 src='/images/stmicroelectronics/sm/to-252.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/to-252.jpg</div></a></td><td>
  4654. <div style="text-align:left;">
  4655. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/RBO40-40G-TR/?qs=sGAEpiMZZMtFLzWzeHO23KodtX0yX6pX1b4QmK3Wzto%3d">511-RBO40-40G-TR</a><br />
  4656. <br />
  4657. <br />
  4658. 要购买完整 卷轴,请订购 1000 的倍数:
  4659. </div></td><td>
  4660. <div class="mfrDiv">
  4661. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/RBO40-40G-TR/?qs=sGAEpiMZZMtFLzWzeHO23KodtX0yX6pX1b4QmK3Wzto%3d">RBO40-40G-TR</a><br />
  4662. <br />
  4663. <div style="width: 100%; text-align: center;">
  4664. </div>
  4665. <div style="width: 100%; text-align: center;">
  4666. </div>
  4667. </div>
  4668. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
  4669. </td><td>浪涌抑制器 Reversed Battery OverVolt Prot
  4670. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4671. </div>
  4672. </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;STMicroelectronics&quot;,&quot;511-RBO40-40G-TR | RBO40-40G-TR&quot;]);" href="http://www.mouser.com/ds/2/389/CD00001320-249565.pdf" target="_blank">数据表</a>
  4673. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">1,702<br/>有库存</span>
  4674. <table>
  4675. <tr align="center">
  4676. <td style="padding-top: 5px">
  4677. </td>
  4678. </tr>
  4679. <tr align="center">
  4680. <td style="padding-top: 5px; padding-bottom: 5px">
  4681. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAlternativePackaging" title="备用包装 | 511-RBO40-40G-TR" class="thickbox" href="../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSuJmEZflKjh6umj4Ph72hjhQc2dqcPkjc%252bbwOOAfYV77FLrFx5I8kBdUaNJOwKe0gAXm7bre75BtSQ%252btj7QN3B0Uln0HsTxKX5JsxmjOedybBqx1Z5bdZpxWGyy8FVzIs%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4682. </td>
  4683. </tr>
  4684. </table></td><td>
  4685. <table class="PriceBreaks" cellspacing="0" border="0">
  4686. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4687. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4688. </td>
  4689. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4690. </td>
  4691. </tr>
  4692. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4693. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4694. 剪切带
  4695. </td>
  4696. </tr>
  4697. <tr>
  4698. <td class="PriceBreakQuantity">
  4699. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  4700. </td>
  4701. <td class="PriceBreakPrice">
  4702. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥25.4124</span>
  4703. </td>
  4704. </tr>
  4705. <tr>
  4706. <td class="PriceBreakQuantity">
  4707. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  4708. </td>
  4709. <td class="PriceBreakPrice">
  4710. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥20.4048</span>
  4711. </td>
  4712. </tr>
  4713. <tr>
  4714. <td class="PriceBreakQuantity">
  4715. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  4716. </td>
  4717. <td class="PriceBreakPrice">
  4718. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥18.5562</span>
  4719. </td>
  4720. </tr>
  4721. <tr>
  4722. <td class="PriceBreakQuantity">
  4723. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,250);">250:</a>
  4724. </td>
  4725. <td class="PriceBreakPrice">
  4726. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥16.7895</span>
  4727. </td>
  4728. </tr>
  4729. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4730. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4731. 卷轴
  4732. </td>
  4733. </tr>
  4734. <tr>
  4735. <td class="PriceBreakQuantity">
  4736. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(22,1000);">1,000:</a>
  4737. </td>
  4738. <td class="PriceBreakPrice">
  4739. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥12.7062</span>
  4740. </td>
  4741. </tr>
  4742. <tr>
  4743. <td class="PriceBreakQuantity">
  4744. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(22,2000);">2,000:</a>
  4745. </td>
  4746. <td class="PriceBreakPrice">
  4747. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/STMicroelectronics/RBO40-40G-TR/?qs=sGAEpiMZZMtFLzWzeHO23KodtX0yX6pX1b4QmK3Wzto%3d' >查看</a></span>
  4748. </td>
  4749. </tr>
  4750. <tr>
  4751. <td><br /></td>
  4752. </tr>
  4753. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4754. <td colspan="2" style="text-align: center;">
  4755. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/STMicroelectronics/RBO40-40G-TR/?qs=sGAEpiMZZMtFLzWzeHO23KodtX0yX6pX1b4QmK3Wzto%3d">MouseReel 提供服务支持</a>
  4756. </td>
  4757. </tr>
  4758. </table>
  4759. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy&#39;)">
  4760. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(22,this.value);" /><br />
  4761. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 22);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy" title="购买 RBO40-40G-TR" class="buy-button" /><br />
  4762. <table cellspacing="0" border="0" style="width: 100%;">
  4763. <tr>
  4764. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4765. 最低:
  4766. </td>
  4767. <td style="padding-left: 2px; text-align: left;">
  4768. 1
  4769. </td>
  4770. </tr>
  4771. <tr>
  4772. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4773. 多个:
  4774. </td>
  4775. <td style="padding-left: 2px; text-align: left;">
  4776. 1
  4777. </td>
  4778. </tr>
  4779. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_trReel">
  4780. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4781. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(22,1000);">卷轴</a>:
  4782. </td>
  4783. <td style="padding-left: 2px; text-align: left;">
  4784. <em class="SearchResultsReel">
  4785. 1,000
  4786. </em>
  4787. </td>
  4788. </tr>
  4789. </table>
  4790. </div>
  4791. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  4792. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4793. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=UMBUfz8OnnmsSpvIbyNDEQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=UMBUfz8OnnmsSpvIbyNDEQ%3d%3d" target="_blank">详细信息</a>
  4794. </div>
  4795. </td><td>24 V
  4796. </td><td>40 A
  4797. </td><td>
  4798. </td><td>Through Hole
  4799. </td><td>D2PAK
  4800. </td>
  4801. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-2801305" data-index="25">
  4802. <td class="td-select" align="center">
  4803. <div style="padding: 5px 5px 0 5px;">
  4804. <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>
  4805. </div>
  4806. </td><td><a href='/ProductDetail/Phoenix-Contact/2801305/?qs=sGAEpiMZZMtFLzWzeHO23G3dM0SCuq1UqrT8hqJ4H6s%3d'><img title='Phoenix Contact 2801305' alt='Phoenix Contact 2801305' id=1040265698 src='/images/phoenixcontact/sm/2801305.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/phoenixcontact/images/2801305.jpg</div></a></td><td>
  4807. <div style="text-align:left;">
  4808. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Phoenix-Contact/2801305/?qs=sGAEpiMZZMtFLzWzeHO23G3dM0SCuq1UqrT8hqJ4H6s%3d">651-2801305</a><br />
  4809. <br />
  4810. <br />
  4811. </div></td><td>
  4812. <div class="mfrDiv">
  4813. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Phoenix-Contact/2801305/?qs=sGAEpiMZZMtFLzWzeHO23G3dM0SCuq1UqrT8hqJ4H6s%3d">2801305</a><br />
  4814. <br />
  4815. <div style="width: 100%; text-align: center;">
  4816. </div>
  4817. <div style="width: 100%; text-align: center;">
  4818. </div>
  4819. </div>
  4820. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../Phoenix-Contact">Phoenix Contact</a>
  4821. </td><td>浪涌抑制器 CB 1/10-1/10 UT-BE
  4822. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4823. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../new/Phoenix-Contact/phoenix_cb_pluggable/">了解更多</a>
  4824. </div>
  4825. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4826. <img src="/Images/icon_ar_red.gif" alt='根据美国政府的出口法规规定,Mouser无法将此产品销售到您所在的国家。' title='根据美国政府的出口法规规定,Mouser无法将此产品销售到您所在的国家。' />
  4827. </div>
  4828. </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;Phoenix Contact&quot;,&quot;651-2801305 | 2801305&quot;]);" href="http://www.phoenixcontact.com/us/products/2801305/pdf" target="_blank">数据表</a>
  4829. </td><td>
  4830. <table>
  4831. <tr align="center">
  4832. <td style="padding-top: 5px">
  4833. </td>
  4834. </tr>
  4835. <tr align="center">
  4836. <td style="padding-top: 5px; padding-bottom: 5px">
  4837. </td>
  4838. </tr>
  4839. </table></td><td>
  4840. </td><td class="SearchResultsBuyColumn">
  4841. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlRestricted">
  4842. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=yes&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  4843. </div>
  4844. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  4845. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4846. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Avxz5OBvgneu9GEVQYrgvQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=Avxz5OBvgneu9GEVQYrgvQ%3d%3d" target="_blank">详细信息</a>
  4847. </div>
  4848. </td><td>277 V
  4849. </td><td>16 A
  4850. </td><td>- 30 C to + 60 C
  4851. </td><td>
  4852. </td><td>
  4853. </td>
  4854. </tr><tr class="SearchResultsRowEven" data-partnumber="651-2838186" data-index="26">
  4855. <td class="td-select" align="center">
  4856. <div style="padding: 5px 5px 0 5px;">
  4857. <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>
  4858. </div>
  4859. </td><td><a href='/ProductDetail/Phoenix-Contact/2838186/?qs=sGAEpiMZZMtFLzWzeHO23ADMYiwg0BNehm2HzrbD1y8%3d'><img title='Phoenix Contact 2838186' alt='Phoenix Contact 2838186' id=9951043 src='/images/phoenixcontact/sm/20248_2000_int_04.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/phoenixcontact/images/20248_2000_int_04.jpg</div></a></td><td>
  4860. <div style="text-align:left;">
  4861. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Phoenix-Contact/2838186/?qs=sGAEpiMZZMtFLzWzeHO23ADMYiwg0BNehm2HzrbD1y8%3d">651-2838186</a><br />
  4862. <br />
  4863. <br />
  4864. </div></td><td>
  4865. <div class="mfrDiv">
  4866. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Phoenix-Contact/2838186/?qs=sGAEpiMZZMtFLzWzeHO23ADMYiwg0BNehm2HzrbD1y8%3d">2838186</a><br />
  4867. <br />
  4868. <div style="width: 100%; text-align: center;">
  4869. </div>
  4870. <div style="width: 100%; text-align: center;">
  4871. </div>
  4872. </div>
  4873. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../Phoenix-Contact">Phoenix Contact</a>
  4874. </td><td>浪涌抑制器 TT-2PE-24DC
  4875. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4876. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../Phoenix-Surge-Protection-for-Measurement-Control/">了解更多</a>
  4877. </div>
  4878. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4879. </div>
  4880. </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;Phoenix Contact&quot;,&quot;651-2838186 | 2838186&quot;]);" href="http://www.phoenixcontact.com/us/products/2838186/pdf" target="_blank">数据表</a>
  4881. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">17<br/>有库存</span>
  4882. <table>
  4883. <tr align="center">
  4884. <td style="padding-top: 5px">
  4885. </td>
  4886. </tr>
  4887. <tr align="center">
  4888. <td style="padding-top: 5px; padding-bottom: 5px">
  4889. </td>
  4890. </tr>
  4891. </table></td><td>
  4892. <table class="PriceBreaks" cellspacing="0" border="0">
  4893. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4894. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4895. </td>
  4896. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4897. </td>
  4898. </tr>
  4899. <tr>
  4900. <td class="PriceBreakQuantity">
  4901. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  4902. </td>
  4903. <td class="PriceBreakPrice">
  4904. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥893.3067</span>
  4905. </td>
  4906. </tr>
  4907. <tr>
  4908. <td class="PriceBreakQuantity">
  4909. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,5);">5:</a>
  4910. </td>
  4911. <td class="PriceBreakPrice">
  4912. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥848.3319</span>
  4913. </td>
  4914. </tr>
  4915. <tr>
  4916. <td class="PriceBreakQuantity">
  4917. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  4918. </td>
  4919. <td class="PriceBreakPrice">
  4920. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥821.8431</span>
  4921. </td>
  4922. </tr>
  4923. <tr>
  4924. <td class="PriceBreakQuantity">
  4925. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,25);">25:</a>
  4926. </td>
  4927. <td class="PriceBreakPrice">
  4928. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥795.8925</span>
  4929. </td>
  4930. </tr>
  4931. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4932. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4933. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(24,50);">50:</a>
  4934. </td>
  4935. <td class="PriceBreakPrice">
  4936. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Phoenix-Contact/2838186/?qs=sGAEpiMZZMtFLzWzeHO23ADMYiwg0BNehm2HzrbD1y8%3d">查看</a>
  4937. </td>
  4938. </tr>
  4939. <tr>
  4940. <td><br /></td>
  4941. </tr>
  4942. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4943. <td colspan="2" style="text-align: center;">
  4944. </td>
  4945. </tr>
  4946. </table>
  4947. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_btnBuy&#39;)">
  4948. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(24,this.value);" /><br />
  4949. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 24);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_btnBuy" title="购买 2838186" class="buy-button" /><br />
  4950. <table cellspacing="0" border="0" style="width: 100%;">
  4951. <tr>
  4952. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4953. 最低:
  4954. </td>
  4955. <td style="padding-left: 2px; text-align: left;">
  4956. 1
  4957. </td>
  4958. </tr>
  4959. <tr>
  4960. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4961. 多个:
  4962. </td>
  4963. <td style="padding-left: 2px; text-align: left;">
  4964. 1
  4965. </td>
  4966. </tr>
  4967. </table>
  4968. </div>
  4969. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  4970. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4971. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=yjFtwQH4AWCdPjzr13ppKA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=yjFtwQH4AWCdPjzr13ppKA%3d%3d" target="_blank">详细信息</a>
  4972. </div>
  4973. </td><td>
  4974. </td><td>
  4975. </td><td>
  4976. </td><td>Wire Leads
  4977. </td><td>
  4978. </td>
  4979. </tr><tr class="SearchResultsRowOdd" data-partnumber="511-SMP100LC-400" data-index="27">
  4980. <td class="td-select" align="center">
  4981. <div style="padding: 5px 5px 0 5px;">
  4982. <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>
  4983. </div>
  4984. </td><td><a href='/ProductDetail/STMicroelectronics/SMP100LC-400/?qs=sGAEpiMZZMtFLzWzeHO23NcBfXimET3Cqk8YVuomkyY%3d'><img title='STMicroelectronics SMP100LC-400' alt='STMicroelectronics SMP100LC-400' id=2231986 src='/images/stmicroelectronics/sm/smb.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/stmicroelectronics/images/smb.jpg</div></a></td><td>
  4985. <div style="text-align:left;">
  4986. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/STMicroelectronics/SMP100LC-400/?qs=sGAEpiMZZMtFLzWzeHO23NcBfXimET3Cqk8YVuomkyY%3d">511-SMP100LC-400</a><br />
  4987. <br />
  4988. <br />
  4989. 要购买完整 卷轴,请订购 2500 的倍数:
  4990. </div></td><td>
  4991. <div class="mfrDiv">
  4992. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/STMicroelectronics/SMP100LC-400/?qs=sGAEpiMZZMtFLzWzeHO23NcBfXimET3Cqk8YVuomkyY%3d">SMP100LC-400</a><br />
  4993. <br />
  4994. <div style="width: 100%; text-align: center;">
  4995. </div>
  4996. <div style="width: 100%; text-align: center;">
  4997. <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/>
  4998. <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>
  4999. </div>
  5000. </div>
  5001. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../stmicroelectronics">STMicroelectronics</a>
  5002. </td><td>浪涌抑制器 400V 50uA Bidirect
  5003. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5004. </div>
  5005. </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;STMicroelectronics&quot;,&quot;511-SMP100LC-400 | SMP100LC-400&quot;]);" href="http://www.mouser.com/ds/2/389/CD00002051-250306.pdf" target="_blank">数据表</a>
  5006. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">5,000<br/>有库存</span>
  5007. <table>
  5008. <tr align="center">
  5009. <td style="padding-top: 5px">
  5010. </td>
  5011. </tr>
  5012. <tr align="center">
  5013. <td style="padding-top: 5px; padding-bottom: 5px">
  5014. </td>
  5015. </tr>
  5016. </table></td><td>
  5017. <table class="PriceBreaks" cellspacing="0" border="0">
  5018. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5019. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5020. </td>
  5021. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5022. </td>
  5023. </tr>
  5024. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  5025. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  5026. 剪切带
  5027. </td>
  5028. </tr>
  5029. <tr>
  5030. <td class="PriceBreakQuantity">
  5031. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  5032. </td>
  5033. <td class="PriceBreakPrice">
  5034. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥7.0902</span>
  5035. </td>
  5036. </tr>
  5037. <tr>
  5038. <td class="PriceBreakQuantity">
  5039. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  5040. </td>
  5041. <td class="PriceBreakPrice">
  5042. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.7096</span>
  5043. </td>
  5044. </tr>
  5045. <tr>
  5046. <td class="PriceBreakQuantity">
  5047. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  5048. </td>
  5049. <td class="PriceBreakPrice">
  5050. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥4.3875</span>
  5051. </td>
  5052. </tr>
  5053. <tr>
  5054. <td class="PriceBreakQuantity">
  5055. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,500);">500:</a>
  5056. </td>
  5057. <td class="PriceBreakPrice">
  5058. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3.8844</span>
  5059. </td>
  5060. </tr>
  5061. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  5062. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  5063. 卷轴
  5064. </td>
  5065. </tr>
  5066. <tr>
  5067. <td class="PriceBreakQuantity">
  5068. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(25,2500);">2,500:</a>
  5069. </td>
  5070. <td class="PriceBreakPrice">
  5071. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.7144</span>
  5072. </td>
  5073. </tr>
  5074. <tr>
  5075. <td class="PriceBreakQuantity">
  5076. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(25,10000);">10,000:</a>
  5077. </td>
  5078. <td class="PriceBreakPrice">
  5079. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../ProductDetail/STMicroelectronics/SMP100LC-400/?qs=sGAEpiMZZMtFLzWzeHO23NcBfXimET3Cqk8YVuomkyY%3d' >查看</a></span>
  5080. </td>
  5081. </tr>
  5082. <tr>
  5083. <td><br /></td>
  5084. </tr>
  5085. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  5086. <td colspan="2" style="text-align: center;">
  5087. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../ProductDetail/STMicroelectronics/SMP100LC-400/?qs=sGAEpiMZZMtFLzWzeHO23NcBfXimET3Cqk8YVuomkyY%3d">MouseReel 提供服务支持</a>
  5088. </td>
  5089. </tr>
  5090. </table>
  5091. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy&#39;)">
  5092. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(25,this.value);" /><br />
  5093. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 25);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy" title="购买 SMP100LC-400" class="buy-button" /><br />
  5094. <table cellspacing="0" border="0" style="width: 100%;">
  5095. <tr>
  5096. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5097. 最低:
  5098. </td>
  5099. <td style="padding-left: 2px; text-align: left;">
  5100. 1
  5101. </td>
  5102. </tr>
  5103. <tr>
  5104. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5105. 多个:
  5106. </td>
  5107. <td style="padding-left: 2px; text-align: left;">
  5108. 1
  5109. </td>
  5110. </tr>
  5111. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_trReel">
  5112. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5113. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(25,2500);">卷轴</a>:
  5114. </td>
  5115. <td style="padding-left: 2px; text-align: left;">
  5116. <em class="SearchResultsReel">
  5117. 2,500
  5118. </em>
  5119. </td>
  5120. </tr>
  5121. </table>
  5122. </div>
  5123. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  5124. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5125. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=xsGszFcFsMDZ2cLON0cQTQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=xsGszFcFsMDZ2cLON0cQTQ%3d%3d" target="_blank">详细信息</a>
  5126. </div>
  5127. </td><td>
  5128. </td><td>
  5129. </td><td>
  5130. </td><td>SMD/SMT
  5131. </td><td>DO-214AA
  5132. </td>
  5133. </tr>
  5134. </table>
  5135. </div>
  5136. </td>
  5137. </tr>
  5138. <tr>
  5139. <td class="tdSearchResultsPagingBottom">
  5140. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  5141. <tr>
  5142. <td>
  5143. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  5144. </td>
  5145. <td>
  5146. <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" />
  5147. </td>
  5148. <td>
  5149. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  5150. </td>
  5151. <td style="padding-left: 40px;">
  5152. <div class="floatrightpager">
  5153. <span class="bold">
  5154. 页面:
  5155. </span>
  5156. <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/Surge-Suppressors/_/N-5g3k/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_38" class="first-last" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=950">39</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?No=25">下一页</a></span>
  5157. </div>
  5158. </td>
  5159. </tr>
  5160. </table>
  5161. </td>
  5162. </tr>
  5163. <tr>
  5164. <td>
  5165. <!--- Search Tips --->
  5166. </td>
  5167. </tr>
  5168. <tr>
  5169. <td>
  5170. <!-- SOP Section 2 -->
  5171. </td>
  5172. </tr>
  5173. </table>
  5174. </div>
  5175. </div><!-- #liProducts-->
  5176. <!-- Datasheets tab -->
  5177. <!-- #liDatasheets-->
  5178. <!-- Images tab -->
  5179. <!-- #liImages-->
  5180. <!-- Newest Products tab -->
  5181. <!-- #liProducts-->
  5182. </div>
  5183. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  5184. <div>
  5185. <span class="popular-searches-label">热门搜索:</span>
  5186. <span class="popular-searches-links"><a href='/Circuit-Protection/Surge-Suppressors/_/N-5g3k?P=1z0yz5i&pop=6xjd' onclick="ga('send','event','Popular Search Refine Click','Surge Suppressors','DIN Rail Surge Suppressors')">DIN Rail 浪涌抑制器</a> , <a href='/Circuit-Protection/Surge-Suppressors/_/N-5g3k?P=1z0z80l&pop=2k9d' onclick="ga('send','event','Popular Search Refine Click','Surge Suppressors','Screw Surge Suppressors')">Screw 浪涌抑制器</a> , <a href='/Circuit-Protection/Surge-Suppressors/_/N-5g3k?P=1yzact8&pop=15nm&pop=niwj' onclick="ga('send','event','Popular Search Refine Click','Surge Suppressors','240 V / 415 V Surge Suppressors')">240 V / 415 V 浪涌抑制器</a> , <a href='/Circuit-Protection/Surge-Suppressors/_/N-5g3k/?P=1yx0yfo&pop=q4cm' onclick="ga('send','event','Popular Search Refine Click','Surge Suppressors','43.3 mm x 17.5 mm x 44.8 mm Surge Suppressors')">43.3 mm x 17.5 mm x 44.8 mm 浪涌抑制器</a> , <a href='/Circuit-Protection/Surge-Suppressors/_/N-5g3k?P=1z0x504&pop=aii9' onclick="ga('send','event','Popular Search Refine Click','Surge Suppressors','14 V Surge Suppressors')">14 V 浪涌抑制器</a> , <a href='/Circuit-Protection/Surge-Suppressors/_/N-5g3k?P=1z0x2vhZ1z0z7ym&pop=qbnt' onclick="ga('send','event','Popular Search Refine Click','Surge Suppressors','SMD/SMT 40 V Surge Suppressors')">SMD/SMT 40 V 浪涌抑制器</a></span>
  5187. </div>
  5188. </div>
  5189. <div style="visibility: hidden;">
  5190. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  5191. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  5192. <span id="SearchResultCount">974</span>
  5193. <div id="disclaimer">
  5194. 图像仅供参考<br/>请参阅产品规格</div>
  5195. </div>
  5196. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Circuit-Protection/Surge-Suppressors" />
  5197. <script type="text/javascript" src='../../../../javascript/ProductImage.js'></script>
  5198. <script type="text/javascript" src='../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  5199. <script type="text/javascript" src='../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  5200. <!--[if gte IE 9]><!-->
  5201. <script type="text/javascript" src='../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  5202. <!--<![endif]-->
  5203. <!--[if lt IE 9]>
  5204. <script type="text/javascript" src='../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  5205. <![endif]-->
  5206. <script type="text/javascript" src='../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  5207. <script type="text/javascript">
  5208. var subdomain = 'cn2';
  5209. </script>
  5210. </div>
  5211. <div class="aspNetHidden">
  5212. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  5213. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  5214. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  5215. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  5216. </div>
  5217. <script type="text/javascript">
  5218. //<![CDATA[
  5219. var mfrIDsArray = new Array;
  5220. //]]>
  5221. </script>
  5222. <script src='../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  5223. <script type="text/javascript">
  5224. //<![CDATA[
  5225. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  5226. </script>
  5227. <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>
  5228. <script type="text/javascript">
  5229. //<![CDATA[
  5230. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  5231. //]]>
  5232. </script>
  5233. <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>
  5234. <script type="text/javascript">
  5235. //<![CDATA[
  5236. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688769^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688370^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688572^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$688737^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$688606';
  5237. theForm.oldSubmit = theForm.submit;
  5238. theForm.submit = WebForm_SaveScrollPositionSubmit;
  5239. theForm.oldOnSubmit = theForm.onsubmit;
  5240. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  5241. //]]>
  5242. </script>
  5243. </form>
  5244. <div id="content-container2" class="hidden">
  5245. <div id="content-fixed-width2" class="content-fixed-width">
  5246. </div>
  5247. </div>
  5248. <div id="wideFooter" class="wideFooter">
  5249. <div id="footer" class="container">
  5250. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB10|20160304.2" />
  5251. <div id="ft_table1">
  5252. <div class="row">
  5253. <div class="col-xs-12">
  5254. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  5255. <div class="floatleft padding5right">
  5256. <strong class="h3">
  5257. 快速电子邮件注册</strong>&nbsp;&nbsp;
  5258. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  5259. </div>
  5260. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  5261. 提交
  5262. </a>
  5263. </div>
  5264. <div id="ft_icons" class="ft_icons">
  5265. <div id="ft_social">
  5266. <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>
  5267. <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>
  5268. <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>
  5269. <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">
  5270. <div class="ico-social fb"></div>
  5271. </a>
  5272. <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">
  5273. <div class="ico-social tw"></div>
  5274. </a>
  5275. <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">
  5276. <div class="ico-social rss"></div>
  5277. </a>
  5278. <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">
  5279. <div class="ico-social yt"></div>
  5280. </a>
  5281. <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">
  5282. <div class="ico-social gp"></div>
  5283. </a>
  5284. <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">
  5285. <div class="ico-social ln"></div>
  5286. </a>
  5287. <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">
  5288. <div class="ico-social sb"></div>
  5289. </a>
  5290. <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">
  5291. <div class="ico-social blog"></div>
  5292. </a>
  5293. </div>
  5294. </div>
  5295. </div>
  5296. </div>
  5297. </div>
  5298. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  5299. <div class="ft_wrapper">
  5300. <div id="ft_links" class="row">
  5301. <div class="col-xs-3 paddingBtm10 hidden-xs">
  5302. <strong class="paddingTopBtm10 inline-block">
  5303. 公司</strong>
  5304. <ul>
  5305. <li>
  5306. <a id="ctl00_Footer1_lnk26" href="../../../../aboutus/">关于我们</a></li>
  5307. <li>
  5308. <a id="ctl00_Footer1_lnk28" href="../../../../educationalsales/">教育销售</a></li>
  5309. <li>
  5310. <a id="ctl00_Footer1_lnk31" href="../../../../pressroom/">新闻中心</a></li>
  5311. <li>
  5312. <a id="ctl00_Footer1_lnk32" href="../../../../careers/">Mouser 工作机会</a></li>
  5313. <li>
  5314. <a id="ctl00_Footer1_lnk29" href="../../../../quality/">品质保证</a></li>
  5315. <li>
  5316. <a id="ctl00_Footer1_lnk30" href="../../../../environmental/">环境保护</a></li>
  5317. </ul>
  5318. </div>
  5319. <div class="col-xs-3 hidden-xs">
  5320. <strong class="paddingTopBtm10 inline-block">
  5321. 快速链接</strong>
  5322. <ul>
  5323. <li><a id="A7" href="/blog">
  5324. Mouser博客</a></li>
  5325. <li>
  5326. <a id="ctl00_Footer1_hlnk1" href="../../../../new/">最新产品</a></li>
  5327. <li>
  5328. <a id="ctl00_Footer1_hlnk2" href="../../../../new/products/">新产品</a></li>
  5329. <li>
  5330. <a id="ctl00_Footer1_hlnk3" href="../../../../applications/">新技术</a></li>
  5331. </ul>
  5332. </div>
  5333. <div class="col-xs-12 col-sm-3">
  5334. <strong class="paddingTopBtm10 inline-block">
  5335. 支持</strong>
  5336. <ul>
  5337. <li><a id="A3" href="/feedback.aspx">
  5338. 反馈</a></li>
  5339. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  5340. 帮助</a></li>
  5341. <li>
  5342. <a id="ctl00_Footer1_lnk27" href="../../../../contact/">联系我们</a></li>
  5343. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  5344. 浏览器支持</a></li>
  5345. <li><a id="A6" href="/cookie-policy/">
  5346. Cookie政策</a></li>
  5347. </ul>
  5348. </div>
  5349. <div class="col-xs-12 col-sm-3">
  5350. <strong class="paddingTopBtm10 inline-block">
  5351. 昴氏(上海)电子贸易有限公司</strong>
  5352. <ul>
  5353. <li>
  5354. <h4>
  5355. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  5356. </li>
  5357. </ul>
  5358. </div>
  5359. </div>
  5360. </div>
  5361. </div>
  5362. <div class="row">
  5363. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  5364. <div id="ft_copy">
  5365. <span class="ft_terms">
  5366. <a id="A1" href="/privacypolicy/">
  5367. 隐私政策</a>
  5368. &nbsp;&nbsp;|&nbsp;&nbsp;
  5369. <a id="href3" href="/saleterms/">
  5370. 销售条款</a>
  5371. <br />
  5372. </span>
  5373. <span class="ft_copyright">
  5374. 版权所有©2016 Mouser Electronics, Inc
  5375. |
  5376. 沪ICP备15042575号-1
  5377. <br />
  5378. </span>
  5379. <span class="ft_trade">
  5380. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  5381. </span>
  5382. <span class="ft_hq">
  5383. Corporate headquarters and logistics center in Mansfield, Texas USA.
  5384. </span>
  5385. <br />
  5386. <span class="ft_ClassicMobile">
  5387. <strong>
  5388. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../m_Home.aspx">通过移动设备查看</a></strong>
  5389. </span>
  5390. </div>
  5391. </div>
  5392. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  5393. <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>
  5394. <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>
  5395. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  5396. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  5397. </a>
  5398. <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>
  5399. <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;
  5400. </a>
  5401. </div>
  5402. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  5403. <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>
  5404. <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>
  5405. <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>
  5406. <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>
  5407. </div>
  5408. </div>
  5409. <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>
  5410. <script type="text/javascript">
  5411. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  5412. </script>
  5413. </div>
  5414. </div>
  5415. <script src="../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  5416. <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>
  5417. </body>
  5418. </html>