| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head id="ctl00_header">
- <!-- AppInternalsXpert BMX Integration Begin -->
- <script>
- if(!OPNET_ARXS){
- var OPNET_ARXS={startJS:Number(new Date()),
- clientId:'7496BECC1B8E33C4',appId:100040,
- collector:'perf.mouser.com',
- collectorHttpPort:80, collectorHttpsPort:443,
- sv:'0302',
- tag1:'', tag2:'', tag3:''};
- (function(){
- var w=window,l=w.addEventListener,m=w.attachEvent,
- d=document,s='script',t='load',o=OPNET_ARXS,
- z='-0b2c4d73f58414c86c7384150be8ca44',
- r=(('https:'===d.location.protocol)?
- 'https://953c27ce3b34cfb8cc56'+z+'.ssl':
- 'http://fb3f316d487bcc59f7ec'+z+'.r88')+
- '.cf1.rackcdn.com/opnet_browsermetrix.c.'+
- (o.ajax?'ajax.js':'js'),p=('onpagehide' in w),e=p?'pageshow':t,
- j=d.createElement(s),x=d.getElementsByTagName(s)[0],
- h=function(y){o.ldJS=new Date();o.per=y?y.persisted:null;},
- i=function(){o.ld=1;};o.cookie=d.cookie;d.cookie=
- '_op_aixPageId=0; path=/; expires='+(new Date(0)).toGMTString();
- o.cookieAfterDelete=d.cookie;j.async=1;j.src=r;
- if(l){l(e,h,false);if(p){l(t,i,false);}}else if(m)
- {m('on'+e,h);if(p){m('on'+t,i);}}
- if(o.sync){d.write('<'+s+' src=\''+r+'\'></'+s+'>');}
- else{x.parentNode.insertBefore(j,x);}
- })();}
- </script>
- <script>if(!OPNET_ARXS_PARAM){var OPNET_ARXS_PARAM={};} OPNET_ARXS_PARAM.pageId = 'a2_41b11582-d29e-4e0d-9276-25733d0bccf7-12552-343339';</script>
- <!-- AppInternalsXpert BMX Integration End -->
- <title>
- 化学物质 | Mouser
- </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" />
- <!-- BASE STYLE SHEET -->
- <link rel="shortcut icon" href="../../../../favicon.ico" /><link rel="alternate" type="application/rss+xml" title="RSS" href="../../../../rss/rss.xml" />
- <!--[if IE 7]>
- <link rel="stylesheet" type="text/css" href="../../../../css/ie7.css" />
- <![endif]-->
- <!--[if IE 8]>
- <link rel="stylesheet" type="text/css" href="../../../../css/ie8.css" />
- <![endif]-->
- <!--[if IE 9]>
- <link rel="stylesheet" type="text/css" href="../../../../css/ie9.css" />
- <![endif]-->
- <script type="text/javascript">
- function OpenBackordered(URL) {
- var MsgWindow;
- MsgWindow = window.open(URL, "MsgWindow", "scrollbars=1,height=500,width=650,menubar=0,resizable=1");
- }
- </script>
- <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","WW9K+Oj+GG7Zc/fxuiiclJx36DVM+U8lUt8YrWObXmc=",2]);_gaq.push(["_setCustomVar",31,"Cart","cea2aab3-92b0-477e-811e-391f20b404d7",2]);
- _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA96AA68",2]);
- _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
- _gaq.push(["_setSiteSpeedSampleRate", 10]);
- _gaq.push(["_trackPageview"]);
- (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); })();
- (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});
- ga('require', 'ec');
- ga('ec:addImpression', {
- 'id': '517-DP270BK',
- 'name': 'Chemicals 1.7oz ADHESIVE 1 PIECE BLACK',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': 'DP-270 BLACK',
- 'list': 'Refine',
- 'position': '1'
- });
- ga('ec:addImpression', {
- 'id': '532-251',
- 'name': 'Chemicals 1lb THERMALCOTE I CAN OPAQUE WHITE',
- 'category': 'Chemicals',
- 'brand': 'Aavid Thermalloy',
- 'variant': '251G',
- 'list': 'Refine',
- 'position': '2'
- });
- ga('ec:addImpression', {
- 'id': '532-249',
- 'name': 'Chemicals 1oz THERMALCOTE I TUBE OPAQUE WHITE',
- 'category': 'Chemicals',
- 'brand': 'Aavid Thermalloy',
- 'variant': '249G',
- 'list': 'Refine',
- 'position': '3'
- });
- ga('ec:addImpression', {
- 'id': '532-250',
- 'name': 'Chemicals 2oz THERMALCOTE I TUBE OPAQUE WHITE',
- 'category': 'Chemicals',
- 'brand': 'Aavid Thermalloy',
- 'variant': '250G',
- 'list': 'Refine',
- 'position': '4'
- });
- ga('ec:addImpression', {
- 'id': '517-DP-270CL-1.7',
- 'name': 'Chemicals 1.7oz ADHSVE CLEAR EPOXY',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': 'DP-270',
- 'list': 'Refine',
- 'position': '5'
- });
- ga('ec:addImpression', {
- 'id': '567-120-5',
- 'name': 'Chemicals SILICON GREASE 5oz.',
- 'category': 'Chemicals',
- 'brand': 'Wakefield',
- 'variant': '120-5',
- 'list': 'Refine',
- 'position': '6'
- });
- ga('ec:addImpression', {
- 'id': '567-120-8',
- 'name': 'Chemicals SILICON GREASE 8oz.',
- 'category': 'Chemicals',
- 'brand': 'Wakefield',
- 'variant': '120-8',
- 'list': 'Refine',
- 'position': '7'
- });
- ga('ec:addImpression', {
- 'id': '517-EC2216',
- 'name': 'Chemicals SCOTCH-WELD EPOXY 43 MIL GRAY',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': 'EC2216',
- 'list': 'Refine',
- 'position': '8'
- });
- ga('ec:addImpression', {
- 'id': '532-100300F00G',
- 'name': 'Chemicals ULTRASTICK THERMAL COMPOUND 47.5g',
- 'category': 'Chemicals',
- 'brand': 'Aavid Thermalloy',
- 'variant': '100300F00000G',
- 'list': 'Refine',
- 'position': '9'
- });
- ga('ec:addImpression', {
- 'id': '517-DP100FR',
- 'name': 'Chemicals EPXY ADHSIV 1.7FL OZ CREAM COLOR',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': 'DP100FR',
- 'list': 'Refine',
- 'position': '10'
- });
- ga('ec:addImpression', {
- 'id': '517-2216-GRY',
- 'name': 'Chemicals 2OZ. EPOXY KIT GRAY',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': '2216 B/A GRAY',
- 'list': 'Refine',
- 'position': '11'
- });
- ga('ec:addImpression', {
- 'id': '650-S1125-KIT-8',
- 'name': 'Chemicals ADHESIVE 50-ML DUAL SYRINGE',
- 'category': 'Chemicals',
- 'brand': 'TE Connectivity / Raychem',
- 'variant': 'S1125-KIT-8',
- 'list': 'Refine',
- 'position': '12'
- });
- ga('ec:addImpression', {
- 'id': '650-S1125-KIT-1',
- 'name': 'Chemicals ADHESIVE 5 10-GRAM P',
- 'category': 'Chemicals',
- 'brand': 'TE Connectivity / Raychem',
- 'variant': 'S1125-KIT-1',
- 'list': 'Refine',
- 'position': '13'
- });
- ga('ec:addImpression', {
- 'id': '517-DP-100-1.7',
- 'name': 'Chemicals EPOXY DP100 PLUS CLEAR DUO-PK 1.7OZ',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': 'DP-100 Plus',
- 'list': 'Refine',
- 'position': '14'
- });
- ga('ec:addImpression', {
- 'id': '517-DP110-TRANS',
- 'name': 'Chemicals 1.7oz EPOXY TRANS',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': 'DP-110 TRANS',
- 'list': 'Refine',
- 'position': '15'
- });
- ga('ec:addImpression', {
- 'id': '517-DP420-1.7',
- 'name': 'Chemicals 1.25oz OFF-WHITE 2PRT',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': 'DP-420 OFF-WHITE',
- 'list': 'Refine',
- 'position': '16'
- });
- ga('ec:addImpression', {
- 'id': '517-DP420-BLK-1.25',
- 'name': 'Chemicals 1.25oz BLACK 2-PART',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': 'DP420-BLACK-1.25OZ',
- 'list': 'Refine',
- 'position': '17'
- });
- ga('ec:addImpression', {
- 'id': '517-TC-2707-37ML',
- 'name': 'Chemicals THERM COND ADH 37ML DUO-PAK',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': 'TC-2707-37ML',
- 'list': 'Refine',
- 'position': '18'
- });
- ga('ec:addImpression', {
- 'id': '517-DP-105CLEAR',
- 'name': 'Chemicals 2-PART EPOXLY 1.7OZ',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': 'DP-105 CLEAR',
- 'list': 'Refine',
- 'position': '19'
- });
- ga('ec:addImpression', {
- 'id': '532-102100F00G',
- 'name': 'Chemicals SIL-FREE 16.0oz JAR WHITE',
- 'category': 'Chemicals',
- 'brand': 'Aavid Thermalloy',
- 'variant': '102100F00000G',
- 'list': 'Refine',
- 'position': '20'
- });
- ga('ec:addImpression', {
- 'id': '517-DP100CLR',
- 'name': 'Chemicals EPOXY ADH DP100 1.7 FL OZ CLEAR',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': 'DP100 1.7OZ CLEAR',
- 'list': 'Refine',
- 'position': '21'
- });
- ga('ec:addImpression', {
- 'id': '571-275447-1',
- 'name': 'Chemicals SEALING \u0026 DIELECTRIC COMPOUND',
- 'category': 'Chemicals',
- 'brand': 'TE Connectivity / AMP',
- 'variant': '275447-1',
- 'list': 'Refine',
- 'position': '22'
- });
- ga('ec:addImpression', {
- 'id': '517-62-9171-9153-8',
- 'name': 'Chemicals SCOTCH-WELD 5.3MM MIX NOZZLE SQ GOLD',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': '62-9171-9153-8',
- 'list': 'Refine',
- 'position': '23'
- });
- ga('ec:addImpression', {
- 'id': '517-DP-190',
- 'name': 'Chemicals S/W DP-190 GRY EPXY ADH 50ML DUO-PAK',
- 'category': 'Chemicals',
- 'brand': '3M Electronic Specialty',
- 'variant': 'DP-190-GRAY',
- 'list': 'Refine',
- 'position': '24'
- });
- ga('ec:addImpression', {
- 'id': '532-100200F00000G',
- 'name': 'Chemicals SIL-FREE GREASE WHITE 5.0oz TUBE',
- 'category': 'Chemicals',
- 'brand': 'Aavid Thermalloy',
- 'variant': '100200F00000G',
- 'list': 'Refine',
- 'position': '25'
- });
- ga('set','dimension1','zh-CN');
- ga('set','dimension30','WW9K+Oj+GG7Zc/fxuiiclJx36DVM+U8lUt8YrWObXmc=');
- ga('set','dimension31','cea2aab3-92b0-477e-811e-391f20b404d7');
- ga('set','dimension13','163AA125AA96AA68');
- ga('set','metric2',906);
- ga('set','dimension5','Chemicals');
- ga('set','dimension48','wp63');
- ga('set','dimension3','Refine');
- ga('set','dimension55','Products');
- ga('send', 'pageview');
- </script>
- <link href="http://www.mouser.cn/Tools-Supplies/Chemicals/_/N-wp63/?No=25" rel="next" content="http://www.mouser.cn/Tools-Supplies/Chemicals/_/N-wp63/?No=25" /><link href="http://www.mouser.cn/Tools-Supplies/Chemicals/_/N-wp63" rel="canonical" content="http://www.mouser.cn/Tools-Supplies/Chemicals/_/N-wp63" /><meta http-equiv="content-language" content="zh-cn" /><link href="../../../../css/style.axd?v=3.0.20160304.2&type=css&fileSet=CSS_Base&lang=zh-CN" rel="stylesheet" type="text/css" /><link href="../../../../css/style.axd?v=3.0.20160304.2&fileSet=Css_Search&type=css&lang=zh-CN" rel="stylesheet" type="text/css" /><link rel="alternate" hreflang="es-AR" href="http://ar.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Tools-Supplies/Chemicals/_/N-wp63/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Tools-Supplies/Chemicals/_/N-wp63/" /><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#yxezcaswaauztuaqaww{display:none!important}</style><!-- Optimized for speed - Stingray Aptimizer --></head>
- <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
- <script src='../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
- <script src='../../../../flash/js/empty.file.js' type="text/javascript"></script>
- <script src='../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
- <script src='../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
- <script src='../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
- <!--[if lt IE 9]>
- <script src='../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
- <![endif]-->
- <form method="post" action="/Tools-Supplies/Chemicals/_/N-wp63/" id="aspnetForm">
- <div class="aspNetHidden">
- <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
- <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
- <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" />
- <input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
- </div>
- <script type="text/javascript">
- //<![CDATA[
- var theForm = document.forms['aspnetForm'];
- if (!theForm) {
- theForm = document.aspnetForm;
- }
- function __doPostBack(eventTarget, eventArgument) {
- if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
- theForm.__EVENTTARGET.value = eventTarget;
- theForm.__EVENTARGUMENT.value = eventArgument;
- theForm.submit();
- }
- }
- //]]>
- </script>
- <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZIfBoSL8TZnsnOFihh6T3B3-ZDc9vWAo-Dvo5VSdzj9CkFL2Zg2&t=635802997220000000" type="text/javascript"></script>
- <script type="text/javascript">
- //<![CDATA[
- var lasttemplateid='1525611';
- var subdomainname = '.mouser.cn';
- var lang = 'zh-CN';
- var country = 'CN';
- var shippingCountry = 'CN';
- var usdSubdomain = 'www';
- var subdomain = 'cn2';
- function attributecount() { return true; }
- var navids='1525611';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenPTCWindow(url) {var left = (screen.width / 2) - (542 / 2);var top = (screen.height / 2) - (531 / 2);
- window.open(url, "popup", "height=488,width=454,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0");
- }
- function OpenRoHSPopup(url) {
- 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');
- }
- function GenerateClientID(prefix, i, suffix) {
- if (i < 10) { return prefix + '0' + String(i) + suffix; }
- else { return prefix + String(i) + suffix; }
- }
- var checked = false;
- function SelectAll() {
- checked = !checked;
- var i = 3;
- var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
- while (i < 29) {
- if (chkSelect != null) chkSelect.checked = checked;
- i = i + 1;
- chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
- }
- }
- function IsAllChecked(checked) {
- var i = 3;
- var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
- while (i < 29) {
- if (chkSelect != null && chkSelect.checked != checked) return false;
- i = i + 1;
- chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
- }
- return true;
- }
- function IsAnyChecked(checked) {
- return !IsAllChecked(!checked);
- }
- function SelectRow(row, checked) {
- document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
- }
- function RowSelected(index, checked) { }
- function GetQuantityTextboxByRow(row) {
- return GetQuantityTextboxByIndex(row + 2);
- }
- function GetQuantityTextboxByIndex(index) {
- return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
- }
- function SelectQuantity(row, quantity) {
- txtQuantity = GetQuantityTextboxByRow(row);
- if (txtQuantity == null) { return; }
- txtQuantity.value = quantity;
- SelectRow(row, true);
- }
- var qtyRegEx = /^([0]|\s)*$/;
- function IsQuantityEmptyOrZero(quantity) {
- return qtyRegEx.test(quantity);
- }
- function QuantityChanged(row, quantity) {
- SelectRow(row, !IsQuantityEmptyOrZero(quantity));
- }
- var QuantityRowSelectedBase = RowSelected;
- function QuantityRowSelected(index, checked) {
- QuantityRowSelectedBase(index, checked);
- txtQuantity = GetQuantityTextboxByIndex(index);
- if (txtQuantity == null) { return; }
- if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
- else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
- }
- RowSelected = QuantityRowSelected;
- //]]>
- </script>
- <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&t=5f9d5645" type="text/javascript"></script>
- <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&t=5f9d5645" type="text/javascript"></script>
- <div id="cookie-notification-bar">
- </div>
- <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
- <div id="wideGab" class="wideGab">
- <div id="ctl00_globalActionBar" class="global-action-bar">
- <div id="gab-container" class="container">
- <div id="contact" class="row">
- <div class="topPadding col-xs-6">
- <div class="inline-block">
- <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
- <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>
- 400-821-6111</a><span id="yxezcaswaauztuaqaww"><a rel="file" style="display: none;" href="xxrrtbuu.html">ubqtbausacydzezvysubqtb</a></span>
- <span class="pipe">|</span>
- <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
- 反馈</a>
- </div>
- <span class="qqIcon inline-block"> <script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
- </span>
- </div>
- <div class="col-xs-6 align-right">
- <div id="tdImg" class="inline-block topPadding9px">
- <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton('Cart Hover','Global Action Bar');" class="smallgrey">
- <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
- <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton('Cart Hover','Global Action Bar');" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
- </div>
- <div class="topPadding inline-block">
- <span class="pipe">|</span>
- <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvrCtTdiClrDQoQcVgE2dL3UQRI8fgQtubVyAmiUatLj3Z%252bIy800Lr%252bCG2JavGwNmI%3d">更改国家</a>
- <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvrCtTdiClrDQoQcVgE2dL3UQRI8fgQtubVyAmiUatLj3Z%252bIy800Lr%252bCG2JavGwNmI%3d"><img id="ctl00_gab1_img7" class="visualAttributeImage" src="../../../../images/international/flags/cn2.gif" alt="更改位置" style="border-width: 1px;" /></a>
- <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
- <span id="ctl00_gab1_lbl1">RMB</span>
- </div>
- </div>
- </div>
- </div>
- <div style="clear: both;"></div>
- <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
- class="thickbox"></a>
- <div id="divCurrencyPopup" class="currency-popup">
- <div class="currency-close">
- <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();"> </a>
- </div>
- <div>
- <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../images/international/flags/cn2.gif" alt="中国" /> <span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
- <br/>
- <div style="padding: 0 20px 0 20px">
- <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
- <br />
- <table width="95%">
- <tr>
- <td width="20%">
- <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
- </td>
- <td>
- <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
- <br/>
- <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
- <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
- <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
- <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- <div id="cartDialog" class="CartDialog" style="display: none;">
- <table id="miniCartOnly">
- <tr id="divall">
- <td id="tdCart">
- <table style="width: 100%; padding: 0px; border: 0px">
- <tr>
- <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
- <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
- </td>
- <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
- <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
- </td>
- </tr>
- </table>
- <table id="tableMiniCartItms">
- <tr id="trCart">
- <td>
- <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
- <table id="tblMiniCart">
- <thead>
- <tr>
- <th class="miniCartColumn">制造商</th>
- <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
- <th class="miniCartColumn MiniCartHdBg">数量</th>
- <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
- </tr>
- </thead>
- </table>
- <script type="text/javascript">
- var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
- var currentGuid = 'cea2aab3-92b0-477e-811e-391f20b404d7';
- var currentCountryCode = 'CN';
- var currentCurrencyCode= 'RMB';
- var currencyCulture = 'zh-CN';
- var cultureCode = 'zh-CN';
- var customerID = '';
- </script>
- <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
- </td>
- </tr>
- </table>
- <div style="display: none; padding-top: 10px" id="divSingleItem">
- <table id="tblSingeItem">
- <tr>
- <!-- Here goes the single item -->
- <td style="padding-right: 15px">
- <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
- <td style="align: right; padding-right: 2px" id="tdSingleItms">
- <div id="divAll">
- <div id="wrapper">
- <div id="divLbl">
- <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
- </div>
- <div id="divHyp">
- </div>
- </div>
- <div id="divRest">
- <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
- <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
- <br />
- <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
- </div>
- </div>
- </td>
- </tr>
- </table>
- </div>
- <div id="divForCart" class="divMsgLnkTotal" style="display: none">
- <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
- <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
- <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
- <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
- <a onclick="javascript:return MiniCart.SendToCartPage('Cart Hover','View Cart Button');" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$gab1$ucmini$linkToCartAtMiniCart", "", false, "", "http://www.mouser.cn/Cart/Cart.aspx", false, true))" style="color:White;text-decoration:none;">查看购物车</a>
- </div>
- </div>
- </td>
- <td style="display: none" id="trCartSubTotal">
- <table class="tblMiniCartSub">
- <tr>
- <td align="right" style="padding-bottom: 5px; padding-top: 2px">
- <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
- <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
- </td>
- </tr>
- <tr>
- <td align="right" style="padding-bottom: 5px">
- <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
- </td>
- </tr>
- <tr>
- <td align="left" style="padding-bottom: 5px">
- <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
- </td>
- </tr>
- <tr>
- <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
- <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack('ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune','')" style="color:White;text-decoration:none;">继续购物</a>
- <a onclick="return MiniCart.SendToCartPage('Add to Cart Modal','View Cart');" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart", "", false, "", "http://www.mouser.cn/Cart/Cart.aspx", false, true))" style="color:White;text-decoration:none;">查看购物车</a>
- </td>
- </tr>
- </table>
- <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
- </td>
- </tr>
- <tr id="trHideModalCheckBox" style="display: none">
- <td colspan="2">
- <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
- </td>
- </tr>
- </table>
- <script type="text/javascript">
- $(document).ready(function () {
- MiniCart.source = 'refine';
- });
- </script>
- </div>
- <script type="text/javascript">
- function OpenCurrencyPopup() {
- $("#tblink").trigger('click');
- }
- function CloseCurrencyPopup() {
- var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
- var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
- if (ddlCurrency != null && hidCurrencyValue != null) {
- ddlCurrency.selectedIndex = hidCurrencyValue.value;
- }
- window.location.reload();
- }
- </script>
- </div>
- </div>
- <div id="wideHeader" class="wideHeader">
- <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
- <div id="search" class="row">
- <div id="logo" class='col-xs-4'>
- <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
- </div>
- <div id="search-block" class="col-xs-4">
- <div id="search-title">
- 物料编号/关键字
- </div>
- <div id="search-bar">
- <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_NavHeader_btn1')">
-
- <div id="searchPartNumberBox" class="search-box inline-block">
- <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
- <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
- </div>
- <div class="inline-block">
- <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
- <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
- </div>
- </div>
- </div>
- </div>
- <div id="account" class="col-xs-4 align-right">
- <ul>
- <li>
- </li>
- <li>
- <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwvrCtTdiClrDQoQcVgE2dL3UQRI8fgQtubVyAmiUatLj3Z%252bIy800Lr%252bCG2JavGwNmI%3d">登录</a>
- </li>
- <li>
- </li>
- <li>
- <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
- </li>
- <li>
- <!-- Mush:TBC -->
- <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
- </li>
- </ul>
- </div>
- </div>
- <div id="navArea" class="row">
- <div class="col-xs-12">
- <div id="navMain" class="inline-block">
- <div class="navbar">
- <ul class="topnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
- </li>
- </ul>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
- <ul class="subnav" id="subnav">
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
- </li>
- <li>
- <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- </div>
- <div class="onlineCatalog inline-block">
- <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
- </div>
- </div>
- </div>
- </div>
- <div style="visibility: hidden; height: 0px;">
- <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
- <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
- <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
- </div>
- <script type="text/javascript">
- $(document).ready(function () {
- //* change to html5 catalog if javascript is enabled *
- $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
- });
- </script>
- <script type="text/javascript" src='../../../../javascript/genLib.js'></script>
- </div>
- <div id="ctl00_divWide" class="divWide">
- <link rel="stylesheet" type="text/css" href='../../../../css/fontawesome/css/font-awesome.min.css' />
- <br />
- <strong></strong>
- <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
- <strong>></strong>
- <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-5gg1/" style="font-size: 9pt; font-weight: bold;">工具与供应</a>
- <strong>></strong>
- <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">化学物质</a>
- <hr />
- <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
- <div class="categorySearchLimits">
- <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
-
- </div>
- </div>
- </div>
- <table border="0" width="100%">
- <tr>
- <td>
- <div id="ctl00_ContentMain_pnl3">
-
- <div id="category-top" class="category-content">
- <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> 化学物质</h1></a>
- <!--Marketing Content-->
- <div id="ctl00_ContentMain_refinemfglogo">
-
- </div>
- </div><!--.category-content-->
- </div>
- </td>
- </tr>
- <tr>
- <td>
- </td>
- </tr>
- <tr>
- <td>
- <div id="refine-page2">
- </div>
- </td>
- </tr>
- </table>
- <div id="ctl00_ContentMain_divTabs" class="row">
- <div class="col-xs-12">
- <div id="tabsNavigation" >
- <ul>
- <li id="ctl00_ContentMain_liProductsTab" class="active">
- <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(906)</span></a>
- </li>
- <li id="ctl00_ContentMain_liDatasheetsTab" class="">
- <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking('Refine Tab Click', 'Datasheets', 'Chemicals');" href="../../Datasheets/_/N-wp63">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(286)</span></a>
- </li>
- <li id="ctl00_ContentMain_liImagesTab" class="">
- <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking('Refine Tab Click', 'Images', 'Chemicals');" href="../../Images/_/N-wp63">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(463)</span></a>
- </li>
- <li id="ctl00_ContentMain_liNewestTab" class="disabled">
- <a id="ctl00_ContentMain_liNewestProdLink" class="aspNetDisabled">最新产品</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- <div id="tabDivs" class="tab-divs">
- <script type="text/javascript">
- //<![CDATA[
- Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
- //]]>
- </script>
- <div id="ctl00_ContentMain_liProducts">
- <div id="refineSearchDiv">
- <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
-
- <div id="refine-keyword-search-2">
- <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_uc2_btnSearch')">
-
- <div id="boxPartSearch2">
- <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
- <tr>
- <td rowspan="3" style="vertical-align: middle">
- <div id="searchPartNumberBox" class="search-box" >
- <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
- <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
- </div>
- </td>
- </tr>
- <tr>
- <td class="chk-Search">
- <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
- </td>
- </tr>
- <tr>
- <td class="chk-Search">
- <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>
- </td>
- </tr>
- </table>
-
- <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
- </div>
- <script type="text/javascript" src='../../../../flash/js/Placeholders.min.js'></script>
- <script type="text/javascript" src='../../../../flash/js/watermark.js'></script>
- </div>
- </div>
- <div id="refine-mfg-select-2">
- </div>
- <div class="clear">
- </div>
- <table class="SearchParametricTable2">
- <tr>
- <td>
- <div id="AttributesDiv2">
- <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
- <div class="categorySearchLimits">
- <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
- <span class="subCategoryHeader">类别</span> <span title="工具与供应"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254593|Tools & Supplies" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx254593|Tools & Supplies" checked="checked" onclick="document.getElementById('ctl00_ContentMain_uc5_CategorySearchLimits_chkbx1525611|Chemicals').checked = false;" /></span> <b>工具与供应</b> > <span title="化学物质"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx1525611|Chemicals" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx1525611|Chemicals" checked="checked" onclick="document.getElementById('ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254593|Tools & Supplies').checked = true;" /></span> <b>化学物质</b>
- </div>
- </div>
- <hr/>
- </div>
- <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
- <p class="applied-filter-lbl">
- <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
- <span id="ctl00_ContentMain_uc5_lblreccount">906 匹配</span>
- <span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
- </p>
- <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
- <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />
- <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>
- <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../images/icon_tooltip.png" />
- <br />
- </div>
- </div>
- <table id="tb1" style="width: 100%;">
- <tr>
- <td>
- <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
- <tr>
- <td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
- <option value="4294764013">3M</option>
- <option value="4294760160">Aavid Thermalloy</option>
- <option value="4294759019">Chemtronics</option>
- <option value="4294758686">Desco</option>
- <option value="4294758801">Laird Technologies</option>
- <option value="4294758685">Menda</option>
- <option value="4294758846">MG Chemicals</option>
- <option value="4294759208">Molex</option>
- <option value="4294758830">Panduit</option>
- <option value="4294759378">Phoenix Contact</option>
- <option value="4294758867">Plato</option>
- <option value="4281768760">SCS</option>
- <option value="4294763565">SERPAC</option>
- <option value="4292733690">TE Connectivity</option>
- <option value="4294758570">Techspray</option>
- <option value="4294758572">Wakefield</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td><td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">产品</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688640" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688640">
- <option value="4294660638">Adhesives</option>
- <option value="4292983403">Application Tools</option>
- <option value="4292990555">Brushes</option>
- <option value="4294660274">Cleaners & Degreasers</option>
- <option value="4294660629">Coating Products</option>
- <option value="4291791530">Desiccants</option>
- <option value="4294660647">Dispensers</option>
- <option value="4292983359">Dusters</option>
- <option value="4294659087">Epoxy Compounds</option>
- <option value="4292983353">Freeze Sprays</option>
- <option value="4294660563">Greases & Lubricants</option>
- <option value="4290734894">Industrial Chemicals</option>
- <option value="4291791634">Lotions</option>
- <option value="4292983357">Prototyping/Board Repair</option>
- <option value="4292874556">Sealants</option>
- <option value="4292983354">Silicones</option>
- <option value="4292983356">Solder Masks</option>
- <option value="4292983355">Sponges</option>
- <option value="4291791643">Sprays</option>
- <option value="4291791636">Surface Cleaners</option>
- <option value="4292983358">Swabs</option>
- <option value="4292983360">Thermal Management</option>
- <option value="4292983361">Wipes</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td><td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">类型</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="688755" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688755" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_688755">
- <option value="4284358519">1 Part Adhesive Sealant</option>
- <option value="4284358487">2 Part Non-Urethane Encapsulating Compound</option>
- <option value="4284358521">2 Part Potting/Encapsulating Compound</option>
- <option value="4292478596">Acrylic Adhesive</option>
- <option value="4292487327">Acrylic Conformal Coating</option>
- <option value="4292487397">Acrylic Lacquer Conformal Coating</option>
- <option value="4292562680">Adhesive</option>
- <option value="4290734890">Aerosol</option>
- <option value="4292487377">Ammonium Persulphate</option>
- <option value="4291791641">Anit-Static, Monitor, Keyboard</option>
- <option value="4292039316">Anti-Static</option>
- <option value="4284358510">Anti-Static Foam over Cotton Swab</option>
- <option value="4292487470">Anti-Static Wipe</option>
- <option value="4291791642">Anti-Static, Coating</option>
- <option value="4291791638">Anti-Static, Freezer</option>
- <option value="4291791633">Anti-Static, Hand</option>
- <option value="4291791582">Anti-Static, Spray Bottle</option>
- <option value="4292585468">Applicator</option>
- <option value="4292487489">Asahiklin</option>
- <option value="4284358515">Audio/Video Head Cleaner</option>
- <option value="4292487505">Blue Shower</option>
- <option value="4292478544">Canned Air Cleaning Kit</option>
- <option value="4292478506">Carbon Conductive Assembly Paste</option>
- <option value="4292487386">Carbon Conductive Grease</option>
- <option value="4292487409">Chrome Plated Trigger Valve</option>
- <option value="4292487444">Chrome Trigger Valve</option>
- <option value="4284358587">Cleaner</option>
- <option value="4284322309">Cleaner/Degreaser</option>
- <option value="4291791421">Cleaning</option>
- <option value="4284358501">Cleanroom Wipe</option>
- <option value="4292478622">Conductive Adhesive</option>
- <option value="4292487442">Conductive Pen</option>
- <option value="4292487475">Conformal Coating Remover</option>
- <option value="4292487399">Connector Coating</option>
- <option value="4284358475">Consumable</option>
- <option value="4292487485">Contact Cleaner</option>
- <option value="4284358504">Contact Cleaner with Silicone</option>
- <option value="4284358597">Cotton Swab</option>
- <option value="4292487421">Developer</option>
- <option value="4291842212">Double Headed</option>
- <option value="4284358520">Double Headed Cotton Swab</option>
- <option value="4292487510">Duster</option>
- <option value="4292487507">EcoLine Cleaner/Degreaser</option>
- <option value="4292487514">EcoLine Contact Cleaner</option>
- <option value="4292487502">Economy Adhesive</option>
- <option value="4292478590">Electrical Coating</option>
- <option value="4292478581">Electronic Degreaser</option>
- <option value="4292487393">Electrosolve Contact Cleaner</option>
- <option value="4292487419">Encapsulating and Potting Compound</option>
- <option value="4292487415">Epoxy and Adhesive Cleaner</option>
- <option value="4292478546">Epoxy Applicator</option>
- <option value="4292478643">Epoxy Compound</option>
- <option value="4292478583">Epoxy Mounting Kit with 3 Mounts</option>
- <option value="4292487379">Fast Set Epoxy</option>
- <option value="4292487430">Ferric Chloride</option>
- <option value="4294432717">Fiber Optic</option>
- <option value="4284358595">Fine-L-Kote</option>
- <option value="4292754869">Floor Cleaner</option>
- <option value="4292751608">Flux Remover</option>
- <option value="4292487451">Freezer</option>
- <option value="4292487331">Glass and Surface Cleaner</option>
- <option value="4292487492">Glass Cleaner</option>
- <option value="4292478820">Grease</option>
- <option value="4292487326">Ground Carbon Conductive Coating</option>
- <option value="4292487355">Heat Sealed Poly-Wipes 150 Wipes</option>
- <option value="4284358560">Heavy Duty Adhesive</option>
- <option value="4292487370">HFE Solvent</option>
- <option value="4292487526">HFE Super Cleaner Degreaser</option>
- <option value="4292487344">High Temperature Epoxy Encapsulating and Potting Compound</option>
- <option value="4292478632">Hog Hair Cleaning Brush</option>
- <option value="4292487372">Horse Hair Cleaning Brush</option>
- <option value="4292478830">Hot Melt Adhesive</option>
- <option value="4284358493">Hot Melt Termination Kit</option>
- <option value="4284358465">Industrial Plastic Adhesive</option>
- <option value="4292478599">Instant Adhesive</option>
- <option value="4292487487">Isopropyl Alcohol</option>
- <option value="4292478612">Jet Melt Adhesive</option>
- <option value="4292487515">Label and Adhesive Remover</option>
- <option value="4284358485">Liquid Dispenser and Sleeve</option>
- <option value="4292487390">Lithium Grease</option>
- <option value="4292478563">Maintenance Aerosol Cleaner</option>
- <option value="4292478523">Marine Sealant</option>
- <option value="4284358590">Mat and Table Top Cleaner</option>
- <option value="4292487398">Nickel Print</option>
- <option value="4292487449">No Clean Flux Remover</option>
- <option value="4284358476">Non-Consumable</option>
- <option value="4292487407">Nutrol Control Cleaner</option>
- <option value="4284358513">Opti-Wipe</option>
- <option value="4292487334">Optical Wipe</option>
- <option value="4292487506">Overcoat Pen - Green</option>
- <option value="4291791441">Paper Pouch</option>
- <option value="4284358594">Peelable Solder Mask</option>
- <option value="4292478515">Penetrating Oil</option>
- <option value="4291791458">Plastic Pouch</option>
- <option value="4292478534">Plastic Safe Cleaner</option>
- <option value="4284358498">Poly-Wipe, 150 Wipes</option>
- <option value="4292487335">Polyester Tape</option>
- <option value="4284358478">Presaturated Wipe</option>
- <option value="4292487423">Projection Tube Coolant</option>
- <option value="4292487403">Rectangular Foam Swab</option>
- <option value="4292487405">Red Insulating Varnish</option>
- <option value="4284358506">RTV Silicone and Accessories</option>
- <option value="4292478511">Rubber Cleaner</option>
- <option value="4292487494">Rubber Rejuvenator/Platen Cleaner</option>
- <option value="4292487381">Safety Wash Cleaner Degreaser</option>
- <option value="4292487341">Scotch-Weld</option>
- <option value="4292487337">Scotch-Weld Epoxy Adhesive</option>
- <option value="4284358489">Seal Polyester Swab</option>
- <option value="4291861776">Silicone</option>
- <option value="4284358601">Silicone Compound</option>
- <option value="4292487328">Silicone Conformal Coating</option>
- <option value="4292487471">Silicone Free Heat Sink Compound</option>
- <option value="4284358598">Silicone Grease</option>
- <option value="4284358505">Silicone Heat Transfer Compound</option>
- <option value="4284358512">Silicone Primer Guide</option>
- <option value="4292487375">Silver Coated Copper Conductive Coating</option>
- <option value="4292487391">Silver Conductive Epoxy</option>
- <option value="4292487351">Silver Conductive Grease</option>
- <option value="4292487360">Silver Cunductive Pen</option>
- <option value="4292487410">Silver Print</option>
- <option value="4290734900">Single Headed</option>
- <option value="4292487467">SMT Oven Cleaner</option>
- <option value="4292487518">SMT Stencil Cleaner</option>
- <option value="4284322302">SMT Stencil Wipe</option>
- <option value="4292559995">Soder-Wick No Clean SD</option>
- <option value="4292487353">Speaker Service Cement</option>
- <option value="4292478529">Sponge</option>
- <option value="4292478531">Sponge with Multiple Holes</option>
- <option value="4284358508">Stainless Steel Cleaning Brush</option>
- <option value="4292487464">Static Dissipative Floor Coating</option>
- <option value="4292487400">Super Cold 134A</option>
- <option value="4292487401">Super Contact Cement</option>
- <option value="4292487383">Super Contact Cleaner</option>
- <option value="4292487412">Super Corona Dope</option>
- <option value="4292487385">Super Cyanoacrylate Adhesive Gel</option>
- <option value="4292487422">Super Cyanoacrylate Adhesive Liquid</option>
- <option value="4292487368">Super Duster</option>
- <option value="4292487396">Super Duster 134A</option>
- <option value="4292487371">Super Duster Refill</option>
- <option value="4292478502">Super Shield Coating</option>
- <option value="4292487429">Super Shield Conductive Coating</option>
- <option value="4292487362">Tapered Cotton Swab</option>
- <option value="4292487463">Tech Hold</option>
- <option value="4284358582">TechClean Absorbwipe</option>
- <option value="4284358562">TechClean Purwipe</option>
- <option value="4284358584">TechClean SMT Blue Wipe</option>
- <option value="4284358580">TechClean SMT Wipe</option>
- <option value="4284358555">TechClean Twillwipe</option>
- <option value="4292487458">TechClean Wiper</option>
- <option value="4292487525">TechRoll Ultra</option>
- <option value="4284358593">TechSwab</option>
- <option value="4284358565">Thermal Adhesive</option>
- <option value="4292977975">Thermal Grease</option>
- <option value="4292478575">Thermal Interface Compound</option>
- <option value="4292487392">Thermally Conductive Epoxy</option>
- <option value="4292487434">Thinner/Cleaner</option>
- <option value="4284358511">Threadlocker</option>
- <option value="4292487484">Transistor Silicone Grease</option>
- <option value="4292478617">Urethane Adhesive</option>
- <option value="4284322287">Urethane Conformal Coating</option>
- <option value="4292487512">Vortax Duster</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td><td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">大小</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="688700" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688700" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_688700">
- <option value="4294583123">1 pint</option>
- <option value="4292817689">1/2 unit</option>
- <option value="4292817696">2 unit</option>
- <option value="4294583461">1.25 mm</option>
- <option value="4294014911">0.06 in</option>
- <option value="4294583511">2.5 mm</option>
- <option value="4294583050">3 mm</option>
- <option value="4294015849">1/8 in</option>
- <option value="4294015852">3/16 in</option>
- <option value="4294030879">4.89 mL</option>
- <option value="4294030889">5 mL</option>
- <option value="4289519437">5.1 mL</option>
- <option value="4289525318">5.3 mm</option>
- <option value="4292478547">5.4 mm</option>
- <option value="4292993956">6 mm</option>
- <option value="4294015780">1/4 in</option>
- <option value="4292736389">1/4 in x 3/8 in</option>
- <option value="4292736400">5/16 in</option>
- <option value="4294015829">3/8 in</option>
- <option value="4292736390">0.39 in x 0.13 in</option>
- <option value="4294030887">10 mL</option>
- <option value="4292736382">0.4 in x 0.14 in</option>
- <option value="4292736385">0.4 in x 0.23 in</option>
- <option value="4294015845">7/16 in</option>
- <option value="4292736391">0.48 in x 0.12 in</option>
- <option value="4294015846">1/2 in</option>
- <option value="4292478613">15.87 mm x 203.2 mm</option>
- <option value="4292478620">15.87 mm x 50.8 mm</option>
- <option value="4294015657">5/8 in x 2 in</option>
- <option value="4292478831">5/8 in x 8 in</option>
- <option value="4292736384">0.75 in x 0.21 in</option>
- <option value="4289519465">3/4 in x 0.02 x 100 ft</option>
- <option value="4289519480">3/4 in x 0.04 x 100 ft</option>
- <option value="4292736380">0.78 in x 0.16 in</option>
- <option value="4292738819">1 in x 3 in</option>
- <option value="4292736379">1.08 in x 0.14 in</option>
- <option value="4292736383">30.5 mm x 33 cm</option>
- <option value="4292478509">37 ml</option>
- <option value="4290698832">38 mm x 54 mm</option>
- <option value="4291729037">1.5 in x 60 in</option>
- <option value="4292738823">50 mL</option>
- <option value="4285580443">50 mL, 12/Case</option>
- <option value="4292708879">54 mm x 54 mm</option>
- <option value="4292708877">54 mm x 64 mm</option>
- <option value="4292687830">55 mL</option>
- <option value="4292478532">55 mm x 70 mm</option>
- <option value="4292708882">57 mm x 70 mm</option>
- <option value="4292736355">2.25 in x 3.5 in</option>
- <option value="4292708889">60 mm x 79 mm</option>
- <option value="4292708872">60 mm x 89 mm</option>
- <option value="4292478530">64 mm x 83 mm</option>
- <option value="4289519499">2.7 in</option>
- <option value="4292736366">2.7 in x 2.7 in</option>
- <option value="4292736373">2.7 in x 4.5 in</option>
- <option value="4292708887">76 mm x 114 mm</option>
- <option value="4292850346">3 in x 4 in - 50</option>
- <option value="4292708875">76.2 mm x 114.3 mm</option>
- <option value="4289519506">3.15 in</option>
- <option value="4292736358">8 cm x 10.5 cm</option>
- <option value="4289519497">3.2 in</option>
- <option value="4294030872">85 mL</option>
- <option value="4292736364">3.5 in x 4.5 in</option>
- <option value="4292478604">90 ml</option>
- <option value="4292771507">95.25 mm x 95.25 mm</option>
- <option value="4290698856">100 mm x 1.52 m</option>
- <option value="4294583124">101.6 mm x 101.6 mm</option>
- <option value="4292478588">101.6 mm x 209.55 mm</option>
- <option value="4294015742">4 in x 4 in - 100</option>
- <option value="4289525330">4 in x 8 in</option>
- <option value="4292736377">4.4 in x 8.4 in</option>
- <option value="4292708866">114 mm x 216 mm</option>
- <option value="4292708895">114 mm x 269 mm</option>
- <option value="4292708857">114 mm x 279 mm</option>
- <option value="4292736368">12 cm x 12 cm</option>
- <option value="4292736354">12 cm x 20 cm</option>
- <option value="4292708893">127 mm x 114 mm</option>
- <option value="4292708868">127 mm x 159 mm</option>
- <option value="4290698794">127 mm x 203 mm</option>
- <option value="4294015862">5 in</option>
- <option value="4292736376">5 in x 6 in</option>
- <option value="4292898410">6 in</option>
- <option value="4294015775">6 in x 6 in - 100</option>
- <option value="4292736394">6 in x 7 in</option>
- <option value="4292856844">6 in x 8 in</option>
- <option value="4289519511">7.75 in</option>
- <option value="4294582911">200 ml</option>
- <option value="4289525357">8 in x 0.62 in</option>
- <option value="4292736362">8.5 in x 17 in</option>
- <option value="4289519440">225 mL</option>
- <option value="4294583110">228.6 mm x 228.6 mm</option>
- <option value="4292736403">9 in X 9 in</option>
- <option value="4294015815">9 in x 9 in - 100</option>
- <option value="4294015813">9 in x 9 in - 150</option>
- <option value="4294015783">9 in x 9 in - 300</option>
- <option value="4294015840">9 in x 9 in - 50</option>
- <option value="4290698855">236 mL</option>
- <option value="4292736372">10.5 in x 12.25 in</option>
- <option value="4292478602">292 ml</option>
- <option value="4292736370">11.8 in x 11.8 in</option>
- <option value="4294030869">300 mL</option>
- <option value="4292857723">12 in</option>
- <option value="4292736369">12 in x 12 in</option>
- <option value="4294030871">450 mL</option>
- <option value="4289525352">659 mL</option>
- <option value="4294030873">900 mL</option>
- <option value="4292736399">1 3/8 in</option>
- <option value="4292736386">1 3/8 in x 7/16 in</option>
- <option value="4294015688">1 g</option>
- <option value="4294583047">1 L</option>
- <option value="4294583497">1 qt</option>
- <option value="4292736381">101.6 cm x 101.6 cm</option>
- <option value="4289525349">0.07 oz</option>
- <option value="4292736387">228.6 cm x 228.6 cm</option>
- <option value="4294015798">0.1 oz</option>
- <option value="4289525362">3 cc</option>
- <option value="4294015768">3 g</option>
- <option value="4294583115">3 L</option>
- <option value="4292788183">4 g</option>
- <option value="4294583113">4 L</option>
- <option value="4294015800">0.2 oz</option>
- <option value="4290698882">0.23 oz</option>
- <option value="4294015441">0.25 oz</option>
- <option value="4292884438">8 g</option>
- <option value="4294015758">0.3 oz</option>
- <option value="4294015755">0.34 oz</option>
- <option value="4294015709">0.35 oz</option>
- <option value="4292478627">10 g</option>
- <option value="4290698868">0.39 oz</option>
- <option value="4289519449">0.48 oz</option>
- <option value="4289519445">0.66 oz</option>
- <option value="4294583114">20 L</option>
- <option value="4294015811">0.75 oz</option>
- <option value="4294015793">1 oz</option>
- <option value="4294015656">1.07 oz</option>
- <option value="4292478559">1.25 oz</option>
- <option value="4294583098">40 L</option>
- <option value="4292478518">1.45 oz</option>
- <option value="4292478597">1.6 oz</option>
- <option value="4294015744">47.5 g</option>
- <option value="4294015628">1.7 oz</option>
- <option value="4292755093">50 ct</option>
- <option value="4294583074">50 L</option>
- <option value="4294583451">50 Wipes</option>
- <option value="4294015853">2 oz</option>
- <option value="4294583099">60 L</option>
- <option value="4294015810">2.8 oz</option>
- <option value="4294015818">3 oz</option>
- <option value="4280257024">0.09 kg</option>
- <option value="4294015842">3.5 oz</option>
- <option value="4294583464">100</option>
- <option value="4294583500">100 Wipes</option>
- <option value="4294015825">4 oz</option>
- <option value="4292478512">4.2 oz</option>
- <option value="4294015838">4.5 oz</option>
- <option value="4294015820">5 oz</option>
- <option value="4294015806">6 oz</option>
- <option value="4292861106">6.8 oz</option>
- <option value="4292865708">200 Wipes</option>
- <option value="4294015851">8 oz</option>
- <option value="4294015819">8.8 oz</option>
- <option value="4294015857">10 oz</option>
- <option value="4294015794">10.1 oz</option>
- <option value="4294015750">10.5 oz</option>
- <option value="4294015801">11 oz</option>
- <option value="4292687829">340 g</option>
- <option value="4294015856">12 oz</option>
- <option value="4294015786">13 oz</option>
- <option value="4294015817">14 oz</option>
- <option value="4294015832">15 oz</option>
- <option value="4294015777">1 lb</option>
- <option value="4294015843">16 oz</option>
- <option value="4294015812">17 oz</option>
- <option value="4294015834">18 oz</option>
- <option value="4294015808">18.54 oz</option>
- <option value="4292478615">20 oz</option>
- <option value="4292478564">24 oz</option>
- <option value="4292478524">30 oz</option>
- <option value="4294015809">33 oz</option>
- <option value="4294015762">35 oz</option>
- <option value="4292736393">2.2 lbs</option>
- <option value="4294015756">2.5 lbs</option>
- <option value="4292478637">5 lb</option>
- <option value="4294015751">9.5 lbs</option>
- <option value="4294015850">50 lbs</option>
- <option value="4294015789">55 lbs</option>
- <option value="4294015839">585 lbs</option>
- <option value="4294015835">600 lbs</option>
- <option value="4294015841">660 lbs</option>
- <option value="4294583524">1 gal</option>
- <option value="4294583506">5 gal</option>
- <option value="4294583507">54 gal</option>
- <option value="4289510248">-</option>
- <option value="4294660646">Bottle</option>
- <option value="4294661489">Bulk Pack of 6</option>
- <option value="4294661444">Kit</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td><td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table>
- <tr>
- <td>
- <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">外壳</span>
- <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
-
- <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
- of parametric ids sent on the query string after the seo url is generated and redirected to.
- Client side value is collected, parsed, and applied to the seo query string and represents a list of
- sorted parametric attributes from an endeca attribute group --->
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
- <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="688359" />
- </div>
- </td>
- </tr>
- <tr>
- <td>
- <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$688359" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_688359">
- <option value="4292856846">100 Pack</option>
- <option value="4292856836">300 Pack</option>
- <option value="4284358490">500 Pack</option>
- <option value="4292736363">1 Unit per Case</option>
- <option value="4292736374">10 Units per Case</option>
- <option value="4284358558">5 ft Spool</option>
- <option value="4284358448">10 ft Spool</option>
- <option value="4290698862">50 ft Spool</option>
- <option value="4290698871">100 ft Spool</option>
- <option value="4292478829">1.25 oz</option>
- <option value="4292478822">16 oz</option>
- <option value="4292478833">11 lb</option>
- <option value="4289510249">-</option>
- <option value="4294661545">Aerosol</option>
- <option value="4294661541">Bag</option>
- <option value="4294661396">Bar</option>
- <option value="4294661531">Bottle</option>
- <option value="4292865709">Box</option>
- <option value="4292713917">Box, 25 to a Box</option>
- <option value="4294661452">Can</option>
- <option value="4294661432">Carton</option>
- <option value="4289525347">Cartridge</option>
- <option value="4294660457">Case</option>
- <option value="4294661509">Flat</option>
- <option value="4292478609">Foil</option>
- <option value="4294661539">Glass</option>
- <option value="4292478514">Glass Bottle</option>
- <option value="4293990565">Glass Filled Nylon Shaft</option>
- <option value="4294660556">Jar</option>
- <option value="4294661512">Kit</option>
- <option value="4290698836">Metal</option>
- <option value="4294661537">Metal Can</option>
- <option value="4294661442">Metal Pail</option>
- <option value="4292478642">Pack</option>
- <option value="4292771509">Pad</option>
- <option value="4294661504">Pen</option>
- <option value="4294661521">Plastic</option>
- <option value="4294661529">Plastic Bottle</option>
- <option value="4294661449">Plastic Spray Bottle</option>
- <option value="4292478639">Plastic Tube</option>
- <option value="4294661468">Poly Bag</option>
- <option value="4294661527">Pop-Up Container</option>
- <option value="4291214189">Pouch</option>
- <option value="4292771506">Roll</option>
- <option value="4290698869">Spool</option>
- <option value="4294661437">Squeeze Bottle</option>
- <option value="4292736392">Swab</option>
- <option value="4292907296">Syringe</option>
- <option value="4294661461">Tub</option>
- <option value="4294661872">Tube</option>
- <option value="4292478625">Wipe</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
- </td>
- </tr>
- </table>
- </td>
- <td valign="bottom" style="width: 15px;">
-
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <table class="ApplyFilter">
- <tr>
- <td class="ApplyFilterColumn1">
- <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
- </td>
- <td class="ApplyFilterColumn2">
- <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
- </td>
- <td class="ApplyFilterColumn2_5">
- <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
- </td>
- <td class="ApplyFilterColumn3">
- <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </div>
- </td>
- </tr>
- </table>
- <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
- height: 70px; display: none; background: white; border: 1px solid #000;'>
- <br />
- <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
- <br />
- <div style="text-align: right; margin-right: 15; padding-right: 15;">
- <!--Close Window-->
- <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
- <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
- </a> </div>
- </div>
- <div id ="VisualAttributePopup" class="hidden" >
- <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
- <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
- <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
- </div>
- <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id="loadingimgspinner" src="/Images/spinner2.gif" /></div>
- <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
- <table id="tblAttributes" >
- <tbody data-bind="foreach: attributes, visible: loadFinished()">
- <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
- <td class="visualAttributeImage">
- <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
- <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
- </td>
- <td>
- <table class="visualAttValueDesc">
- <tr>
- <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
- </tr>
- <tr>
- <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
- </tr>
- <tr data-bind="if: ImagePath1 ">
- <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs" /></div></td>
- <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
- <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
- </tbody>
- </table>
- <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id="Img1" src="/Images/spinner2.gif" />
- <div data-bind="if: hasMoreOptions" align="center">
- <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
- </div>
- </div>
- <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
- <div class="visualAttributesBtnDiv">
- <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnOK" value="确定" onclick="javascript:ClosePopup();" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnOK" class="button" data-bind="visible: attributes().length < 1" />
- <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
- <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnApply" value="确定" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnApply" class="button" data-bind="click: applySelections, visible: attributes().length > 0" />
- </div>
- </div>
- <style type="text/css">.ui-dialog{position:absolute;padding:0px !important;width:300px;overflow:hidden;}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.6em !important;background:none;overflow:auto;zoom:1;max-height:450px;}.ui-dialog .ui-dialog-titlebar{padding:.4em .5em !important;position:relative;background:none repeat scroll 0 0 #E0E4E9;font-size:15px;}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:0;}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:0;}</style>
- <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
- <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
- </div>
- <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
- <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
- <script src='../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
- <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
- <script type="text/javascript">
- $().ready(function () {
- ko.applyBindings(new DisplayAttributesModel());
- ko.bindingHandlers.hoverToggle = {
- update: function (element, valueAccessor) {
- var css = valueAccessor();
- var isSelected = $(element).hasClass("selectedAttribute");
- if (!isSelected) {
- ko.utils.registerEventHandler(element, "mouseenter", function () {
- ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
- });
- ko.utils.registerEventHandler(element, "mouseleave", function () {
- ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
- });
- }
- }
- };
- });
- </script>
- </div>
- <div id="refine-mfg-logo2">
- </div>
- </div>
- <br />
- <table border="0" width="100%">
- <tr>
- <td>
- </td>
- </tr>
- <tr>
- <td>
- <!--- Search Features --->
- </td>
- </tr>
- <tr>
- <td>
- <div id="refine-page">
- </div>
- </td>
- </tr>
- <tr>
- <td class="refine-show-products">
- <span class="redtextb">
- </span> <span class="redtextb">
- </span> <span class="redtextb">
- </span> <span class="redtextb">
- </span>
- <span class="redtextb">
- </span>
- </td>
- </tr>
- <tr>
- <td>
- </td>
- </tr>
- <tr>
- <td>
- <!--- Special Order Parts New --->
- <!-- SOP Section 1 -->
- </td>
- </tr>
- </table>
- <div id="searchResultsTbl">
- <table id="ctl00_ContentMain_tbl2" class="no-pad">
- <tr>
- <td class="tdSearchResultsPagingTop">
- <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
- <tr>
- <td>
- <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" />
- </td>
- <td>
- <input type="submit" name="ctl00$ContentMain$btn2" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) && 0 == 0) { alert('请选择您希望对比的产品。'); return false; };" id="ctl00_ContentMain_btn2" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
- </td>
- <td>
- <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
- </td>
- <td style="padding-left: 40px;">
- <div class="floatrightpager">
- <span class="bold">
- 页面:
- </span>
- <span id="ctl00_ContentMain_PagerTop"><span id="ctl00_ContentMain_PagerTop_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerTop_1" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_36" class="first-last" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=900">37</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=25">下一页</a></span>
- </div>
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td>
- <div>
- <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
- <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
- <th class="td-select" scope="col" style="width:35px;">
- 选择
- </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
- </th><th scope="col">制造商 零件编号
- </th><th scope="col">制造商
- </th><th scope="col">描述
- </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../Images/Search/pdf.gif" alt="文件" />
- </th><th scope="col">供货情况
- </th><th scope="col">单价(含17%增值税)
- <br />
- </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
- </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
- </th><th class="SearchResultParametricColumnHeading" scope="col">产品
- </th><th class="SearchResultParametricColumnHeading" scope="col">类型
- </th><th class="SearchResultParametricColumnHeading" scope="col">大小
- </th><th class="SearchResultParametricColumnHeading" scope="col">外壳
- </th>
- </tr><tr class="SearchResultsSortCell">
- <td class="td-select" align="center"></td><td></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$MouserPartNumber>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl15','')"><img title="按 Mouser 零件编号 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 Mouser 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$MouserPartNumber>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl17','')"><img title="按 Mouser 零件编号 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 Mouser 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$ManufacturerPartNumber>Ascending'); return false;" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl02_ctl19" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl19','')"><img title="按 制造商 零件编号 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$ManufacturerPartNumber>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl21','')"><img title="按 制造商 零件编号 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Brand>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl23','')"><img title="按 制造商 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Brand>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl25','')"><img title="按 制造商 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Default>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl27','')"><img title="按 供货情况 Ascending 排序" src="../../../../Images/Search/btn_ActiveSort_Up.jpg" alt="按 供货情况 Ascending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Pricing>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl29','')"><img title="按 单价(含17%增值税) Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 单价(含17%增值税) Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Pricing>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl31','')"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Product>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl33','')"><img title="按 产品 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 产品 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Product>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl35','')"><img title="按 产品 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 产品 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Type>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl37','')"><img title="按 类型 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 类型 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Type>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl39','')"><img title="按 类型 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 类型 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Size>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl41','')"><img title="按 大小 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 大小 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Size>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl43','')"><img title="按 大小 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 大小 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Container>Ascending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl45','')"><img title="按 外壳 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 外壳 Ascending 排序" /></a><a onclick="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid','Sort$Container>Descending'); return false;" href="javascript:__doPostBack('ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl47','')"><img title="按 外壳 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 外壳 Descending 排序" /></a></td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="517-DP270BK" data-index="3">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/DP-270-BLACK/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1Htbrd4n81B6dY%3d'><img title='3M Electronic Specialty DP-270 BLACK' alt='3M Electronic Specialty DP-270 BLACK' id=33001906 src='/images/3m/sm/DP-270.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-270.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-270-BLACK/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1Htbrd4n81B6dY%3d">517-DP270BK</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-270-BLACK/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1Htbrd4n81B6dY%3d">DP-270 BLACK</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 1.7oz ADHESIVE 1 PIECE BLACK
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-DP270BK | DP-270 BLACK"]);" href="http://www.mouser.com/ds/2/1/270-476326.pdf" target="_blank">数据表<br /><br /></a>
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow('/Cart/AdditionalProductInfo.aspx?part=5-0604-8');return false;" rel="nofollow" href="../../../../Cart/AdditionalProductInfo.aspx?part=5-0604-8" target="_blank">产品信息</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_lnkRestricted" title="此产品不可空运发货,因此当前我们无法在您所在的国家或地区销售此产品。"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/LTHORMPopUp.aspx?country=China","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>限制装运</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc8Si%2fpt7y7kTA%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc8Si%2fpt7y7kTA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Epoxy Compound
- </td><td>1.7 oz
- </td><td>Plastic Tube
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="532-251" data-index="4">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Aavid-Thermalloy/251G/?qs=sGAEpiMZZMvJqaFk9BIivzAch6xnqdVzkcxptVzdjX0%3d">532-251</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Aavid-Thermalloy/251G/?qs=sGAEpiMZZMvJqaFk9BIivzAch6xnqdVzkcxptVzdjX0%3d">251G</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../Aavid-Thermalloy">Aavid Thermalloy</a>
- </td><td>化学物质 1lb THERMALCOTE I CAN OPAQUE WHITE
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Aavid Thermalloy","532-251 | 251G"]);" href="http://www.aavid.com/product-group/interface/greases/thermalcote" target="_blank">数据表<br /><br /></a>
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Catalog PDF Click',"Aavid Thermalloy","532-251 | 251G"]);" href="/catalog/English/103/APAC/1844.pdf" target="_blank">页面 1,844</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=TwlNQgvrO0QeGds6i%252b0aLg%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=TwlNQgvrO0QeGds6i%252b0aLg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Thermal Management
- </td><td>
- </td><td>1 lb
- </td><td>Can
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="532-249" data-index="5">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Aavid-Thermalloy/249G/?qs=sGAEpiMZZMvJqaFk9BIiv4QH%252bcOw0u9jlbkE1zTJkxs%3d">532-249</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Aavid-Thermalloy/249G/?qs=sGAEpiMZZMvJqaFk9BIiv4QH%252bcOw0u9jlbkE1zTJkxs%3d">249G</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../Aavid-Thermalloy">Aavid Thermalloy</a>
- </td><td>化学物质 1oz THERMALCOTE I TUBE OPAQUE WHITE
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Aavid Thermalloy","532-249 | 249G"]);" href="http://www.aavid.com/product-group/interface/greases/thermalcote" target="_blank">数据表<br /><br /></a>
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Catalog PDF Click',"Aavid Thermalloy","532-249 | 249G"]);" href="/catalog/English/103/APAC/1844.pdf" target="_blank">页面 1,844</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=6KyxvqLvseT7CBw8vuUqzQ%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=6KyxvqLvseT7CBw8vuUqzQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Thermal Management
- </td><td>Thermal Grease
- </td><td>1 oz
- </td><td>Tube
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="532-250" data-index="6">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Aavid-Thermalloy/250G/?qs=sGAEpiMZZMvJqaFk9BIivzAch6xnqdVzG%2flCrvPJBv0%3d">532-250</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Aavid-Thermalloy/250G/?qs=sGAEpiMZZMvJqaFk9BIivzAch6xnqdVzG%2flCrvPJBv0%3d">250G</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../Aavid-Thermalloy">Aavid Thermalloy</a>
- </td><td>化学物质 2oz THERMALCOTE I TUBE OPAQUE WHITE
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Aavid Thermalloy","532-250 | 250G"]);" href="http://www.aavid.com/product-group/interface/greases/thermalcote" target="_blank">数据表<br /><br /></a>
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Catalog PDF Click',"Aavid Thermalloy","532-250 | 250G"]);" href="/catalog/English/103/APAC/1844.pdf" target="_blank">页面 1,844</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_lnkRestricted" title="此产品不可空运发货,因此当前我们无法在您所在的国家或地区销售此产品。"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/LTHORMPopUp.aspx?country=China","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>限制装运</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=TwlNQgvrO0Rcn2rnlAqkRA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=TwlNQgvrO0Rcn2rnlAqkRA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Thermal Management
- </td><td>
- </td><td>2 oz
- </td><td>Tube
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="517-DP-270CL-1.7" data-index="7">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/DP-270/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1HtSDw0VnWyKCQ%3d'><img title='3M Electronic Specialty DP-270' alt='3M Electronic Specialty DP-270' id=33001919 src='/images/3m/sm/DP-270.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-270.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-270/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1HtSDw0VnWyKCQ%3d">517-DP-270CL-1.7</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-270/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1HtSDw0VnWyKCQ%3d">DP-270</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 1.7oz ADHSVE CLEAR EPOXY
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-DP-270CL-1.7 | DP-270"]);" href="http://www.mouser.com/ds/2/1/270-476326.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_lnkRestricted" title="此产品不可空运发货,因此当前我们无法在您所在的国家或地区销售此产品。"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/LTHORMPopUp.aspx?country=China","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>限制装运</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bnSTLq%2fCPbeg%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bnSTLq%2fCPbeg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Scotch-Weld
- </td><td>1.7 oz
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="567-120-5" data-index="8">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/Wakefield/120-5/?qs=sGAEpiMZZMvJqaFk9BIiv9zsHXowjRHockglRfQqpQs%3d'><img title='Wakefield 120-5' alt='Wakefield 120-5' id=2028106 src='/images/wakefield/sm/120_series.jpg' /></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Wakefield/120-5/?qs=sGAEpiMZZMvJqaFk9BIiv9zsHXowjRHockglRfQqpQs%3d">567-120-5</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Wakefield/120-5/?qs=sGAEpiMZZMvJqaFk9BIiv9zsHXowjRHockglRfQqpQs%3d">120-5</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../wakefield">Wakefield</a>
- </td><td>化学物质 SILICON GREASE 5oz.
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Wakefield","567-120-5 | 120-5"]);" href="http://www.wakefield.com/Catalog/tabid/92/CategoryID/103/Default.aspx?showSeries=104&order=0" target="_blank">数据表<br /><br /></a>
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Catalog PDF Click',"Wakefield","567-120-5 | 120-5"]);" href="/catalog/English/103/APAC/1851.pdf" target="_blank">页面 1,851</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">252<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥154.7091</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥146.0862</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥137.4633</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,50);">50:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥128.9106</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Wakefield/120-5/?qs=sGAEpiMZZMvJqaFk9BIiv9zsHXowjRHockglRfQqpQs%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 6);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy" title="购买 120-5" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=jrUQjCgd%2fWjkyWZ%2fW05JXw%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=jrUQjCgd%2fWjkyWZ%2fW05JXw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Silicone Compound
- </td><td>5 oz
- </td><td>Plastic Tube
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="567-120-8" data-index="9">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/Wakefield/120-8/?qs=sGAEpiMZZMvJqaFk9BIiv9zsHXowjRHoIbb%2fn2bnf0k%3d'><img title='Wakefield 120-8' alt='Wakefield 120-8' id=2028110 src='/images/wakefield/sm/120_series.jpg' /></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Wakefield/120-8/?qs=sGAEpiMZZMvJqaFk9BIiv9zsHXowjRHoIbb%2fn2bnf0k%3d">567-120-8</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Wakefield/120-8/?qs=sGAEpiMZZMvJqaFk9BIiv9zsHXowjRHoIbb%2fn2bnf0k%3d">120-8</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../wakefield">Wakefield</a>
- </td><td>化学物质 SILICON GREASE 8oz.
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Wakefield","567-120-8 | 120-8"]);" href="http://www.mouser.com/ds/2/433/thermal-management-accessories-wakefield-225895.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=YiG%252bZeRx5gi6axq7de9V5w%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=YiG%252bZeRx5gi6axq7de9V5w%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Silicone Compound
- </td><td>8 oz
- </td><td>Jar
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="517-EC2216" data-index="10">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/EC2216/?qs=sGAEpiMZZMvJqaFk9BIiv1eguBOsNV97ponzZ8rBK1Y%3d'><img title='3M Electronic Specialty EC2216' alt='3M Electronic Specialty EC2216' id=474300863 src='/images/3m/sm/EC2216.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/EC2216.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/EC2216/?qs=sGAEpiMZZMvJqaFk9BIiv1eguBOsNV97ponzZ8rBK1Y%3d">517-EC2216</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/EC2216/?qs=sGAEpiMZZMvJqaFk9BIiv1eguBOsNV97ponzZ8rBK1Y%3d">EC2216</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 SCOTCH-WELD EPOXY 43 MIL GRAY
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-EC2216 | EC2216"]);" href="http://www.mouser.com/ds/2/1/78690095837-52391.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/3M-Electronic-Specialty/EC2216/?qs=sGAEpiMZZMvJqaFk9BIiv1eguBOsNV97ponzZ8rBK1Y%3d">更多信息可用 </a>
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=X7fntBUoZlGk3mQbPBT0HA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=X7fntBUoZlGk3mQbPBT0HA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Epoxy Compounds
- </td><td>Epoxy Compound
- </td><td>1.45 oz
- </td><td>Squeeze Bottle
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="532-100300F00G" data-index="11">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Aavid-Thermalloy/100300F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrwOTUDd0HVUc%3d">532-100300F00G</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Aavid-Thermalloy/100300F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrwOTUDd0HVUc%3d">100300F00000G</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../Aavid-Thermalloy">Aavid Thermalloy</a>
- </td><td>化学物质 ULTRASTICK THERMAL COMPOUND 47.5g
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Aavid Thermalloy","532-100300F00G | 100300F00000G"]);" href="http://www.aavid.com/product-group/interface/greases" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=S%2faC6yOeF6xrcV7SHWRJTA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=S%2faC6yOeF6xrcV7SHWRJTA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Thermal Interface Compound
- </td><td>47.5 g
- </td><td>
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="517-DP100FR" data-index="12">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/DP100FR/?qs=sGAEpiMZZMvJqaFk9BIiv%252bkvf8hmSCGhIdnIH6p%2f3Zw%3d'><img title='3M Electronic Specialty DP100FR' alt='3M Electronic Specialty DP100FR' id=337140772 src='/images/3m/sm/DP100FR.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP100FR.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/DP100FR/?qs=sGAEpiMZZMvJqaFk9BIiv%252bkvf8hmSCGhIdnIH6p%2f3Zw%3d">517-DP100FR</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/DP100FR/?qs=sGAEpiMZZMvJqaFk9BIiv%252bkvf8hmSCGhIdnIH6p%2f3Zw%3d">DP100FR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 EPXY ADHSIV 1.7FL OZ CREAM COLOR
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-DP100FR | DP100FR"]);" href="http://www.mouser.com/ds/2/1/3M_multimedia-368811.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">90<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥285.3162</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,5);">5:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥258.7572</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥232.3386</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥202.9248</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(10,50);">50:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥179.3493</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 10);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_btnBuy" title="购买 DP100FR" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=AfZGqDKFqZF5uDTnphf5qw%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=AfZGqDKFqZF5uDTnphf5qw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Epoxy Applicator
- </td><td>50 mL, 12/Case
- </td><td>Cartridge
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="517-2216-GRY" data-index="13">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/2216-B-A-GRAY/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1HtRk63U%252bN9HRs%3d'><img title='3M Electronic Specialty 2216 B/A GRAY' alt='3M Electronic Specialty 2216 B/A GRAY' id=33001923 src='/images/3m/sm/2216_B-A.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/2216_B-A.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/2216-B-A-GRAY/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1HtRk63U%252bN9HRs%3d">517-2216-GRY</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/2216-B-A-GRAY/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1HtRk63U%252bN9HRs%3d">2216 B/A GRAY</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 2OZ. EPOXY KIT GRAY
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-2216-GRY | 2216 B/A GRAY"]);" href="http://multimedia.mmm.com/mws/mediawebserver.dyn?6666660Zjcf6lVs6EVs666GGfCOrrrrQ-" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_lnkRestricted" title="此产品不可空运发货,因此当前我们无法在您所在的国家或地区销售此产品。"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/LTHORMPopUp.aspx?country=China","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>限制装运</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bhZ1v1cYdsZg%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bhZ1v1cYdsZg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Epoxy Compound
- </td><td>2 oz
- </td><td>Plastic Tube
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="650-S1125-KIT-8" data-index="14">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/TE-Connectivity-Raychem/S1125-KIT-8/?qs=sGAEpiMZZMvJqaFk9BIiv4cM6g4f8GS6ORxP7Ml2v7E%3d">650-S1125-KIT-8</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/TE-Connectivity-Raychem/S1125-KIT-8/?qs=sGAEpiMZZMvJqaFk9BIiv4cM6g4f8GS6ORxP7Ml2v7E%3d">S1125-KIT-8</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../raychem">TE Connectivity / Raychem</a>
- </td><td>化学物质 ADHESIVE 50-ML DUAL SYRINGE
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"TE Connectivity / Raychem","650-S1125-KIT-8 | S1125-KIT-8"]);" href="http://www.te.com/catalog/pn/en/657863-000?RQPN=S1125-KIT-8" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">29<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥850.0284</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥785.9592</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,50);">50:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥718.1109</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥671.7555</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,250);">250:</a>
- </td>
- <td class="PriceBreakPrice">
- <a onclick="javascript:window.location="../../../../Quote/quote.aspx?mouserpartnumber=650-S1125-KIT-8&quantity=250";_gaq.push(['_trackEvent','Quote Request',"TE Connectivity / Raychem","650-S1125-KIT-8",1]);return false;" href="../../../../Quote/quote.aspx">报价</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 12);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy" title="购买 S1125-KIT-8" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=OUsCwFW6gFf31hw%2f%252b9Xhtw%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=OUsCwFW6gFf31hw%2f%252b9Xhtw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Epoxy Compound
- </td><td>50 mL
- </td><td>Syringe
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="650-S1125-KIT-1" data-index="15">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/TE-Connectivity-Raychem/S1125-KIT-1/?qs=sGAEpiMZZMvJqaFk9BIiv9Kh1V3oBTlz9ICs8tVM7II%3d'><img title='TE Connectivity / Raychem S1125-KIT-1' alt='TE Connectivity / Raychem S1125-KIT-1' id=2931429 src='/images/tycoelectronics/sm/S1125-KIT-1.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/tycoelectronics/images/S1125-KIT-1.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/TE-Connectivity-Raychem/S1125-KIT-1/?qs=sGAEpiMZZMvJqaFk9BIiv9Kh1V3oBTlz9ICs8tVM7II%3d">650-S1125-KIT-1</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/TE-Connectivity-Raychem/S1125-KIT-1/?qs=sGAEpiMZZMvJqaFk9BIiv9Kh1V3oBTlz9ICs8tVM7II%3d">S1125-KIT-1</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../raychem">TE Connectivity / Raychem</a>
- </td><td>化学物质 ADHESIVE 5 10-GRAM P
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"TE Connectivity / Raychem","650-S1125-KIT-1 | S1125-KIT-1"]);" href="http://www.te.com/catalog/pn/en/S1125-KIT-1?RQPN=S1125-KIT-1" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">28<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,011.3597</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥889.6095</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,50);">50:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥826.3827</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥767.9412</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(13,500);">500:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/TE-Connectivity-Raychem/S1125-KIT-1/?qs=sGAEpiMZZMvJqaFk9BIiv9Kh1V3oBTlz9ICs8tVM7II%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 13);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy" title="购买 S1125-KIT-1" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=t5Mzyr7cGNdoP57f0ffZ%252bQ%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=t5Mzyr7cGNdoP57f0ffZ%252bQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Epoxy Compounds
- </td><td>Epoxy Compound
- </td><td>10 g
- </td><td>Kit
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="517-DP-100-1.7" data-index="16">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/DP-100-Plus/?qs=sGAEpiMZZMvJqaFk9BIiv0F9hSh%2fuD96ozueiUVyDJE%3d'><img title='3M Electronic Specialty DP-100 Plus' alt='3M Electronic Specialty DP-100 Plus' id=314503528 src='/images/3m/sm/DP-100.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-100.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-100-Plus/?qs=sGAEpiMZZMvJqaFk9BIiv0F9hSh%2fuD96ozueiUVyDJE%3d">517-DP-100-1.7</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-100-Plus/?qs=sGAEpiMZZMvJqaFk9BIiv0F9hSh%2fuD96ozueiUVyDJE%3d">DP-100 Plus</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 EPOXY DP100 PLUS CLEAR DUO-PK 1.7OZ
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-DP-100-1.7 | DP-100 Plus"]);" href="http://www.mouser.com/ds/2/1/3m_517-DP100CLR-356515.pdf" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">166<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥153.1764</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,6);">6:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥145.4661</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,12);">12:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥141.3945</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,24);">24:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥141.3126</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(14,36);">36:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥137.8494</span>
- </td>
- </tr>
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 14);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy" title="购买 DP-100 Plus" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=wpCB6RMgn%2fimTp81urE1yA%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=wpCB6RMgn%2fimTp81urE1yA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Epoxy Compound
- </td><td>1.7 oz
- </td><td>Plastic Tube
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="517-DP110-TRANS" data-index="17">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/DP-110-TRANS/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1HtC9%2f8oc7hx%252bw%3d'><img title='3M Electronic Specialty DP-110 TRANS' alt='3M Electronic Specialty DP-110 TRANS' id=33001921 src='/images/3m/sm/DP-110.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-110.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-110-TRANS/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1HtC9%2f8oc7hx%252bw%3d">517-DP110-TRANS</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-110-TRANS/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1HtC9%2f8oc7hx%252bw%3d">DP-110 TRANS</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 1.7oz EPOXY TRANS
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-DP110-TRANS | DP-110 TRANS"]);" href="http://www.mouser.com/ds/2/1/Final%20Structural%20Adhesive%20Guide%20LoRes-337769.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_lnkRestricted" title="此产品不可空运发货,因此当前我们无法在您所在的国家或地区销售此产品。"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/LTHORMPopUp.aspx?country=China","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>限制装运</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bC%2fQghuOszRw%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bC%2fQghuOszRw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Epoxy Compound
- </td><td>1.7 oz
- </td><td>Plastic Tube
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="517-DP420-1.7" data-index="18">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/DP-420-OFF-WHITE/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1Htjo%252bXDEMV4j4%3d'><img title='3M Electronic Specialty DP-420 OFF-WHITE' alt='3M Electronic Specialty DP-420 OFF-WHITE' id=33001944 src='/images/3m/sm/DP420.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP420.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-420-OFF-WHITE/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1Htjo%252bXDEMV4j4%3d">517-DP420-1.7</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-420-OFF-WHITE/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1Htjo%252bXDEMV4j4%3d">DP-420 OFF-WHITE</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 1.25oz OFF-WHITE 2PRT
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-DP420-1.7 | DP-420 OFF-WHITE"]);" href="http://www.mouser.com/ds/2/1/420-476205.pdf" target="_blank">数据表<br /><br /></a>
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow('/Cart/AdditionalProductInfo.aspx?part=5-0208-19');return false;" rel="nofollow" href="../../../../Cart/AdditionalProductInfo.aspx?part=5-0208-19" target="_blank">产品信息</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_lnkRestricted" title="此产品不可空运发货,因此当前我们无法在您所在的国家或地区销售此产品。"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/LTHORMPopUp.aspx?country=China","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>限制装运</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%2fU7amHdXmTOg%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%2fU7amHdXmTOg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Epoxy Compound
- </td><td>1.25 oz
- </td><td>Plastic Tube
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="517-DP420-BLK-1.25" data-index="19">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/DP420-BLACK-125OZ/?qs=sGAEpiMZZMvJqaFk9BIivwn1kzvlJGp1RpU4BkBC%252bq4%3d'><img title='3M Electronic Specialty DP420-BLACK-1.25OZ' alt='3M Electronic Specialty DP420-BLACK-1.25OZ' id=97981507 src='/images/3m/sm/DP-190.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-190.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/DP420-BLACK-125OZ/?qs=sGAEpiMZZMvJqaFk9BIivwn1kzvlJGp1RpU4BkBC%252bq4%3d">517-DP420-BLK-1.25</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/DP420-BLACK-125OZ/?qs=sGAEpiMZZMvJqaFk9BIivwn1kzvlJGp1RpU4BkBC%252bq4%3d">DP420-BLACK-1.25OZ</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 1.25oz BLACK 2-PART
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-DP420-BLK-1.25 | DP420-BLACK-1.25OZ"]);" href="http://www.mouser.com/ds/2/1/420-56547.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_lnkRestricted" title="此产品不可空运发货,因此当前我们无法在您所在的国家或地区销售此产品。"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/LTHORMPopUp.aspx?country=China","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>限制装运</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=xgl3byeV3pk12KP3s8xW8A%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=xgl3byeV3pk12KP3s8xW8A%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Epoxy Compound
- </td><td>1.25 oz
- </td><td>Plastic Tube
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="517-TC-2707-37ML" data-index="20">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/TC-2707-37ML/?qs=sGAEpiMZZMvJqaFk9BIiv64ycZBmspLZLBBewGtOnho%3d'><img title='3M Electronic Specialty TC-2707-37ML' alt='3M Electronic Specialty TC-2707-37ML' id=645613261 src='/images/3m/sm/TC_2707_37ml_DSL.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/TC_2707_37ml_DSL.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/TC-2707-37ML/?qs=sGAEpiMZZMvJqaFk9BIiv64ycZBmspLZLBBewGtOnho%3d">517-TC-2707-37ML</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/TC-2707-37ML/?qs=sGAEpiMZZMvJqaFk9BIiv64ycZBmspLZLBBewGtOnho%3d">TC-2707-37ML</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 THERM COND ADH 37ML DUO-PAK
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-TC-2707-37ML | TC-2707-37ML"]);" href="http://www.mouser.com/ds/2/1/TC-2707%20TDS-611097.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_lnkRestricted" title="此产品不可空运发货,因此当前我们无法在您所在的国家或地区销售此产品。"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/LTHORMPopUp.aspx?country=China","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>限制装运</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=nm0t467p%252bu0lMubfda2x7A%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=nm0t467p%252bu0lMubfda2x7A%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>
- </td><td>37 ml
- </td><td>Case
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="517-DP-105CLEAR" data-index="21">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/DP-105-CLEAR/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1Ht2%2fk%2fZOdb6MY%3d'><img title='3M Electronic Specialty DP-105 CLEAR' alt='3M Electronic Specialty DP-105 CLEAR' id=33001942 src='/images/3m/sm/DP-105.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-105.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-105-CLEAR/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1Ht2%2fk%2fZOdb6MY%3d">517-DP-105CLEAR</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-105-CLEAR/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1Ht2%2fk%2fZOdb6MY%3d">DP-105 CLEAR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 2-PART EPOXLY 1.7OZ
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-DP-105CLEAR | DP-105 CLEAR"]);" href="http://www.mouser.com/ds/2/1/DP105-337509.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_lnkRestricted" title="此产品不可空运发货,因此当前我们无法在您所在的国家或地区销售此产品。"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/LTHORMPopUp.aspx?country=China","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>限制装运</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bdOPqt37%2fBzg%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bdOPqt37%2fBzg%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Epoxy Compound
- </td><td>1.7 oz
- </td><td>Plastic Tube
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="532-102100F00G" data-index="22">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Aavid-Thermalloy/102100F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrv4Jplg2jMlk%3d">532-102100F00G</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Aavid-Thermalloy/102100F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrv4Jplg2jMlk%3d">102100F00000G</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../Aavid-Thermalloy">Aavid Thermalloy</a>
- </td><td>化学物质 SIL-FREE 16.0oz JAR WHITE
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Aavid Thermalloy","532-102100F00G | 102100F00000G"]);" href="http://www.aavid.com/product-group/interface/greases" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">44<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥470.4453</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,2);">2:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥461.0502</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,5);">5:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥447.5016</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥419.4684</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(20,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Aavid-Thermalloy/102100F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrv4Jplg2jMlk%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 20);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy" title="购买 102100F00000G" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=S%2faC6yOeF6yphgmOB%252be5jA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=S%2faC6yOeF6yphgmOB%252be5jA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Thermal Management
- </td><td>Grease
- </td><td>
- </td><td>16 oz
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="517-DP100CLR" data-index="23">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/DP100-17OZ-CLEAR/?qs=sGAEpiMZZMvJqaFk9BIiv2Pyw0PNHgEZ1VWI3C06lbU%3d">517-DP100CLR</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/DP100-17OZ-CLEAR/?qs=sGAEpiMZZMvJqaFk9BIiv2Pyw0PNHgEZ1VWI3C06lbU%3d">DP100 1.7OZ CLEAR</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 EPOXY ADH DP100 1.7 FL OZ CLEAR
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-DP100CLR | DP100 1.7OZ CLEAR"]);" href="http://www.mouser.com/ds/2/1/3m_517-DP100CLR-356515.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_lnkRestricted" title="此产品不可空运发货,因此当前我们无法在您所在的国家或地区销售此产品。"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/LTHORMPopUp.aspx?country=China","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>限制装运</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=mKoBufTnax1VMYj5r5e8lw%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=mKoBufTnax1VMYj5r5e8lw%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>
- </td><td>1.7 oz
- </td><td>Tube
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="571-275447-1" data-index="24">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/TE-Connectivity-AMP/275447-1/?qs=sGAEpiMZZMvJqaFk9BIiv8pYiNd2j5UPCohDqwYGQjk%3d'><img title='TE Connectivity / AMP 275447-1' alt='TE Connectivity / AMP 275447-1' id=1760948 src='/images/tycoelectronics/sm/pr7b54012b.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/tycoelectronics/images/pr7b54012b.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/TE-Connectivity-AMP/275447-1/?qs=sGAEpiMZZMvJqaFk9BIiv8pYiNd2j5UPCohDqwYGQjk%3d">571-275447-1</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/TE-Connectivity-AMP/275447-1/?qs=sGAEpiMZZMvJqaFk9BIiv8pYiNd2j5UPCohDqwYGQjk%3d">275447-1</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../teampconnectors">TE Connectivity / AMP</a>
- </td><td>化学物质 SEALING & DIELECTRIC COMPOUND
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"TE Connectivity / AMP","571-275447-1 | 275447-1"]);" href="http://www.mouser.com/ds/2/418/NG_CD_275447_B-625426.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=4%252bj1D2Vsm1CB7OeZw1CBcA%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=4%252bj1D2Vsm1CB7OeZw1CBcA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Sealants
- </td><td>
- </td><td>95.25 mm x 95.25 mm
- </td><td>Roll
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="517-62-9171-9153-8" data-index="25">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/62-9171-9153-8/?qs=sGAEpiMZZMvJqaFk9BIivz3%2fEWqHqinvG9EWgFR%252bIog%3d'><img title='3M Electronic Specialty 62-9171-9153-8' alt='3M Electronic Specialty 62-9171-9153-8' id=359854536 src='/images/3m/sm/62-9171-9153-8.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/62-9171-9153-8.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/62-9171-9153-8/?qs=sGAEpiMZZMvJqaFk9BIivz3%2fEWqHqinvG9EWgFR%252bIog%3d">517-62-9171-9153-8</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/62-9171-9153-8/?qs=sGAEpiMZZMvJqaFk9BIivz3%2fEWqHqinvG9EWgFR%252bIog%3d">62-9171-9153-8</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 SCOTCH-WELD 5.3MM MIX NOZZLE SQ GOLD
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-62-9171-9153-8 | 62-9171-9153-8"]);" href="http://www.mouser.com/ds/2/1/78923671412-37988.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/3M-Electronic-Specialty/62-9171-9153-8/?qs=sGAEpiMZZMvJqaFk9BIivz3%2fEWqHqinvG9EWgFR%252bIog%3d">更多信息可用 </a>
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=4yhX4kfwF3DHgHuVXU7ZUA%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=4yhX4kfwF3DHgHuVXU7ZUA%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Application Tools
- </td><td>Applicator
- </td><td>5.3 mm
- </td><td>Cartridge
- </td>
- </tr><tr class="SearchResultsRowEven" data-partnumber="517-DP-190" data-index="26">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td><a href='/ProductDetail/3M-Electronic-Specialty/DP-190-GRAY/?qs=sGAEpiMZZMvJqaFk9BIivyt5kB31WvDFL3RShyRf%2fQA%3d'><img title='3M Electronic Specialty DP-190-GRAY' alt='3M Electronic Specialty DP-190-GRAY' id=141592000 src='/images/3m/sm/DP-190.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i> 扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-190.jpg</div></a></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-190-GRAY/?qs=sGAEpiMZZMvJqaFk9BIivyt5kB31WvDFL3RShyRf%2fQA%3d">517-DP-190</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-190-GRAY/?qs=sGAEpiMZZMvJqaFk9BIivyt5kB31WvDFL3RShyRf%2fQA%3d">DP-190-GRAY</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
- </td><td>化学物质 S/W DP-190 GRY EPXY ADH 50ML DUO-PAK
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"3M Electronic Specialty","517-DP-190 | DP-190-GRAY"]);" href="http://www.mouser.com/ds/2/1/78690029521-42292.pdf" target="_blank">数据表</a>
- </td><td>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/3M-Electronic-Specialty/DP-190-GRAY/?qs=sGAEpiMZZMvJqaFk9BIivyt5kB31WvDFL3RShyRf%2fQA%3d">更多信息可用 </a>
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- </td><td class="SearchResultsBuyColumn">
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_pnlRestricted">
-
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_lnkRestricted" title="此产品不可空运发货,因此当前我们无法在您所在的国家或地区销售此产品。"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/LTHORMPopUp.aspx?country=China","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>限制装运</a></a>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/CompliantByExemption.aspx?qs=JSo1CSzgIV%252bfb3Tsv7%252bJow%3d%3d');return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=JSo1CSzgIV%252bfb3Tsv7%252bJow%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>Adhesives
- </td><td>Epoxy Compound
- </td><td>50 mL
- </td><td>Plastic Tube
- </td>
- </tr><tr class="SearchResultsRowOdd" data-partnumber="532-100200F00000G" data-index="27">
- <td class="td-select" align="center">
- <div style="padding: 5px 5px 0 5px;">
- <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>
- </div>
- </td><td></td><td>
- <div style="text-align:left;">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Aavid-Thermalloy/100200F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrFbTKY%2fl0r14%3d">532-100200F00000G</a><br />
- <br />
- <br />
- </div></td><td>
- <div class="mfrDiv">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Aavid-Thermalloy/100200F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrFbTKY%2fl0r14%3d">100200F00000G</a><br />
- <br />
- <div style="width: 100%; text-align: center;">
- </div>
- <div style="width: 100%; text-align: center;">
- </div>
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../Aavid-Thermalloy">Aavid Thermalloy</a>
- </td><td>化学物质 SIL-FREE GREASE WHITE 5.0oz TUBE
- <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
-
- </div>
- </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push(['_trackEvent','Datasheet Download',"Aavid Thermalloy","532-100200F00000G | 100200F00000G"]);" href="http://www.aavid.com/product-group/interface/greases" target="_blank">数据表</a>
- </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">37<br/>有库存</span>
- <table>
- <tr align="center">
- <td style="padding-top: 5px">
- </td>
- </tr>
- <tr align="center">
- <td style="padding-top: 5px; padding-bottom: 5px">
- </td>
- </tr>
- </table></td><td>
- <table class="PriceBreaks" cellspacing="0" border="0">
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- <td colspan="1" style="font-size: x-small" valign="top" align="left">
- </td>
- </tr>
-
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥292.4766</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,5);">5:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥283.6314</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥275.3127</span>
- </td>
- </tr>
- <tr>
- <td class="PriceBreakQuantity">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
- </td>
- <td class="PriceBreakPrice">
- <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥258.0552</span>
- </td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
- <td class="PriceBreakQuantity" Style="white-space: nowrap">
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,50);">50:</a>
- </td>
- <td class="PriceBreakPrice">
- <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Aavid-Thermalloy/100200F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrFbTKY%2fl0r14%3d">查看</a>
- </td>
- </tr>
-
- <tr>
- <td><br /></td>
- </tr>
- <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
- <td colspan="2" style="text-align: center;">
- </td>
- </tr>
-
- </table>
- </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy')">
-
- <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 />
- <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart('search', 25);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy" title="购买 100200F00000G" class="buy-button" /><br />
- <table cellspacing="0" border="0" style="width: 100%;">
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 最低:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- <tr>
- <td style="padding-right: 2px; text-align: right; width: 50%;">
- 多个:
- </td>
- <td style="padding-left: 2px; text-align: left;">
- 1
- </td>
- </tr>
- </table>
- </div>
- </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
-
- <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
- <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup('/Search/include/RoHSCompliant.aspx?qs=S%2faC6yOeF6xzp7CtdKJXkQ%3d%3d');return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=S%2faC6yOeF6xzp7CtdKJXkQ%3d%3d" target="_blank">详细信息</a>
- </div>
- </td><td>
- </td><td>
- </td><td>
- </td><td>
- </td>
- </tr>
- </table>
- </div>
- </td>
- </tr>
- <tr>
- <td class="tdSearchResultsPagingBottom">
- <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
- <tr>
- <td>
- <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
- </td>
- <td>
- <input type="submit" name="ctl00$ContentMain$btn4" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) && 0 == 0) { alert('请选择您希望对比的产品。'); return false; };" id="ctl00_ContentMain_btn4" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
- </td>
- <td>
- <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
- </td>
- <td style="padding-left: 40px;">
- <div class="floatrightpager">
- <span class="bold">
- 页面:
- </span>
- <span id="ctl00_ContentMain_PagerBottom"><span id="ctl00_ContentMain_PagerBottom_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerBottom_1" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_36" class="first-last" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=900">37</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Tools-Supplies/Chemicals/_/N-wp63/?No=25">下一页</a></span>
- </div>
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td>
- <!--- Search Tips --->
- </td>
- </tr>
- <tr>
- <td>
- <!-- SOP Section 2 -->
- </td>
- </tr>
- </table>
- </div>
- </div><!-- #liProducts-->
- <!-- Datasheets tab -->
- <!-- #liDatasheets-->
- <!-- Images tab -->
- <!-- #liImages-->
- <!-- Newest Products tab -->
- <!-- #liProducts-->
- </div>
- <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
-
- <div>
- <span class="popular-searches-label">热门搜索:</span>
- <span class="popular-searches-links"><a href='/Tools-Supplies/Chemicals/_/N-wp63?P=1yzmwjj&pop=65ch' onclick="ga('send','event','Popular Search Refine Click','Chemicals','Isopropyl Alcohol Chemicals')">Isopropyl Alcohol 化学物质</a> , <a href='/Tools-Supplies/Chemicals/_/N-wp63?P=1yzxj5t&pop=10p5' onclick="ga('send','event','Popular Search Refine Click','Chemicals','Wipes Chemicals')">Wipes 化学物质</a> , <a href='/Tools-Supplies/Chemicals/_/N-wp63/?P=1z0jntx&pop=rk3e' onclick="ga('send','event','Popular Search Refine Click','Chemicals','7/16 in Chemicals')">7/16 in 化学物质</a> , <a href='/Tools-Supplies/Chemicals/_/N-wp63?P=1yzmwf3&pop=7m39' onclick="ga('send','event','Popular Search Refine Click','Chemicals','Acrylic Conformal Coating Chemicals')">Acrylic Conformal Coating 化学物质</a> , <a href='/Tools-Supplies/Chemicals/_/N-wp63?P=1yzxj5o&pop=7nza' onclick="ga('send','event','Popular Search Refine Click','Chemicals','Solder Masks Chemicals')">Solder Masks 化学物质</a> , <a href='/Tools-Supplies/Chemicals/_/N-wp63?P=1yzskc8&pop=6xlp' onclick="ga('send','event','Popular Search Refine Click','Chemicals','Flux Remover Chemicals')">Flux Remover 化学物质</a></span>
- </div>
- </div>
- <div style="visibility: hidden;">
- <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
- <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
- <span id="SearchResultCount">906</span>
- <div id="disclaimer">
- 图像仅供参考<br/>请参阅产品规格</div>
- </div>
- <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Tools-Supplies/Chemicals" />
- <script type="text/javascript" src='../../../../javascript/ProductImage.js'></script>
- <script type="text/javascript" src='../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
- <script type="text/javascript" src='../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
- <!--[if gte IE 9]><!-->
- <script type="text/javascript" src='../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
- <!--<![endif]-->
- <!--[if lt IE 9]>
- <script type="text/javascript" src='../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
- <![endif]-->
- <script type="text/javascript" src='../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
- <script type="text/javascript">
- var subdomain = 'cn2';
- </script>
- </div>
- <div class="aspNetHidden">
- <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
- <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
- <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
-
- <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
- </div>
- <script type="text/javascript">
- //<![CDATA[
- var mfrIDsArray = new Array;
- //]]>
- </script>
- <script src='../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
- <script type="text/javascript">
- //<![CDATA[
- var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
- </script>
- <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>
- <script type="text/javascript">
- //<![CDATA[
- maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
- //]]>
- </script>
- <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>
- <script type="text/javascript">
- //<![CDATA[
- groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688755^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688700^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$688359';
- theForm.oldSubmit = theForm.submit;
- theForm.submit = WebForm_SaveScrollPositionSubmit;
- theForm.oldOnSubmit = theForm.onsubmit;
- theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
- //]]>
- </script>
- </form>
- <div id="content-container2" class="hidden">
- <div id="content-fixed-width2" class="content-fixed-width">
- </div>
- </div>
- <div id="wideFooter" class="wideFooter">
- <div id="footer" class="container">
- <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB07|20160304.2" />
- <div id="ft_table1">
- <div class="row">
- <div class="col-xs-12">
- <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
-
- <div class="floatleft padding5right">
- <strong class="h3">
- 快速电子邮件注册</strong>
- <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
- </div>
- <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
- 提交
- </a>
- </div>
- <div id="ft_icons" class="ft_icons">
- <div id="ft_social">
- <a id="ctl00_Footer1_lnkWechat" title="微信" onclick="ga('send','event','Social Media Footer Icon','Wechat','http://www.mouser.cn/wechat');" href="http://www.mouser.cn/wechat"><div id="ctl00_Footer1_imgWechat" class="ico-social wechat"></div></a>
- <a id="ctl00_Footer1_lnkYouKu" title="优酷" onclick="ga('send','event','Social Media Footer Icon','YouKu','http://i.youku.com/mouserelectronics');" href="http://i.youku.com/mouserelectronics" target="_blank"><div id="ctl00_Footer1_imgYouKu" class="ico-social youku"></div></a>
- <a id="ctl00_Footer1_lnkWeibo" title="新浪微博" onclick="ga('send','event','Social Media Footer Icon','Sina Weibo','http://www.weibo.com/u/2498646920');" href="http://www.weibo.com/u/2498646920" target="_blank"><div id="ctl00_Footer1_imgWeigo" class="ico-social weibo"></div></a>
- <a id="ctl00_Footer1_lnkFB" title="facebook" onclick="ga('send','event','Social Media Footer Icon','facebook','http://www.facebook.com/mouserelectronics');" href="http://www.facebook.com/mouserelectronics" target="_blank">
- <div class="ico-social fb"></div>
- </a>
- <a id="ctl00_Footer1_lnkTw" title="Twitter" onclick="ga('send','event','Social Media Footer Icon','Twitter','http://www.twitter.com/mouserelec');" href="http://www.twitter.com/mouserelec" target="_blank">
- <div class="ico-social tw"></div>
- </a>
- <a id="ctl00_Footer1_lnkRSS" title="RSS" onclick="ga('send','event','Social Media Footer Icon','RSS','http://www.mouser.cn/rssfeeds');" href="http://www.mouser.cn/rssfeeds" target="_blank">
- <div class="ico-social rss"></div>
- </a>
- <a id="ctl00_Footer1_lnkYT" title="YouTube" onclick="ga('send','event','Social Media Footer Icon','YouTube','http://www.youtube.com/mouserelec');" href="http://www.youtube.com/mouserelec" target="_blank">
- <div class="ico-social yt"></div>
- </a>
- <a id="ctl00_Footer1_lnkGp" title="Google+" onclick="ga('send','event','Social Media Footer Icon','Google+','http://google.com/+MouserElec');" href="http://google.com/+MouserElec" target="_blank">
- <div class="ico-social gp"></div>
- </a>
- <a id="ctl00_Footer1_lnkLn" title="LinkedIn" onclick="ga('send','event','Social Media Footer Icon','LinkedIn','http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT');" href="http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT" target="_blank">
- <div class="ico-social ln"></div>
- </a>
- <a id="ctl00_Footer1_lnkSb" title="订阅中心" onclick="ga('send','event','Social Media Footer Icon','Subscription Center','http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx');" href="http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx">
- <div class="ico-social sb"></div>
- </a>
- <a id="ctl00_Footer1_lnkBlog" title="Mouser博客" onclick="ga('send','event','Social Media Footer Icon','Mouser Blog','http://www.mouser.cn/blog');" href="http://www.mouser.cn/blog">
- <div class="ico-social blog"></div>
- </a>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
- <div class="ft_wrapper">
- <div id="ft_links" class="row">
- <div class="col-xs-3 paddingBtm10 hidden-xs">
- <strong class="paddingTopBtm10 inline-block">
- 公司</strong>
- <ul>
- <li>
- <a id="ctl00_Footer1_lnk26" href="../../../../aboutus/">关于我们</a></li>
- <li>
- <a id="ctl00_Footer1_lnk28" href="../../../../educationalsales/">教育销售</a></li>
- <li>
- <a id="ctl00_Footer1_lnk31" href="../../../../pressroom/">新闻中心</a></li>
- <li>
- <a id="ctl00_Footer1_lnk32" href="../../../../careers/">Mouser 工作机会</a></li>
- <li>
- <a id="ctl00_Footer1_lnk29" href="../../../../quality/">品质保证</a></li>
- <li>
- <a id="ctl00_Footer1_lnk30" href="../../../../environmental/">环境保护</a></li>
- </ul>
- </div>
- <div class="col-xs-3 hidden-xs">
- <strong class="paddingTopBtm10 inline-block">
- 快速链接</strong>
- <ul>
- <li><a id="A7" href="/blog">
- Mouser博客</a></li>
- <li>
- <a id="ctl00_Footer1_hlnk1" href="../../../../new/">最新产品</a></li>
- <li>
- <a id="ctl00_Footer1_hlnk2" href="../../../../new/products/">新产品</a></li>
- <li>
- <a id="ctl00_Footer1_hlnk3" href="../../../../applications/">新技术</a></li>
- </ul>
- </div>
- <div class="col-xs-12 col-sm-3">
- <strong class="paddingTopBtm10 inline-block">
- 支持</strong>
- <ul>
- <li><a id="A3" href="/feedback.aspx">
- 反馈</a></li>
- <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
- 帮助</a></li>
- <li>
- <a id="ctl00_Footer1_lnk27" href="../../../../contact/">联系我们</a></li>
- <li class="hidden-xs"><a id="A5" href="/browsersupport/">
- 浏览器支持</a></li>
- <li><a id="A6" href="/cookie-policy/">
- Cookie政策</a></li>
- </ul>
- </div>
- <div class="col-xs-12 col-sm-3">
- <strong class="paddingTopBtm10 inline-block">
- 昴氏(上海)电子贸易有限公司</strong>
- <ul>
- <li>
- <h4>
- 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <div class="row">
- <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
-
- <div id="ft_copy">
- <span class="ft_terms">
- <a id="A1" href="/privacypolicy/">
- 隐私政策</a>
- |
- <a id="href3" href="/saleterms/">
- 销售条款</a>
- <br />
- </span>
- <span class="ft_copyright">
- 版权所有©2016 Mouser Electronics, Inc
- |
- 沪ICP备15042575号-1
- <br />
- </span>
- <span class="ft_trade">
- Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
- </span>
- <span class="ft_hq">
- Corporate headquarters and logistics center in Mansfield, Texas USA.
- </span>
- <br />
- <span class="ft_ClassicMobile">
- <strong>
- <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../m_Home.aspx">通过移动设备查看</a></strong>
- </span>
- </div>
- </div>
- <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
- <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>
- <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>
- <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
- <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
- </a>
- <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('Copying Prohibited by Law'); return false;" src="//seal.qualys.com/sealserv/seal.gif?i=c8b29c82-965e-403b-956c-c855241927bb" alt="Qualys Secure Seal" style="border-style:None;" /></a>
- <a id="ctl00_Footer1_Hyperlink1" class="ft_cert_padding ft_sgs" href="http://www.sgs.gov.cn/lz/licenseLink.do?method=licenceView&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;" />
- </a>
- </div>
- <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
- <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>
- <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>
- <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>
- <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>
- </div>
- </div>
- <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>
- <script type="text/javascript">
- var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
- </script>
- </div>
- </div>
- <script src="../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
- <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>
- </body>
- </html>
|