48.html 289 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987
  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_813f5b25-bf8e-417a-a32b-48e97a77e7a2-9520-355296';</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","lpkHJQhcZTbccS5wEYjg9P9lqHuLJgBdo+BMyro3WNM=",2]);_gaq.push(["_setCustomVar",31,"Cart","d24e36a9-471d-4188-8d45-3d7e54888062",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA126AA144",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '651-3214325',
  65. 'name': 'DIN Rail Terminal Blocks UT 4-L/HESI (5X20)',
  66. 'category': 'DIN Rail Terminal Blocks',
  67. 'brand': 'Phoenix Contact',
  68. 'variant': '3214325',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '651-3214320',
  74. 'name': 'DIN Rail Terminal Blocks UT 4-PE/L/HESI (5X20)',
  75. 'category': 'DIN Rail Terminal Blocks',
  76. 'brand': 'Phoenix Contact',
  77. 'variant': '3214320',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '651-3214321',
  83. 'name': 'DIN Rail Terminal Blocks UT 4-PE/L/HESILED 24 (5X20)',
  84. 'category': 'DIN Rail Terminal Blocks',
  85. 'brand': 'Phoenix Contact',
  86. 'variant': '3214321',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '651-3214366',
  92. 'name': 'DIN Rail Terminal Blocks UT 4-L/HESILED 24 (5X20)',
  93. 'category': 'DIN Rail Terminal Blocks',
  94. 'brand': 'Phoenix Contact',
  95. 'variant': '3214366',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '651-3212066',
  101. 'name': 'DIN Rail Terminal Blocks PTPOWER 35-PE',
  102. 'category': 'DIN Rail Terminal Blocks',
  103. 'brand': 'Phoenix Contact',
  104. 'variant': '3212066',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '651-3214323',
  110. 'name': 'DIN Rail Terminal Blocks UT4-PE/L/HESILED 250 (5X20)',
  111. 'category': 'DIN Rail Terminal Blocks',
  112. 'brand': 'Phoenix Contact',
  113. 'variant': '3214323',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '651-3214322',
  119. 'name': 'DIN Rail Terminal Blocks UT 4-PE/L/HESILED 60 (5X20)',
  120. 'category': 'DIN Rail Terminal Blocks',
  121. 'brand': 'Phoenix Contact',
  122. 'variant': '3214322',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '651-3212064',
  128. 'name': 'DIN Rail Terminal Blocks PTPOWER 35',
  129. 'category': 'DIN Rail Terminal Blocks',
  130. 'brand': 'Phoenix Contact',
  131. 'variant': '3212064',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '651-3214365',
  137. 'name': 'DIN Rail Terminal Blocks UT 4-PE/L/TG',
  138. 'category': 'DIN Rail Terminal Blocks',
  139. 'brand': 'Phoenix Contact',
  140. 'variant': '3214365',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '651-3214360',
  146. 'name': 'DIN Rail Terminal Blocks UT 4-PE/L/L',
  147. 'category': 'DIN Rail Terminal Blocks',
  148. 'brand': 'Phoenix Contact',
  149. 'variant': '3214360',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '651-3210309',
  155. 'name': 'DIN Rail Terminal Blocks PT 1,5/S-MTD BU',
  156. 'category': 'DIN Rail Terminal Blocks',
  157. 'brand': 'Phoenix Contact',
  158. 'variant': '3210309',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '651-3210321',
  164. 'name': 'DIN Rail Terminal Blocks PT 1,5/S-QUATTRO-MT',
  165. 'category': 'DIN Rail Terminal Blocks',
  166. 'brand': 'Phoenix Contact',
  167. 'variant': '3210321',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '651-3212065',
  173. 'name': 'DIN Rail Terminal Blocks PTPOWER 35 BU',
  174. 'category': 'DIN Rail Terminal Blocks',
  175. 'brand': 'Phoenix Contact',
  176. 'variant': '3212065',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '651-3214324',
  182. 'name': 'DIN Rail Terminal Blocks UT 4-PE/L/HEDI',
  183. 'category': 'DIN Rail Terminal Blocks',
  184. 'brand': 'Phoenix Contact',
  185. 'variant': '3214324',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '651-3210308',
  191. 'name': 'DIN Rail Terminal Blocks PT 1,5/S-MTD',
  192. 'category': 'DIN Rail Terminal Blocks',
  193. 'brand': 'Phoenix Contact',
  194. 'variant': '3210308',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '651-3212070',
  200. 'name': 'DIN Rail Terminal Blocks PTPOWER 35-3L/FE',
  201. 'category': 'DIN Rail Terminal Blocks',
  202. 'brand': 'Phoenix Contact',
  203. 'variant': '3212070',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '651-3215003',
  209. 'name': 'DIN Rail Terminal Blocks PTPOWER 150 P',
  210. 'category': 'DIN Rail Terminal Blocks',
  211. 'brand': 'Phoenix Contact',
  212. 'variant': '3215003',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '651-3215007',
  218. 'name': 'DIN Rail Terminal Blocks PTPOWER 150-3L/FE',
  219. 'category': 'DIN Rail Terminal Blocks',
  220. 'brand': 'Phoenix Contact',
  221. 'variant': '3215007',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '651-3210357',
  227. 'name': 'DIN Rail Terminal Blocks PTT 1,5/S-2L BU',
  228. 'category': 'DIN Rail Terminal Blocks',
  229. 'brand': 'Phoenix Contact',
  230. 'variant': '3210357',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '651-3260050',
  236. 'name': 'DIN Rail Terminal Blocks PTPOWER 50',
  237. 'category': 'DIN Rail Terminal Blocks',
  238. 'brand': 'Phoenix Contact',
  239. 'variant': '3260050',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '651-3214361',
  245. 'name': 'DIN Rail Terminal Blocks UT 4-PE/L/N',
  246. 'category': 'DIN Rail Terminal Blocks',
  247. 'brand': 'Phoenix Contact',
  248. 'variant': '3214361',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '651-3210267',
  254. 'name': 'DIN Rail Terminal Blocks PTT 2,5-2L BU',
  255. 'category': 'DIN Rail Terminal Blocks',
  256. 'brand': 'Phoenix Contact',
  257. 'variant': '3210267',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '651-3212068',
  263. 'name': 'DIN Rail Terminal Blocks PTPOWER 35-3L',
  264. 'category': 'DIN Rail Terminal Blocks',
  265. 'brand': 'Phoenix Contact',
  266. 'variant': '3212068',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '651-3260052',
  272. 'name': 'DIN Rail Terminal Blocks PTPOWER 50-PE',
  273. 'category': 'DIN Rail Terminal Blocks',
  274. 'brand': 'Phoenix Contact',
  275. 'variant': '3260052',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '651-3212071',
  281. 'name': 'DIN Rail Terminal Blocks PTPOWER 35-3L/N/FE',
  282. 'category': 'DIN Rail Terminal Blocks',
  283. 'brand': 'Phoenix Contact',
  284. 'variant': '3212071',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','lpkHJQhcZTbccS5wEYjg9P9lqHuLJgBdo+BMyro3WNM=');
  290. ga('set','dimension31','d24e36a9-471d-4188-8d45-3d7e54888062');
  291. ga('set','dimension13','163AA125AA126AA144');
  292. ga('set','metric2',5058);
  293. ga('set','dimension5','Terminal Blocks');
  294. ga('set','dimension48','b12q9');
  295. ga('set','dimension3','Refine');
  296. ga('set','dimension55','Products');
  297. ga('send', 'pageview');
  298. </script>
  299. <link href="http://www.mouser.cn/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=25" rel="next" content="http://www.mouser.cn/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=25" /><link href="http://www.mouser.cn/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9" rel="canonical" content="http://www.mouser.cn/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9" /><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/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" /><script type="text/javascript" src="/msrqqqqxsqb.js" defer></script><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#yxezcaswaauztuaqaww{display:none!important}</style></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="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/" 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='18525969';
  335. function attributecount() { return true; }
  336. var subdomainname = '.mouser.cn';
  337. var lang = 'zh-CN';
  338. var country = 'CN';
  339. var shippingCountry = 'CN';
  340. var usdSubdomain = 'www';
  341. var subdomain = 'cn2';
  342. var navids='18525969';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
  343. var left = (screen.width / 2) - (800 / 2);var top = (screen.height / 2) - (505 / 2); var msgWindow = window.open(url,'MsgWindow','height=505,width=800,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0');
  344. }
  345. function GenerateClientID(prefix, i, suffix) {
  346. if (i < 10) { return prefix + '0' + String(i) + suffix; }
  347. else { return prefix + String(i) + suffix; }
  348. }
  349. var checked = false;
  350. function SelectAll() {
  351. checked = !checked;
  352. var i = 3;
  353. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  354. while (i < 29) {
  355. if (chkSelect != null) chkSelect.checked = checked;
  356. i = i + 1;
  357. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  358. }
  359. }
  360. function IsAllChecked(checked) {
  361. var i = 3;
  362. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  363. while (i < 29) {
  364. if (chkSelect != null && chkSelect.checked != checked) return false;
  365. i = i + 1;
  366. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  367. }
  368. return true;
  369. }
  370. function IsAnyChecked(checked) {
  371. return !IsAllChecked(!checked);
  372. }
  373. function SelectRow(row, checked) {
  374. document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
  375. }
  376. function RowSelected(index, checked) { }
  377. function GetQuantityTextboxByRow(row) {
  378. return GetQuantityTextboxByIndex(row + 2);
  379. }
  380. function GetQuantityTextboxByIndex(index) {
  381. return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
  382. }
  383. function SelectQuantity(row, quantity) {
  384. txtQuantity = GetQuantityTextboxByRow(row);
  385. if (txtQuantity == null) { return; }
  386. txtQuantity.value = quantity;
  387. SelectRow(row, true);
  388. }
  389. var qtyRegEx = /^([0]|\s)*$/;
  390. function IsQuantityEmptyOrZero(quantity) {
  391. return qtyRegEx.test(quantity);
  392. }
  393. function QuantityChanged(row, quantity) {
  394. SelectRow(row, !IsQuantityEmptyOrZero(quantity));
  395. }
  396. var QuantityRowSelectedBase = RowSelected;
  397. function QuantityRowSelected(index, checked) {
  398. QuantityRowSelectedBase(index, checked);
  399. txtQuantity = GetQuantityTextboxByIndex(index);
  400. if (txtQuantity == null) { return; }
  401. if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
  402. else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
  403. }
  404. RowSelected = QuantityRowSelected;
  405. //]]>
  406. </script>
  407. <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&amp;t=5f9d5645" type="text/javascript"></script>
  408. <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&amp;t=5f9d5645" type="text/javascript"></script>
  409. <div id="cookie-notification-bar">
  410. </div>
  411. <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
  412. <div id="wideGab" class="wideGab">
  413. <div id="ctl00_globalActionBar" class="global-action-bar">
  414. <div id="gab-container" class="container">
  415. <div id="contact" class="row">
  416. <div class="topPadding col-xs-6">
  417. <div class="inline-block">
  418. <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
  419. <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>&nbsp;
  420. 400-821-6111</a><span id="yxezcaswaauztuaqaww"><a rel="file" style="display: none;" href="xxrrtbuu.html">ubqtbausacydzezvysubqtb</a></span>
  421. &nbsp;&nbsp;&nbsp;&nbsp;<span class="pipe">|</span>&nbsp;&nbsp;&nbsp;&nbsp;
  422. <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
  423. 反馈</a>
  424. </div>
  425. <span class="qqIcon inline-block">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
  426. </span>&nbsp;&nbsp;
  427. </div>
  428. <div class="col-xs-6 align-right">
  429. <div id="tdImg" class="inline-block topPadding9px">
  430. <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" class="smallgrey">
  431. <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
  432. <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
  433. </div>
  434. <div class="topPadding inline-block">
  435. <span class="pipe">|</span>&nbsp;&nbsp;&nbsp;
  436. <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwtRB%2f9%2f2QVXHJOXyA8PWEG%252baj6lZ7rPdeQdOWb8%2fQSSUslf7Z%2fe3KFNnXQPbQYa9WuG%252bj3nYDBpT0fW0K4awHLXx2XsOsHdJmH6X4nK79huQw%3d%3d">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwtRB%2f9%2f2QVXHJOXyA8PWEG%252baj6lZ7rPdeQdOWb8%2fQSSUslf7Z%2fe3KFNnXQPbQYa9WuG%252bj3nYDBpT0fW0K4awHLXx2XsOsHdJmH6X4nK79huQw%3d%3d"><img id="ctl00_gab1_img7" class="visualAttributeImage" src="../../../../../images/international/flags/cn2.gif" alt="更改位置" style="border-width: 1px;" /></a>
  438. <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
  439. <span id="ctl00_gab1_lbl1">RMB</span>
  440. </div>
  441. </div>
  442. </div>
  443. </div>
  444. <div style="clear: both;"></div>
  445. <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
  446. class="thickbox"></a>
  447. <div id="divCurrencyPopup" class="currency-popup">
  448. <div class="currency-close">
  449. <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();">&nbsp;</a>
  450. </div>
  451. <div>
  452. <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../../images/international/flags/cn2.gif" alt="中国" />&nbsp;<span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
  453. <br/>
  454. <div style="padding: 0 20px 0 20px">
  455. <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
  456. <br />
  457. <table width="95%">
  458. <tr>
  459. <td width="20%">
  460. <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
  461. </td>
  462. <td>
  463. <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
  464. <br/>
  465. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
  466. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
  467. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
  468. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
  469. </td>
  470. </tr>
  471. </table>
  472. </div>
  473. </div>
  474. </div>
  475. <div id="cartDialog" class="CartDialog" style="display: none;">
  476. <table id="miniCartOnly">
  477. <tr id="divall">
  478. <td id="tdCart">
  479. <table style="width: 100%; padding: 0px; border: 0px">
  480. <tr>
  481. <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
  482. <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
  483. </td>
  484. <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
  485. <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
  486. </td>
  487. </tr>
  488. </table>
  489. <table id="tableMiniCartItms">
  490. <tr id="trCart">
  491. <td>
  492. <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  493. <table id="tblMiniCart">
  494. <thead>
  495. <tr>
  496. <th class="miniCartColumn">制造商</th>
  497. <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
  498. <th class="miniCartColumn MiniCartHdBg">数量</th>
  499. <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
  500. </tr>
  501. </thead>
  502. </table>
  503. <script type="text/javascript">
  504. var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
  505. var currentGuid = 'd24e36a9-471d-4188-8d45-3d7e54888062';
  506. var currentCountryCode = 'CN';
  507. var currentCurrencyCode= 'RMB';
  508. var currencyCulture = 'zh-CN';
  509. var cultureCode = 'zh-CN';
  510. var customerID = '';
  511. </script>
  512. <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  513. </td>
  514. </tr>
  515. </table>
  516. <div style="display: none; padding-top: 10px" id="divSingleItem">
  517. <table id="tblSingeItem">
  518. <tr>
  519. <!-- Here goes the single item -->
  520. <td style="padding-right: 15px">
  521. <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
  522. <td style="align: right; padding-right: 2px" id="tdSingleItms">
  523. <div id="divAll">
  524. <div id="wrapper">
  525. <div id="divLbl">
  526. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
  527. </div>
  528. <div id="divHyp">
  529. </div>
  530. </div>
  531. <div id="divRest">
  532. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
  533. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
  534. <br />
  535. <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
  536. </div>
  537. </div>
  538. </td>
  539. </tr>
  540. </table>
  541. </div>
  542. <div id="divForCart" class="divMsgLnkTotal" style="display: none">
  543. <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
  544. <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
  545. <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
  546. <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
  547. <a onclick="javascript:return MiniCart.SendToCartPage(&#39;Cart Hover&#39;,&#39;View Cart Button&#39;);" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$linkToCartAtMiniCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  548. </div>
  549. </div>
  550. </td>
  551. <td style="display: none" id="trCartSubTotal">
  552. <table class="tblMiniCartSub">
  553. <tr>
  554. <td align="right" style="padding-bottom: 5px; padding-top: 2px">
  555. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
  556. <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
  557. </td>
  558. </tr>
  559. <tr>
  560. <td align="right" style="padding-bottom: 5px">
  561. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
  562. </td>
  563. </tr>
  564. <tr>
  565. <td align="left" style="padding-bottom: 5px">
  566. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
  567. </td>
  568. </tr>
  569. <tr>
  570. <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
  571. <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack(&#39;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune&#39;,&#39;&#39;)" style="color:White;text-decoration:none;">继续购物</a>
  572. <a onclick="return MiniCart.SendToCartPage(&#39;Add to Cart Modal&#39;,&#39;View Cart&#39;);" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  573. </td>
  574. </tr>
  575. </table>
  576. <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
  577. </td>
  578. </tr>
  579. <tr id="trHideModalCheckBox" style="display: none">
  580. <td colspan="2">
  581. <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
  582. </td>
  583. </tr>
  584. </table>
  585. <script type="text/javascript">
  586. $(document).ready(function () {
  587. MiniCart.source = 'refine';
  588. });
  589. </script>
  590. </div>
  591. <script type="text/javascript">
  592. function OpenCurrencyPopup() {
  593. $("#tblink").trigger('click');
  594. }
  595. function CloseCurrencyPopup() {
  596. var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
  597. var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
  598. if (ddlCurrency != null && hidCurrencyValue != null) {
  599. ddlCurrency.selectedIndex = hidCurrencyValue.value;
  600. }
  601. window.location.reload();
  602. }
  603. </script>
  604. </div>
  605. </div>
  606. <div id="wideHeader" class="wideHeader">
  607. <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
  608. <div id="search" class="row">
  609. <div id="logo" class='col-xs-4'>
  610. <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
  611. </div>
  612. <div id="search-block" class="col-xs-4">
  613. <div id="search-title">
  614. 物料编号/关键字
  615. </div>
  616. <div id="search-bar">
  617. <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_NavHeader_btn1&#39;)">
  618. <div id="searchPartNumberBox" class="search-box inline-block">
  619. <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
  620. <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
  621. </div>
  622. <div class="inline-block">
  623. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
  624. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
  625. </div>
  626. </div>
  627. </div>
  628. </div>
  629. <div id="account" class="col-xs-4 align-right">
  630. <ul>
  631. <li>
  632. </li>
  633. <li>
  634. <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwtRB%2f9%2f2QVXHJOXyA8PWEG%252baj6lZ7rPdeQdOWb8%2fQSSUslf7Z%2fe3KFNnXQPbQYa9WuG%252bj3nYDBpT0fW0K4awHLXx2XsOsHdJmH6X4nK79huQw%3d%3d">登录</a>
  635. </li>
  636. <li>
  637. </li>
  638. <li>
  639. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  643. </li>
  644. <li>
  645. <!-- Mush:TBC -->
  646. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  647. </li>
  648. </ul>
  649. </div>
  650. </div>
  651. <div id="navArea" class="row">
  652. <div class="col-xs-12">
  653. <div id="navMain" class="inline-block">
  654. <div class="navbar">
  655. <ul class="topnav">
  656. <li>
  657. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  658. <ul class="subnav" id="subnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  661. </li>
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  670. </li>
  671. </ul>
  672. </li>
  673. <li>
  674. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  675. <ul class="subnav" id="subnav">
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  678. </li>
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  687. </li>
  688. </ul>
  689. </li>
  690. <li>
  691. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  692. <ul class="subnav" id="subnav">
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  695. </li>
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  725. </li>
  726. </ul>
  727. </li>
  728. <li>
  729. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  730. <ul class="subnav" id="subnav">
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  733. </li>
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  760. </li>
  761. </ul>
  762. </li>
  763. <li>
  764. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  765. <ul class="subnav" id="subnav">
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  768. </li>
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  777. </li>
  778. </ul>
  779. </li>
  780. <li>
  781. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  782. <ul class="subnav" id="subnav">
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  785. </li>
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  797. </li>
  798. </ul>
  799. </li>
  800. </ul>
  801. </div>
  802. </div>
  803. <div class="onlineCatalog inline-block">
  804. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  805. </div>
  806. </div>
  807. </div>
  808. </div>
  809. <div style="visibility: hidden; height: 0px;">
  810. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  811. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  812. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  813. </div>
  814. <script type="text/javascript">
  815. $(document).ready(function () {
  816. //* change to html5 catalog if javascript is enabled *
  817. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  818. });
  819. </script>
  820. <script type="text/javascript" src='../../../../../javascript/genLib.js'></script>
  821. </div>
  822. <div id="ctl00_divWide" class="divWide">
  823. <link rel="stylesheet" type="text/css" href='../../../../../css/fontawesome/css/font-awesome.min.css' />
  824. <br />
  825. <strong></strong>
  826. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  827. <strong>></strong>
  828. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" href="../../../../_/N-5g1x/" style="font-size: 9pt; font-weight: bold;">机电产品</a>
  829. <strong>></strong>
  830. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-5g1y/" style="font-size: 9pt; font-weight: bold;">工业自动化</a>
  831. <strong>></strong>
  832. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">接线端子板</a>
  833. <hr />
  834. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  835. <div class="categorySearchLimits">
  836. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  837. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<span title="机电产品"><input id="ctl00_ContentMain_uc1_chkbx254085|Electromechanical" type="checkbox" name="ctl00$ContentMain$uc1$chkbx254085|Electromechanical" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx254086|Industrial Automation&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx18525969|Terminal Blocks&#39;).checked = false;" /></span>&nbsp;<b>机电产品</b>&nbsp;&#62;&nbsp;<span title="工业自动化"><input id="ctl00_ContentMain_uc1_chkbx254086|Industrial Automation" type="checkbox" name="ctl00$ContentMain$uc1$chkbx254086|Industrial Automation" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx254085|Electromechanical&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx18525969|Terminal Blocks&#39;).checked = false;" /></span>&nbsp;<b>工业自动化</b>&nbsp;&#62;&nbsp;<span title="接线端子板"><input id="ctl00_ContentMain_uc1_chkbx18525969|Terminal Blocks" type="checkbox" name="ctl00$ContentMain$uc1$chkbx18525969|Terminal Blocks" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx254085|Electromechanical&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc1_chkbx254086|Industrial Automation&#39;).checked = true;" /></span>&nbsp;<b>接线端子板</b>
  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. <!--Marketing Content-->
  848. <div id="ctl00_ContentMain_refinemfglogo">
  849. </div>
  850. </div><!--.category-content-->
  851. </div>
  852. </td>
  853. </tr>
  854. <tr>
  855. <td>
  856. </td>
  857. </tr>
  858. <tr>
  859. <td>
  860. <div id="refine-page2">
  861. </div>
  862. </td>
  863. </tr>
  864. </table>
  865. <div id="ctl00_ContentMain_divTabs" class="row">
  866. <div class="col-xs-12">
  867. <div id="tabsNavigation" >
  868. <ul>
  869. <li id="ctl00_ContentMain_liProductsTab" class="active">
  870. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(5,058)</span></a>
  871. </li>
  872. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  873. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Terminal Blocks&#39;);" href="../../Datasheets/_/N-b12q9">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(1,938)</span></a>
  874. </li>
  875. <li id="ctl00_ContentMain_liImagesTab" class="">
  876. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Terminal Blocks&#39;);" href="../../Images/_/N-b12q9">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(2,625)</span></a>
  877. </li>
  878. <li id="ctl00_ContentMain_liNewestTab" class="">
  879. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Terminal Blocks&#39;);" href="../../Newest-Products/_/N-b12q9">最新产品</a>
  880. </li>
  881. </ul>
  882. </div>
  883. </div>
  884. </div>
  885. <div id="tabDivs" class="tab-divs">
  886. <!-- Hide the View links if javascript is disabled -->
  887. <noscript>
  888. <style type="text/css">
  889. .list-visual
  890. {
  891. display: none;
  892. }
  893. </style>
  894. </noscript>
  895. <div id="CategoryControlTop">
  896. <table class="table-categories">
  897. <tr><td valign="top">
  898. <input type="hidden" name="ctl00$ContentMain$uc6$listCategories$ctl01$hdnCatID" id="ctl00_ContentMain_uc6_listCategories_ctl01_hdnCatID" value="18525969" />
  899. <div class="topCatTitle">
  900. <div class="col-xs-8 no-left-pad">
  901. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkCategory" class="SearchResultsTopLevelCategory" href="./"><h2>接线端子板类型</h2></a>
  902. </div>
  903. <div class="text-right">
  904. <div class="list-visual">
  905. <ul>
  906. <li class="right-border active">
  907. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;List&#39;, &#39;Terminal Blocks&#39;); SwitchListView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkListView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkListView&#39;,&#39;&#39;)">
  908. <i class="fa fa-th-list"></i>&nbsp;列表</a>
  909. </li>
  910. <li>
  911. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;Visual&#39;, &#39;Terminal Blocks&#39;); SwitchVisualView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkVisualView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkVisualView&#39;,&#39;&#39;)">
  912. <i class="fa fa-th-large"></i>&nbsp;目视</a>
  913. </li>
  914. </ul>
  915. </div>
  916. </div>
  917. </div>
  918. <ul class="sub-cats">
  919. <table id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories" cellspacing="0" style="width:100%;border-collapse:collapse;">
  920. <tr>
  921. <td>
  922. <li class="sub-cat">
  923. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18534733.png" alt="DIN Rail Terminal Blocks" /></div>
  924. <div class="div-cat-title">
  925. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../DIN-Rail-Terminal-Blocks/_/N-b19hp/"><h3>DIN导轨式接线端子</h3></a>
  926. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lblRecordCount">3,919</span>)</span>
  927. </div>
  928. </li>
  929. </td><td>
  930. <li class="sub-cat">
  931. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/18534787.png" alt="Interface Modules" /></div>
  932. <div class="div-cat-title">
  933. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Interface-Modules/_/N-b19j7/"><h3>界面模块</h3></a>
  934. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lblRecordCount">1,139</span>)</span>
  935. </div>
  936. </li>
  937. </td><td></td>
  938. </tr>
  939. </table></ul>
  940. </td></tr></table>
  941. <div id="search-left-col">
  942. </div>
  943. </div>
  944. <script type="text/javascript">
  945. //<![CDATA[
  946. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  947. //]]>
  948. </script>
  949. <div id="ctl00_ContentMain_liProducts">
  950. <div id="refineSearchDiv">
  951. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  952. <div id="refine-keyword-search-2">
  953. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  954. <div id="boxPartSearch2">
  955. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  956. <tr>
  957. <td rowspan="3" style="vertical-align: middle">
  958. <div id="searchPartNumberBox" class="search-box" >
  959. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  960. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  961. </div>
  962. </td>
  963. </tr>
  964. <tr>
  965. <td class="chk-Search">
  966. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  967. </td>
  968. </tr>
  969. <tr>
  970. <td class="chk-Search">
  971. <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>
  972. </td>
  973. </tr>
  974. </table>
  975. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  976. </div>
  977. <script type="text/javascript" src='../../../../../flash/js/Placeholders.min.js'></script>
  978. <script type="text/javascript" src='../../../../../flash/js/watermark.js'></script>
  979. </div>
  980. </div>
  981. <div id="refine-mfg-select-2">
  982. <div id="ctl00_ContentMain_uc3_BoxManufacturer" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc3_btnSelectManufacturer&#39;)">
  983. <div id="boxSuppliers">
  984. <table id="ctl00_ContentMain_uc3_tblSuppliers" class="tblSuppliers2">
  985. <tr>
  986. <td valign="middle" align="left">
  987. <table cellspacing="0" cellpadding="0" width="100%">
  988. <tr>
  989. <td style="vertical-align: middle;">
  990. <select name="ctl00$ContentMain$uc3$ddlManufacturer" id="ctl00_ContentMain_uc3_ddlManufacturer" class="default">
  991. <option selected="selected" value="0">所有制造商</option>
  992. <option value="4292487161">ADLINK Technology (43)</option>
  993. <option value="4284836075">Advantech (14)</option>
  994. <option value="4294759664">Altech (327)</option>
  995. <option value="4294764080">Amphenol (18)</option>
  996. <option value="4294759266">Applied Motion (2)</option>
  997. <option value="4291501706">B&amp;B Electronics (4)</option>
  998. <option value="4292858401">BEI Sensors (1)</option>
  999. <option value="4282698358">Digilent (4)</option>
  1000. <option value="4284899682">Eaton (80)</option>
  1001. <option value="4294759256">FCI (115)</option>
  1002. <option value="4291607133">Gravitech (22)</option>
  1003. <option value="4294424657">Honeywell (5)</option>
  1004. <option value="4294759010">Omron (121)</option>
  1005. <option value="4294759378">Phoenix Contact (4,140)</option>
  1006. <option value="4290493392">Schneider Electric (48)</option>
  1007. <option value="4292733690">TE Connectivity (114)</option>
  1008. </select>
  1009. </td>
  1010. <td style="vertical-align: middle;">
  1011. <input type="submit" name="ctl00$ContentMain$uc3$btnSelectManufacturer" value="确定" onclick="return attributecount();" id="ctl00_ContentMain_uc3_btnSelectManufacturer" title="确定" class="button" />
  1012. </td>
  1013. </tr>
  1014. </table>
  1015. </td>
  1016. </tr>
  1017. </table>
  1018. </div>
  1019. </div>
  1020. </div>
  1021. <div class="clear">
  1022. </div>
  1023. </div>
  1024. <div id="refine-mfg-logo2">
  1025. </div>
  1026. </div>
  1027. <br />
  1028. <table border="0" width="100%">
  1029. <tr>
  1030. <td>
  1031. </td>
  1032. </tr>
  1033. <tr>
  1034. <td>
  1035. <!--- Search Features --->
  1036. </td>
  1037. </tr>
  1038. <tr>
  1039. <td>
  1040. <div id="refine-page">
  1041. </div>
  1042. </td>
  1043. </tr>
  1044. <tr>
  1045. <td class="refine-show-products">
  1046. <span class="redtextb">
  1047. </span> <span class="redtextb">
  1048. </span> <span class="redtextb">
  1049. </span> <span class="redtextb">
  1050. </span>
  1051. <span class="redtextb">
  1052. </span>
  1053. </td>
  1054. </tr>
  1055. <tr>
  1056. <td>
  1057. </td>
  1058. </tr>
  1059. <tr>
  1060. <td>
  1061. <!--- Special Order Parts New --->
  1062. <!-- SOP Section 1 -->
  1063. </td>
  1064. </tr>
  1065. </table>
  1066. <div id="searchResultsTbl">
  1067. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  1068. <tr>
  1069. <td class="tdSearchResultsPagingTop">
  1070. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  1071. <tr>
  1072. <td>
  1073. <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" />
  1074. </td>
  1075. <td>
  1076. <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" />
  1077. </td>
  1078. <td>
  1079. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  1080. </td>
  1081. <td style="padding-left: 40px;">
  1082. <div class="floatrightpager">
  1083. <span class="bold">
  1084. 页面:
  1085. </span>
  1086. <span id="ctl00_ContentMain_PagerTop"><span id="ctl00_ContentMain_PagerTop_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerTop_1" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_202" class="first-last" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=5050">203</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=25">下一页</a></span>
  1087. </div>
  1088. </td>
  1089. </tr>
  1090. </table>
  1091. </td>
  1092. </tr>
  1093. <tr>
  1094. <td>
  1095. <div>
  1096. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  1097. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  1098. <th class="td-select" scope="col" style="width:35px;">
  1099. 选择
  1100. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  1101. </th><th scope="col">制造商 零件编号
  1102. </th><th scope="col">制造商
  1103. </th><th scope="col">描述
  1104. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../Images/Search/pdf.gif" alt="文件" />
  1105. </th><th scope="col">供货情况
  1106. </th><th scope="col">单价(含17%增值税)
  1107. <br />
  1108. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  1109. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  1110. </th>
  1111. </tr><tr class="SearchResultsSortCell">
  1112. <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$ctl11&#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$ctl13&#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_ctl15" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl15&#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$ctl17&#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$ctl19&#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$ctl21&#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$ctl23&#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$ctl25&#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$ctl27&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td>
  1113. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3214325" data-index="3">
  1114. <td class="td-select" align="center">
  1115. <div style="padding: 5px 5px 0 5px;">
  1116. <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>
  1117. </div>
  1118. </td><td><a href='/ProductDetail/Phoenix-Contact/3214325/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm87DW1R3FE4e3Wo%252bZg1buDFg%3d%3d'><img title='Phoenix Contact 3214325' alt='Phoenix Contact 3214325' id=1309209671 src='/images/phoenixcontact/sm/3214325_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3214325_SPL.jpg</div></a></td><td>
  1119. <div style="text-align:left;">
  1120. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3214325/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm87DW1R3FE4e3Wo%252bZg1buDFg%3d%3d">651-3214325</a><br />
  1121. <br />
  1122. <br />
  1123. </div></td><td>
  1124. <div class="mfrDiv">
  1125. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3214325/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm87DW1R3FE4e3Wo%252bZg1buDFg%3d%3d">3214325</a><br />
  1126. <br />
  1127. <div style="width: 100%; text-align: center;">
  1128. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1129. </div>
  1130. <div style="width: 100%; text-align: center;">
  1131. </div>
  1132. </div>
  1133. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  1134. </td><td>DIN导轨式接线端子 UT 4-L/HESI (5X20)
  1135. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1136. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ut-terminal-blocks">了解更多</a>
  1137. </div>
  1138. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1139. </div>
  1140. </td><td>
  1141. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">701<br/>有库存</span>
  1142. <table>
  1143. <tr align="center">
  1144. <td style="padding-top: 5px">
  1145. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Phoenix-Contact/3214325/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm87DW1R3FE4e3Wo%252bZg1buDFg%3d%3d">更多信息可用 </a>
  1146. </td>
  1147. </tr>
  1148. <tr align="center">
  1149. <td style="padding-top: 5px; padding-bottom: 5px">
  1150. </td>
  1151. </tr>
  1152. </table></td><td>
  1153. <table class="PriceBreaks" cellspacing="0" border="0">
  1154. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1155. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1156. </td>
  1157. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1158. </td>
  1159. </tr>
  1160. <tr>
  1161. <td class="PriceBreakQuantity">
  1162. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  1163. </td>
  1164. <td class="PriceBreakPrice">
  1165. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥71.6976</span>
  1166. </td>
  1167. </tr>
  1168. <tr>
  1169. <td class="PriceBreakQuantity">
  1170. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  1171. </td>
  1172. <td class="PriceBreakPrice">
  1173. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥69.7671</span>
  1174. </td>
  1175. </tr>
  1176. <tr>
  1177. <td class="PriceBreakQuantity">
  1178. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  1179. </td>
  1180. <td class="PriceBreakPrice">
  1181. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥68.0004</span>
  1182. </td>
  1183. </tr>
  1184. <tr>
  1185. <td class="PriceBreakQuantity">
  1186. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,50);">50:</a>
  1187. </td>
  1188. <td class="PriceBreakPrice">
  1189. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥65.2275</span>
  1190. </td>
  1191. </tr>
  1192. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1193. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1194. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(1,100);">100:</a>
  1195. </td>
  1196. <td class="PriceBreakPrice">
  1197. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3214325/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm87DW1R3FE4e3Wo%252bZg1buDFg%3d%3d">查看</a>
  1198. </td>
  1199. </tr>
  1200. <tr>
  1201. <td><br /></td>
  1202. </tr>
  1203. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1204. <td colspan="2" style="text-align: center;">
  1205. </td>
  1206. </tr>
  1207. </table>
  1208. </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;)">
  1209. <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 />
  1210. <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="购买 3214325" class="buy-button" /><br />
  1211. <table cellspacing="0" border="0" style="width: 100%;">
  1212. <tr>
  1213. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1214. 最低:
  1215. </td>
  1216. <td style="padding-left: 2px; text-align: left;">
  1217. 1
  1218. </td>
  1219. </tr>
  1220. <tr>
  1221. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1222. 多个:
  1223. </td>
  1224. <td style="padding-left: 2px; text-align: left;">
  1225. 1
  1226. </td>
  1227. </tr>
  1228. </table>
  1229. </div>
  1230. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  1231. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1232. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7DsUUQ4AlYVHaw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7DsUUQ4AlYVHaw%3d%3d" target="_blank">详细信息</a>
  1233. </div>
  1234. </td>
  1235. </tr><tr class="SearchResultsRowEven" data-partnumber="651-3214320" data-index="4">
  1236. <td class="td-select" align="center">
  1237. <div style="padding: 5px 5px 0 5px;">
  1238. <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>
  1239. </div>
  1240. </td><td><a href='/ProductDetail/Phoenix-Contact/3214320/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8sqophjb7YVC9HZryXXM4hQ%3d%3d'><img title='Phoenix Contact 3214320' alt='Phoenix Contact 3214320' id=1309209661 src='/images/phoenixcontact/sm/3214320_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3214320_SPL.jpg</div></a></td><td>
  1241. <div style="text-align:left;">
  1242. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3214320/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8sqophjb7YVC9HZryXXM4hQ%3d%3d">651-3214320</a><br />
  1243. <br />
  1244. <br />
  1245. </div></td><td>
  1246. <div class="mfrDiv">
  1247. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3214320/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8sqophjb7YVC9HZryXXM4hQ%3d%3d">3214320</a><br />
  1248. <br />
  1249. <div style="width: 100%; text-align: center;">
  1250. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1251. </div>
  1252. <div style="width: 100%; text-align: center;">
  1253. </div>
  1254. </div>
  1255. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  1256. </td><td>DIN导轨式接线端子 UT 4-PE/L/HESI (5X20)
  1257. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1258. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ut-terminal-blocks">了解更多</a>
  1259. </div>
  1260. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1261. </div>
  1262. </td><td>
  1263. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">278<br/>有库存</span>
  1264. <table>
  1265. <tr align="center">
  1266. <td style="padding-top: 5px">
  1267. </td>
  1268. </tr>
  1269. <tr align="center">
  1270. <td style="padding-top: 5px; padding-bottom: 5px">
  1271. </td>
  1272. </tr>
  1273. </table></td><td>
  1274. <table class="PriceBreaks" cellspacing="0" border="0">
  1275. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1276. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1277. </td>
  1278. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1279. </td>
  1280. </tr>
  1281. <tr>
  1282. <td class="PriceBreakQuantity">
  1283. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  1284. </td>
  1285. <td class="PriceBreakPrice">
  1286. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥128.3724</span>
  1287. </td>
  1288. </tr>
  1289. <tr>
  1290. <td class="PriceBreakQuantity">
  1291. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  1292. </td>
  1293. <td class="PriceBreakPrice">
  1294. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥124.9092</span>
  1295. </td>
  1296. </tr>
  1297. <tr>
  1298. <td class="PriceBreakQuantity">
  1299. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,25);">25:</a>
  1300. </td>
  1301. <td class="PriceBreakPrice">
  1302. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥121.68</span>
  1303. </td>
  1304. </tr>
  1305. <tr>
  1306. <td class="PriceBreakQuantity">
  1307. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,50);">50:</a>
  1308. </td>
  1309. <td class="PriceBreakPrice">
  1310. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥116.7426</span>
  1311. </td>
  1312. </tr>
  1313. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1314. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1315. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  1316. </td>
  1317. <td class="PriceBreakPrice">
  1318. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3214320/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8sqophjb7YVC9HZryXXM4hQ%3d%3d">查看</a>
  1319. </td>
  1320. </tr>
  1321. <tr>
  1322. <td><br /></td>
  1323. </tr>
  1324. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1325. <td colspan="2" style="text-align: center;">
  1326. </td>
  1327. </tr>
  1328. </table>
  1329. </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;)">
  1330. <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 />
  1331. <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="购买 3214320" class="buy-button" /><br />
  1332. <table cellspacing="0" border="0" style="width: 100%;">
  1333. <tr>
  1334. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1335. 最低:
  1336. </td>
  1337. <td style="padding-left: 2px; text-align: left;">
  1338. 1
  1339. </td>
  1340. </tr>
  1341. <tr>
  1342. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1343. 多个:
  1344. </td>
  1345. <td style="padding-left: 2px; text-align: left;">
  1346. 1
  1347. </td>
  1348. </tr>
  1349. </table>
  1350. </div>
  1351. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  1352. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1353. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7Dti1iH%2fkMSH2A%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7Dti1iH%2fkMSH2A%3d%3d" target="_blank">详细信息</a>
  1354. </div>
  1355. </td>
  1356. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3214321" data-index="5">
  1357. <td class="td-select" align="center">
  1358. <div style="padding: 5px 5px 0 5px;">
  1359. <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>
  1360. </div>
  1361. </td><td><a href='/ProductDetail/Phoenix-Contact/3214321/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8bh8eqpPbYe0acDRT28OHAg%3d%3d'><img title='Phoenix Contact 3214321' alt='Phoenix Contact 3214321' id=1309209663 src='/images/phoenixcontact/sm/3214320_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3214320_SPL.jpg</div></a></td><td>
  1362. <div style="text-align:left;">
  1363. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3214321/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8bh8eqpPbYe0acDRT28OHAg%3d%3d">651-3214321</a><br />
  1364. <br />
  1365. <br />
  1366. </div></td><td>
  1367. <div class="mfrDiv">
  1368. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3214321/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8bh8eqpPbYe0acDRT28OHAg%3d%3d">3214321</a><br />
  1369. <br />
  1370. <div style="width: 100%; text-align: center;">
  1371. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1372. </div>
  1373. <div style="width: 100%; text-align: center;">
  1374. </div>
  1375. </div>
  1376. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  1377. </td><td>DIN导轨式接线端子 UT 4-PE/L/HESILED 24 (5X20)
  1378. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1379. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ut-terminal-blocks">了解更多</a>
  1380. </div>
  1381. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1382. </div>
  1383. </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;Phoenix Contact&quot;,&quot;651-3214321 | 3214321&quot;]);" href="http://www.mouser.com/ds/2/324/ItemDetail_3214321-846129.pdf" target="_blank">数据表</a>
  1384. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">90<br/>有库存</span>
  1385. <table>
  1386. <tr align="center">
  1387. <td style="padding-top: 5px">
  1388. </td>
  1389. </tr>
  1390. <tr align="center">
  1391. <td style="padding-top: 5px; padding-bottom: 5px">
  1392. </td>
  1393. </tr>
  1394. </table></td><td>
  1395. <table class="PriceBreaks" cellspacing="0" border="0">
  1396. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1397. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1398. </td>
  1399. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1400. </td>
  1401. </tr>
  1402. <tr>
  1403. <td class="PriceBreakQuantity">
  1404. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  1405. </td>
  1406. <td class="PriceBreakPrice">
  1407. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥177.3486</span>
  1408. </td>
  1409. </tr>
  1410. <tr>
  1411. <td class="PriceBreakQuantity">
  1412. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  1413. </td>
  1414. <td class="PriceBreakPrice">
  1415. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥172.5048</span>
  1416. </td>
  1417. </tr>
  1418. <tr>
  1419. <td class="PriceBreakQuantity">
  1420. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  1421. </td>
  1422. <td class="PriceBreakPrice">
  1423. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥168.1173</span>
  1424. </td>
  1425. </tr>
  1426. <tr>
  1427. <td class="PriceBreakQuantity">
  1428. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,50);">50:</a>
  1429. </td>
  1430. <td class="PriceBreakPrice">
  1431. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥161.2611</span>
  1432. </td>
  1433. </tr>
  1434. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1435. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1436. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  1437. </td>
  1438. <td class="PriceBreakPrice">
  1439. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3214321/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8bh8eqpPbYe0acDRT28OHAg%3d%3d">查看</a>
  1440. </td>
  1441. </tr>
  1442. <tr>
  1443. <td><br /></td>
  1444. </tr>
  1445. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1446. <td colspan="2" style="text-align: center;">
  1447. </td>
  1448. </tr>
  1449. </table>
  1450. </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;)">
  1451. <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 />
  1452. <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="购买 3214321" class="buy-button" /><br />
  1453. <table cellspacing="0" border="0" style="width: 100%;">
  1454. <tr>
  1455. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1456. 最低:
  1457. </td>
  1458. <td style="padding-left: 2px; text-align: left;">
  1459. 1
  1460. </td>
  1461. </tr>
  1462. <tr>
  1463. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1464. 多个:
  1465. </td>
  1466. <td style="padding-left: 2px; text-align: left;">
  1467. 1
  1468. </td>
  1469. </tr>
  1470. </table>
  1471. </div>
  1472. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  1473. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1474. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7Dvdu8o%252b5jI%2frQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7Dvdu8o%252b5jI%2frQ%3d%3d" target="_blank">详细信息</a>
  1475. </div>
  1476. </td>
  1477. </tr><tr class="SearchResultsRowEven" data-partnumber="651-3214366" data-index="6">
  1478. <td class="td-select" align="center">
  1479. <div style="padding: 5px 5px 0 5px;">
  1480. <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>
  1481. </div>
  1482. </td><td><a href='/ProductDetail/Phoenix-Contact/3214366/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMx9YpYwTuddPhTCtu3Fatvzw%3d%3d'><img title='Phoenix Contact 3214366' alt='Phoenix Contact 3214366' id=1350423126 src='/images/phoenixcontact/sm/3214320_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3214320_SPL.jpg</div></a></td><td>
  1483. <div style="text-align:left;">
  1484. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3214366/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMx9YpYwTuddPhTCtu3Fatvzw%3d%3d">651-3214366</a><br />
  1485. <br />
  1486. <br />
  1487. </div></td><td>
  1488. <div class="mfrDiv">
  1489. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3214366/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMx9YpYwTuddPhTCtu3Fatvzw%3d%3d">3214366</a><br />
  1490. <br />
  1491. <div style="width: 100%; text-align: center;">
  1492. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1493. </div>
  1494. <div style="width: 100%; text-align: center;">
  1495. </div>
  1496. </div>
  1497. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  1498. </td><td>DIN导轨式接线端子 UT 4-L/HESILED 24 (5X20)
  1499. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1500. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ut-terminal-blocks">了解更多</a>
  1501. </div>
  1502. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1503. </div>
  1504. </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;Phoenix Contact&quot;,&quot;651-3214366 | 3214366&quot;]);" href="http://www.mouser.com/ds/2/324/ItemDetail_3214366-848776.pdf" target="_blank">数据表</a>
  1505. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">121<br/>有库存</span>
  1506. <table>
  1507. <tr align="center">
  1508. <td style="padding-top: 5px">
  1509. </td>
  1510. </tr>
  1511. <tr align="center">
  1512. <td style="padding-top: 5px; padding-bottom: 5px">
  1513. </td>
  1514. </tr>
  1515. </table></td><td>
  1516. <table class="PriceBreaks" cellspacing="0" border="0">
  1517. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1518. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1519. </td>
  1520. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1521. </td>
  1522. </tr>
  1523. <tr>
  1524. <td class="PriceBreakQuantity">
  1525. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  1526. </td>
  1527. <td class="PriceBreakPrice">
  1528. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥101.1114</span>
  1529. </td>
  1530. </tr>
  1531. <tr>
  1532. <td class="PriceBreakQuantity">
  1533. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,10);">10:</a>
  1534. </td>
  1535. <td class="PriceBreakPrice">
  1536. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥98.3385</span>
  1537. </td>
  1538. </tr>
  1539. <tr>
  1540. <td class="PriceBreakQuantity">
  1541. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,25);">25:</a>
  1542. </td>
  1543. <td class="PriceBreakPrice">
  1544. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥95.7996</span>
  1545. </td>
  1546. </tr>
  1547. <tr>
  1548. <td class="PriceBreakQuantity">
  1549. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,50);">50:</a>
  1550. </td>
  1551. <td class="PriceBreakPrice">
  1552. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥91.9503</span>
  1553. </td>
  1554. </tr>
  1555. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1556. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1557. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(4,100);">100:</a>
  1558. </td>
  1559. <td class="PriceBreakPrice">
  1560. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3214366/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMx9YpYwTuddPhTCtu3Fatvzw%3d%3d">查看</a>
  1561. </td>
  1562. </tr>
  1563. <tr>
  1564. <td><br /></td>
  1565. </tr>
  1566. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1567. <td colspan="2" style="text-align: center;">
  1568. </td>
  1569. </tr>
  1570. </table>
  1571. </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;)">
  1572. <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 />
  1573. <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="购买 3214366" class="buy-button" /><br />
  1574. <table cellspacing="0" border="0" style="width: 100%;">
  1575. <tr>
  1576. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1577. 最低:
  1578. </td>
  1579. <td style="padding-left: 2px; text-align: left;">
  1580. 1
  1581. </td>
  1582. </tr>
  1583. <tr>
  1584. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1585. 多个:
  1586. </td>
  1587. <td style="padding-left: 2px; text-align: left;">
  1588. 1
  1589. </td>
  1590. </tr>
  1591. </table>
  1592. </div>
  1593. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  1594. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1595. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=C7CiHI%252b3KsWtVtBJjwNhSw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=C7CiHI%252b3KsWtVtBJjwNhSw%3d%3d" target="_blank">详细信息</a>
  1596. </div>
  1597. </td>
  1598. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3212066" data-index="7">
  1599. <td class="td-select" align="center">
  1600. <div style="padding: 5px 5px 0 5px;">
  1601. <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>
  1602. </div>
  1603. </td><td><a href='/ProductDetail/Phoenix-Contact/3212066/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjo9rrLXiMwdXA6oiwWyK%252b5Ww%3d%3d'><img title='Phoenix Contact 3212066' alt='Phoenix Contact 3212066' id=1513626205 src='/images/phoenixcontact/sm/3212066_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3212066_SPL.jpg</div></a></td><td>
  1604. <div style="text-align:left;">
  1605. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3212066/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjo9rrLXiMwdXA6oiwWyK%252b5Ww%3d%3d">651-3212066</a><br />
  1606. <br />
  1607. <br />
  1608. </div></td><td>
  1609. <div class="mfrDiv">
  1610. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3212066/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjo9rrLXiMwdXA6oiwWyK%252b5Ww%3d%3d">3212066</a><br />
  1611. <br />
  1612. <div style="width: 100%; text-align: center;">
  1613. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1614. </div>
  1615. <div style="width: 100%; text-align: center;">
  1616. </div>
  1617. </div>
  1618. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  1619. </td><td>DIN导轨式接线端子 PTPOWER 35-PE
  1620. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1621. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ptpower-35">了解更多</a>
  1622. </div>
  1623. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1624. </div>
  1625. </td><td>
  1626. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">77<br/>有库存</span>
  1627. <table>
  1628. <tr align="center">
  1629. <td style="padding-top: 5px">
  1630. </td>
  1631. </tr>
  1632. <tr align="center">
  1633. <td style="padding-top: 5px; padding-bottom: 5px">
  1634. </td>
  1635. </tr>
  1636. </table></td><td>
  1637. <table class="PriceBreaks" cellspacing="0" border="0">
  1638. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1639. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1640. </td>
  1641. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1642. </td>
  1643. </tr>
  1644. <tr>
  1645. <td class="PriceBreakQuantity">
  1646. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  1647. </td>
  1648. <td class="PriceBreakPrice">
  1649. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥123.1425</span>
  1650. </td>
  1651. </tr>
  1652. <tr>
  1653. <td class="PriceBreakQuantity">
  1654. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  1655. </td>
  1656. <td class="PriceBreakPrice">
  1657. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥115.5141</span>
  1658. </td>
  1659. </tr>
  1660. <tr>
  1661. <td class="PriceBreakQuantity">
  1662. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,20);">20:</a>
  1663. </td>
  1664. <td class="PriceBreakPrice">
  1665. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥110.1204</span>
  1666. </td>
  1667. </tr>
  1668. <tr>
  1669. <td class="PriceBreakQuantity">
  1670. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,50);">50:</a>
  1671. </td>
  1672. <td class="PriceBreakPrice">
  1673. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥106.2009</span>
  1674. </td>
  1675. </tr>
  1676. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1677. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1678. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(5,100);">100:</a>
  1679. </td>
  1680. <td class="PriceBreakPrice">
  1681. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3212066/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjo9rrLXiMwdXA6oiwWyK%252b5Ww%3d%3d">查看</a>
  1682. </td>
  1683. </tr>
  1684. <tr>
  1685. <td><br /></td>
  1686. </tr>
  1687. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1688. <td colspan="2" style="text-align: center;">
  1689. </td>
  1690. </tr>
  1691. </table>
  1692. </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;)">
  1693. <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 />
  1694. <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="购买 3212066" class="buy-button" /><br />
  1695. <table cellspacing="0" border="0" style="width: 100%;">
  1696. <tr>
  1697. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1698. 最低:
  1699. </td>
  1700. <td style="padding-left: 2px; text-align: left;">
  1701. 1
  1702. </td>
  1703. </tr>
  1704. <tr>
  1705. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1706. 多个:
  1707. </td>
  1708. <td style="padding-left: 2px; text-align: left;">
  1709. 1
  1710. </td>
  1711. </tr>
  1712. </table>
  1713. </div>
  1714. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  1715. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1716. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1m1GD61jf8%2fjkGNIvrmijw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1m1GD61jf8%2fjkGNIvrmijw%3d%3d" target="_blank">详细信息</a>
  1717. </div>
  1718. </td>
  1719. </tr><tr class="SearchResultsRowEven" data-partnumber="651-3214323" data-index="8">
  1720. <td class="td-select" align="center">
  1721. <div style="padding: 5px 5px 0 5px;">
  1722. <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>
  1723. </div>
  1724. </td><td><a href='/ProductDetail/Phoenix-Contact/3214323/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8BLTfD23LZNwkdeA%252bXYfwzA%3d%3d'><img title='Phoenix Contact 3214323' alt='Phoenix Contact 3214323' id=1309209667 src='/images/phoenixcontact/sm/3214320_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3214320_SPL.jpg</div></a></td><td>
  1725. <div style="text-align:left;">
  1726. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3214323/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8BLTfD23LZNwkdeA%252bXYfwzA%3d%3d">651-3214323</a><br />
  1727. <br />
  1728. <br />
  1729. </div></td><td>
  1730. <div class="mfrDiv">
  1731. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3214323/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8BLTfD23LZNwkdeA%252bXYfwzA%3d%3d">3214323</a><br />
  1732. <br />
  1733. <div style="width: 100%; text-align: center;">
  1734. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1735. </div>
  1736. <div style="width: 100%; text-align: center;">
  1737. </div>
  1738. </div>
  1739. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  1740. </td><td>DIN导轨式接线端子 UT4-PE/L/HESILED 250 (5X20)
  1741. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1742. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ut-terminal-blocks">了解更多</a>
  1743. </div>
  1744. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1745. </div>
  1746. </td><td>
  1747. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">49<br/>有库存</span>
  1748. <table>
  1749. <tr align="center">
  1750. <td style="padding-top: 5px">
  1751. </td>
  1752. </tr>
  1753. <tr align="center">
  1754. <td style="padding-top: 5px; padding-bottom: 5px">
  1755. </td>
  1756. </tr>
  1757. </table></td><td>
  1758. <table class="PriceBreaks" cellspacing="0" border="0">
  1759. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1760. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1761. </td>
  1762. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1763. </td>
  1764. </tr>
  1765. <tr>
  1766. <td class="PriceBreakQuantity">
  1767. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  1768. </td>
  1769. <td class="PriceBreakPrice">
  1770. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥180.2736</span>
  1771. </td>
  1772. </tr>
  1773. <tr>
  1774. <td class="PriceBreakQuantity">
  1775. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  1776. </td>
  1777. <td class="PriceBreakPrice">
  1778. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥175.4298</span>
  1779. </td>
  1780. </tr>
  1781. <tr>
  1782. <td class="PriceBreakQuantity">
  1783. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  1784. </td>
  1785. <td class="PriceBreakPrice">
  1786. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥170.8785</span>
  1787. </td>
  1788. </tr>
  1789. <tr>
  1790. <td class="PriceBreakQuantity">
  1791. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,50);">50:</a>
  1792. </td>
  1793. <td class="PriceBreakPrice">
  1794. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥163.9521</span>
  1795. </td>
  1796. </tr>
  1797. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1798. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1799. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  1800. </td>
  1801. <td class="PriceBreakPrice">
  1802. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3214323/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8BLTfD23LZNwkdeA%252bXYfwzA%3d%3d">查看</a>
  1803. </td>
  1804. </tr>
  1805. <tr>
  1806. <td><br /></td>
  1807. </tr>
  1808. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1809. <td colspan="2" style="text-align: center;">
  1810. </td>
  1811. </tr>
  1812. </table>
  1813. </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;)">
  1814. <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 />
  1815. <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="购买 3214323" class="buy-button" /><br />
  1816. <table cellspacing="0" border="0" style="width: 100%;">
  1817. <tr>
  1818. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1819. 最低:
  1820. </td>
  1821. <td style="padding-left: 2px; text-align: left;">
  1822. 1
  1823. </td>
  1824. </tr>
  1825. <tr>
  1826. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1827. 多个:
  1828. </td>
  1829. <td style="padding-left: 2px; text-align: left;">
  1830. 1
  1831. </td>
  1832. </tr>
  1833. </table>
  1834. </div>
  1835. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  1836. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1837. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7DsA4nYbkL3u0A%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7DsA4nYbkL3u0A%3d%3d" target="_blank">详细信息</a>
  1838. </div>
  1839. </td>
  1840. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3214322" data-index="9">
  1841. <td class="td-select" align="center">
  1842. <div style="padding: 5px 5px 0 5px;">
  1843. <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>
  1844. </div>
  1845. </td><td><a href='/ProductDetail/Phoenix-Contact/3214322/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8dCSgA5Wn0Ezdy5KsMegU3A%3d%3d'><img title='Phoenix Contact 3214322' alt='Phoenix Contact 3214322' id=1309209665 src='/images/phoenixcontact/sm/3214320_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3214320_SPL.jpg</div></a></td><td>
  1846. <div style="text-align:left;">
  1847. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3214322/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8dCSgA5Wn0Ezdy5KsMegU3A%3d%3d">651-3214322</a><br />
  1848. <br />
  1849. <br />
  1850. </div></td><td>
  1851. <div class="mfrDiv">
  1852. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3214322/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8dCSgA5Wn0Ezdy5KsMegU3A%3d%3d">3214322</a><br />
  1853. <br />
  1854. <div style="width: 100%; text-align: center;">
  1855. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1856. </div>
  1857. <div style="width: 100%; text-align: center;">
  1858. </div>
  1859. </div>
  1860. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  1861. </td><td>DIN导轨式接线端子 UT 4-PE/L/HESILED 60 (5X20)
  1862. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1863. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ut-terminal-blocks">了解更多</a>
  1864. </div>
  1865. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1866. </div>
  1867. </td><td>
  1868. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">50<br/>有库存</span>
  1869. <table>
  1870. <tr align="center">
  1871. <td style="padding-top: 5px">
  1872. </td>
  1873. </tr>
  1874. <tr align="center">
  1875. <td style="padding-top: 5px; padding-bottom: 5px">
  1876. </td>
  1877. </tr>
  1878. </table></td><td>
  1879. <table class="PriceBreaks" cellspacing="0" border="0">
  1880. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1881. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1882. </td>
  1883. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1884. </td>
  1885. </tr>
  1886. <tr>
  1887. <td class="PriceBreakQuantity">
  1888. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  1889. </td>
  1890. <td class="PriceBreakPrice">
  1891. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥177.3486</span>
  1892. </td>
  1893. </tr>
  1894. <tr>
  1895. <td class="PriceBreakQuantity">
  1896. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  1897. </td>
  1898. <td class="PriceBreakPrice">
  1899. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥172.5048</span>
  1900. </td>
  1901. </tr>
  1902. <tr>
  1903. <td class="PriceBreakQuantity">
  1904. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,25);">25:</a>
  1905. </td>
  1906. <td class="PriceBreakPrice">
  1907. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥168.1173</span>
  1908. </td>
  1909. </tr>
  1910. <tr>
  1911. <td class="PriceBreakQuantity">
  1912. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,50);">50:</a>
  1913. </td>
  1914. <td class="PriceBreakPrice">
  1915. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥161.2611</span>
  1916. </td>
  1917. </tr>
  1918. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1919. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1920. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  1921. </td>
  1922. <td class="PriceBreakPrice">
  1923. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3214322/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8dCSgA5Wn0Ezdy5KsMegU3A%3d%3d">查看</a>
  1924. </td>
  1925. </tr>
  1926. <tr>
  1927. <td><br /></td>
  1928. </tr>
  1929. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1930. <td colspan="2" style="text-align: center;">
  1931. </td>
  1932. </tr>
  1933. </table>
  1934. </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;)">
  1935. <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 />
  1936. <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="购买 3214322" class="buy-button" /><br />
  1937. <table cellspacing="0" border="0" style="width: 100%;">
  1938. <tr>
  1939. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1940. 最低:
  1941. </td>
  1942. <td style="padding-left: 2px; text-align: left;">
  1943. 1
  1944. </td>
  1945. </tr>
  1946. <tr>
  1947. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1948. 多个:
  1949. </td>
  1950. <td style="padding-left: 2px; text-align: left;">
  1951. 1
  1952. </td>
  1953. </tr>
  1954. </table>
  1955. </div>
  1956. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  1957. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1958. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7DsqUxw5tIkvTA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7DsqUxw5tIkvTA%3d%3d" target="_blank">详细信息</a>
  1959. </div>
  1960. </td>
  1961. </tr><tr class="SearchResultsRowEven" data-partnumber="651-3212064" data-index="10">
  1962. <td class="td-select" align="center">
  1963. <div style="padding: 5px 5px 0 5px;">
  1964. <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>
  1965. </div>
  1966. </td><td><a href='/ProductDetail/Phoenix-Contact/3212064/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoFI%252bTugFPZLYNHnRu2COBjQ%3d%3d'><img title='Phoenix Contact 3212064' alt='Phoenix Contact 3212064' id=1513626201 src='/images/phoenixcontact/sm/3212064_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3212064_SPL.jpg</div></a></td><td>
  1967. <div style="text-align:left;">
  1968. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3212064/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoFI%252bTugFPZLYNHnRu2COBjQ%3d%3d">651-3212064</a><br />
  1969. <br />
  1970. <br />
  1971. </div></td><td>
  1972. <div class="mfrDiv">
  1973. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3212064/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoFI%252bTugFPZLYNHnRu2COBjQ%3d%3d">3212064</a><br />
  1974. <br />
  1975. <div style="width: 100%; text-align: center;">
  1976. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1977. </div>
  1978. <div style="width: 100%; text-align: center;">
  1979. </div>
  1980. </div>
  1981. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  1982. </td><td>DIN导轨式接线端子 PTPOWER 35
  1983. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1984. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ptpower-35">了解更多</a>
  1985. </div>
  1986. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1987. </div>
  1988. </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;Phoenix Contact&quot;,&quot;651-3212064 | 3212064&quot;]);" href="http://www.mouser.com/ds/2/324/ItemDetail_3212064-849857.pdf" target="_blank">数据表</a>
  1989. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">74<br/>有库存</span>
  1990. <table>
  1991. <tr align="center">
  1992. <td style="padding-top: 5px">
  1993. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Phoenix-Contact/3212064/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoFI%252bTugFPZLYNHnRu2COBjQ%3d%3d">更多信息可用 </a>
  1994. </td>
  1995. </tr>
  1996. <tr align="center">
  1997. <td style="padding-top: 5px; padding-bottom: 5px">
  1998. </td>
  1999. </tr>
  2000. </table></td><td>
  2001. <table class="PriceBreaks" cellspacing="0" border="0">
  2002. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2003. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2004. </td>
  2005. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2006. </td>
  2007. </tr>
  2008. <tr>
  2009. <td class="PriceBreakQuantity">
  2010. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  2011. </td>
  2012. <td class="PriceBreakPrice">
  2013. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥70.083</span>
  2014. </td>
  2015. </tr>
  2016. <tr>
  2017. <td class="PriceBreakQuantity">
  2018. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,10);">10:</a>
  2019. </td>
  2020. <td class="PriceBreakPrice">
  2021. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥65.7657</span>
  2022. </td>
  2023. </tr>
  2024. <tr>
  2025. <td class="PriceBreakQuantity">
  2026. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,20);">20:</a>
  2027. </td>
  2028. <td class="PriceBreakPrice">
  2029. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥62.6886</span>
  2030. </td>
  2031. </tr>
  2032. <tr>
  2033. <td class="PriceBreakQuantity">
  2034. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,50);">50:</a>
  2035. </td>
  2036. <td class="PriceBreakPrice">
  2037. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥60.4539</span>
  2038. </td>
  2039. </tr>
  2040. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2041. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2042. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(8,100);">100:</a>
  2043. </td>
  2044. <td class="PriceBreakPrice">
  2045. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3212064/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoFI%252bTugFPZLYNHnRu2COBjQ%3d%3d">查看</a>
  2046. </td>
  2047. </tr>
  2048. <tr>
  2049. <td><br /></td>
  2050. </tr>
  2051. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2052. <td colspan="2" style="text-align: center;">
  2053. </td>
  2054. </tr>
  2055. </table>
  2056. </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;)">
  2057. <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 />
  2058. <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="购买 3212064" class="buy-button" /><br />
  2059. <table cellspacing="0" border="0" style="width: 100%;">
  2060. <tr>
  2061. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2062. 最低:
  2063. </td>
  2064. <td style="padding-left: 2px; text-align: left;">
  2065. 1
  2066. </td>
  2067. </tr>
  2068. <tr>
  2069. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2070. 多个:
  2071. </td>
  2072. <td style="padding-left: 2px; text-align: left;">
  2073. 1
  2074. </td>
  2075. </tr>
  2076. </table>
  2077. </div>
  2078. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  2079. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2080. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1m1GD61jf89RvAdhN5EVEg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1m1GD61jf89RvAdhN5EVEg%3d%3d" target="_blank">详细信息</a>
  2081. </div>
  2082. </td>
  2083. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3214365" data-index="11">
  2084. <td class="td-select" align="center">
  2085. <div style="padding: 5px 5px 0 5px;">
  2086. <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>
  2087. </div>
  2088. </td><td><a href='/ProductDetail/Phoenix-Contact/3214365/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8a2Ln5TbJh2TzTZk2m4Q7BA%3d%3d'><img title='Phoenix Contact 3214365' alt='Phoenix Contact 3214365' id=1309209683 src='/images/phoenixcontact/sm/3214364_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3214364_SPL.jpg</div></a></td><td>
  2089. <div style="text-align:left;">
  2090. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3214365/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8a2Ln5TbJh2TzTZk2m4Q7BA%3d%3d">651-3214365</a><br />
  2091. <br />
  2092. <br />
  2093. </div></td><td>
  2094. <div class="mfrDiv">
  2095. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3214365/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8a2Ln5TbJh2TzTZk2m4Q7BA%3d%3d">3214365</a><br />
  2096. <br />
  2097. <div style="width: 100%; text-align: center;">
  2098. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2099. </div>
  2100. <div style="width: 100%; text-align: center;">
  2101. </div>
  2102. </div>
  2103. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  2104. </td><td>DIN导轨式接线端子 UT 4-PE/L/TG
  2105. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2106. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ut-terminal-blocks">了解更多</a>
  2107. </div>
  2108. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2109. </div>
  2110. </td><td>
  2111. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">38<br/>有库存</span>
  2112. <table>
  2113. <tr align="center">
  2114. <td style="padding-top: 5px">
  2115. </td>
  2116. </tr>
  2117. <tr align="center">
  2118. <td style="padding-top: 5px; padding-bottom: 5px">
  2119. </td>
  2120. </tr>
  2121. </table></td><td>
  2122. <table class="PriceBreaks" cellspacing="0" border="0">
  2123. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2124. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2125. </td>
  2126. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2127. </td>
  2128. </tr>
  2129. <tr>
  2130. <td class="PriceBreakQuantity">
  2131. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  2132. </td>
  2133. <td class="PriceBreakPrice">
  2134. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥97.7301</span>
  2135. </td>
  2136. </tr>
  2137. <tr>
  2138. <td class="PriceBreakQuantity">
  2139. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
  2140. </td>
  2141. <td class="PriceBreakPrice">
  2142. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥95.0274</span>
  2143. </td>
  2144. </tr>
  2145. <tr>
  2146. <td class="PriceBreakQuantity">
  2147. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  2148. </td>
  2149. <td class="PriceBreakPrice">
  2150. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥92.6406</span>
  2151. </td>
  2152. </tr>
  2153. <tr>
  2154. <td class="PriceBreakQuantity">
  2155. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,50);">50:</a>
  2156. </td>
  2157. <td class="PriceBreakPrice">
  2158. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥88.8732</span>
  2159. </td>
  2160. </tr>
  2161. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2162. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2163. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(9,100);">100:</a>
  2164. </td>
  2165. <td class="PriceBreakPrice">
  2166. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3214365/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8a2Ln5TbJh2TzTZk2m4Q7BA%3d%3d">查看</a>
  2167. </td>
  2168. </tr>
  2169. <tr>
  2170. <td><br /></td>
  2171. </tr>
  2172. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2173. <td colspan="2" style="text-align: center;">
  2174. </td>
  2175. </tr>
  2176. </table>
  2177. </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;)">
  2178. <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 />
  2179. <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="购买 3214365" class="buy-button" /><br />
  2180. <table cellspacing="0" border="0" style="width: 100%;">
  2181. <tr>
  2182. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2183. 最低:
  2184. </td>
  2185. <td style="padding-left: 2px; text-align: left;">
  2186. 1
  2187. </td>
  2188. </tr>
  2189. <tr>
  2190. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2191. 多个:
  2192. </td>
  2193. <td style="padding-left: 2px; text-align: left;">
  2194. 1
  2195. </td>
  2196. </tr>
  2197. </table>
  2198. </div>
  2199. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  2200. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2201. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7DtIPcwIn5nv%2fA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7DtIPcwIn5nv%2fA%3d%3d" target="_blank">详细信息</a>
  2202. </div>
  2203. </td>
  2204. </tr><tr class="SearchResultsRowEven" data-partnumber="651-3214360" data-index="12">
  2205. <td class="td-select" align="center">
  2206. <div style="padding: 5px 5px 0 5px;">
  2207. <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>
  2208. </div>
  2209. </td><td><a href='/ProductDetail/Phoenix-Contact/3214360/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8JnN%2fX3d1xjoQxnBySfbtPw%3d%3d'><img title='Phoenix Contact 3214360' alt='Phoenix Contact 3214360' id=1309209673 src='/images/phoenixcontact/sm/3214360_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3214360_SPL.jpg</div></a></td><td>
  2210. <div style="text-align:left;">
  2211. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3214360/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8JnN%2fX3d1xjoQxnBySfbtPw%3d%3d">651-3214360</a><br />
  2212. <br />
  2213. <br />
  2214. </div></td><td>
  2215. <div class="mfrDiv">
  2216. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3214360/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8JnN%2fX3d1xjoQxnBySfbtPw%3d%3d">3214360</a><br />
  2217. <br />
  2218. <div style="width: 100%; text-align: center;">
  2219. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2220. </div>
  2221. <div style="width: 100%; text-align: center;">
  2222. </div>
  2223. </div>
  2224. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  2225. </td><td>DIN导轨式接线端子 UT 4-PE/L/L
  2226. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2227. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ut-terminal-blocks">了解更多</a>
  2228. </div>
  2229. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2230. </div>
  2231. </td><td>
  2232. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">25<br/>有库存</span>
  2233. <table>
  2234. <tr align="center">
  2235. <td style="padding-top: 5px">
  2236. </td>
  2237. </tr>
  2238. <tr align="center">
  2239. <td style="padding-top: 5px; padding-bottom: 5px">
  2240. </td>
  2241. </tr>
  2242. </table></td><td>
  2243. <table class="PriceBreaks" cellspacing="0" border="0">
  2244. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2245. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2246. </td>
  2247. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2248. </td>
  2249. </tr>
  2250. <tr>
  2251. <td class="PriceBreakQuantity">
  2252. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  2253. </td>
  2254. <td class="PriceBreakPrice">
  2255. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥107.6634</span>
  2256. </td>
  2257. </tr>
  2258. <tr>
  2259. <td class="PriceBreakQuantity">
  2260. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  2261. </td>
  2262. <td class="PriceBreakPrice">
  2263. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥104.7384</span>
  2264. </td>
  2265. </tr>
  2266. <tr>
  2267. <td class="PriceBreakQuantity">
  2268. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  2269. </td>
  2270. <td class="PriceBreakPrice">
  2271. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥102.0357</span>
  2272. </td>
  2273. </tr>
  2274. <tr>
  2275. <td class="PriceBreakQuantity">
  2276. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,50);">50:</a>
  2277. </td>
  2278. <td class="PriceBreakPrice">
  2279. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥97.8822</span>
  2280. </td>
  2281. </tr>
  2282. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2283. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2284. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(10,100);">100:</a>
  2285. </td>
  2286. <td class="PriceBreakPrice">
  2287. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3214360/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8JnN%2fX3d1xjoQxnBySfbtPw%3d%3d">查看</a>
  2288. </td>
  2289. </tr>
  2290. <tr>
  2291. <td><br /></td>
  2292. </tr>
  2293. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2294. <td colspan="2" style="text-align: center;">
  2295. </td>
  2296. </tr>
  2297. </table>
  2298. </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;)">
  2299. <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 />
  2300. <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="购买 3214360" class="buy-button" /><br />
  2301. <table cellspacing="0" border="0" style="width: 100%;">
  2302. <tr>
  2303. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2304. 最低:
  2305. </td>
  2306. <td style="padding-left: 2px; text-align: left;">
  2307. 1
  2308. </td>
  2309. </tr>
  2310. <tr>
  2311. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2312. 多个:
  2313. </td>
  2314. <td style="padding-left: 2px; text-align: left;">
  2315. 1
  2316. </td>
  2317. </tr>
  2318. </table>
  2319. </div>
  2320. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  2321. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2322. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7Dui%252b5jp64N7cg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7Dui%252b5jp64N7cg%3d%3d" target="_blank">详细信息</a>
  2323. </div>
  2324. </td>
  2325. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3210309" data-index="13">
  2326. <td class="td-select" align="center">
  2327. <div style="padding: 5px 5px 0 5px;">
  2328. <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>
  2329. </div>
  2330. </td><td><a href='/ProductDetail/Phoenix-Contact/3210309/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxFP0yuOVHTthr%252b%252bMhY%252bAzQw%3d%3d'><img title='Phoenix Contact 3210309' alt='Phoenix Contact 3210309' id=1350422301 src='/images/phoenixcontact/sm/3210309_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3210309_SPL.jpg</div></a></td><td>
  2331. <div style="text-align:left;">
  2332. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3210309/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxFP0yuOVHTthr%252b%252bMhY%252bAzQw%3d%3d">651-3210309</a><br />
  2333. <br />
  2334. <br />
  2335. </div></td><td>
  2336. <div class="mfrDiv">
  2337. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3210309/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxFP0yuOVHTthr%252b%252bMhY%252bAzQw%3d%3d">3210309</a><br />
  2338. <br />
  2339. <div style="width: 100%; text-align: center;">
  2340. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2341. </div>
  2342. <div style="width: 100%; text-align: center;">
  2343. </div>
  2344. </div>
  2345. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  2346. </td><td>DIN导轨式接线端子 PT 1,5/S-MTD BU
  2347. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2348. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-tg-mt/">了解更多</a>
  2349. </div>
  2350. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2351. </div>
  2352. </td><td>
  2353. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">150<br/>有库存</span>
  2354. <table>
  2355. <tr align="center">
  2356. <td style="padding-top: 5px">
  2357. </td>
  2358. </tr>
  2359. <tr align="center">
  2360. <td style="padding-top: 5px; padding-bottom: 5px">
  2361. </td>
  2362. </tr>
  2363. </table></td><td>
  2364. <table class="PriceBreaks" cellspacing="0" border="0">
  2365. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2366. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2367. </td>
  2368. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2369. </td>
  2370. </tr>
  2371. <tr>
  2372. <td class="PriceBreakQuantity">
  2373. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  2374. </td>
  2375. <td class="PriceBreakPrice">
  2376. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.0923</span>
  2377. </td>
  2378. </tr>
  2379. <tr>
  2380. <td class="PriceBreakQuantity">
  2381. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
  2382. </td>
  2383. <td class="PriceBreakPrice">
  2384. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥12.7062</span>
  2385. </td>
  2386. </tr>
  2387. <tr>
  2388. <td class="PriceBreakQuantity">
  2389. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  2390. </td>
  2391. <td class="PriceBreakPrice">
  2392. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥12.402</span>
  2393. </td>
  2394. </tr>
  2395. <tr>
  2396. <td class="PriceBreakQuantity">
  2397. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,50);">50:</a>
  2398. </td>
  2399. <td class="PriceBreakPrice">
  2400. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥11.934</span>
  2401. </td>
  2402. </tr>
  2403. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2404. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2405. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(11,100);">100:</a>
  2406. </td>
  2407. <td class="PriceBreakPrice">
  2408. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3210309/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxFP0yuOVHTthr%252b%252bMhY%252bAzQw%3d%3d">查看</a>
  2409. </td>
  2410. </tr>
  2411. <tr>
  2412. <td><br /></td>
  2413. </tr>
  2414. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2415. <td colspan="2" style="text-align: center;">
  2416. </td>
  2417. </tr>
  2418. </table>
  2419. </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;)">
  2420. <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 />
  2421. <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="购买 3210309" class="buy-button" /><br />
  2422. <table cellspacing="0" border="0" style="width: 100%;">
  2423. <tr>
  2424. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2425. 最低:
  2426. </td>
  2427. <td style="padding-left: 2px; text-align: left;">
  2428. 1
  2429. </td>
  2430. </tr>
  2431. <tr>
  2432. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2433. 多个:
  2434. </td>
  2435. <td style="padding-left: 2px; text-align: left;">
  2436. 1
  2437. </td>
  2438. </tr>
  2439. </table>
  2440. </div>
  2441. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  2442. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2443. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=C7CiHI%252b3KsWlTrGTg5GnBw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=C7CiHI%252b3KsWlTrGTg5GnBw%3d%3d" target="_blank">详细信息</a>
  2444. </div>
  2445. </td>
  2446. </tr><tr class="SearchResultsRowEven" data-partnumber="651-3210321" data-index="14">
  2447. <td class="td-select" align="center">
  2448. <div style="padding: 5px 5px 0 5px;">
  2449. <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>
  2450. </div>
  2451. </td><td><a href='/ProductDetail/Phoenix-Contact/3210321/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxmWK7opIHNa5fTrS8FeeD%252bQ%3d%3d'><img title='Phoenix Contact 3210321' alt='Phoenix Contact 3210321' id=1350422317 src='/images/phoenixcontact/sm/3210321_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3210321_SPL.jpg</div></a></td><td>
  2452. <div style="text-align:left;">
  2453. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3210321/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxmWK7opIHNa5fTrS8FeeD%252bQ%3d%3d">651-3210321</a><br />
  2454. <br />
  2455. <br />
  2456. </div></td><td>
  2457. <div class="mfrDiv">
  2458. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3210321/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxmWK7opIHNa5fTrS8FeeD%252bQ%3d%3d">3210321</a><br />
  2459. <br />
  2460. <div style="width: 100%; text-align: center;">
  2461. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2462. </div>
  2463. <div style="width: 100%; text-align: center;">
  2464. </div>
  2465. </div>
  2466. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  2467. </td><td>DIN导轨式接线端子 PT 1,5/S-QUATTRO-MT
  2468. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2469. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-tg-mt/">了解更多</a>
  2470. </div>
  2471. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2472. </div>
  2473. </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;Phoenix Contact&quot;,&quot;651-3210321 | 3210321&quot;]);" href="http://www.mouser.com/ds/2/324/ItemDetail_3210321-849780.pdf" target="_blank">数据表</a>
  2474. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">50<br/>有库存</span>
  2475. <table>
  2476. <tr align="center">
  2477. <td style="padding-top: 5px">
  2478. </td>
  2479. </tr>
  2480. <tr align="center">
  2481. <td style="padding-top: 5px; padding-bottom: 5px">
  2482. </td>
  2483. </tr>
  2484. </table></td><td>
  2485. <table class="PriceBreaks" cellspacing="0" border="0">
  2486. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2487. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2488. </td>
  2489. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2490. </td>
  2491. </tr>
  2492. <tr>
  2493. <td class="PriceBreakQuantity">
  2494. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  2495. </td>
  2496. <td class="PriceBreakPrice">
  2497. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥44.5887</span>
  2498. </td>
  2499. </tr>
  2500. <tr>
  2501. <td class="PriceBreakQuantity">
  2502. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,10);">10:</a>
  2503. </td>
  2504. <td class="PriceBreakPrice">
  2505. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥43.3602</span>
  2506. </td>
  2507. </tr>
  2508. <tr>
  2509. <td class="PriceBreakQuantity">
  2510. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  2511. </td>
  2512. <td class="PriceBreakPrice">
  2513. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥42.2838</span>
  2514. </td>
  2515. </tr>
  2516. <tr>
  2517. <td class="PriceBreakQuantity">
  2518. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,50);">50:</a>
  2519. </td>
  2520. <td class="PriceBreakPrice">
  2521. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥40.5873</span>
  2522. </td>
  2523. </tr>
  2524. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2525. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2526. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  2527. </td>
  2528. <td class="PriceBreakPrice">
  2529. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3210321/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxmWK7opIHNa5fTrS8FeeD%252bQ%3d%3d">查看</a>
  2530. </td>
  2531. </tr>
  2532. <tr>
  2533. <td><br /></td>
  2534. </tr>
  2535. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2536. <td colspan="2" style="text-align: center;">
  2537. </td>
  2538. </tr>
  2539. </table>
  2540. </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;)">
  2541. <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 />
  2542. <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="购买 3210321" class="buy-button" /><br />
  2543. <table cellspacing="0" border="0" style="width: 100%;">
  2544. <tr>
  2545. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2546. 最低:
  2547. </td>
  2548. <td style="padding-left: 2px; text-align: left;">
  2549. 1
  2550. </td>
  2551. </tr>
  2552. <tr>
  2553. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2554. 多个:
  2555. </td>
  2556. <td style="padding-left: 2px; text-align: left;">
  2557. 1
  2558. </td>
  2559. </tr>
  2560. </table>
  2561. </div>
  2562. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  2563. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2564. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=C7CiHI%252b3KsWx5a2oE44%252bUg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=C7CiHI%252b3KsWx5a2oE44%252bUg%3d%3d" target="_blank">详细信息</a>
  2565. </div>
  2566. </td>
  2567. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3212065" data-index="15">
  2568. <td class="td-select" align="center">
  2569. <div style="padding: 5px 5px 0 5px;">
  2570. <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>
  2571. </div>
  2572. </td><td><a href='/ProductDetail/Phoenix-Contact/3212065/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjo%2fm1LZuiVAMbetHMJOT23Ow%3d%3d'><img title='Phoenix Contact 3212065' alt='Phoenix Contact 3212065' id=1513626203 src='/images/phoenixcontact/sm/3212065_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3212065_SPL.jpg</div></a></td><td>
  2573. <div style="text-align:left;">
  2574. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3212065/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjo%2fm1LZuiVAMbetHMJOT23Ow%3d%3d">651-3212065</a><br />
  2575. <br />
  2576. <br />
  2577. </div></td><td>
  2578. <div class="mfrDiv">
  2579. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3212065/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjo%2fm1LZuiVAMbetHMJOT23Ow%3d%3d">3212065</a><br />
  2580. <br />
  2581. <div style="width: 100%; text-align: center;">
  2582. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2583. </div>
  2584. <div style="width: 100%; text-align: center;">
  2585. </div>
  2586. </div>
  2587. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  2588. </td><td>DIN导轨式接线端子 PTPOWER 35 BU
  2589. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2590. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ptpower-35">了解更多</a>
  2591. </div>
  2592. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2593. </div>
  2594. </td><td>
  2595. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">84<br/>有库存</span>
  2596. <table>
  2597. <tr align="center">
  2598. <td style="padding-top: 5px">
  2599. </td>
  2600. </tr>
  2601. <tr align="center">
  2602. <td style="padding-top: 5px; padding-bottom: 5px">
  2603. </td>
  2604. </tr>
  2605. </table></td><td>
  2606. <table class="PriceBreaks" cellspacing="0" border="0">
  2607. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2608. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2609. </td>
  2610. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2611. </td>
  2612. </tr>
  2613. <tr>
  2614. <td class="PriceBreakQuantity">
  2615. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  2616. </td>
  2617. <td class="PriceBreakPrice">
  2618. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥70.083</span>
  2619. </td>
  2620. </tr>
  2621. <tr>
  2622. <td class="PriceBreakQuantity">
  2623. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  2624. </td>
  2625. <td class="PriceBreakPrice">
  2626. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥65.7657</span>
  2627. </td>
  2628. </tr>
  2629. <tr>
  2630. <td class="PriceBreakQuantity">
  2631. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,20);">20:</a>
  2632. </td>
  2633. <td class="PriceBreakPrice">
  2634. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥62.6886</span>
  2635. </td>
  2636. </tr>
  2637. <tr>
  2638. <td class="PriceBreakQuantity">
  2639. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,50);">50:</a>
  2640. </td>
  2641. <td class="PriceBreakPrice">
  2642. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥60.4539</span>
  2643. </td>
  2644. </tr>
  2645. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2646. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2647. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  2648. </td>
  2649. <td class="PriceBreakPrice">
  2650. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3212065/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjo%2fm1LZuiVAMbetHMJOT23Ow%3d%3d">查看</a>
  2651. </td>
  2652. </tr>
  2653. <tr>
  2654. <td><br /></td>
  2655. </tr>
  2656. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2657. <td colspan="2" style="text-align: center;">
  2658. </td>
  2659. </tr>
  2660. </table>
  2661. </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;)">
  2662. <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 />
  2663. <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="购买 3212065" class="buy-button" /><br />
  2664. <table cellspacing="0" border="0" style="width: 100%;">
  2665. <tr>
  2666. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2667. 最低:
  2668. </td>
  2669. <td style="padding-left: 2px; text-align: left;">
  2670. 1
  2671. </td>
  2672. </tr>
  2673. <tr>
  2674. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2675. 多个:
  2676. </td>
  2677. <td style="padding-left: 2px; text-align: left;">
  2678. 1
  2679. </td>
  2680. </tr>
  2681. </table>
  2682. </div>
  2683. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  2684. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2685. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1m1GD61jf89A%252b%2f%2fQef1mNg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1m1GD61jf89A%252b%2f%2fQef1mNg%3d%3d" target="_blank">详细信息</a>
  2686. </div>
  2687. </td>
  2688. </tr><tr class="SearchResultsRowEven" data-partnumber="651-3214324" data-index="16">
  2689. <td class="td-select" align="center">
  2690. <div style="padding: 5px 5px 0 5px;">
  2691. <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>
  2692. </div>
  2693. </td><td><a href='/ProductDetail/Phoenix-Contact/3214324/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8rg6l6Za92y1q0b8QbAp26A%3d%3d'><img title='Phoenix Contact 3214324' alt='Phoenix Contact 3214324' id=1309209669 src='/images/phoenixcontact/sm/3214324_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3214324_SPL.jpg</div></a></td><td>
  2694. <div style="text-align:left;">
  2695. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3214324/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8rg6l6Za92y1q0b8QbAp26A%3d%3d">651-3214324</a><br />
  2696. <br />
  2697. <br />
  2698. </div></td><td>
  2699. <div class="mfrDiv">
  2700. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3214324/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8rg6l6Za92y1q0b8QbAp26A%3d%3d">3214324</a><br />
  2701. <br />
  2702. <div style="width: 100%; text-align: center;">
  2703. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2704. </div>
  2705. <div style="width: 100%; text-align: center;">
  2706. </div>
  2707. </div>
  2708. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  2709. </td><td>DIN导轨式接线端子 UT 4-PE/L/HEDI
  2710. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2711. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ut-terminal-blocks">了解更多</a>
  2712. </div>
  2713. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2714. </div>
  2715. </td><td>
  2716. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">44<br/>有库存</span>
  2717. <table>
  2718. <tr align="center">
  2719. <td style="padding-top: 5px">
  2720. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Phoenix-Contact/3214324/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8rg6l6Za92y1q0b8QbAp26A%3d%3d">更多信息可用 </a>
  2721. </td>
  2722. </tr>
  2723. <tr align="center">
  2724. <td style="padding-top: 5px; padding-bottom: 5px">
  2725. </td>
  2726. </tr>
  2727. </table></td><td>
  2728. <table class="PriceBreaks" cellspacing="0" border="0">
  2729. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2730. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2731. </td>
  2732. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2733. </td>
  2734. </tr>
  2735. <tr>
  2736. <td class="PriceBreakQuantity">
  2737. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  2738. </td>
  2739. <td class="PriceBreakPrice">
  2740. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥125.8335</span>
  2741. </td>
  2742. </tr>
  2743. <tr>
  2744. <td class="PriceBreakQuantity">
  2745. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,10);">10:</a>
  2746. </td>
  2747. <td class="PriceBreakPrice">
  2748. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥122.4405</span>
  2749. </td>
  2750. </tr>
  2751. <tr>
  2752. <td class="PriceBreakQuantity">
  2753. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,25);">25:</a>
  2754. </td>
  2755. <td class="PriceBreakPrice">
  2756. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥119.2932</span>
  2757. </td>
  2758. </tr>
  2759. <tr>
  2760. <td class="PriceBreakQuantity">
  2761. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,50);">50:</a>
  2762. </td>
  2763. <td class="PriceBreakPrice">
  2764. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥114.4377</span>
  2765. </td>
  2766. </tr>
  2767. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2768. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2769. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
  2770. </td>
  2771. <td class="PriceBreakPrice">
  2772. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3214324/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8rg6l6Za92y1q0b8QbAp26A%3d%3d">查看</a>
  2773. </td>
  2774. </tr>
  2775. <tr>
  2776. <td><br /></td>
  2777. </tr>
  2778. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2779. <td colspan="2" style="text-align: center;">
  2780. </td>
  2781. </tr>
  2782. </table>
  2783. </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;)">
  2784. <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 />
  2785. <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="购买 3214324" class="buy-button" /><br />
  2786. <table cellspacing="0" border="0" style="width: 100%;">
  2787. <tr>
  2788. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2789. 最低:
  2790. </td>
  2791. <td style="padding-left: 2px; text-align: left;">
  2792. 1
  2793. </td>
  2794. </tr>
  2795. <tr>
  2796. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2797. 多个:
  2798. </td>
  2799. <td style="padding-left: 2px; text-align: left;">
  2800. 1
  2801. </td>
  2802. </tr>
  2803. </table>
  2804. </div>
  2805. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  2806. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2807. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7DticS2FksNuqA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7DticS2FksNuqA%3d%3d" target="_blank">详细信息</a>
  2808. </div>
  2809. </td>
  2810. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3210308" data-index="17">
  2811. <td class="td-select" align="center">
  2812. <div style="padding: 5px 5px 0 5px;">
  2813. <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>
  2814. </div>
  2815. </td><td><a href='/ProductDetail/Phoenix-Contact/3210308/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxR%252bo%2fdKbo1mwYXwUk3r5DEQ%3d%3d'><img title='Phoenix Contact 3210308' alt='Phoenix Contact 3210308' id=1350423942 src='/images/phoenixcontact/sm/3210308_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3210308_SPL.jpg</div></a></td><td>
  2816. <div style="text-align:left;">
  2817. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3210308/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxR%252bo%2fdKbo1mwYXwUk3r5DEQ%3d%3d">651-3210308</a><br />
  2818. <br />
  2819. <br />
  2820. </div></td><td>
  2821. <div class="mfrDiv">
  2822. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3210308/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxR%252bo%2fdKbo1mwYXwUk3r5DEQ%3d%3d">3210308</a><br />
  2823. <br />
  2824. <div style="width: 100%; text-align: center;">
  2825. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2826. </div>
  2827. <div style="width: 100%; text-align: center;">
  2828. </div>
  2829. </div>
  2830. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  2831. </td><td>DIN导轨式接线端子 PT 1,5/S-MTD
  2832. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2833. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-tg-mt/">了解更多</a>
  2834. </div>
  2835. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2836. </div>
  2837. </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;Phoenix Contact&quot;,&quot;651-3210308 | 3210308&quot;]);" href="http://www.mouser.com/ds/2/324/ItemDetail_3210308-849751.pdf" target="_blank">数据表</a>
  2838. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">300<br/>有库存</span>
  2839. <table>
  2840. <tr align="center">
  2841. <td style="padding-top: 5px">
  2842. </td>
  2843. </tr>
  2844. <tr align="center">
  2845. <td style="padding-top: 5px; padding-bottom: 5px">
  2846. </td>
  2847. </tr>
  2848. </table></td><td>
  2849. <table class="PriceBreaks" cellspacing="0" border="0">
  2850. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2851. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2852. </td>
  2853. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2854. </td>
  2855. </tr>
  2856. <tr>
  2857. <td class="PriceBreakQuantity">
  2858. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  2859. </td>
  2860. <td class="PriceBreakPrice">
  2861. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.0923</span>
  2862. </td>
  2863. </tr>
  2864. <tr>
  2865. <td class="PriceBreakQuantity">
  2866. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,10);">10:</a>
  2867. </td>
  2868. <td class="PriceBreakPrice">
  2869. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥12.7062</span>
  2870. </td>
  2871. </tr>
  2872. <tr>
  2873. <td class="PriceBreakQuantity">
  2874. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,25);">25:</a>
  2875. </td>
  2876. <td class="PriceBreakPrice">
  2877. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥12.402</span>
  2878. </td>
  2879. </tr>
  2880. <tr>
  2881. <td class="PriceBreakQuantity">
  2882. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,50);">50:</a>
  2883. </td>
  2884. <td class="PriceBreakPrice">
  2885. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥11.934</span>
  2886. </td>
  2887. </tr>
  2888. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2889. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2890. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(15,100);">100:</a>
  2891. </td>
  2892. <td class="PriceBreakPrice">
  2893. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3210308/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxR%252bo%2fdKbo1mwYXwUk3r5DEQ%3d%3d">查看</a>
  2894. </td>
  2895. </tr>
  2896. <tr>
  2897. <td><br /></td>
  2898. </tr>
  2899. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2900. <td colspan="2" style="text-align: center;">
  2901. </td>
  2902. </tr>
  2903. </table>
  2904. </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;)">
  2905. <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 />
  2906. <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="购买 3210308" class="buy-button" /><br />
  2907. <table cellspacing="0" border="0" style="width: 100%;">
  2908. <tr>
  2909. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2910. 最低:
  2911. </td>
  2912. <td style="padding-left: 2px; text-align: left;">
  2913. 1
  2914. </td>
  2915. </tr>
  2916. <tr>
  2917. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2918. 多个:
  2919. </td>
  2920. <td style="padding-left: 2px; text-align: left;">
  2921. 1
  2922. </td>
  2923. </tr>
  2924. </table>
  2925. </div>
  2926. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  2927. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2928. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=C7CiHI%252b3KsWic1W3b7MGYQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=C7CiHI%252b3KsWic1W3b7MGYQ%3d%3d" target="_blank">详细信息</a>
  2929. </div>
  2930. </td>
  2931. </tr><tr class="SearchResultsRowEven" data-partnumber="651-3212070" data-index="18">
  2932. <td class="td-select" align="center">
  2933. <div style="padding: 5px 5px 0 5px;">
  2934. <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>
  2935. </div>
  2936. </td><td><a href='/ProductDetail/Phoenix-Contact/3212070/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoY3m9oeoYV0OOsI88WAVMhA%3d%3d'><img title='Phoenix Contact 3212070' alt='Phoenix Contact 3212070' id=1513626211 src='/images/phoenixcontact/sm/3212070_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3212070_SPL.jpg</div></a></td><td>
  2937. <div style="text-align:left;">
  2938. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3212070/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoY3m9oeoYV0OOsI88WAVMhA%3d%3d">651-3212070</a><br />
  2939. <br />
  2940. <br />
  2941. </div></td><td>
  2942. <div class="mfrDiv">
  2943. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3212070/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoY3m9oeoYV0OOsI88WAVMhA%3d%3d">3212070</a><br />
  2944. <br />
  2945. <div style="width: 100%; text-align: center;">
  2946. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2947. </div>
  2948. <div style="width: 100%; text-align: center;">
  2949. </div>
  2950. </div>
  2951. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  2952. </td><td>DIN导轨式接线端子 PTPOWER 35-3L/FE
  2953. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2954. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ptpower-35">了解更多</a>
  2955. </div>
  2956. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2957. </div>
  2958. </td><td>
  2959. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">6<br/>有库存</span>
  2960. <table>
  2961. <tr align="center">
  2962. <td style="padding-top: 5px">
  2963. </td>
  2964. </tr>
  2965. <tr align="center">
  2966. <td style="padding-top: 5px; padding-bottom: 5px">
  2967. </td>
  2968. </tr>
  2969. </table></td><td>
  2970. <table class="PriceBreaks" cellspacing="0" border="0">
  2971. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2972. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2973. </td>
  2974. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2975. </td>
  2976. </tr>
  2977. <tr>
  2978. <td class="PriceBreakQuantity">
  2979. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  2980. </td>
  2981. <td class="PriceBreakPrice">
  2982. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥328.2903</span>
  2983. </td>
  2984. </tr>
  2985. <tr>
  2986. <td class="PriceBreakQuantity">
  2987. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,5);">5:</a>
  2988. </td>
  2989. <td class="PriceBreakPrice">
  2990. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥307.8036</span>
  2991. </td>
  2992. </tr>
  2993. <tr>
  2994. <td class="PriceBreakQuantity">
  2995. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  2996. </td>
  2997. <td class="PriceBreakPrice">
  2998. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥293.5647</span>
  2999. </td>
  3000. </tr>
  3001. <tr>
  3002. <td class="PriceBreakQuantity">
  3003. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,25);">25:</a>
  3004. </td>
  3005. <td class="PriceBreakPrice">
  3006. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥288.4752</span>
  3007. </td>
  3008. </tr>
  3009. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3010. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3011. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(16,50);">50:</a>
  3012. </td>
  3013. <td class="PriceBreakPrice">
  3014. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3212070/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoY3m9oeoYV0OOsI88WAVMhA%3d%3d">查看</a>
  3015. </td>
  3016. </tr>
  3017. <tr>
  3018. <td><br /></td>
  3019. </tr>
  3020. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3021. <td colspan="2" style="text-align: center;">
  3022. </td>
  3023. </tr>
  3024. </table>
  3025. </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;)">
  3026. <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 />
  3027. <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="购买 3212070" class="buy-button" /><br />
  3028. <table cellspacing="0" border="0" style="width: 100%;">
  3029. <tr>
  3030. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3031. 最低:
  3032. </td>
  3033. <td style="padding-left: 2px; text-align: left;">
  3034. 1
  3035. </td>
  3036. </tr>
  3037. <tr>
  3038. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3039. 多个:
  3040. </td>
  3041. <td style="padding-left: 2px; text-align: left;">
  3042. 1
  3043. </td>
  3044. </tr>
  3045. </table>
  3046. </div>
  3047. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  3048. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3049. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1m1GD61jf8%2fKrvBKUFDG7g%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1m1GD61jf8%2fKrvBKUFDG7g%3d%3d" target="_blank">详细信息</a>
  3050. </div>
  3051. </td>
  3052. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3215003" data-index="19">
  3053. <td class="td-select" align="center">
  3054. <div style="padding: 5px 5px 0 5px;">
  3055. <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>
  3056. </div>
  3057. </td><td><a href='/ProductDetail/Phoenix-Contact/3215003/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoprmHZ6ZIGTVd%2fBB3hUUlsA%3d%3d'><img title='Phoenix Contact 3215003' alt='Phoenix Contact 3215003' id=1513626269 src='/images/phoenixcontact/sm/3215003_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3215003_SPL.jpg</div></a></td><td>
  3058. <div style="text-align:left;">
  3059. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3215003/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoprmHZ6ZIGTVd%2fBB3hUUlsA%3d%3d">651-3215003</a><br />
  3060. <br />
  3061. <br />
  3062. </div></td><td>
  3063. <div class="mfrDiv">
  3064. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3215003/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoprmHZ6ZIGTVd%2fBB3hUUlsA%3d%3d">3215003</a><br />
  3065. <br />
  3066. <div style="width: 100%; text-align: center;">
  3067. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3068. </div>
  3069. <div style="width: 100%; text-align: center;">
  3070. </div>
  3071. </div>
  3072. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  3073. </td><td>DIN导轨式接线端子 PTPOWER 150 P
  3074. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3075. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ptpower-150">了解更多</a>
  3076. </div>
  3077. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3078. </div>
  3079. </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;Phoenix Contact&quot;,&quot;651-3215003 | 3215003&quot;]);" href="http://www.mouser.com/ds/2/324/ItemDetail_3215003-847876.pdf" target="_blank">数据表</a>
  3080. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">6<br/>有库存</span>
  3081. <table>
  3082. <tr align="center">
  3083. <td style="padding-top: 5px">
  3084. </td>
  3085. </tr>
  3086. <tr align="center">
  3087. <td style="padding-top: 5px; padding-bottom: 5px">
  3088. </td>
  3089. </tr>
  3090. </table></td><td>
  3091. <table class="PriceBreaks" cellspacing="0" border="0">
  3092. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3093. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3094. </td>
  3095. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3096. </td>
  3097. </tr>
  3098. <tr>
  3099. <td class="PriceBreakQuantity">
  3100. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  3101. </td>
  3102. <td class="PriceBreakPrice">
  3103. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥376.4241</span>
  3104. </td>
  3105. </tr>
  3106. <tr>
  3107. <td class="PriceBreakQuantity">
  3108. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,5);">5:</a>
  3109. </td>
  3110. <td class="PriceBreakPrice">
  3111. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥353.0124</span>
  3112. </td>
  3113. </tr>
  3114. <tr>
  3115. <td class="PriceBreakQuantity">
  3116. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,10);">10:</a>
  3117. </td>
  3118. <td class="PriceBreakPrice">
  3119. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥336.609</span>
  3120. </td>
  3121. </tr>
  3122. <tr>
  3123. <td class="PriceBreakQuantity">
  3124. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,25);">25:</a>
  3125. </td>
  3126. <td class="PriceBreakPrice">
  3127. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥330.8292</span>
  3128. </td>
  3129. </tr>
  3130. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3131. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3132. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(17,50);">50:</a>
  3133. </td>
  3134. <td class="PriceBreakPrice">
  3135. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3215003/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoprmHZ6ZIGTVd%2fBB3hUUlsA%3d%3d">查看</a>
  3136. </td>
  3137. </tr>
  3138. <tr>
  3139. <td><br /></td>
  3140. </tr>
  3141. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3142. <td colspan="2" style="text-align: center;">
  3143. </td>
  3144. </tr>
  3145. </table>
  3146. </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;)">
  3147. <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 />
  3148. <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="购买 3215003" class="buy-button" /><br />
  3149. <table cellspacing="0" border="0" style="width: 100%;">
  3150. <tr>
  3151. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3152. 最低:
  3153. </td>
  3154. <td style="padding-left: 2px; text-align: left;">
  3155. 1
  3156. </td>
  3157. </tr>
  3158. <tr>
  3159. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3160. 多个:
  3161. </td>
  3162. <td style="padding-left: 2px; text-align: left;">
  3163. 1
  3164. </td>
  3165. </tr>
  3166. </table>
  3167. </div>
  3168. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  3169. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3170. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1m1GD61jf88Aq%2fv8BxQVIg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1m1GD61jf88Aq%2fv8BxQVIg%3d%3d" target="_blank">详细信息</a>
  3171. </div>
  3172. </td>
  3173. </tr><tr class="SearchResultsRowEven" data-partnumber="651-3215007" data-index="20">
  3174. <td class="td-select" align="center">
  3175. <div style="padding: 5px 5px 0 5px;">
  3176. <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>
  3177. </div>
  3178. </td><td><a href='/ProductDetail/Phoenix-Contact/3215007/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoRdliy9zoX%2fx3tqnT4i2Zyg%3d%3d'><img title='Phoenix Contact 3215007' alt='Phoenix Contact 3215007' id=1513626279 src='/images/phoenixcontact/sm/3215007_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3215007_SPL.jpg</div></a></td><td>
  3179. <div style="text-align:left;">
  3180. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3215007/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoRdliy9zoX%2fx3tqnT4i2Zyg%3d%3d">651-3215007</a><br />
  3181. <br />
  3182. <br />
  3183. </div></td><td>
  3184. <div class="mfrDiv">
  3185. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3215007/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoRdliy9zoX%2fx3tqnT4i2Zyg%3d%3d">3215007</a><br />
  3186. <br />
  3187. <div style="width: 100%; text-align: center;">
  3188. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3189. </div>
  3190. <div style="width: 100%; text-align: center;">
  3191. </div>
  3192. </div>
  3193. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  3194. </td><td>DIN导轨式接线端子 PTPOWER 150-3L/FE
  3195. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3196. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ptpower-150">了解更多</a>
  3197. </div>
  3198. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3199. </div>
  3200. </td><td>
  3201. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">3<br/>有库存</span>
  3202. <table>
  3203. <tr align="center">
  3204. <td style="padding-top: 5px">
  3205. </td>
  3206. </tr>
  3207. <tr align="center">
  3208. <td style="padding-top: 5px; padding-bottom: 5px">
  3209. </td>
  3210. </tr>
  3211. </table></td><td>
  3212. <table class="PriceBreaks" cellspacing="0" border="0">
  3213. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3214. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3215. </td>
  3216. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3217. </td>
  3218. </tr>
  3219. <tr>
  3220. <td class="PriceBreakQuantity">
  3221. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  3222. </td>
  3223. <td class="PriceBreakPrice">
  3224. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,354.9068</span>
  3225. </td>
  3226. </tr>
  3227. <tr>
  3228. <td class="PriceBreakQuantity">
  3229. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,10);">10:</a>
  3230. </td>
  3231. <td class="PriceBreakPrice">
  3232. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1,236.6198</span>
  3233. </td>
  3234. </tr>
  3235. <tr>
  3236. <td class="PriceBreakQuantity">
  3237. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,25);">25:</a>
  3238. </td>
  3239. <td class="PriceBreakPrice">
  3240. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,204.1172</span>
  3241. </td>
  3242. </tr>
  3243. <tr>
  3244. <td class="PriceBreakQuantity">
  3245. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,50);">50:</a>
  3246. </td>
  3247. <td class="PriceBreakPrice">
  3248. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1,164.5361</span>
  3249. </td>
  3250. </tr>
  3251. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3252. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3253. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  3254. </td>
  3255. <td class="PriceBreakPrice">
  3256. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3215007/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoRdliy9zoX%2fx3tqnT4i2Zyg%3d%3d">查看</a>
  3257. </td>
  3258. </tr>
  3259. <tr>
  3260. <td><br /></td>
  3261. </tr>
  3262. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3263. <td colspan="2" style="text-align: center;">
  3264. </td>
  3265. </tr>
  3266. </table>
  3267. </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;)">
  3268. <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 />
  3269. <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="购买 3215007" class="buy-button" /><br />
  3270. <table cellspacing="0" border="0" style="width: 100%;">
  3271. <tr>
  3272. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3273. 最低:
  3274. </td>
  3275. <td style="padding-left: 2px; text-align: left;">
  3276. 1
  3277. </td>
  3278. </tr>
  3279. <tr>
  3280. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3281. 多个:
  3282. </td>
  3283. <td style="padding-left: 2px; text-align: left;">
  3284. 1
  3285. </td>
  3286. </tr>
  3287. </table>
  3288. </div>
  3289. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  3290. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3291. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1m1GD61jf894gjmICg%252b1sw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1m1GD61jf894gjmICg%252b1sw%3d%3d" target="_blank">详细信息</a>
  3292. </div>
  3293. </td>
  3294. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3210357" data-index="21">
  3295. <td class="td-select" align="center">
  3296. <div style="padding: 5px 5px 0 5px;">
  3297. <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>
  3298. </div>
  3299. </td><td><a href='/ProductDetail/Phoenix-Contact/3210357/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxvnuj%2fM%2fnpIF%252bu7emC%2fidYQ%3d%3d'><img title='Phoenix Contact 3210357' alt='Phoenix Contact 3210357' id=1350422578 src='/images/phoenixcontact/sm/3210357_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3210357_SPL.jpg</div></a></td><td>
  3300. <div style="text-align:left;">
  3301. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3210357/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxvnuj%2fM%2fnpIF%252bu7emC%2fidYQ%3d%3d">651-3210357</a><br />
  3302. <br />
  3303. <br />
  3304. </div></td><td>
  3305. <div class="mfrDiv">
  3306. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3210357/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxvnuj%2fM%2fnpIF%252bu7emC%2fidYQ%3d%3d">3210357</a><br />
  3307. <br />
  3308. <div style="width: 100%; text-align: center;">
  3309. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3310. </div>
  3311. <div style="width: 100%; text-align: center;">
  3312. </div>
  3313. </div>
  3314. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  3315. </td><td>DIN导轨式接线端子 PTT 1,5/S-2L BU
  3316. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3317. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-tg-mt/">了解更多</a>
  3318. </div>
  3319. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3320. </div>
  3321. </td><td>
  3322. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">100<br/>有库存</span>
  3323. <table>
  3324. <tr align="center">
  3325. <td style="padding-top: 5px">
  3326. </td>
  3327. </tr>
  3328. <tr align="center">
  3329. <td style="padding-top: 5px; padding-bottom: 5px">
  3330. </td>
  3331. </tr>
  3332. </table></td><td>
  3333. <table class="PriceBreaks" cellspacing="0" border="0">
  3334. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3335. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3336. </td>
  3337. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3338. </td>
  3339. </tr>
  3340. <tr>
  3341. <td class="PriceBreakQuantity">
  3342. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  3343. </td>
  3344. <td class="PriceBreakPrice">
  3345. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥19.6326</span>
  3346. </td>
  3347. </tr>
  3348. <tr>
  3349. <td class="PriceBreakQuantity">
  3350. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,10);">10:</a>
  3351. </td>
  3352. <td class="PriceBreakPrice">
  3353. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥19.0944</span>
  3354. </td>
  3355. </tr>
  3356. <tr>
  3357. <td class="PriceBreakQuantity">
  3358. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,25);">25:</a>
  3359. </td>
  3360. <td class="PriceBreakPrice">
  3361. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥18.5562</span>
  3362. </td>
  3363. </tr>
  3364. <tr>
  3365. <td class="PriceBreakQuantity">
  3366. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,50);">50:</a>
  3367. </td>
  3368. <td class="PriceBreakPrice">
  3369. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥17.8659</span>
  3370. </td>
  3371. </tr>
  3372. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3373. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3374. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  3375. </td>
  3376. <td class="PriceBreakPrice">
  3377. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3210357/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxvnuj%2fM%2fnpIF%252bu7emC%2fidYQ%3d%3d">查看</a>
  3378. </td>
  3379. </tr>
  3380. <tr>
  3381. <td><br /></td>
  3382. </tr>
  3383. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3384. <td colspan="2" style="text-align: center;">
  3385. </td>
  3386. </tr>
  3387. </table>
  3388. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_btnBuy&#39;)">
  3389. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(19,this.value);" /><br />
  3390. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 19);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_btnBuy" title="购买 3210357" class="buy-button" /><br />
  3391. <table cellspacing="0" border="0" style="width: 100%;">
  3392. <tr>
  3393. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3394. 最低:
  3395. </td>
  3396. <td style="padding-left: 2px; text-align: left;">
  3397. 1
  3398. </td>
  3399. </tr>
  3400. <tr>
  3401. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3402. 多个:
  3403. </td>
  3404. <td style="padding-left: 2px; text-align: left;">
  3405. 1
  3406. </td>
  3407. </tr>
  3408. </table>
  3409. </div>
  3410. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  3411. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3412. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=C7CiHI%252b3KsVxceFe2ZjbhQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=C7CiHI%252b3KsVxceFe2ZjbhQ%3d%3d" target="_blank">详细信息</a>
  3413. </div>
  3414. </td>
  3415. </tr><tr class="SearchResultsRowEven" data-partnumber="651-3260050" data-index="22">
  3416. <td class="td-select" align="center">
  3417. <div style="padding: 5px 5px 0 5px;">
  3418. <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>
  3419. </div>
  3420. </td><td><a href='/ProductDetail/Phoenix-Contact/3260050/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoTOyDxZ9IJWG7JPTZrUaEsA%3d%3d'><img title='Phoenix Contact 3260050' alt='Phoenix Contact 3260050' id=1513626231 src='/images/phoenixcontact/sm/3260050_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3260050_SPL.jpg</div></a></td><td>
  3421. <div style="text-align:left;">
  3422. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3260050/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoTOyDxZ9IJWG7JPTZrUaEsA%3d%3d">651-3260050</a><br />
  3423. <br />
  3424. <br />
  3425. </div></td><td>
  3426. <div class="mfrDiv">
  3427. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3260050/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoTOyDxZ9IJWG7JPTZrUaEsA%3d%3d">3260050</a><br />
  3428. <br />
  3429. <div style="width: 100%; text-align: center;">
  3430. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3431. </div>
  3432. <div style="width: 100%; text-align: center;">
  3433. </div>
  3434. </div>
  3435. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  3436. </td><td>DIN导轨式接线端子 PTPOWER 50
  3437. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3438. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ptpower-50">了解更多</a>
  3439. </div>
  3440. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3441. </div>
  3442. </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-3260050 | 3260050&quot;]);" href="http://www.mouser.com/ds/2/324/ItemDetail_3260050-850045.pdf" target="_blank">数据表</a>
  3443. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">10<br/>有库存</span>
  3444. <table>
  3445. <tr align="center">
  3446. <td style="padding-top: 5px">
  3447. </td>
  3448. </tr>
  3449. <tr align="center">
  3450. <td style="padding-top: 5px; padding-bottom: 5px">
  3451. </td>
  3452. </tr>
  3453. </table></td><td>
  3454. <table class="PriceBreaks" cellspacing="0" border="0">
  3455. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3456. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3457. </td>
  3458. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3459. </td>
  3460. </tr>
  3461. <tr>
  3462. <td class="PriceBreakQuantity">
  3463. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  3464. </td>
  3465. <td class="PriceBreakPrice">
  3466. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥171.0423</span>
  3467. </td>
  3468. </tr>
  3469. <tr>
  3470. <td class="PriceBreakQuantity">
  3471. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,10);">10:</a>
  3472. </td>
  3473. <td class="PriceBreakPrice">
  3474. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥160.407</span>
  3475. </td>
  3476. </tr>
  3477. <tr>
  3478. <td class="PriceBreakQuantity">
  3479. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,20);">20:</a>
  3480. </td>
  3481. <td class="PriceBreakPrice">
  3482. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥152.9424</span>
  3483. </td>
  3484. </tr>
  3485. <tr>
  3486. <td class="PriceBreakQuantity">
  3487. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,50);">50:</a>
  3488. </td>
  3489. <td class="PriceBreakPrice">
  3490. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥147.5487</span>
  3491. </td>
  3492. </tr>
  3493. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3494. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3495. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(20,100);">100:</a>
  3496. </td>
  3497. <td class="PriceBreakPrice">
  3498. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3260050/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjoTOyDxZ9IJWG7JPTZrUaEsA%3d%3d">查看</a>
  3499. </td>
  3500. </tr>
  3501. <tr>
  3502. <td><br /></td>
  3503. </tr>
  3504. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3505. <td colspan="2" style="text-align: center;">
  3506. </td>
  3507. </tr>
  3508. </table>
  3509. </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;)">
  3510. <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 />
  3511. <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="购买 3260050" class="buy-button" /><br />
  3512. <table cellspacing="0" border="0" style="width: 100%;">
  3513. <tr>
  3514. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3515. 最低:
  3516. </td>
  3517. <td style="padding-left: 2px; text-align: left;">
  3518. 1
  3519. </td>
  3520. </tr>
  3521. <tr>
  3522. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3523. 多个:
  3524. </td>
  3525. <td style="padding-left: 2px; text-align: left;">
  3526. 1
  3527. </td>
  3528. </tr>
  3529. </table>
  3530. </div>
  3531. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  3532. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3533. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1m1GD61jf88IniHy00s9GA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1m1GD61jf88IniHy00s9GA%3d%3d" target="_blank">详细信息</a>
  3534. </div>
  3535. </td>
  3536. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3214361" data-index="23">
  3537. <td class="td-select" align="center">
  3538. <div style="padding: 5px 5px 0 5px;">
  3539. <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>
  3540. </div>
  3541. </td><td><a href='/ProductDetail/Phoenix-Contact/3214361/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8clU5ydGwkR2I%2fhEpYSKcPQ%3d%3d'><img title='Phoenix Contact 3214361' alt='Phoenix Contact 3214361' id=1309209675 src='/images/phoenixcontact/sm/3214360_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3214360_SPL.jpg</div></a></td><td>
  3542. <div style="text-align:left;">
  3543. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3214361/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8clU5ydGwkR2I%2fhEpYSKcPQ%3d%3d">651-3214361</a><br />
  3544. <br />
  3545. <br />
  3546. </div></td><td>
  3547. <div class="mfrDiv">
  3548. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3214361/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8clU5ydGwkR2I%2fhEpYSKcPQ%3d%3d">3214361</a><br />
  3549. <br />
  3550. <div style="width: 100%; text-align: center;">
  3551. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3552. </div>
  3553. <div style="width: 100%; text-align: center;">
  3554. </div>
  3555. </div>
  3556. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  3557. </td><td>DIN导轨式接线端子 UT 4-PE/L/N
  3558. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3559. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ut-terminal-blocks">了解更多</a>
  3560. </div>
  3561. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3562. </div>
  3563. </td><td>
  3564. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">45<br/>有库存</span>
  3565. <table>
  3566. <tr align="center">
  3567. <td style="padding-top: 5px">
  3568. </td>
  3569. </tr>
  3570. <tr align="center">
  3571. <td style="padding-top: 5px; padding-bottom: 5px">
  3572. </td>
  3573. </tr>
  3574. </table></td><td>
  3575. <table class="PriceBreaks" cellspacing="0" border="0">
  3576. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3577. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3578. </td>
  3579. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3580. </td>
  3581. </tr>
  3582. <tr>
  3583. <td class="PriceBreakQuantity">
  3584. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  3585. </td>
  3586. <td class="PriceBreakPrice">
  3587. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥105.4989</span>
  3588. </td>
  3589. </tr>
  3590. <tr>
  3591. <td class="PriceBreakQuantity">
  3592. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  3593. </td>
  3594. <td class="PriceBreakPrice">
  3595. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥102.6558</span>
  3596. </td>
  3597. </tr>
  3598. <tr>
  3599. <td class="PriceBreakQuantity">
  3600. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,25);">25:</a>
  3601. </td>
  3602. <td class="PriceBreakPrice">
  3603. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥100.035</span>
  3604. </td>
  3605. </tr>
  3606. <tr>
  3607. <td class="PriceBreakQuantity">
  3608. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,50);">50:</a>
  3609. </td>
  3610. <td class="PriceBreakPrice">
  3611. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥95.9517</span>
  3612. </td>
  3613. </tr>
  3614. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3615. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3616. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(21,100);">100:</a>
  3617. </td>
  3618. <td class="PriceBreakPrice">
  3619. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3214361/?qs=sGAEpiMZZMvgy%2fGGoChzD3jZKvA8HKm8clU5ydGwkR2I%2fhEpYSKcPQ%3d%3d">查看</a>
  3620. </td>
  3621. </tr>
  3622. <tr>
  3623. <td><br /></td>
  3624. </tr>
  3625. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3626. <td colspan="2" style="text-align: center;">
  3627. </td>
  3628. </tr>
  3629. </table>
  3630. </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;)">
  3631. <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 />
  3632. <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="购买 3214361" class="buy-button" /><br />
  3633. <table cellspacing="0" border="0" style="width: 100%;">
  3634. <tr>
  3635. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3636. 最低:
  3637. </td>
  3638. <td style="padding-left: 2px; text-align: left;">
  3639. 1
  3640. </td>
  3641. </tr>
  3642. <tr>
  3643. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3644. 多个:
  3645. </td>
  3646. <td style="padding-left: 2px; text-align: left;">
  3647. 1
  3648. </td>
  3649. </tr>
  3650. </table>
  3651. </div>
  3652. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  3653. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3654. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7DucBgOZ%2femb0w%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=6YAcHqKz7DucBgOZ%2femb0w%3d%3d" target="_blank">详细信息</a>
  3655. </div>
  3656. </td>
  3657. </tr><tr class="SearchResultsRowEven" data-partnumber="651-3210267" data-index="24">
  3658. <td class="td-select" align="center">
  3659. <div style="padding: 5px 5px 0 5px;">
  3660. <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>
  3661. </div>
  3662. </td><td><a href='/ProductDetail/Phoenix-Contact/3210267/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxlHHmfqokAFJ5G%2fxat7wpcw%3d%3d'><img title='Phoenix Contact 3210267' alt='Phoenix Contact 3210267' id=1350421263 src='/images/phoenixcontact/sm/3210267_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3210267_SPL.jpg</div></a></td><td>
  3663. <div style="text-align:left;">
  3664. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3210267/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxlHHmfqokAFJ5G%2fxat7wpcw%3d%3d">651-3210267</a><br />
  3665. <br />
  3666. <br />
  3667. </div></td><td>
  3668. <div class="mfrDiv">
  3669. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3210267/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxlHHmfqokAFJ5G%2fxat7wpcw%3d%3d">3210267</a><br />
  3670. <br />
  3671. <div style="width: 100%; text-align: center;">
  3672. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3673. </div>
  3674. <div style="width: 100%; text-align: center;">
  3675. </div>
  3676. </div>
  3677. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  3678. </td><td>DIN导轨式接线端子 PTT 2,5-2L BU
  3679. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3680. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-tg-mt/">了解更多</a>
  3681. </div>
  3682. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3683. </div>
  3684. </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;Phoenix Contact&quot;,&quot;651-3210267 | 3210267&quot;]);" href="http://www.mouser.com/ds/2/324/ItemDetail_3210267-847008.pdf" target="_blank">数据表</a>
  3685. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">46<br/>有库存</span>
  3686. <table>
  3687. <tr align="center">
  3688. <td style="padding-top: 5px">
  3689. </td>
  3690. </tr>
  3691. <tr align="center">
  3692. <td style="padding-top: 5px; padding-bottom: 5px">
  3693. </td>
  3694. </tr>
  3695. </table></td><td>
  3696. <table class="PriceBreaks" cellspacing="0" border="0">
  3697. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3698. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3699. </td>
  3700. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3701. </td>
  3702. </tr>
  3703. <tr>
  3704. <td class="PriceBreakQuantity">
  3705. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  3706. </td>
  3707. <td class="PriceBreakPrice">
  3708. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥110.8107</span>
  3709. </td>
  3710. </tr>
  3711. <tr>
  3712. <td class="PriceBreakQuantity">
  3713. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  3714. </td>
  3715. <td class="PriceBreakPrice">
  3716. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥107.8155</span>
  3717. </td>
  3718. </tr>
  3719. <tr>
  3720. <td class="PriceBreakQuantity">
  3721. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,25);">25:</a>
  3722. </td>
  3723. <td class="PriceBreakPrice">
  3724. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥105.0426</span>
  3725. </td>
  3726. </tr>
  3727. <tr>
  3728. <td class="PriceBreakQuantity">
  3729. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,50);">50:</a>
  3730. </td>
  3731. <td class="PriceBreakPrice">
  3732. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥100.8072</span>
  3733. </td>
  3734. </tr>
  3735. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3736. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3737. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  3738. </td>
  3739. <td class="PriceBreakPrice">
  3740. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3210267/?qs=sGAEpiMZZMvgy%2fGGoChzDyVFgdHcTAMxlHHmfqokAFJ5G%2fxat7wpcw%3d%3d">查看</a>
  3741. </td>
  3742. </tr>
  3743. <tr>
  3744. <td><br /></td>
  3745. </tr>
  3746. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3747. <td colspan="2" style="text-align: center;">
  3748. </td>
  3749. </tr>
  3750. </table>
  3751. </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;)">
  3752. <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 />
  3753. <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="购买 3210267" class="buy-button" /><br />
  3754. <table cellspacing="0" border="0" style="width: 100%;">
  3755. <tr>
  3756. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3757. 最低:
  3758. </td>
  3759. <td style="padding-left: 2px; text-align: left;">
  3760. 1
  3761. </td>
  3762. </tr>
  3763. <tr>
  3764. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3765. 多个:
  3766. </td>
  3767. <td style="padding-left: 2px; text-align: left;">
  3768. 1
  3769. </td>
  3770. </tr>
  3771. </table>
  3772. </div>
  3773. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  3774. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3775. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=C7CiHI%252b3KsWrvnk5gXvwfA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=C7CiHI%252b3KsWrvnk5gXvwfA%3d%3d" target="_blank">详细信息</a>
  3776. </div>
  3777. </td>
  3778. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3212068" data-index="25">
  3779. <td class="td-select" align="center">
  3780. <div style="padding: 5px 5px 0 5px;">
  3781. <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>
  3782. </div>
  3783. </td><td><a href='/ProductDetail/Phoenix-Contact/3212068/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjokC%252bWVT3lVAHKdU%252byY5hgSA%3d%3d'><img title='Phoenix Contact 3212068' alt='Phoenix Contact 3212068' id=1513626207 src='/images/phoenixcontact/sm/3212068_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3212068_SPL.jpg</div></a></td><td>
  3784. <div style="text-align:left;">
  3785. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3212068/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjokC%252bWVT3lVAHKdU%252byY5hgSA%3d%3d">651-3212068</a><br />
  3786. <br />
  3787. <br />
  3788. </div></td><td>
  3789. <div class="mfrDiv">
  3790. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3212068/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjokC%252bWVT3lVAHKdU%252byY5hgSA%3d%3d">3212068</a><br />
  3791. <br />
  3792. <div style="width: 100%; text-align: center;">
  3793. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3794. </div>
  3795. <div style="width: 100%; text-align: center;">
  3796. </div>
  3797. </div>
  3798. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  3799. </td><td>DIN导轨式接线端子 PTPOWER 35-3L
  3800. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3801. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ptpower-35">了解更多</a>
  3802. </div>
  3803. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3804. </div>
  3805. </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-3212068 | 3212068&quot;]);" href="http://www.mouser.com/ds/2/324/ItemDetail_3212068-848534.pdf" target="_blank">数据表</a>
  3806. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">8<br/>有库存</span>
  3807. <table>
  3808. <tr align="center">
  3809. <td style="padding-top: 5px">
  3810. </td>
  3811. </tr>
  3812. <tr align="center">
  3813. <td style="padding-top: 5px; padding-bottom: 5px">
  3814. </td>
  3815. </tr>
  3816. </table></td><td>
  3817. <table class="PriceBreaks" cellspacing="0" border="0">
  3818. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3819. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3820. </td>
  3821. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3822. </td>
  3823. </tr>
  3824. <tr>
  3825. <td class="PriceBreakQuantity">
  3826. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  3827. </td>
  3828. <td class="PriceBreakPrice">
  3829. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥246.2031</span>
  3830. </td>
  3831. </tr>
  3832. <tr>
  3833. <td class="PriceBreakQuantity">
  3834. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,5);">5:</a>
  3835. </td>
  3836. <td class="PriceBreakPrice">
  3837. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥230.8761</span>
  3838. </td>
  3839. </tr>
  3840. <tr>
  3841. <td class="PriceBreakQuantity">
  3842. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  3843. </td>
  3844. <td class="PriceBreakPrice">
  3845. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥220.1706</span>
  3846. </td>
  3847. </tr>
  3848. <tr>
  3849. <td class="PriceBreakQuantity">
  3850. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,25);">25:</a>
  3851. </td>
  3852. <td class="PriceBreakPrice">
  3853. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥216.3213</span>
  3854. </td>
  3855. </tr>
  3856. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3857. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3858. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,50);">50:</a>
  3859. </td>
  3860. <td class="PriceBreakPrice">
  3861. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3212068/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjokC%252bWVT3lVAHKdU%252byY5hgSA%3d%3d">查看</a>
  3862. </td>
  3863. </tr>
  3864. <tr>
  3865. <td><br /></td>
  3866. </tr>
  3867. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3868. <td colspan="2" style="text-align: center;">
  3869. </td>
  3870. </tr>
  3871. </table>
  3872. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy&#39;)">
  3873. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(23,this.value);" /><br />
  3874. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 23);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy" title="购买 3212068" class="buy-button" /><br />
  3875. <table cellspacing="0" border="0" style="width: 100%;">
  3876. <tr>
  3877. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3878. 最低:
  3879. </td>
  3880. <td style="padding-left: 2px; text-align: left;">
  3881. 1
  3882. </td>
  3883. </tr>
  3884. <tr>
  3885. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3886. 多个:
  3887. </td>
  3888. <td style="padding-left: 2px; text-align: left;">
  3889. 1
  3890. </td>
  3891. </tr>
  3892. </table>
  3893. </div>
  3894. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  3895. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3896. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1m1GD61jf88USNGqDx%2fCFw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1m1GD61jf88USNGqDx%2fCFw%3d%3d" target="_blank">详细信息</a>
  3897. </div>
  3898. </td>
  3899. </tr><tr class="SearchResultsRowEven" data-partnumber="651-3260052" data-index="26">
  3900. <td class="td-select" align="center">
  3901. <div style="padding: 5px 5px 0 5px;">
  3902. <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>
  3903. </div>
  3904. </td><td><a href='/ProductDetail/Phoenix-Contact/3260052/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjokzRbrrwfRIPryAhsxxmiKQ%3d%3d'><img title='Phoenix Contact 3260052' alt='Phoenix Contact 3260052' id=1513626239 src='/images/phoenixcontact/sm/3260052_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3260052_SPL.jpg</div></a></td><td>
  3905. <div style="text-align:left;">
  3906. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3260052/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjokzRbrrwfRIPryAhsxxmiKQ%3d%3d">651-3260052</a><br />
  3907. <br />
  3908. <br />
  3909. </div></td><td>
  3910. <div class="mfrDiv">
  3911. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3260052/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjokzRbrrwfRIPryAhsxxmiKQ%3d%3d">3260052</a><br />
  3912. <br />
  3913. <div style="width: 100%; text-align: center;">
  3914. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3915. </div>
  3916. <div style="width: 100%; text-align: center;">
  3917. </div>
  3918. </div>
  3919. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  3920. </td><td>DIN导轨式接线端子 PTPOWER 50-PE
  3921. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3922. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ptpower-50">了解更多</a>
  3923. </div>
  3924. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3925. </div>
  3926. </td><td>
  3927. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">9<br/>有库存</span>
  3928. <table>
  3929. <tr align="center">
  3930. <td style="padding-top: 5px">
  3931. </td>
  3932. </tr>
  3933. <tr align="center">
  3934. <td style="padding-top: 5px; padding-bottom: 5px">
  3935. </td>
  3936. </tr>
  3937. </table></td><td>
  3938. <table class="PriceBreaks" cellspacing="0" border="0">
  3939. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3940. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3941. </td>
  3942. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3943. </td>
  3944. </tr>
  3945. <tr>
  3946. <td class="PriceBreakQuantity">
  3947. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  3948. </td>
  3949. <td class="PriceBreakPrice">
  3950. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥276.9975</span>
  3951. </td>
  3952. </tr>
  3953. <tr>
  3954. <td class="PriceBreakQuantity">
  3955. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  3956. </td>
  3957. <td class="PriceBreakPrice">
  3958. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥259.7517</span>
  3959. </td>
  3960. </tr>
  3961. <tr>
  3962. <td class="PriceBreakQuantity">
  3963. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,20);">20:</a>
  3964. </td>
  3965. <td class="PriceBreakPrice">
  3966. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥247.7358</span>
  3967. </td>
  3968. </tr>
  3969. <tr>
  3970. <td class="PriceBreakQuantity">
  3971. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,50);">50:</a>
  3972. </td>
  3973. <td class="PriceBreakPrice">
  3974. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥238.8789</span>
  3975. </td>
  3976. </tr>
  3977. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3978. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3979. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(24,100);">100:</a>
  3980. </td>
  3981. <td class="PriceBreakPrice">
  3982. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3260052/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjokzRbrrwfRIPryAhsxxmiKQ%3d%3d">查看</a>
  3983. </td>
  3984. </tr>
  3985. <tr>
  3986. <td><br /></td>
  3987. </tr>
  3988. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3989. <td colspan="2" style="text-align: center;">
  3990. </td>
  3991. </tr>
  3992. </table>
  3993. </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;)">
  3994. <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 />
  3995. <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="购买 3260052" class="buy-button" /><br />
  3996. <table cellspacing="0" border="0" style="width: 100%;">
  3997. <tr>
  3998. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3999. 最低:
  4000. </td>
  4001. <td style="padding-left: 2px; text-align: left;">
  4002. 1
  4003. </td>
  4004. </tr>
  4005. <tr>
  4006. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4007. 多个:
  4008. </td>
  4009. <td style="padding-left: 2px; text-align: left;">
  4010. 1
  4011. </td>
  4012. </tr>
  4013. </table>
  4014. </div>
  4015. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  4016. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4017. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1m1GD61jf8%252b76kxSLq9DCA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1m1GD61jf8%252b76kxSLq9DCA%3d%3d" target="_blank">详细信息</a>
  4018. </div>
  4019. </td>
  4020. </tr><tr class="SearchResultsRowOdd" data-partnumber="651-3212071" data-index="27">
  4021. <td class="td-select" align="center">
  4022. <div style="padding: 5px 5px 0 5px;">
  4023. <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>
  4024. </div>
  4025. </td><td><a href='/ProductDetail/Phoenix-Contact/3212071/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjo9WxOdkqQCErDKy%2frw%2f2msw%3d%3d'><img title='Phoenix Contact 3212071' alt='Phoenix Contact 3212071' id=1513626213 src='/images/phoenixcontact/sm/3212071_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/phoenixcontact/images/3212071_SPL.jpg</div></a></td><td>
  4026. <div style="text-align:left;">
  4027. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Phoenix-Contact/3212071/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjo9WxOdkqQCErDKy%2frw%2f2msw%3d%3d">651-3212071</a><br />
  4028. <br />
  4029. <br />
  4030. </div></td><td>
  4031. <div class="mfrDiv">
  4032. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Phoenix-Contact/3212071/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjo9WxOdkqQCErDKy%2frw%2f2msw%3d%3d">3212071</a><br />
  4033. <br />
  4034. <div style="width: 100%; text-align: center;">
  4035. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4036. </div>
  4037. <div style="width: 100%; text-align: center;">
  4038. </div>
  4039. </div>
  4040. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../Phoenix-Contact">Phoenix Contact</a>
  4041. </td><td>DIN导轨式接线端子 PTPOWER 35-3L/N/FE
  4042. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4043. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../phoenix-contact-ptpower-35">了解更多</a>
  4044. </div>
  4045. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4046. </div>
  4047. </td><td>
  4048. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">5<br/>有库存</span>
  4049. <table>
  4050. <tr align="center">
  4051. <td style="padding-top: 5px">
  4052. </td>
  4053. </tr>
  4054. <tr align="center">
  4055. <td style="padding-top: 5px; padding-bottom: 5px">
  4056. </td>
  4057. </tr>
  4058. </table></td><td>
  4059. <table class="PriceBreaks" cellspacing="0" border="0">
  4060. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4061. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4062. </td>
  4063. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4064. </td>
  4065. </tr>
  4066. <tr>
  4067. <td class="PriceBreakQuantity">
  4068. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  4069. </td>
  4070. <td class="PriceBreakPrice">
  4071. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥404.7615</span>
  4072. </td>
  4073. </tr>
  4074. <tr>
  4075. <td class="PriceBreakQuantity">
  4076. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,5);">5:</a>
  4077. </td>
  4078. <td class="PriceBreakPrice">
  4079. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥379.5831</span>
  4080. </td>
  4081. </tr>
  4082. <tr>
  4083. <td class="PriceBreakQuantity">
  4084. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  4085. </td>
  4086. <td class="PriceBreakPrice">
  4087. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥361.9395</span>
  4088. </td>
  4089. </tr>
  4090. <tr>
  4091. <td class="PriceBreakQuantity">
  4092. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
  4093. </td>
  4094. <td class="PriceBreakPrice">
  4095. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥355.7034</span>
  4096. </td>
  4097. </tr>
  4098. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4099. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4100. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,50);">50:</a>
  4101. </td>
  4102. <td class="PriceBreakPrice">
  4103. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Phoenix-Contact/3212071/?qs=sGAEpiMZZMvgy%2fGGoChzD31De5TR9fjo9WxOdkqQCErDKy%2frw%2f2msw%3d%3d">查看</a>
  4104. </td>
  4105. </tr>
  4106. <tr>
  4107. <td><br /></td>
  4108. </tr>
  4109. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4110. <td colspan="2" style="text-align: center;">
  4111. </td>
  4112. </tr>
  4113. </table>
  4114. </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;)">
  4115. <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 />
  4116. <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="购买 3212071" class="buy-button" /><br />
  4117. <table cellspacing="0" border="0" style="width: 100%;">
  4118. <tr>
  4119. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4120. 最低:
  4121. </td>
  4122. <td style="padding-left: 2px; text-align: left;">
  4123. 1
  4124. </td>
  4125. </tr>
  4126. <tr>
  4127. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4128. 多个:
  4129. </td>
  4130. <td style="padding-left: 2px; text-align: left;">
  4131. 1
  4132. </td>
  4133. </tr>
  4134. </table>
  4135. </div>
  4136. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  4137. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4138. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1m1GD61jf8%252bf6TfKbp69Cg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1m1GD61jf8%252bf6TfKbp69Cg%3d%3d" target="_blank">详细信息</a>
  4139. </div>
  4140. </td>
  4141. </tr>
  4142. </table>
  4143. </div>
  4144. </td>
  4145. </tr>
  4146. <tr>
  4147. <td class="tdSearchResultsPagingBottom">
  4148. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  4149. <tr>
  4150. <td>
  4151. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  4152. </td>
  4153. <td>
  4154. <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" />
  4155. </td>
  4156. <td>
  4157. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  4158. </td>
  4159. <td style="padding-left: 40px;">
  4160. <div class="floatrightpager">
  4161. <span class="bold">
  4162. 页面:
  4163. </span>
  4164. <span id="ctl00_ContentMain_PagerBottom"><span id="ctl00_ContentMain_PagerBottom_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerBottom_1" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_202" class="first-last" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=5050">203</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Electromechanical/Industrial-Automation/Terminal-Blocks/_/N-b12q9/?No=25">下一页</a></span>
  4165. </div>
  4166. </td>
  4167. </tr>
  4168. </table>
  4169. </td>
  4170. </tr>
  4171. <tr>
  4172. <td>
  4173. <!--- Search Tips --->
  4174. </td>
  4175. </tr>
  4176. <tr>
  4177. <td>
  4178. <!-- SOP Section 2 -->
  4179. </td>
  4180. </tr>
  4181. </table>
  4182. </div>
  4183. </div><!-- #liProducts-->
  4184. <!-- Datasheets tab -->
  4185. <!-- #liDatasheets-->
  4186. <!-- Images tab -->
  4187. <!-- #liImages-->
  4188. <!-- Newest Products tab -->
  4189. <!-- #liProducts-->
  4190. </div>
  4191. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  4192. <div>
  4193. <span class="popular-searches-label">热门搜索:</span>
  4194. <span class="popular-searches-links"><a href='/Electromechanical/Industrial-Automation/Terminal-Blocks/Interface-Modules/_/N-b19j7?P=1z0z80l&pop=abvh' onclick="ga('send','event','Popular Search Refine Click','Terminal Blocks','Screw Interface Modules')">Screw 界面模块</a> , <a href='/Electromechanical/Industrial-Automation/Terminal-Blocks/DIN-Rail-Terminal-Blocks/_/N-b19hp?P=1z1414h&pop=wkbv' onclick="ga('send','event','Popular Search Refine Click','Terminal Blocks','Bulk DIN Rail Terminal Blocks')">Bulk DIN导轨式接线端子</a></span>
  4195. </div>
  4196. </div>
  4197. <div style="visibility: hidden;">
  4198. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  4199. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  4200. <span id="SearchResultCount">5058</span>
  4201. <div id="disclaimer">
  4202. 图像仅供参考<br/>请参阅产品规格</div>
  4203. </div>
  4204. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Electromechanical/Industrial-Automation/Terminal-Blocks" />
  4205. <script type="text/javascript" src='../../../../../javascript/ProductImage.js'></script>
  4206. <script type="text/javascript" src='../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  4207. <script type="text/javascript" src='../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  4208. <!--[if gte IE 9]><!-->
  4209. <script type="text/javascript" src='../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  4210. <!--<![endif]-->
  4211. <!--[if lt IE 9]>
  4212. <script type="text/javascript" src='../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  4213. <![endif]-->
  4214. <script type="text/javascript" src='../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  4215. <script type="text/javascript">
  4216. var subdomain = 'cn2';
  4217. </script>
  4218. </div>
  4219. <div class="aspNetHidden">
  4220. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  4221. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  4222. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  4223. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  4224. </div>
  4225. <script type="text/javascript">
  4226. //<![CDATA[
  4227. var mfrIDsArray = new Array;
  4228. //]]>
  4229. </script>
  4230. <script src='../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  4231. <script type="text/javascript">
  4232. //<![CDATA[
  4233. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  4234. </script>
  4235. <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>
  4236. <script type="text/javascript">
  4237. //<![CDATA[
  4238. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  4239. //]]>
  4240. </script>
  4241. <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>
  4242. <script type="text/javascript">
  4243. //<![CDATA[
  4244. theForm.oldSubmit = theForm.submit;
  4245. theForm.submit = WebForm_SaveScrollPositionSubmit;
  4246. theForm.oldOnSubmit = theForm.onsubmit;
  4247. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  4248. //]]>
  4249. </script>
  4250. </form>
  4251. <div id="content-container2" class="hidden">
  4252. <div id="content-fixed-width2" class="content-fixed-width">
  4253. </div>
  4254. </div>
  4255. <div id="wideFooter" class="wideFooter">
  4256. <div id="footer" class="container">
  4257. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB08|20160304.2" />
  4258. <div id="ft_table1">
  4259. <div class="row">
  4260. <div class="col-xs-12">
  4261. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  4262. <div class="floatleft padding5right">
  4263. <strong class="h3">
  4264. 快速电子邮件注册</strong>&nbsp;&nbsp;
  4265. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  4266. </div>
  4267. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  4268. 提交
  4269. </a>
  4270. </div>
  4271. <div id="ft_icons" class="ft_icons">
  4272. <div id="ft_social">
  4273. <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>
  4274. <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>
  4275. <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>
  4276. <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">
  4277. <div class="ico-social fb"></div>
  4278. </a>
  4279. <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">
  4280. <div class="ico-social tw"></div>
  4281. </a>
  4282. <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">
  4283. <div class="ico-social rss"></div>
  4284. </a>
  4285. <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">
  4286. <div class="ico-social yt"></div>
  4287. </a>
  4288. <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">
  4289. <div class="ico-social gp"></div>
  4290. </a>
  4291. <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">
  4292. <div class="ico-social ln"></div>
  4293. </a>
  4294. <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">
  4295. <div class="ico-social sb"></div>
  4296. </a>
  4297. <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">
  4298. <div class="ico-social blog"></div>
  4299. </a>
  4300. </div>
  4301. </div>
  4302. </div>
  4303. </div>
  4304. </div>
  4305. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  4306. <div class="ft_wrapper">
  4307. <div id="ft_links" class="row">
  4308. <div class="col-xs-3 paddingBtm10 hidden-xs">
  4309. <strong class="paddingTopBtm10 inline-block">
  4310. 公司</strong>
  4311. <ul>
  4312. <li>
  4313. <a id="ctl00_Footer1_lnk26" href="../../../../../aboutus/">关于我们</a></li>
  4314. <li>
  4315. <a id="ctl00_Footer1_lnk28" href="../../../../../educationalsales/">教育销售</a></li>
  4316. <li>
  4317. <a id="ctl00_Footer1_lnk31" href="../../../../../pressroom/">新闻中心</a></li>
  4318. <li>
  4319. <a id="ctl00_Footer1_lnk32" href="../../../../../careers/">Mouser 工作机会</a></li>
  4320. <li>
  4321. <a id="ctl00_Footer1_lnk29" href="../../../../../quality/">品质保证</a></li>
  4322. <li>
  4323. <a id="ctl00_Footer1_lnk30" href="../../../../../environmental/">环境保护</a></li>
  4324. </ul>
  4325. </div>
  4326. <div class="col-xs-3 hidden-xs">
  4327. <strong class="paddingTopBtm10 inline-block">
  4328. 快速链接</strong>
  4329. <ul>
  4330. <li><a id="A7" href="/blog">
  4331. Mouser博客</a></li>
  4332. <li>
  4333. <a id="ctl00_Footer1_hlnk1" href="../../../../../new/">最新产品</a></li>
  4334. <li>
  4335. <a id="ctl00_Footer1_hlnk2" href="../../../../../new/products/">新产品</a></li>
  4336. <li>
  4337. <a id="ctl00_Footer1_hlnk3" href="../../../../../applications/">新技术</a></li>
  4338. </ul>
  4339. </div>
  4340. <div class="col-xs-12 col-sm-3">
  4341. <strong class="paddingTopBtm10 inline-block">
  4342. 支持</strong>
  4343. <ul>
  4344. <li><a id="A3" href="/feedback.aspx">
  4345. 反馈</a></li>
  4346. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  4347. 帮助</a></li>
  4348. <li>
  4349. <a id="ctl00_Footer1_lnk27" href="../../../../../contact/">联系我们</a></li>
  4350. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  4351. 浏览器支持</a></li>
  4352. <li><a id="A6" href="/cookie-policy/">
  4353. Cookie政策</a></li>
  4354. </ul>
  4355. </div>
  4356. <div class="col-xs-12 col-sm-3">
  4357. <strong class="paddingTopBtm10 inline-block">
  4358. 昴氏(上海)电子贸易有限公司</strong>
  4359. <ul>
  4360. <li>
  4361. <h4>
  4362. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  4363. </li>
  4364. </ul>
  4365. </div>
  4366. </div>
  4367. </div>
  4368. </div>
  4369. <div class="row">
  4370. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  4371. <div id="ft_copy">
  4372. <span class="ft_terms">
  4373. <a id="A1" href="/privacypolicy/">
  4374. 隐私政策</a>
  4375. &nbsp;&nbsp;|&nbsp;&nbsp;
  4376. <a id="href3" href="/saleterms/">
  4377. 销售条款</a>
  4378. <br />
  4379. </span>
  4380. <span class="ft_copyright">
  4381. 版权所有©2016 Mouser Electronics, Inc
  4382. |
  4383. 沪ICP备15042575号-1
  4384. <br />
  4385. </span>
  4386. <span class="ft_trade">
  4387. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  4388. </span>
  4389. <span class="ft_hq">
  4390. Corporate headquarters and logistics center in Mansfield, Texas USA.
  4391. </span>
  4392. <br />
  4393. <span class="ft_ClassicMobile">
  4394. <strong>
  4395. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  4396. </span>
  4397. </div>
  4398. </div>
  4399. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  4400. <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>
  4401. <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>
  4402. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  4403. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  4404. </a>
  4405. <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>
  4406. <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;
  4407. </a>
  4408. </div>
  4409. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  4410. <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>
  4411. <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>
  4412. <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>
  4413. <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>
  4414. </div>
  4415. </div>
  4416. <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>
  4417. <script type="text/javascript">
  4418. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  4419. </script>
  4420. </div>
  4421. </div>
  4422. <script src="../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  4423. <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>
  4424. </body>
  4425. </html>