58.html 274 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head id="ctl00_header">
  4. <!-- AppInternalsXpert BMX Integration Begin -->
  5. <script>
  6. if(!OPNET_ARXS){
  7. var OPNET_ARXS={startJS:Number(new Date()),
  8. clientId:'7496BECC1B8E33C4',appId:100040,
  9. collector:'perf.mouser.com',
  10. collectorHttpPort:80, collectorHttpsPort:443,
  11. sv:'0302',
  12. tag1:'', tag2:'', tag3:''};
  13. (function(){
  14. var w=window,l=w.addEventListener,m=w.attachEvent,
  15. d=document,s='script',t='load',o=OPNET_ARXS,
  16. z='-0b2c4d73f58414c86c7384150be8ca44',
  17. r=(('https:'===d.location.protocol)?
  18. 'https://953c27ce3b34cfb8cc56'+z+'.ssl':
  19. 'http://fb3f316d487bcc59f7ec'+z+'.r88')+
  20. '.cf1.rackcdn.com/opnet_browsermetrix.c.'+
  21. (o.ajax?'ajax.js':'js'),p=('onpagehide' in w),e=p?'pageshow':t,
  22. j=d.createElement(s),x=d.getElementsByTagName(s)[0],
  23. h=function(y){o.ldJS=new Date();o.per=y?y.persisted:null;},
  24. i=function(){o.ld=1;};o.cookie=d.cookie;d.cookie=
  25. '_op_aixPageId=0; path=/; expires='+(new Date(0)).toGMTString();
  26. o.cookieAfterDelete=d.cookie;j.async=1;j.src=r;
  27. if(l){l(e,h,false);if(p){l(t,i,false);}}else if(m)
  28. {m('on'+e,h);if(p){m('on'+t,i);}}
  29. if(o.sync){d.write('<'+s+' src=\''+r+'\'></'+s+'>');}
  30. else{x.parentNode.insertBefore(j,x);}
  31. })();}
  32. </script>
  33. <script>if(!OPNET_ARXS_PARAM){var OPNET_ARXS_PARAM={};} OPNET_ARXS_PARAM.pageId = 'a2_41b11582-d29e-4e0d-9276-25733d0bccf7-12552-343339';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. 化学物质 | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应化学物质 。Mouser提供化学物质 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="化学物质" /><meta name="verify-v1" content="bhrmPa5uloYbiuM+lDu4z+y0qUGeKGW5FfFMprQAqlU=" /><meta name="viewport" content="width=1000, initial-scale=1" /><meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
  38. <!-- BASE STYLE SHEET -->
  39. <link rel="shortcut icon" href="../../../../favicon.ico" /><link rel="alternate" type="application/rss+xml" title="RSS" href="../../../../rss/rss.xml" />
  40. <!--[if IE 7]>
  41. <link rel="stylesheet" type="text/css" href="../../../../css/ie7.css" />
  42. <![endif]-->
  43. <!--[if IE 8]>
  44. <link rel="stylesheet" type="text/css" href="../../../../css/ie8.css" />
  45. <![endif]-->
  46. <!--[if IE 9]>
  47. <link rel="stylesheet" type="text/css" href="../../../../css/ie9.css" />
  48. <![endif]-->
  49. <script type="text/javascript">
  50. function OpenBackordered(URL) {
  51. var MsgWindow;
  52. MsgWindow = window.open(URL, "MsgWindow", "scrollbars=1,height=500,width=650,menubar=0,resizable=1");
  53. }
  54. </script>
  55. <script type="text/javascript"> var _gaq = _gaq || [];var pluginUrl ='//www.google-analytics.com/plugins/ga/inpage_linkid.js';_gaq.push(['_require', 'inpage_linkid', pluginUrl]); _gaq.push(['_setAccount', "UA-521079-1"]);_gaq.push(['_setDomainName', "mouser.cn"]);_gaq.push(['_setAllowLinker', true]);_gaq.push(['_setAllowAnchor', true]);_gaq.push(["_setCustomVar",1,"Language","zh-CN",3]);_gaq.push(["_setCustomVar",30,"s35h","WW9K+Oj+GG7Zc/fxuiiclJx36DVM+U8lUt8YrWObXmc=",2]);_gaq.push(["_setCustomVar",31,"Cart","cea2aab3-92b0-477e-811e-391f20b404d7",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA96AA68",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '517-DP270BK',
  65. 'name': 'Chemicals 1.7oz ADHESIVE 1 PIECE BLACK',
  66. 'category': 'Chemicals',
  67. 'brand': '3M Electronic Specialty',
  68. 'variant': 'DP-270 BLACK',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '532-251',
  74. 'name': 'Chemicals 1lb THERMALCOTE I CAN OPAQUE WHITE',
  75. 'category': 'Chemicals',
  76. 'brand': 'Aavid Thermalloy',
  77. 'variant': '251G',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '532-249',
  83. 'name': 'Chemicals 1oz THERMALCOTE I TUBE OPAQUE WHITE',
  84. 'category': 'Chemicals',
  85. 'brand': 'Aavid Thermalloy',
  86. 'variant': '249G',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '532-250',
  92. 'name': 'Chemicals 2oz THERMALCOTE I TUBE OPAQUE WHITE',
  93. 'category': 'Chemicals',
  94. 'brand': 'Aavid Thermalloy',
  95. 'variant': '250G',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '517-DP-270CL-1.7',
  101. 'name': 'Chemicals 1.7oz ADHSVE CLEAR EPOXY',
  102. 'category': 'Chemicals',
  103. 'brand': '3M Electronic Specialty',
  104. 'variant': 'DP-270',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '567-120-5',
  110. 'name': 'Chemicals SILICON GREASE 5oz.',
  111. 'category': 'Chemicals',
  112. 'brand': 'Wakefield',
  113. 'variant': '120-5',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '567-120-8',
  119. 'name': 'Chemicals SILICON GREASE 8oz.',
  120. 'category': 'Chemicals',
  121. 'brand': 'Wakefield',
  122. 'variant': '120-8',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '517-EC2216',
  128. 'name': 'Chemicals SCOTCH-WELD EPOXY 43 MIL GRAY',
  129. 'category': 'Chemicals',
  130. 'brand': '3M Electronic Specialty',
  131. 'variant': 'EC2216',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '532-100300F00G',
  137. 'name': 'Chemicals ULTRASTICK THERMAL COMPOUND 47.5g',
  138. 'category': 'Chemicals',
  139. 'brand': 'Aavid Thermalloy',
  140. 'variant': '100300F00000G',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '517-DP100FR',
  146. 'name': 'Chemicals EPXY ADHSIV 1.7FL OZ CREAM COLOR',
  147. 'category': 'Chemicals',
  148. 'brand': '3M Electronic Specialty',
  149. 'variant': 'DP100FR',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '517-2216-GRY',
  155. 'name': 'Chemicals 2OZ. EPOXY KIT GRAY',
  156. 'category': 'Chemicals',
  157. 'brand': '3M Electronic Specialty',
  158. 'variant': '2216 B/A GRAY',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '650-S1125-KIT-8',
  164. 'name': 'Chemicals ADHESIVE 50-ML DUAL SYRINGE',
  165. 'category': 'Chemicals',
  166. 'brand': 'TE Connectivity / Raychem',
  167. 'variant': 'S1125-KIT-8',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '650-S1125-KIT-1',
  173. 'name': 'Chemicals ADHESIVE 5 10-GRAM P',
  174. 'category': 'Chemicals',
  175. 'brand': 'TE Connectivity / Raychem',
  176. 'variant': 'S1125-KIT-1',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '517-DP-100-1.7',
  182. 'name': 'Chemicals EPOXY DP100 PLUS CLEAR DUO-PK 1.7OZ',
  183. 'category': 'Chemicals',
  184. 'brand': '3M Electronic Specialty',
  185. 'variant': 'DP-100 Plus',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '517-DP110-TRANS',
  191. 'name': 'Chemicals 1.7oz EPOXY TRANS',
  192. 'category': 'Chemicals',
  193. 'brand': '3M Electronic Specialty',
  194. 'variant': 'DP-110 TRANS',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '517-DP420-1.7',
  200. 'name': 'Chemicals 1.25oz OFF-WHITE 2PRT',
  201. 'category': 'Chemicals',
  202. 'brand': '3M Electronic Specialty',
  203. 'variant': 'DP-420 OFF-WHITE',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '517-DP420-BLK-1.25',
  209. 'name': 'Chemicals 1.25oz BLACK 2-PART',
  210. 'category': 'Chemicals',
  211. 'brand': '3M Electronic Specialty',
  212. 'variant': 'DP420-BLACK-1.25OZ',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '517-TC-2707-37ML',
  218. 'name': 'Chemicals THERM COND ADH 37ML DUO-PAK',
  219. 'category': 'Chemicals',
  220. 'brand': '3M Electronic Specialty',
  221. 'variant': 'TC-2707-37ML',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '517-DP-105CLEAR',
  227. 'name': 'Chemicals 2-PART EPOXLY 1.7OZ',
  228. 'category': 'Chemicals',
  229. 'brand': '3M Electronic Specialty',
  230. 'variant': 'DP-105 CLEAR',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '532-102100F00G',
  236. 'name': 'Chemicals SIL-FREE 16.0oz JAR WHITE',
  237. 'category': 'Chemicals',
  238. 'brand': 'Aavid Thermalloy',
  239. 'variant': '102100F00000G',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '517-DP100CLR',
  245. 'name': 'Chemicals EPOXY ADH DP100 1.7 FL OZ CLEAR',
  246. 'category': 'Chemicals',
  247. 'brand': '3M Electronic Specialty',
  248. 'variant': 'DP100 1.7OZ CLEAR',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '571-275447-1',
  254. 'name': 'Chemicals SEALING \u0026 DIELECTRIC COMPOUND',
  255. 'category': 'Chemicals',
  256. 'brand': 'TE Connectivity / AMP',
  257. 'variant': '275447-1',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '517-62-9171-9153-8',
  263. 'name': 'Chemicals SCOTCH-WELD 5.3MM MIX NOZZLE SQ GOLD',
  264. 'category': 'Chemicals',
  265. 'brand': '3M Electronic Specialty',
  266. 'variant': '62-9171-9153-8',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '517-DP-190',
  272. 'name': 'Chemicals S/W DP-190 GRY EPXY ADH 50ML DUO-PAK',
  273. 'category': 'Chemicals',
  274. 'brand': '3M Electronic Specialty',
  275. 'variant': 'DP-190-GRAY',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '532-100200F00000G',
  281. 'name': 'Chemicals SIL-FREE GREASE WHITE 5.0oz TUBE',
  282. 'category': 'Chemicals',
  283. 'brand': 'Aavid Thermalloy',
  284. 'variant': '100200F00000G',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','WW9K+Oj+GG7Zc/fxuiiclJx36DVM+U8lUt8YrWObXmc=');
  290. ga('set','dimension31','cea2aab3-92b0-477e-811e-391f20b404d7');
  291. ga('set','dimension13','163AA125AA96AA68');
  292. ga('set','metric2',906);
  293. ga('set','dimension5','Chemicals');
  294. ga('set','dimension48','wp63');
  295. ga('set','dimension3','Refine');
  296. ga('set','dimension55','Products');
  297. ga('send', 'pageview');
  298. </script>
  299. <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&amp;type=css&amp;fileSet=CSS_Base&amp;lang=zh-CN" rel="stylesheet" type="text/css" /><link href="../../../../css/style.axd?v=3.0.20160304.2&amp;fileSet=Css_Search&amp;type=css&amp;lang=zh-CN" rel="stylesheet" type="text/css" /><link rel="alternate" hreflang="es-AR" href="http://ar.mouser.com/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>
  300. <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
  301. <script src='../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
  302. <script src='../../../../flash/js/empty.file.js' type="text/javascript"></script>
  303. <script src='../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
  304. <script src='../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
  305. <script src='../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
  306. <!--[if lt IE 9]>
  307. <script src='../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
  308. <![endif]-->
  309. <form method="post" action="/Tools-Supplies/Chemicals/_/N-wp63/" id="aspnetForm">
  310. <div class="aspNetHidden">
  311. <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
  312. <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
  313. <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" />
  314. <input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
  315. </div>
  316. <script type="text/javascript">
  317. //<![CDATA[
  318. var theForm = document.forms['aspnetForm'];
  319. if (!theForm) {
  320. theForm = document.aspnetForm;
  321. }
  322. function __doPostBack(eventTarget, eventArgument) {
  323. if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
  324. theForm.__EVENTTARGET.value = eventTarget;
  325. theForm.__EVENTARGUMENT.value = eventArgument;
  326. theForm.submit();
  327. }
  328. }
  329. //]]>
  330. </script>
  331. <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZIfBoSL8TZnsnOFihh6T3B3-ZDc9vWAo-Dvo5VSdzj9CkFL2Zg2&amp;t=635802997220000000" type="text/javascript"></script>
  332. <script type="text/javascript">
  333. //<![CDATA[
  334. var lasttemplateid='1525611';
  335. var subdomainname = '.mouser.cn';
  336. var lang = 'zh-CN';
  337. var country = 'CN';
  338. var shippingCountry = 'CN';
  339. var usdSubdomain = 'www';
  340. var subdomain = 'cn2';
  341. function attributecount() { return true; }
  342. var navids='1525611';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenPTCWindow(url) {var left = (screen.width / 2) - (542 / 2);var top = (screen.height / 2) - (531 / 2);
  343. window.open(url, "popup", "height=488,width=454,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0");
  344. }
  345. function OpenRoHSPopup(url) {
  346. 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');
  347. }
  348. function GenerateClientID(prefix, i, suffix) {
  349. if (i < 10) { return prefix + '0' + String(i) + suffix; }
  350. else { return prefix + String(i) + suffix; }
  351. }
  352. var checked = false;
  353. function SelectAll() {
  354. checked = !checked;
  355. var i = 3;
  356. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  357. while (i < 29) {
  358. if (chkSelect != null) chkSelect.checked = checked;
  359. i = i + 1;
  360. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  361. }
  362. }
  363. function IsAllChecked(checked) {
  364. var i = 3;
  365. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  366. while (i < 29) {
  367. if (chkSelect != null && chkSelect.checked != checked) return false;
  368. i = i + 1;
  369. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  370. }
  371. return true;
  372. }
  373. function IsAnyChecked(checked) {
  374. return !IsAllChecked(!checked);
  375. }
  376. function SelectRow(row, checked) {
  377. document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
  378. }
  379. function RowSelected(index, checked) { }
  380. function GetQuantityTextboxByRow(row) {
  381. return GetQuantityTextboxByIndex(row + 2);
  382. }
  383. function GetQuantityTextboxByIndex(index) {
  384. return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
  385. }
  386. function SelectQuantity(row, quantity) {
  387. txtQuantity = GetQuantityTextboxByRow(row);
  388. if (txtQuantity == null) { return; }
  389. txtQuantity.value = quantity;
  390. SelectRow(row, true);
  391. }
  392. var qtyRegEx = /^([0]|\s)*$/;
  393. function IsQuantityEmptyOrZero(quantity) {
  394. return qtyRegEx.test(quantity);
  395. }
  396. function QuantityChanged(row, quantity) {
  397. SelectRow(row, !IsQuantityEmptyOrZero(quantity));
  398. }
  399. var QuantityRowSelectedBase = RowSelected;
  400. function QuantityRowSelected(index, checked) {
  401. QuantityRowSelectedBase(index, checked);
  402. txtQuantity = GetQuantityTextboxByIndex(index);
  403. if (txtQuantity == null) { return; }
  404. if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
  405. else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
  406. }
  407. RowSelected = QuantityRowSelected;
  408. //]]>
  409. </script>
  410. <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&amp;t=5f9d5645" type="text/javascript"></script>
  411. <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&amp;t=5f9d5645" type="text/javascript"></script>
  412. <div id="cookie-notification-bar">
  413. </div>
  414. <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
  415. <div id="wideGab" class="wideGab">
  416. <div id="ctl00_globalActionBar" class="global-action-bar">
  417. <div id="gab-container" class="container">
  418. <div id="contact" class="row">
  419. <div class="topPadding col-xs-6">
  420. <div class="inline-block">
  421. <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
  422. <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>&nbsp;
  423. 400-821-6111</a><span id="yxezcaswaauztuaqaww"><a rel="file" style="display: none;" href="xxrrtbuu.html">ubqtbausacydzezvysubqtb</a></span>
  424. &nbsp;&nbsp;&nbsp;&nbsp;<span class="pipe">|</span>&nbsp;&nbsp;&nbsp;&nbsp;
  425. <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
  426. 反馈</a>
  427. </div>
  428. <span class="qqIcon inline-block">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
  429. </span>&nbsp;&nbsp;
  430. </div>
  431. <div class="col-xs-6 align-right">
  432. <div id="tdImg" class="inline-block topPadding9px">
  433. <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" class="smallgrey">
  434. <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
  435. <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
  436. </div>
  437. <div class="topPadding inline-block">
  438. <span class="pipe">|</span>&nbsp;&nbsp;&nbsp;
  439. <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvrCtTdiClrDQoQcVgE2dL3UQRI8fgQtubVyAmiUatLj3Z%252bIy800Lr%252bCG2JavGwNmI%3d">更改国家</a>
  440. <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>
  441. <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
  442. <span id="ctl00_gab1_lbl1">RMB</span>
  443. </div>
  444. </div>
  445. </div>
  446. </div>
  447. <div style="clear: both;"></div>
  448. <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
  449. class="thickbox"></a>
  450. <div id="divCurrencyPopup" class="currency-popup">
  451. <div class="currency-close">
  452. <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();">&nbsp;</a>
  453. </div>
  454. <div>
  455. <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../images/international/flags/cn2.gif" alt="中国" />&nbsp;<span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
  456. <br/>
  457. <div style="padding: 0 20px 0 20px">
  458. <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
  459. <br />
  460. <table width="95%">
  461. <tr>
  462. <td width="20%">
  463. <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
  464. </td>
  465. <td>
  466. <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
  467. <br/>
  468. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
  469. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
  470. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
  471. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
  472. </td>
  473. </tr>
  474. </table>
  475. </div>
  476. </div>
  477. </div>
  478. <div id="cartDialog" class="CartDialog" style="display: none;">
  479. <table id="miniCartOnly">
  480. <tr id="divall">
  481. <td id="tdCart">
  482. <table style="width: 100%; padding: 0px; border: 0px">
  483. <tr>
  484. <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
  485. <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
  486. </td>
  487. <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
  488. <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
  489. </td>
  490. </tr>
  491. </table>
  492. <table id="tableMiniCartItms">
  493. <tr id="trCart">
  494. <td>
  495. <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  496. <table id="tblMiniCart">
  497. <thead>
  498. <tr>
  499. <th class="miniCartColumn">制造商</th>
  500. <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
  501. <th class="miniCartColumn MiniCartHdBg">数量</th>
  502. <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
  503. </tr>
  504. </thead>
  505. </table>
  506. <script type="text/javascript">
  507. var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
  508. var currentGuid = 'cea2aab3-92b0-477e-811e-391f20b404d7';
  509. var currentCountryCode = 'CN';
  510. var currentCurrencyCode= 'RMB';
  511. var currencyCulture = 'zh-CN';
  512. var cultureCode = 'zh-CN';
  513. var customerID = '';
  514. </script>
  515. <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  516. </td>
  517. </tr>
  518. </table>
  519. <div style="display: none; padding-top: 10px" id="divSingleItem">
  520. <table id="tblSingeItem">
  521. <tr>
  522. <!-- Here goes the single item -->
  523. <td style="padding-right: 15px">
  524. <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
  525. <td style="align: right; padding-right: 2px" id="tdSingleItms">
  526. <div id="divAll">
  527. <div id="wrapper">
  528. <div id="divLbl">
  529. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
  530. </div>
  531. <div id="divHyp">
  532. </div>
  533. </div>
  534. <div id="divRest">
  535. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
  536. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
  537. <br />
  538. <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
  539. </div>
  540. </div>
  541. </td>
  542. </tr>
  543. </table>
  544. </div>
  545. <div id="divForCart" class="divMsgLnkTotal" style="display: none">
  546. <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
  547. <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
  548. <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
  549. <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
  550. <a onclick="javascript:return MiniCart.SendToCartPage(&#39;Cart Hover&#39;,&#39;View Cart Button&#39;);" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$linkToCartAtMiniCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  551. </div>
  552. </div>
  553. </td>
  554. <td style="display: none" id="trCartSubTotal">
  555. <table class="tblMiniCartSub">
  556. <tr>
  557. <td align="right" style="padding-bottom: 5px; padding-top: 2px">
  558. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
  559. <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
  560. </td>
  561. </tr>
  562. <tr>
  563. <td align="right" style="padding-bottom: 5px">
  564. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
  565. </td>
  566. </tr>
  567. <tr>
  568. <td align="left" style="padding-bottom: 5px">
  569. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
  570. </td>
  571. </tr>
  572. <tr>
  573. <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
  574. <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack(&#39;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune&#39;,&#39;&#39;)" style="color:White;text-decoration:none;">继续购物</a>
  575. <a onclick="return MiniCart.SendToCartPage(&#39;Add to Cart Modal&#39;,&#39;View Cart&#39;);" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  576. </td>
  577. </tr>
  578. </table>
  579. <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
  580. </td>
  581. </tr>
  582. <tr id="trHideModalCheckBox" style="display: none">
  583. <td colspan="2">
  584. <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
  585. </td>
  586. </tr>
  587. </table>
  588. <script type="text/javascript">
  589. $(document).ready(function () {
  590. MiniCart.source = 'refine';
  591. });
  592. </script>
  593. </div>
  594. <script type="text/javascript">
  595. function OpenCurrencyPopup() {
  596. $("#tblink").trigger('click');
  597. }
  598. function CloseCurrencyPopup() {
  599. var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
  600. var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
  601. if (ddlCurrency != null && hidCurrencyValue != null) {
  602. ddlCurrency.selectedIndex = hidCurrencyValue.value;
  603. }
  604. window.location.reload();
  605. }
  606. </script>
  607. </div>
  608. </div>
  609. <div id="wideHeader" class="wideHeader">
  610. <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
  611. <div id="search" class="row">
  612. <div id="logo" class='col-xs-4'>
  613. <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
  614. </div>
  615. <div id="search-block" class="col-xs-4">
  616. <div id="search-title">
  617. 物料编号/关键字
  618. </div>
  619. <div id="search-bar">
  620. <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_NavHeader_btn1&#39;)">
  621. <div id="searchPartNumberBox" class="search-box inline-block">
  622. <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
  623. <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
  624. </div>
  625. <div class="inline-block">
  626. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
  627. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
  628. </div>
  629. </div>
  630. </div>
  631. </div>
  632. <div id="account" class="col-xs-4 align-right">
  633. <ul>
  634. <li>
  635. </li>
  636. <li>
  637. <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwvrCtTdiClrDQoQcVgE2dL3UQRI8fgQtubVyAmiUatLj3Z%252bIy800Lr%252bCG2JavGwNmI%3d">登录</a>
  638. </li>
  639. <li>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  643. </li>
  644. <li>
  645. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  646. </li>
  647. <li>
  648. <!-- Mush:TBC -->
  649. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  650. </li>
  651. </ul>
  652. </div>
  653. </div>
  654. <div id="navArea" class="row">
  655. <div class="col-xs-12">
  656. <div id="navMain" class="inline-block">
  657. <div class="navbar">
  658. <ul class="topnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  661. <ul class="subnav" id="subnav">
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  670. </li>
  671. <li>
  672. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  673. </li>
  674. </ul>
  675. </li>
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  678. <ul class="subnav" id="subnav">
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  687. </li>
  688. <li>
  689. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  690. </li>
  691. </ul>
  692. </li>
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  695. <ul class="subnav" id="subnav">
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  725. </li>
  726. <li>
  727. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  728. </li>
  729. </ul>
  730. </li>
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  733. <ul class="subnav" id="subnav">
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  760. </li>
  761. <li>
  762. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  763. </li>
  764. </ul>
  765. </li>
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  768. <ul class="subnav" id="subnav">
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  777. </li>
  778. <li>
  779. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  780. </li>
  781. </ul>
  782. </li>
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  785. <ul class="subnav" id="subnav">
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  797. </li>
  798. <li>
  799. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  800. </li>
  801. </ul>
  802. </li>
  803. </ul>
  804. </div>
  805. </div>
  806. <div class="onlineCatalog inline-block">
  807. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  808. </div>
  809. </div>
  810. </div>
  811. </div>
  812. <div style="visibility: hidden; height: 0px;">
  813. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  814. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  815. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  816. </div>
  817. <script type="text/javascript">
  818. $(document).ready(function () {
  819. //* change to html5 catalog if javascript is enabled *
  820. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  821. });
  822. </script>
  823. <script type="text/javascript" src='../../../../javascript/genLib.js'></script>
  824. </div>
  825. <div id="ctl00_divWide" class="divWide">
  826. <link rel="stylesheet" type="text/css" href='../../../../css/fontawesome/css/font-awesome.min.css' />
  827. <br />
  828. <strong></strong>
  829. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  830. <strong>></strong>
  831. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-5gg1/" style="font-size: 9pt; font-weight: bold;">工具与供应</a>
  832. <strong>></strong>
  833. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">化学物质</a>
  834. <hr />
  835. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  836. <div class="categorySearchLimits">
  837. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  838. </div>
  839. </div>
  840. </div>
  841. <table border="0" width="100%">
  842. <tr>
  843. <td>
  844. <div id="ctl00_ContentMain_pnl3">
  845. <div id="category-top" class="category-content">
  846. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> 化学物质</h1></a>
  847. <!--Marketing Content-->
  848. <div id="ctl00_ContentMain_refinemfglogo">
  849. </div>
  850. </div><!--.category-content-->
  851. </div>
  852. </td>
  853. </tr>
  854. <tr>
  855. <td>
  856. </td>
  857. </tr>
  858. <tr>
  859. <td>
  860. <div id="refine-page2">
  861. </div>
  862. </td>
  863. </tr>
  864. </table>
  865. <div id="ctl00_ContentMain_divTabs" class="row">
  866. <div class="col-xs-12">
  867. <div id="tabsNavigation" >
  868. <ul>
  869. <li id="ctl00_ContentMain_liProductsTab" class="active">
  870. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(906)</span></a>
  871. </li>
  872. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  873. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Chemicals&#39;);" href="../../Datasheets/_/N-wp63">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(286)</span></a>
  874. </li>
  875. <li id="ctl00_ContentMain_liImagesTab" class="">
  876. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Chemicals&#39;);" href="../../Images/_/N-wp63">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(463)</span></a>
  877. </li>
  878. <li id="ctl00_ContentMain_liNewestTab" class="disabled">
  879. <a id="ctl00_ContentMain_liNewestProdLink" class="aspNetDisabled">最新产品</a>
  880. </li>
  881. </ul>
  882. </div>
  883. </div>
  884. </div>
  885. <div id="tabDivs" class="tab-divs">
  886. <script type="text/javascript">
  887. //<![CDATA[
  888. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  889. //]]>
  890. </script>
  891. <div id="ctl00_ContentMain_liProducts">
  892. <div id="refineSearchDiv">
  893. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  894. <div id="refine-keyword-search-2">
  895. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  896. <div id="boxPartSearch2">
  897. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  898. <tr>
  899. <td rowspan="3" style="vertical-align: middle">
  900. <div id="searchPartNumberBox" class="search-box" >
  901. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  902. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  903. </div>
  904. </td>
  905. </tr>
  906. <tr>
  907. <td class="chk-Search">
  908. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  909. </td>
  910. </tr>
  911. <tr>
  912. <td class="chk-Search">
  913. <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>
  914. </td>
  915. </tr>
  916. </table>
  917. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  918. </div>
  919. <script type="text/javascript" src='../../../../flash/js/Placeholders.min.js'></script>
  920. <script type="text/javascript" src='../../../../flash/js/watermark.js'></script>
  921. </div>
  922. </div>
  923. <div id="refine-mfg-select-2">
  924. </div>
  925. <div class="clear">
  926. </div>
  927. <table class="SearchParametricTable2">
  928. <tr>
  929. <td>
  930. <div id="AttributesDiv2">
  931. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  932. <div class="categorySearchLimits">
  933. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  934. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<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(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx1525611|Chemicals&#39;).checked = false;" /></span>&nbsp;<b>工具与供应</b>&nbsp;&#62;&nbsp;<span title="化学物质"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx1525611|Chemicals" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx1525611|Chemicals" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254593|Tools &amp; Supplies&#39;).checked = true;" /></span>&nbsp;<b>化学物质</b>
  935. </div>
  936. </div>
  937. <hr/>
  938. </div>
  939. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  940. <p class="applied-filter-lbl">
  941. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  942. <span id="ctl00_ContentMain_uc5_lblreccount">906 匹配</span>
  943. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  944. </p>
  945. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  946. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  947. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  948. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../images/icon_tooltip.png" />
  949. <br />
  950. </div>
  951. </div>
  952. <table id="tb1" style="width: 100%;">
  953. <tr>
  954. <td>
  955. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  956. <tr>
  957. <td>
  958. <table cellpadding="0" cellspacing="0">
  959. <tr>
  960. <td>
  961. <table>
  962. <tr>
  963. <td>
  964. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  965. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  966. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  967. of parametric ids sent on the query string after the seo url is generated and redirected to.
  968. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  969. sorted parametric attributes from an endeca attribute group --->
  970. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  971. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  972. </div>
  973. </td>
  974. </tr>
  975. <tr>
  976. <td>
  977. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  978. <option value="4294764013">3M</option>
  979. <option value="4294760160">Aavid Thermalloy</option>
  980. <option value="4294759019">Chemtronics</option>
  981. <option value="4294758686">Desco</option>
  982. <option value="4294758801">Laird Technologies</option>
  983. <option value="4294758685">Menda</option>
  984. <option value="4294758846">MG Chemicals</option>
  985. <option value="4294759208">Molex</option>
  986. <option value="4294758830">Panduit</option>
  987. <option value="4294759378">Phoenix Contact</option>
  988. <option value="4294758867">Plato</option>
  989. <option value="4281768760">SCS</option>
  990. <option value="4294763565">SERPAC</option>
  991. <option value="4292733690">TE Connectivity</option>
  992. <option value="4294758570">Techspray</option>
  993. <option value="4294758572">Wakefield</option>
  994. </select>
  995. </td>
  996. </tr>
  997. <tr>
  998. <td>
  999. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1000. </td>
  1001. </tr>
  1002. </table>
  1003. </td>
  1004. <td valign="bottom" style="width: 15px;">
  1005. &nbsp;
  1006. </td>
  1007. </tr>
  1008. </table>
  1009. </td><td>
  1010. <table cellpadding="0" cellspacing="0">
  1011. <tr>
  1012. <td>
  1013. <table>
  1014. <tr>
  1015. <td>
  1016. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">产品</span>
  1017. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1018. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1019. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1020. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1021. sorted parametric attributes from an endeca attribute group --->
  1022. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1023. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688640" />
  1024. </div>
  1025. </td>
  1026. </tr>
  1027. <tr>
  1028. <td>
  1029. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688640">
  1030. <option value="4294660638">Adhesives</option>
  1031. <option value="4292983403">Application Tools</option>
  1032. <option value="4292990555">Brushes</option>
  1033. <option value="4294660274">Cleaners &amp; Degreasers</option>
  1034. <option value="4294660629">Coating Products</option>
  1035. <option value="4291791530">Desiccants</option>
  1036. <option value="4294660647">Dispensers</option>
  1037. <option value="4292983359">Dusters</option>
  1038. <option value="4294659087">Epoxy Compounds</option>
  1039. <option value="4292983353">Freeze Sprays</option>
  1040. <option value="4294660563">Greases &amp; Lubricants</option>
  1041. <option value="4290734894">Industrial Chemicals</option>
  1042. <option value="4291791634">Lotions</option>
  1043. <option value="4292983357">Prototyping/Board Repair</option>
  1044. <option value="4292874556">Sealants</option>
  1045. <option value="4292983354">Silicones</option>
  1046. <option value="4292983356">Solder Masks</option>
  1047. <option value="4292983355">Sponges</option>
  1048. <option value="4291791643">Sprays</option>
  1049. <option value="4291791636">Surface Cleaners</option>
  1050. <option value="4292983358">Swabs</option>
  1051. <option value="4292983360">Thermal Management</option>
  1052. <option value="4292983361">Wipes</option>
  1053. </select>
  1054. </td>
  1055. </tr>
  1056. <tr>
  1057. <td>
  1058. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1059. </td>
  1060. </tr>
  1061. </table>
  1062. </td>
  1063. <td valign="bottom" style="width: 15px;">
  1064. &nbsp;
  1065. </td>
  1066. </tr>
  1067. </table>
  1068. </td><td>
  1069. <table cellpadding="0" cellspacing="0">
  1070. <tr>
  1071. <td>
  1072. <table>
  1073. <tr>
  1074. <td>
  1075. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">类型</span>
  1076. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1077. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1078. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1079. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1080. sorted parametric attributes from an endeca attribute group --->
  1081. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1082. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="688755" />
  1083. </div>
  1084. </td>
  1085. </tr>
  1086. <tr>
  1087. <td>
  1088. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688755" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_688755">
  1089. <option value="4284358519">1 Part Adhesive Sealant</option>
  1090. <option value="4284358487">2 Part Non-Urethane Encapsulating Compound</option>
  1091. <option value="4284358521">2 Part Potting/Encapsulating Compound</option>
  1092. <option value="4292478596">Acrylic Adhesive</option>
  1093. <option value="4292487327">Acrylic Conformal Coating</option>
  1094. <option value="4292487397">Acrylic Lacquer Conformal Coating</option>
  1095. <option value="4292562680">Adhesive</option>
  1096. <option value="4290734890">Aerosol</option>
  1097. <option value="4292487377">Ammonium Persulphate</option>
  1098. <option value="4291791641">Anit-Static, Monitor, Keyboard</option>
  1099. <option value="4292039316">Anti-Static</option>
  1100. <option value="4284358510">Anti-Static Foam over Cotton Swab</option>
  1101. <option value="4292487470">Anti-Static Wipe</option>
  1102. <option value="4291791642">Anti-Static, Coating</option>
  1103. <option value="4291791638">Anti-Static, Freezer</option>
  1104. <option value="4291791633">Anti-Static, Hand</option>
  1105. <option value="4291791582">Anti-Static, Spray Bottle</option>
  1106. <option value="4292585468">Applicator</option>
  1107. <option value="4292487489">Asahiklin</option>
  1108. <option value="4284358515">Audio/Video Head Cleaner</option>
  1109. <option value="4292487505">Blue Shower</option>
  1110. <option value="4292478544">Canned Air Cleaning Kit</option>
  1111. <option value="4292478506">Carbon Conductive Assembly Paste</option>
  1112. <option value="4292487386">Carbon Conductive Grease</option>
  1113. <option value="4292487409">Chrome Plated Trigger Valve</option>
  1114. <option value="4292487444">Chrome Trigger Valve</option>
  1115. <option value="4284358587">Cleaner</option>
  1116. <option value="4284322309">Cleaner/Degreaser</option>
  1117. <option value="4291791421">Cleaning</option>
  1118. <option value="4284358501">Cleanroom Wipe</option>
  1119. <option value="4292478622">Conductive Adhesive</option>
  1120. <option value="4292487442">Conductive Pen</option>
  1121. <option value="4292487475">Conformal Coating Remover</option>
  1122. <option value="4292487399">Connector Coating</option>
  1123. <option value="4284358475">Consumable</option>
  1124. <option value="4292487485">Contact Cleaner</option>
  1125. <option value="4284358504">Contact Cleaner with Silicone</option>
  1126. <option value="4284358597">Cotton Swab</option>
  1127. <option value="4292487421">Developer</option>
  1128. <option value="4291842212">Double Headed</option>
  1129. <option value="4284358520">Double Headed Cotton Swab</option>
  1130. <option value="4292487510">Duster</option>
  1131. <option value="4292487507">EcoLine Cleaner/Degreaser</option>
  1132. <option value="4292487514">EcoLine Contact Cleaner</option>
  1133. <option value="4292487502">Economy Adhesive</option>
  1134. <option value="4292478590">Electrical Coating</option>
  1135. <option value="4292478581">Electronic Degreaser</option>
  1136. <option value="4292487393">Electrosolve Contact Cleaner</option>
  1137. <option value="4292487419">Encapsulating and Potting Compound</option>
  1138. <option value="4292487415">Epoxy and Adhesive Cleaner</option>
  1139. <option value="4292478546">Epoxy Applicator</option>
  1140. <option value="4292478643">Epoxy Compound</option>
  1141. <option value="4292478583">Epoxy Mounting Kit with 3 Mounts</option>
  1142. <option value="4292487379">Fast Set Epoxy</option>
  1143. <option value="4292487430">Ferric Chloride</option>
  1144. <option value="4294432717">Fiber Optic</option>
  1145. <option value="4284358595">Fine-L-Kote</option>
  1146. <option value="4292754869">Floor Cleaner</option>
  1147. <option value="4292751608">Flux Remover</option>
  1148. <option value="4292487451">Freezer</option>
  1149. <option value="4292487331">Glass and Surface Cleaner</option>
  1150. <option value="4292487492">Glass Cleaner</option>
  1151. <option value="4292478820">Grease</option>
  1152. <option value="4292487326">Ground Carbon Conductive Coating</option>
  1153. <option value="4292487355">Heat Sealed Poly-Wipes 150 Wipes</option>
  1154. <option value="4284358560">Heavy Duty Adhesive</option>
  1155. <option value="4292487370">HFE Solvent</option>
  1156. <option value="4292487526">HFE Super Cleaner Degreaser</option>
  1157. <option value="4292487344">High Temperature Epoxy Encapsulating and Potting Compound</option>
  1158. <option value="4292478632">Hog Hair Cleaning Brush</option>
  1159. <option value="4292487372">Horse Hair Cleaning Brush</option>
  1160. <option value="4292478830">Hot Melt Adhesive</option>
  1161. <option value="4284358493">Hot Melt Termination Kit</option>
  1162. <option value="4284358465">Industrial Plastic Adhesive</option>
  1163. <option value="4292478599">Instant Adhesive</option>
  1164. <option value="4292487487">Isopropyl Alcohol</option>
  1165. <option value="4292478612">Jet Melt Adhesive</option>
  1166. <option value="4292487515">Label and Adhesive Remover</option>
  1167. <option value="4284358485">Liquid Dispenser and Sleeve</option>
  1168. <option value="4292487390">Lithium Grease</option>
  1169. <option value="4292478563">Maintenance Aerosol Cleaner</option>
  1170. <option value="4292478523">Marine Sealant</option>
  1171. <option value="4284358590">Mat and Table Top Cleaner</option>
  1172. <option value="4292487398">Nickel Print</option>
  1173. <option value="4292487449">No Clean Flux Remover</option>
  1174. <option value="4284358476">Non-Consumable</option>
  1175. <option value="4292487407">Nutrol Control Cleaner</option>
  1176. <option value="4284358513">Opti-Wipe</option>
  1177. <option value="4292487334">Optical Wipe</option>
  1178. <option value="4292487506">Overcoat Pen - Green</option>
  1179. <option value="4291791441">Paper Pouch</option>
  1180. <option value="4284358594">Peelable Solder Mask</option>
  1181. <option value="4292478515">Penetrating Oil</option>
  1182. <option value="4291791458">Plastic Pouch</option>
  1183. <option value="4292478534">Plastic Safe Cleaner</option>
  1184. <option value="4284358498">Poly-Wipe, 150 Wipes</option>
  1185. <option value="4292487335">Polyester Tape</option>
  1186. <option value="4284358478">Presaturated Wipe</option>
  1187. <option value="4292487423">Projection Tube Coolant</option>
  1188. <option value="4292487403">Rectangular Foam Swab</option>
  1189. <option value="4292487405">Red Insulating Varnish</option>
  1190. <option value="4284358506">RTV Silicone and Accessories</option>
  1191. <option value="4292478511">Rubber Cleaner</option>
  1192. <option value="4292487494">Rubber Rejuvenator/Platen Cleaner</option>
  1193. <option value="4292487381">Safety Wash Cleaner Degreaser</option>
  1194. <option value="4292487341">Scotch-Weld</option>
  1195. <option value="4292487337">Scotch-Weld Epoxy Adhesive</option>
  1196. <option value="4284358489">Seal Polyester Swab</option>
  1197. <option value="4291861776">Silicone</option>
  1198. <option value="4284358601">Silicone Compound</option>
  1199. <option value="4292487328">Silicone Conformal Coating</option>
  1200. <option value="4292487471">Silicone Free Heat Sink Compound</option>
  1201. <option value="4284358598">Silicone Grease</option>
  1202. <option value="4284358505">Silicone Heat Transfer Compound</option>
  1203. <option value="4284358512">Silicone Primer Guide</option>
  1204. <option value="4292487375">Silver Coated Copper Conductive Coating</option>
  1205. <option value="4292487391">Silver Conductive Epoxy</option>
  1206. <option value="4292487351">Silver Conductive Grease</option>
  1207. <option value="4292487360">Silver Cunductive Pen</option>
  1208. <option value="4292487410">Silver Print</option>
  1209. <option value="4290734900">Single Headed</option>
  1210. <option value="4292487467">SMT Oven Cleaner</option>
  1211. <option value="4292487518">SMT Stencil Cleaner</option>
  1212. <option value="4284322302">SMT Stencil Wipe</option>
  1213. <option value="4292559995">Soder-Wick No Clean SD</option>
  1214. <option value="4292487353">Speaker Service Cement</option>
  1215. <option value="4292478529">Sponge</option>
  1216. <option value="4292478531">Sponge with Multiple Holes</option>
  1217. <option value="4284358508">Stainless Steel Cleaning Brush</option>
  1218. <option value="4292487464">Static Dissipative Floor Coating</option>
  1219. <option value="4292487400">Super Cold 134A</option>
  1220. <option value="4292487401">Super Contact Cement</option>
  1221. <option value="4292487383">Super Contact Cleaner</option>
  1222. <option value="4292487412">Super Corona Dope</option>
  1223. <option value="4292487385">Super Cyanoacrylate Adhesive Gel</option>
  1224. <option value="4292487422">Super Cyanoacrylate Adhesive Liquid</option>
  1225. <option value="4292487368">Super Duster</option>
  1226. <option value="4292487396">Super Duster 134A</option>
  1227. <option value="4292487371">Super Duster Refill</option>
  1228. <option value="4292478502">Super Shield Coating</option>
  1229. <option value="4292487429">Super Shield Conductive Coating</option>
  1230. <option value="4292487362">Tapered Cotton Swab</option>
  1231. <option value="4292487463">Tech Hold</option>
  1232. <option value="4284358582">TechClean Absorbwipe</option>
  1233. <option value="4284358562">TechClean Purwipe</option>
  1234. <option value="4284358584">TechClean SMT Blue Wipe</option>
  1235. <option value="4284358580">TechClean SMT Wipe</option>
  1236. <option value="4284358555">TechClean Twillwipe</option>
  1237. <option value="4292487458">TechClean Wiper</option>
  1238. <option value="4292487525">TechRoll Ultra</option>
  1239. <option value="4284358593">TechSwab</option>
  1240. <option value="4284358565">Thermal Adhesive</option>
  1241. <option value="4292977975">Thermal Grease</option>
  1242. <option value="4292478575">Thermal Interface Compound</option>
  1243. <option value="4292487392">Thermally Conductive Epoxy</option>
  1244. <option value="4292487434">Thinner/Cleaner</option>
  1245. <option value="4284358511">Threadlocker</option>
  1246. <option value="4292487484">Transistor Silicone Grease</option>
  1247. <option value="4292478617">Urethane Adhesive</option>
  1248. <option value="4284322287">Urethane Conformal Coating</option>
  1249. <option value="4292487512">Vortax Duster</option>
  1250. </select>
  1251. </td>
  1252. </tr>
  1253. <tr>
  1254. <td>
  1255. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1256. </td>
  1257. </tr>
  1258. </table>
  1259. </td>
  1260. <td valign="bottom" style="width: 15px;">
  1261. &nbsp;
  1262. </td>
  1263. </tr>
  1264. </table>
  1265. </td><td>
  1266. <table cellpadding="0" cellspacing="0">
  1267. <tr>
  1268. <td>
  1269. <table>
  1270. <tr>
  1271. <td>
  1272. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">大小</span>
  1273. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1274. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1275. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1276. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1277. sorted parametric attributes from an endeca attribute group --->
  1278. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1279. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="688700" />
  1280. </div>
  1281. </td>
  1282. </tr>
  1283. <tr>
  1284. <td>
  1285. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688700" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_688700">
  1286. <option value="4294583123">1 pint</option>
  1287. <option value="4292817689">1/2 unit</option>
  1288. <option value="4292817696">2 unit</option>
  1289. <option value="4294583461">1.25 mm</option>
  1290. <option value="4294014911">0.06 in</option>
  1291. <option value="4294583511">2.5 mm</option>
  1292. <option value="4294583050">3 mm</option>
  1293. <option value="4294015849">1/8 in</option>
  1294. <option value="4294015852">3/16 in</option>
  1295. <option value="4294030879">4.89 mL</option>
  1296. <option value="4294030889">5 mL</option>
  1297. <option value="4289519437">5.1 mL</option>
  1298. <option value="4289525318">5.3 mm</option>
  1299. <option value="4292478547">5.4 mm</option>
  1300. <option value="4292993956">6 mm</option>
  1301. <option value="4294015780">1/4 in</option>
  1302. <option value="4292736389">1/4 in x 3/8 in</option>
  1303. <option value="4292736400">5/16 in</option>
  1304. <option value="4294015829">3/8 in</option>
  1305. <option value="4292736390">0.39 in x 0.13 in</option>
  1306. <option value="4294030887">10 mL</option>
  1307. <option value="4292736382">0.4 in x 0.14 in</option>
  1308. <option value="4292736385">0.4 in x 0.23 in</option>
  1309. <option value="4294015845">7/16 in</option>
  1310. <option value="4292736391">0.48 in x 0.12 in</option>
  1311. <option value="4294015846">1/2 in</option>
  1312. <option value="4292478613">15.87 mm x 203.2 mm</option>
  1313. <option value="4292478620">15.87 mm x 50.8 mm</option>
  1314. <option value="4294015657">5/8 in x 2 in</option>
  1315. <option value="4292478831">5/8 in x 8 in</option>
  1316. <option value="4292736384">0.75 in x 0.21 in</option>
  1317. <option value="4289519465">3/4 in x 0.02 x 100 ft</option>
  1318. <option value="4289519480">3/4 in x 0.04 x 100 ft</option>
  1319. <option value="4292736380">0.78 in x 0.16 in</option>
  1320. <option value="4292738819">1 in x 3 in</option>
  1321. <option value="4292736379">1.08 in x 0.14 in</option>
  1322. <option value="4292736383">30.5 mm x 33 cm</option>
  1323. <option value="4292478509">37 ml</option>
  1324. <option value="4290698832">38 mm x 54 mm</option>
  1325. <option value="4291729037">1.5 in x 60 in</option>
  1326. <option value="4292738823">50 mL</option>
  1327. <option value="4285580443">50 mL, 12/Case</option>
  1328. <option value="4292708879">54 mm x 54 mm</option>
  1329. <option value="4292708877">54 mm x 64 mm</option>
  1330. <option value="4292687830">55 mL</option>
  1331. <option value="4292478532">55 mm x 70 mm</option>
  1332. <option value="4292708882">57 mm x 70 mm</option>
  1333. <option value="4292736355">2.25 in x 3.5 in</option>
  1334. <option value="4292708889">60 mm x 79 mm</option>
  1335. <option value="4292708872">60 mm x 89 mm</option>
  1336. <option value="4292478530">64 mm x 83 mm</option>
  1337. <option value="4289519499">2.7 in</option>
  1338. <option value="4292736366">2.7 in x 2.7 in</option>
  1339. <option value="4292736373">2.7 in x 4.5 in</option>
  1340. <option value="4292708887">76 mm x 114 mm</option>
  1341. <option value="4292850346">3 in x 4 in - 50</option>
  1342. <option value="4292708875">76.2 mm x 114.3 mm</option>
  1343. <option value="4289519506">3.15 in</option>
  1344. <option value="4292736358">8 cm x 10.5 cm</option>
  1345. <option value="4289519497">3.2 in</option>
  1346. <option value="4294030872">85 mL</option>
  1347. <option value="4292736364">3.5 in x 4.5 in</option>
  1348. <option value="4292478604">90 ml</option>
  1349. <option value="4292771507">95.25 mm x 95.25 mm</option>
  1350. <option value="4290698856">100 mm x 1.52 m</option>
  1351. <option value="4294583124">101.6 mm x 101.6 mm</option>
  1352. <option value="4292478588">101.6 mm x 209.55 mm</option>
  1353. <option value="4294015742">4 in x 4 in - 100</option>
  1354. <option value="4289525330">4 in x 8 in</option>
  1355. <option value="4292736377">4.4 in x 8.4 in</option>
  1356. <option value="4292708866">114 mm x 216 mm</option>
  1357. <option value="4292708895">114 mm x 269 mm</option>
  1358. <option value="4292708857">114 mm x 279 mm</option>
  1359. <option value="4292736368">12 cm x 12 cm</option>
  1360. <option value="4292736354">12 cm x 20 cm</option>
  1361. <option value="4292708893">127 mm x 114 mm</option>
  1362. <option value="4292708868">127 mm x 159 mm</option>
  1363. <option value="4290698794">127 mm x 203 mm</option>
  1364. <option value="4294015862">5 in</option>
  1365. <option value="4292736376">5 in x 6 in</option>
  1366. <option value="4292898410">6 in</option>
  1367. <option value="4294015775">6 in x 6 in - 100</option>
  1368. <option value="4292736394">6 in x 7 in</option>
  1369. <option value="4292856844">6 in x 8 in</option>
  1370. <option value="4289519511">7.75 in</option>
  1371. <option value="4294582911">200 ml</option>
  1372. <option value="4289525357">8 in x 0.62 in</option>
  1373. <option value="4292736362">8.5 in x 17 in</option>
  1374. <option value="4289519440">225 mL</option>
  1375. <option value="4294583110">228.6 mm x 228.6 mm</option>
  1376. <option value="4292736403">9 in X 9 in</option>
  1377. <option value="4294015815">9 in x 9 in - 100</option>
  1378. <option value="4294015813">9 in x 9 in - 150</option>
  1379. <option value="4294015783">9 in x 9 in - 300</option>
  1380. <option value="4294015840">9 in x 9 in - 50</option>
  1381. <option value="4290698855">236 mL</option>
  1382. <option value="4292736372">10.5 in x 12.25 in</option>
  1383. <option value="4292478602">292 ml</option>
  1384. <option value="4292736370">11.8 in x 11.8 in</option>
  1385. <option value="4294030869">300 mL</option>
  1386. <option value="4292857723">12 in</option>
  1387. <option value="4292736369">12 in x 12 in</option>
  1388. <option value="4294030871">450 mL</option>
  1389. <option value="4289525352">659 mL</option>
  1390. <option value="4294030873">900 mL</option>
  1391. <option value="4292736399">1 3/8 in</option>
  1392. <option value="4292736386">1 3/8 in x 7/16 in</option>
  1393. <option value="4294015688">1 g</option>
  1394. <option value="4294583047">1 L</option>
  1395. <option value="4294583497">1 qt</option>
  1396. <option value="4292736381">101.6 cm x 101.6 cm</option>
  1397. <option value="4289525349">0.07 oz</option>
  1398. <option value="4292736387">228.6 cm x 228.6 cm</option>
  1399. <option value="4294015798">0.1 oz</option>
  1400. <option value="4289525362">3 cc</option>
  1401. <option value="4294015768">3 g</option>
  1402. <option value="4294583115">3 L</option>
  1403. <option value="4292788183">4 g</option>
  1404. <option value="4294583113">4 L</option>
  1405. <option value="4294015800">0.2 oz</option>
  1406. <option value="4290698882">0.23 oz</option>
  1407. <option value="4294015441">0.25 oz</option>
  1408. <option value="4292884438">8 g</option>
  1409. <option value="4294015758">0.3 oz</option>
  1410. <option value="4294015755">0.34 oz</option>
  1411. <option value="4294015709">0.35 oz</option>
  1412. <option value="4292478627">10 g</option>
  1413. <option value="4290698868">0.39 oz</option>
  1414. <option value="4289519449">0.48 oz</option>
  1415. <option value="4289519445">0.66 oz</option>
  1416. <option value="4294583114">20 L</option>
  1417. <option value="4294015811">0.75 oz</option>
  1418. <option value="4294015793">1 oz</option>
  1419. <option value="4294015656">1.07 oz</option>
  1420. <option value="4292478559">1.25 oz</option>
  1421. <option value="4294583098">40 L</option>
  1422. <option value="4292478518">1.45 oz</option>
  1423. <option value="4292478597">1.6 oz</option>
  1424. <option value="4294015744">47.5 g</option>
  1425. <option value="4294015628">1.7 oz</option>
  1426. <option value="4292755093">50 ct</option>
  1427. <option value="4294583074">50 L</option>
  1428. <option value="4294583451">50 Wipes</option>
  1429. <option value="4294015853">2 oz</option>
  1430. <option value="4294583099">60 L</option>
  1431. <option value="4294015810">2.8 oz</option>
  1432. <option value="4294015818">3 oz</option>
  1433. <option value="4280257024">0.09 kg</option>
  1434. <option value="4294015842">3.5 oz</option>
  1435. <option value="4294583464">100</option>
  1436. <option value="4294583500">100 Wipes</option>
  1437. <option value="4294015825">4 oz</option>
  1438. <option value="4292478512">4.2 oz</option>
  1439. <option value="4294015838">4.5 oz</option>
  1440. <option value="4294015820">5 oz</option>
  1441. <option value="4294015806">6 oz</option>
  1442. <option value="4292861106">6.8 oz</option>
  1443. <option value="4292865708">200 Wipes</option>
  1444. <option value="4294015851">8 oz</option>
  1445. <option value="4294015819">8.8 oz</option>
  1446. <option value="4294015857">10 oz</option>
  1447. <option value="4294015794">10.1 oz</option>
  1448. <option value="4294015750">10.5 oz</option>
  1449. <option value="4294015801">11 oz</option>
  1450. <option value="4292687829">340 g</option>
  1451. <option value="4294015856">12 oz</option>
  1452. <option value="4294015786">13 oz</option>
  1453. <option value="4294015817">14 oz</option>
  1454. <option value="4294015832">15 oz</option>
  1455. <option value="4294015777">1 lb</option>
  1456. <option value="4294015843">16 oz</option>
  1457. <option value="4294015812">17 oz</option>
  1458. <option value="4294015834">18 oz</option>
  1459. <option value="4294015808">18.54 oz</option>
  1460. <option value="4292478615">20 oz</option>
  1461. <option value="4292478564">24 oz</option>
  1462. <option value="4292478524">30 oz</option>
  1463. <option value="4294015809">33 oz</option>
  1464. <option value="4294015762">35 oz</option>
  1465. <option value="4292736393">2.2 lbs</option>
  1466. <option value="4294015756">2.5 lbs</option>
  1467. <option value="4292478637">5 lb</option>
  1468. <option value="4294015751">9.5 lbs</option>
  1469. <option value="4294015850">50 lbs</option>
  1470. <option value="4294015789">55 lbs</option>
  1471. <option value="4294015839">585 lbs</option>
  1472. <option value="4294015835">600 lbs</option>
  1473. <option value="4294015841">660 lbs</option>
  1474. <option value="4294583524">1 gal</option>
  1475. <option value="4294583506">5 gal</option>
  1476. <option value="4294583507">54 gal</option>
  1477. <option value="4289510248">-</option>
  1478. <option value="4294660646">Bottle</option>
  1479. <option value="4294661489">Bulk Pack of 6</option>
  1480. <option value="4294661444">Kit</option>
  1481. </select>
  1482. </td>
  1483. </tr>
  1484. <tr>
  1485. <td>
  1486. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1487. </td>
  1488. </tr>
  1489. </table>
  1490. </td>
  1491. <td valign="bottom" style="width: 15px;">
  1492. &nbsp;
  1493. </td>
  1494. </tr>
  1495. </table>
  1496. </td><td>
  1497. <table cellpadding="0" cellspacing="0">
  1498. <tr>
  1499. <td>
  1500. <table>
  1501. <tr>
  1502. <td>
  1503. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">外壳</span>
  1504. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1505. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1506. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1507. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1508. sorted parametric attributes from an endeca attribute group --->
  1509. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1510. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="688359" />
  1511. </div>
  1512. </td>
  1513. </tr>
  1514. <tr>
  1515. <td>
  1516. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$688359" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_688359">
  1517. <option value="4292856846">100 Pack</option>
  1518. <option value="4292856836">300 Pack</option>
  1519. <option value="4284358490">500 Pack</option>
  1520. <option value="4292736363">1 Unit per Case</option>
  1521. <option value="4292736374">10 Units per Case</option>
  1522. <option value="4284358558">5 ft Spool</option>
  1523. <option value="4284358448">10 ft Spool</option>
  1524. <option value="4290698862">50 ft Spool</option>
  1525. <option value="4290698871">100 ft Spool</option>
  1526. <option value="4292478829">1.25 oz</option>
  1527. <option value="4292478822">16 oz</option>
  1528. <option value="4292478833">11 lb</option>
  1529. <option value="4289510249">-</option>
  1530. <option value="4294661545">Aerosol</option>
  1531. <option value="4294661541">Bag</option>
  1532. <option value="4294661396">Bar</option>
  1533. <option value="4294661531">Bottle</option>
  1534. <option value="4292865709">Box</option>
  1535. <option value="4292713917">Box, 25 to a Box</option>
  1536. <option value="4294661452">Can</option>
  1537. <option value="4294661432">Carton</option>
  1538. <option value="4289525347">Cartridge</option>
  1539. <option value="4294660457">Case</option>
  1540. <option value="4294661509">Flat</option>
  1541. <option value="4292478609">Foil</option>
  1542. <option value="4294661539">Glass</option>
  1543. <option value="4292478514">Glass Bottle</option>
  1544. <option value="4293990565">Glass Filled Nylon Shaft</option>
  1545. <option value="4294660556">Jar</option>
  1546. <option value="4294661512">Kit</option>
  1547. <option value="4290698836">Metal</option>
  1548. <option value="4294661537">Metal Can</option>
  1549. <option value="4294661442">Metal Pail</option>
  1550. <option value="4292478642">Pack</option>
  1551. <option value="4292771509">Pad</option>
  1552. <option value="4294661504">Pen</option>
  1553. <option value="4294661521">Plastic</option>
  1554. <option value="4294661529">Plastic Bottle</option>
  1555. <option value="4294661449">Plastic Spray Bottle</option>
  1556. <option value="4292478639">Plastic Tube</option>
  1557. <option value="4294661468">Poly Bag</option>
  1558. <option value="4294661527">Pop-Up Container</option>
  1559. <option value="4291214189">Pouch</option>
  1560. <option value="4292771506">Roll</option>
  1561. <option value="4290698869">Spool</option>
  1562. <option value="4294661437">Squeeze Bottle</option>
  1563. <option value="4292736392">Swab</option>
  1564. <option value="4292907296">Syringe</option>
  1565. <option value="4294661461">Tub</option>
  1566. <option value="4294661872">Tube</option>
  1567. <option value="4292478625">Wipe</option>
  1568. </select>
  1569. </td>
  1570. </tr>
  1571. <tr>
  1572. <td>
  1573. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1574. </td>
  1575. </tr>
  1576. </table>
  1577. </td>
  1578. <td valign="bottom" style="width: 15px;">
  1579. &nbsp;
  1580. </td>
  1581. </tr>
  1582. </table>
  1583. </td>
  1584. </tr>
  1585. </table>
  1586. <table class="ApplyFilter">
  1587. <tr>
  1588. <td class="ApplyFilterColumn1">
  1589. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1590. </td>
  1591. <td class="ApplyFilterColumn2">
  1592. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  1593. </td>
  1594. <td class="ApplyFilterColumn2_5">
  1595. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  1596. </td>
  1597. <td class="ApplyFilterColumn3">
  1598. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1599. </td>
  1600. </tr>
  1601. </table>
  1602. </td>
  1603. </tr>
  1604. </table>
  1605. </div>
  1606. </td>
  1607. </tr>
  1608. </table>
  1609. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  1610. height: 70px; display: none; background: white; border: 1px solid #000;'>
  1611. <br />
  1612. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  1613. <br />
  1614. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  1615. <!--Close Window-->
  1616. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  1617. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  1618. </a>&nbsp;&nbsp;</div>
  1619. </div>
  1620. <div id ="VisualAttributePopup" class="hidden" >
  1621. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  1622. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  1623. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  1624. </div>
  1625. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id="loadingimgspinner" src="/Images/spinner2.gif" /></div>
  1626. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  1627. <table id="tblAttributes" >
  1628. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  1629. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  1630. <td class="visualAttributeImage">
  1631. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  1632. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  1633. </td>
  1634. <td>
  1635. <table class="visualAttValueDesc">
  1636. <tr>
  1637. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  1638. </tr>
  1639. <tr>
  1640. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  1641. </tr>
  1642. <tr data-bind="if: ImagePath1 ">
  1643. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs" /></div></td>
  1644. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  1645. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  1646. </tr>
  1647. </table>
  1648. </td>
  1649. </tr>
  1650. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  1651. </tbody>
  1652. </table>
  1653. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id="Img1" src="/Images/spinner2.gif" />
  1654. <div data-bind="if: hasMoreOptions" align="center">
  1655. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  1656. </div>
  1657. </div>
  1658. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  1659. <div class="visualAttributesBtnDiv">
  1660. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnOK" value="确定" onclick="javascript:ClosePopup();" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnOK" class="button" data-bind="visible: attributes().length &lt; 1" />
  1661. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  1662. <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" />
  1663. </div>
  1664. </div>
  1665. <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>
  1666. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1667. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  1668. </div>
  1669. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  1670. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  1671. <script src='../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  1672. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1673. <script type="text/javascript">
  1674. $().ready(function () {
  1675. ko.applyBindings(new DisplayAttributesModel());
  1676. ko.bindingHandlers.hoverToggle = {
  1677. update: function (element, valueAccessor) {
  1678. var css = valueAccessor();
  1679. var isSelected = $(element).hasClass("selectedAttribute");
  1680. if (!isSelected) {
  1681. ko.utils.registerEventHandler(element, "mouseenter", function () {
  1682. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  1683. });
  1684. ko.utils.registerEventHandler(element, "mouseleave", function () {
  1685. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  1686. });
  1687. }
  1688. }
  1689. };
  1690. });
  1691. </script>
  1692. </div>
  1693. <div id="refine-mfg-logo2">
  1694. </div>
  1695. </div>
  1696. <br />
  1697. <table border="0" width="100%">
  1698. <tr>
  1699. <td>
  1700. </td>
  1701. </tr>
  1702. <tr>
  1703. <td>
  1704. <!--- Search Features --->
  1705. </td>
  1706. </tr>
  1707. <tr>
  1708. <td>
  1709. <div id="refine-page">
  1710. </div>
  1711. </td>
  1712. </tr>
  1713. <tr>
  1714. <td class="refine-show-products">
  1715. <span class="redtextb">
  1716. </span> <span class="redtextb">
  1717. </span> <span class="redtextb">
  1718. </span> <span class="redtextb">
  1719. </span>
  1720. <span class="redtextb">
  1721. </span>
  1722. </td>
  1723. </tr>
  1724. <tr>
  1725. <td>
  1726. </td>
  1727. </tr>
  1728. <tr>
  1729. <td>
  1730. <!--- Special Order Parts New --->
  1731. <!-- SOP Section 1 -->
  1732. </td>
  1733. </tr>
  1734. </table>
  1735. <div id="searchResultsTbl">
  1736. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  1737. <tr>
  1738. <td class="tdSearchResultsPagingTop">
  1739. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  1740. <tr>
  1741. <td>
  1742. <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" />
  1743. </td>
  1744. <td>
  1745. <input type="submit" name="ctl00$ContentMain$btn2" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) &amp;&amp; 0 == 0) { alert(&#39;请选择您希望对比的产品。&#39;); return false; };" id="ctl00_ContentMain_btn2" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
  1746. </td>
  1747. <td>
  1748. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  1749. </td>
  1750. <td style="padding-left: 40px;">
  1751. <div class="floatrightpager">
  1752. <span class="bold">
  1753. 页面:
  1754. </span>
  1755. <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>
  1756. </div>
  1757. </td>
  1758. </tr>
  1759. </table>
  1760. </td>
  1761. </tr>
  1762. <tr>
  1763. <td>
  1764. <div>
  1765. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  1766. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  1767. <th class="td-select" scope="col" style="width:35px;">
  1768. 选择
  1769. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  1770. </th><th scope="col">制造商 零件编号
  1771. </th><th scope="col">制造商
  1772. </th><th scope="col">描述
  1773. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../Images/Search/pdf.gif" alt="文件" />
  1774. </th><th scope="col">供货情况
  1775. </th><th scope="col">单价(含17%增值税)
  1776. <br />
  1777. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  1778. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  1779. </th><th class="SearchResultParametricColumnHeading" scope="col">产品
  1780. </th><th class="SearchResultParametricColumnHeading" scope="col">类型
  1781. </th><th class="SearchResultParametricColumnHeading" scope="col">大小
  1782. </th><th class="SearchResultParametricColumnHeading" scope="col">外壳
  1783. </th>
  1784. </tr><tr class="SearchResultsSortCell">
  1785. <td class="td-select" align="center"></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl15&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 Mouser 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl17&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 Mouser 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Ascending&#39;); return false;" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl02_ctl19" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl19&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl21&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl23&#39;,&#39;&#39;)"><img title="按 制造商 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl25&#39;,&#39;&#39;)"><img title="按 制造商 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Default>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl27&#39;,&#39;&#39;)"><img title="按 供货情况 Ascending 排序" src="../../../../Images/Search/btn_ActiveSort_Up.jpg" alt="按 供货情况 Ascending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl29&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 单价(含17%增值税) Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl31&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Product>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl33&#39;,&#39;&#39;)"><img title="按 产品 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 产品 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Product>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl35&#39;,&#39;&#39;)"><img title="按 产品 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 产品 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Type>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl37&#39;,&#39;&#39;)"><img title="按 类型 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 类型 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Type>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl39&#39;,&#39;&#39;)"><img title="按 类型 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 类型 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Size>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl41&#39;,&#39;&#39;)"><img title="按 大小 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 大小 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Size>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl43&#39;,&#39;&#39;)"><img title="按 大小 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 大小 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Container>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl45&#39;,&#39;&#39;)"><img title="按 外壳 Ascending 排序" src="../../../../Images/Search/btn_Sort_Up.gif" alt="按 外壳 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Container>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl47&#39;,&#39;&#39;)"><img title="按 外壳 Descending 排序" src="../../../../Images/Search/btn_Sort_Down.gif" alt="按 外壳 Descending 排序" /></a></td>
  1786. </tr><tr class="SearchResultsRowOdd" data-partnumber="517-DP270BK" data-index="3">
  1787. <td class="td-select" align="center">
  1788. <div style="padding: 5px 5px 0 5px;">
  1789. <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>
  1790. </div>
  1791. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-270.jpg</div></a></td><td>
  1792. <div style="text-align:left;">
  1793. <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 />
  1794. <br />
  1795. <br />
  1796. </div></td><td>
  1797. <div class="mfrDiv">
  1798. <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 />
  1799. <br />
  1800. <div style="width: 100%; text-align: center;">
  1801. </div>
  1802. <div style="width: 100%; text-align: center;">
  1803. </div>
  1804. </div>
  1805. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  1806. </td><td>化学物质 1.7oz ADHESIVE 1 PIECE BLACK
  1807. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1808. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  1809. </div>
  1810. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-DP270BK | DP-270 BLACK&quot;]);" href="http://www.mouser.com/ds/2/1/270-476326.pdf" target="_blank">数据表<br /><br /></a>
  1811. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-0604-8&#39;);return false;" rel="nofollow" href="../../../../Cart/AdditionalProductInfo.aspx?part=5-0604-8" target="_blank">产品信息</a>
  1812. </td><td>
  1813. <table>
  1814. <tr align="center">
  1815. <td style="padding-top: 5px">
  1816. </td>
  1817. </tr>
  1818. <tr align="center">
  1819. <td style="padding-top: 5px; padding-bottom: 5px">
  1820. </td>
  1821. </tr>
  1822. </table></td><td>
  1823. </td><td class="SearchResultsBuyColumn">
  1824. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_pnlRestricted">
  1825. <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>
  1826. </div>
  1827. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  1828. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  1829. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc8Si%2fpt7y7kTA%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc8Si%2fpt7y7kTA%3d%3d" target="_blank">详细信息</a>
  1830. </div>
  1831. </td><td>Adhesives
  1832. </td><td>Epoxy Compound
  1833. </td><td>1.7 oz
  1834. </td><td>Plastic Tube
  1835. </td>
  1836. </tr><tr class="SearchResultsRowEven" data-partnumber="532-251" data-index="4">
  1837. <td class="td-select" align="center">
  1838. <div style="padding: 5px 5px 0 5px;">
  1839. <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>
  1840. </div>
  1841. </td><td></td><td>
  1842. <div style="text-align:left;">
  1843. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Aavid-Thermalloy/251G/?qs=sGAEpiMZZMvJqaFk9BIivzAch6xnqdVzkcxptVzdjX0%3d">532-251</a><br />
  1844. <br />
  1845. <br />
  1846. </div></td><td>
  1847. <div class="mfrDiv">
  1848. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Aavid-Thermalloy/251G/?qs=sGAEpiMZZMvJqaFk9BIivzAch6xnqdVzkcxptVzdjX0%3d">251G</a><br />
  1849. <br />
  1850. <div style="width: 100%; text-align: center;">
  1851. </div>
  1852. <div style="width: 100%; text-align: center;">
  1853. </div>
  1854. </div>
  1855. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../Aavid-Thermalloy">Aavid Thermalloy</a>
  1856. </td><td>化学物质 1lb THERMALCOTE I CAN OPAQUE WHITE
  1857. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1858. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  1859. </div>
  1860. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Aavid Thermalloy&quot;,&quot;532-251 | 251G&quot;]);" href="http://www.aavid.com/product-group/interface/greases/thermalcote" target="_blank">数据表<br /><br /></a>
  1861. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Catalog PDF Click&#39;,&quot;Aavid Thermalloy&quot;,&quot;532-251 | 251G&quot;]);" href="/catalog/English/103/APAC/1844.pdf" target="_blank">页面 1,844</a>
  1862. </td><td>
  1863. <table>
  1864. <tr align="center">
  1865. <td style="padding-top: 5px">
  1866. </td>
  1867. </tr>
  1868. <tr align="center">
  1869. <td style="padding-top: 5px; padding-bottom: 5px">
  1870. </td>
  1871. </tr>
  1872. </table></td><td>
  1873. </td><td class="SearchResultsBuyColumn">
  1874. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_pnlRestricted">
  1875. <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>
  1876. </div>
  1877. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  1878. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1879. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=TwlNQgvrO0QeGds6i%252b0aLg%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=TwlNQgvrO0QeGds6i%252b0aLg%3d%3d" target="_blank">详细信息</a>
  1880. </div>
  1881. </td><td>Thermal Management
  1882. </td><td>
  1883. </td><td>1 lb
  1884. </td><td>Can
  1885. </td>
  1886. </tr><tr class="SearchResultsRowOdd" data-partnumber="532-249" data-index="5">
  1887. <td class="td-select" align="center">
  1888. <div style="padding: 5px 5px 0 5px;">
  1889. <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>
  1890. </div>
  1891. </td><td></td><td>
  1892. <div style="text-align:left;">
  1893. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Aavid-Thermalloy/249G/?qs=sGAEpiMZZMvJqaFk9BIiv4QH%252bcOw0u9jlbkE1zTJkxs%3d">532-249</a><br />
  1894. <br />
  1895. <br />
  1896. </div></td><td>
  1897. <div class="mfrDiv">
  1898. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Aavid-Thermalloy/249G/?qs=sGAEpiMZZMvJqaFk9BIiv4QH%252bcOw0u9jlbkE1zTJkxs%3d">249G</a><br />
  1899. <br />
  1900. <div style="width: 100%; text-align: center;">
  1901. </div>
  1902. <div style="width: 100%; text-align: center;">
  1903. </div>
  1904. </div>
  1905. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../Aavid-Thermalloy">Aavid Thermalloy</a>
  1906. </td><td>化学物质 1oz THERMALCOTE I TUBE OPAQUE WHITE
  1907. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1908. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  1909. </div>
  1910. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Aavid Thermalloy&quot;,&quot;532-249 | 249G&quot;]);" href="http://www.aavid.com/product-group/interface/greases/thermalcote" target="_blank">数据表<br /><br /></a>
  1911. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Catalog PDF Click&#39;,&quot;Aavid Thermalloy&quot;,&quot;532-249 | 249G&quot;]);" href="/catalog/English/103/APAC/1844.pdf" target="_blank">页面 1,844</a>
  1912. </td><td>
  1913. <table>
  1914. <tr align="center">
  1915. <td style="padding-top: 5px">
  1916. </td>
  1917. </tr>
  1918. <tr align="center">
  1919. <td style="padding-top: 5px; padding-bottom: 5px">
  1920. </td>
  1921. </tr>
  1922. </table></td><td>
  1923. </td><td class="SearchResultsBuyColumn">
  1924. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_pnlRestricted">
  1925. <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>
  1926. </div>
  1927. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  1928. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1929. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=6KyxvqLvseT7CBw8vuUqzQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=6KyxvqLvseT7CBw8vuUqzQ%3d%3d" target="_blank">详细信息</a>
  1930. </div>
  1931. </td><td>Thermal Management
  1932. </td><td>Thermal Grease
  1933. </td><td>1 oz
  1934. </td><td>Tube
  1935. </td>
  1936. </tr><tr class="SearchResultsRowEven" data-partnumber="532-250" data-index="6">
  1937. <td class="td-select" align="center">
  1938. <div style="padding: 5px 5px 0 5px;">
  1939. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl06$chkSelect" onclick="javascript:RowSelected(6, this.checked);" /></span>
  1940. </div>
  1941. </td><td></td><td>
  1942. <div style="text-align:left;">
  1943. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Aavid-Thermalloy/250G/?qs=sGAEpiMZZMvJqaFk9BIivzAch6xnqdVzG%2flCrvPJBv0%3d">532-250</a><br />
  1944. <br />
  1945. <br />
  1946. </div></td><td>
  1947. <div class="mfrDiv">
  1948. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Aavid-Thermalloy/250G/?qs=sGAEpiMZZMvJqaFk9BIivzAch6xnqdVzG%2flCrvPJBv0%3d">250G</a><br />
  1949. <br />
  1950. <div style="width: 100%; text-align: center;">
  1951. </div>
  1952. <div style="width: 100%; text-align: center;">
  1953. </div>
  1954. </div>
  1955. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../Aavid-Thermalloy">Aavid Thermalloy</a>
  1956. </td><td>化学物质 2oz THERMALCOTE I TUBE OPAQUE WHITE
  1957. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1958. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  1959. </div>
  1960. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Aavid Thermalloy&quot;,&quot;532-250 | 250G&quot;]);" href="http://www.aavid.com/product-group/interface/greases/thermalcote" target="_blank">数据表<br /><br /></a>
  1961. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Catalog PDF Click&#39;,&quot;Aavid Thermalloy&quot;,&quot;532-250 | 250G&quot;]);" href="/catalog/English/103/APAC/1844.pdf" target="_blank">页面 1,844</a>
  1962. </td><td>
  1963. <table>
  1964. <tr align="center">
  1965. <td style="padding-top: 5px">
  1966. </td>
  1967. </tr>
  1968. <tr align="center">
  1969. <td style="padding-top: 5px; padding-bottom: 5px">
  1970. </td>
  1971. </tr>
  1972. </table></td><td>
  1973. </td><td class="SearchResultsBuyColumn">
  1974. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_pnlRestricted">
  1975. <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>
  1976. </div>
  1977. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  1978. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1979. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=TwlNQgvrO0Rcn2rnlAqkRA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=TwlNQgvrO0Rcn2rnlAqkRA%3d%3d" target="_blank">详细信息</a>
  1980. </div>
  1981. </td><td>Thermal Management
  1982. </td><td>
  1983. </td><td>2 oz
  1984. </td><td>Tube
  1985. </td>
  1986. </tr><tr class="SearchResultsRowOdd" data-partnumber="517-DP-270CL-1.7" data-index="7">
  1987. <td class="td-select" align="center">
  1988. <div style="padding: 5px 5px 0 5px;">
  1989. <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>
  1990. </div>
  1991. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-270.jpg</div></a></td><td>
  1992. <div style="text-align:left;">
  1993. <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 />
  1994. <br />
  1995. <br />
  1996. </div></td><td>
  1997. <div class="mfrDiv">
  1998. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/DP-270/?qs=sGAEpiMZZMvJqaFk9BIivyiZpwpVt1HtSDw0VnWyKCQ%3d">DP-270</a><br />
  1999. <br />
  2000. <div style="width: 100%; text-align: center;">
  2001. </div>
  2002. <div style="width: 100%; text-align: center;">
  2003. </div>
  2004. </div>
  2005. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  2006. </td><td>化学物质 1.7oz ADHSVE CLEAR EPOXY
  2007. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2008. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  2009. </div>
  2010. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-DP-270CL-1.7 | DP-270&quot;]);" href="http://www.mouser.com/ds/2/1/270-476326.pdf" target="_blank">数据表</a>
  2011. </td><td>
  2012. <table>
  2013. <tr align="center">
  2014. <td style="padding-top: 5px">
  2015. </td>
  2016. </tr>
  2017. <tr align="center">
  2018. <td style="padding-top: 5px; padding-bottom: 5px">
  2019. </td>
  2020. </tr>
  2021. </table></td><td>
  2022. </td><td class="SearchResultsBuyColumn">
  2023. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlRestricted">
  2024. <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>
  2025. </div>
  2026. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2027. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  2028. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bnSTLq%2fCPbeg%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bnSTLq%2fCPbeg%3d%3d" target="_blank">详细信息</a>
  2029. </div>
  2030. </td><td>Adhesives
  2031. </td><td>Scotch-Weld
  2032. </td><td>1.7 oz
  2033. </td><td>
  2034. </td>
  2035. </tr><tr class="SearchResultsRowEven" data-partnumber="567-120-5" data-index="8">
  2036. <td class="td-select" align="center">
  2037. <div style="padding: 5px 5px 0 5px;">
  2038. <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>
  2039. </div>
  2040. </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>
  2041. <div style="text-align:left;">
  2042. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Wakefield/120-5/?qs=sGAEpiMZZMvJqaFk9BIiv9zsHXowjRHockglRfQqpQs%3d">567-120-5</a><br />
  2043. <br />
  2044. <br />
  2045. </div></td><td>
  2046. <div class="mfrDiv">
  2047. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Wakefield/120-5/?qs=sGAEpiMZZMvJqaFk9BIiv9zsHXowjRHockglRfQqpQs%3d">120-5</a><br />
  2048. <br />
  2049. <div style="width: 100%; text-align: center;">
  2050. </div>
  2051. <div style="width: 100%; text-align: center;">
  2052. </div>
  2053. </div>
  2054. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../wakefield">Wakefield</a>
  2055. </td><td>化学物质 SILICON GREASE 5oz.
  2056. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2057. </div>
  2058. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Wakefield&quot;,&quot;567-120-5 | 120-5&quot;]);" href="http://www.wakefield.com/Catalog/tabid/92/CategoryID/103/Default.aspx?showSeries=104&amp;order=0" target="_blank">数据表<br /><br /></a>
  2059. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Catalog PDF Click&#39;,&quot;Wakefield&quot;,&quot;567-120-5 | 120-5&quot;]);" href="/catalog/English/103/APAC/1851.pdf" target="_blank">页面 1,851</a>
  2060. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">252<br/>有库存</span>
  2061. <table>
  2062. <tr align="center">
  2063. <td style="padding-top: 5px">
  2064. </td>
  2065. </tr>
  2066. <tr align="center">
  2067. <td style="padding-top: 5px; padding-bottom: 5px">
  2068. </td>
  2069. </tr>
  2070. </table></td><td>
  2071. <table class="PriceBreaks" cellspacing="0" border="0">
  2072. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2073. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2074. </td>
  2075. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2076. </td>
  2077. </tr>
  2078. <tr>
  2079. <td class="PriceBreakQuantity">
  2080. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  2081. </td>
  2082. <td class="PriceBreakPrice">
  2083. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥154.7091</span>
  2084. </td>
  2085. </tr>
  2086. <tr>
  2087. <td class="PriceBreakQuantity">
  2088. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  2089. </td>
  2090. <td class="PriceBreakPrice">
  2091. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥146.0862</span>
  2092. </td>
  2093. </tr>
  2094. <tr>
  2095. <td class="PriceBreakQuantity">
  2096. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  2097. </td>
  2098. <td class="PriceBreakPrice">
  2099. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥137.4633</span>
  2100. </td>
  2101. </tr>
  2102. <tr>
  2103. <td class="PriceBreakQuantity">
  2104. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,50);">50:</a>
  2105. </td>
  2106. <td class="PriceBreakPrice">
  2107. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥128.9106</span>
  2108. </td>
  2109. </tr>
  2110. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2111. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2112. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  2113. </td>
  2114. <td class="PriceBreakPrice">
  2115. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Wakefield/120-5/?qs=sGAEpiMZZMvJqaFk9BIiv9zsHXowjRHockglRfQqpQs%3d">查看</a>
  2116. </td>
  2117. </tr>
  2118. <tr>
  2119. <td><br /></td>
  2120. </tr>
  2121. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2122. <td colspan="2" style="text-align: center;">
  2123. </td>
  2124. </tr>
  2125. </table>
  2126. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy&#39;)">
  2127. <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 />
  2128. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl08$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 6);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_btnBuy" title="购买 120-5" class="buy-button" /><br />
  2129. <table cellspacing="0" border="0" style="width: 100%;">
  2130. <tr>
  2131. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2132. 最低:
  2133. </td>
  2134. <td style="padding-left: 2px; text-align: left;">
  2135. 1
  2136. </td>
  2137. </tr>
  2138. <tr>
  2139. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2140. 多个:
  2141. </td>
  2142. <td style="padding-left: 2px; text-align: left;">
  2143. 1
  2144. </td>
  2145. </tr>
  2146. </table>
  2147. </div>
  2148. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2149. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2150. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=jrUQjCgd%2fWjkyWZ%2fW05JXw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=jrUQjCgd%2fWjkyWZ%2fW05JXw%3d%3d" target="_blank">详细信息</a>
  2151. </div>
  2152. </td><td>Adhesives
  2153. </td><td>Silicone Compound
  2154. </td><td>5 oz
  2155. </td><td>Plastic Tube
  2156. </td>
  2157. </tr><tr class="SearchResultsRowOdd" data-partnumber="567-120-8" data-index="9">
  2158. <td class="td-select" align="center">
  2159. <div style="padding: 5px 5px 0 5px;">
  2160. <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>
  2161. </div>
  2162. </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>
  2163. <div style="text-align:left;">
  2164. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Wakefield/120-8/?qs=sGAEpiMZZMvJqaFk9BIiv9zsHXowjRHoIbb%2fn2bnf0k%3d">567-120-8</a><br />
  2165. <br />
  2166. <br />
  2167. </div></td><td>
  2168. <div class="mfrDiv">
  2169. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Wakefield/120-8/?qs=sGAEpiMZZMvJqaFk9BIiv9zsHXowjRHoIbb%2fn2bnf0k%3d">120-8</a><br />
  2170. <br />
  2171. <div style="width: 100%; text-align: center;">
  2172. </div>
  2173. <div style="width: 100%; text-align: center;">
  2174. </div>
  2175. </div>
  2176. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../wakefield">Wakefield</a>
  2177. </td><td>化学物质 SILICON GREASE 8oz.
  2178. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2179. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2180. </div>
  2181. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Wakefield&quot;,&quot;567-120-8 | 120-8&quot;]);" href="http://www.mouser.com/ds/2/433/thermal-management-accessories-wakefield-225895.pdf" target="_blank">数据表</a>
  2182. </td><td>
  2183. <table>
  2184. <tr align="center">
  2185. <td style="padding-top: 5px">
  2186. </td>
  2187. </tr>
  2188. <tr align="center">
  2189. <td style="padding-top: 5px; padding-bottom: 5px">
  2190. </td>
  2191. </tr>
  2192. </table></td><td>
  2193. </td><td class="SearchResultsBuyColumn">
  2194. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_pnlRestricted">
  2195. <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>
  2196. </div>
  2197. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  2198. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2199. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=YiG%252bZeRx5gi6axq7de9V5w%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=YiG%252bZeRx5gi6axq7de9V5w%3d%3d" target="_blank">详细信息</a>
  2200. </div>
  2201. </td><td>Adhesives
  2202. </td><td>Silicone Compound
  2203. </td><td>8 oz
  2204. </td><td>Jar
  2205. </td>
  2206. </tr><tr class="SearchResultsRowEven" data-partnumber="517-EC2216" data-index="10">
  2207. <td class="td-select" align="center">
  2208. <div style="padding: 5px 5px 0 5px;">
  2209. <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>
  2210. </div>
  2211. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/EC2216.jpg</div></a></td><td>
  2212. <div style="text-align:left;">
  2213. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/3M-Electronic-Specialty/EC2216/?qs=sGAEpiMZZMvJqaFk9BIiv1eguBOsNV97ponzZ8rBK1Y%3d">517-EC2216</a><br />
  2214. <br />
  2215. <br />
  2216. </div></td><td>
  2217. <div class="mfrDiv">
  2218. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/EC2216/?qs=sGAEpiMZZMvJqaFk9BIiv1eguBOsNV97ponzZ8rBK1Y%3d">EC2216</a><br />
  2219. <br />
  2220. <div style="width: 100%; text-align: center;">
  2221. </div>
  2222. <div style="width: 100%; text-align: center;">
  2223. </div>
  2224. </div>
  2225. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  2226. </td><td>化学物质 SCOTCH-WELD EPOXY 43 MIL GRAY
  2227. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2228. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2229. </div>
  2230. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-EC2216 | EC2216&quot;]);" href="http://www.mouser.com/ds/2/1/78690095837-52391.pdf" target="_blank">数据表</a>
  2231. </td><td>
  2232. <table>
  2233. <tr align="center">
  2234. <td style="padding-top: 5px">
  2235. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/3M-Electronic-Specialty/EC2216/?qs=sGAEpiMZZMvJqaFk9BIiv1eguBOsNV97ponzZ8rBK1Y%3d">更多信息可用 </a>
  2236. </td>
  2237. </tr>
  2238. <tr align="center">
  2239. <td style="padding-top: 5px; padding-bottom: 5px">
  2240. </td>
  2241. </tr>
  2242. </table></td><td>
  2243. </td><td class="SearchResultsBuyColumn">
  2244. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlRestricted">
  2245. <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>
  2246. </div>
  2247. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  2248. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2249. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=X7fntBUoZlGk3mQbPBT0HA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=X7fntBUoZlGk3mQbPBT0HA%3d%3d" target="_blank">详细信息</a>
  2250. </div>
  2251. </td><td>Epoxy Compounds
  2252. </td><td>Epoxy Compound
  2253. </td><td>1.45 oz
  2254. </td><td>Squeeze Bottle
  2255. </td>
  2256. </tr><tr class="SearchResultsRowOdd" data-partnumber="532-100300F00G" data-index="11">
  2257. <td class="td-select" align="center">
  2258. <div style="padding: 5px 5px 0 5px;">
  2259. <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>
  2260. </div>
  2261. </td><td></td><td>
  2262. <div style="text-align:left;">
  2263. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Aavid-Thermalloy/100300F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrwOTUDd0HVUc%3d">532-100300F00G</a><br />
  2264. <br />
  2265. <br />
  2266. </div></td><td>
  2267. <div class="mfrDiv">
  2268. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Aavid-Thermalloy/100300F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrwOTUDd0HVUc%3d">100300F00000G</a><br />
  2269. <br />
  2270. <div style="width: 100%; text-align: center;">
  2271. </div>
  2272. <div style="width: 100%; text-align: center;">
  2273. </div>
  2274. </div>
  2275. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../Aavid-Thermalloy">Aavid Thermalloy</a>
  2276. </td><td>化学物质 ULTRASTICK THERMAL COMPOUND 47.5g
  2277. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2278. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  2279. </div>
  2280. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Aavid Thermalloy&quot;,&quot;532-100300F00G | 100300F00000G&quot;]);" href="http://www.aavid.com/product-group/interface/greases" target="_blank">数据表</a>
  2281. </td><td>
  2282. <table>
  2283. <tr align="center">
  2284. <td style="padding-top: 5px">
  2285. </td>
  2286. </tr>
  2287. <tr align="center">
  2288. <td style="padding-top: 5px; padding-bottom: 5px">
  2289. </td>
  2290. </tr>
  2291. </table></td><td>
  2292. </td><td class="SearchResultsBuyColumn">
  2293. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_pnlRestricted">
  2294. <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>
  2295. </div>
  2296. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  2297. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2298. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=S%2faC6yOeF6xrcV7SHWRJTA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=S%2faC6yOeF6xrcV7SHWRJTA%3d%3d" target="_blank">详细信息</a>
  2299. </div>
  2300. </td><td>Adhesives
  2301. </td><td>Thermal Interface Compound
  2302. </td><td>47.5 g
  2303. </td><td>
  2304. </td>
  2305. </tr><tr class="SearchResultsRowEven" data-partnumber="517-DP100FR" data-index="12">
  2306. <td class="td-select" align="center">
  2307. <div style="padding: 5px 5px 0 5px;">
  2308. <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>
  2309. </div>
  2310. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP100FR.jpg</div></a></td><td>
  2311. <div style="text-align:left;">
  2312. <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 />
  2313. <br />
  2314. <br />
  2315. </div></td><td>
  2316. <div class="mfrDiv">
  2317. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/3M-Electronic-Specialty/DP100FR/?qs=sGAEpiMZZMvJqaFk9BIiv%252bkvf8hmSCGhIdnIH6p%2f3Zw%3d">DP100FR</a><br />
  2318. <br />
  2319. <div style="width: 100%; text-align: center;">
  2320. </div>
  2321. <div style="width: 100%; text-align: center;">
  2322. </div>
  2323. </div>
  2324. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  2325. </td><td>化学物质 EPXY ADHSIV 1.7FL OZ CREAM COLOR
  2326. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2327. </div>
  2328. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-DP100FR | DP100FR&quot;]);" href="http://www.mouser.com/ds/2/1/3M_multimedia-368811.pdf" target="_blank">数据表</a>
  2329. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">90<br/>有库存</span>
  2330. <table>
  2331. <tr align="center">
  2332. <td style="padding-top: 5px">
  2333. </td>
  2334. </tr>
  2335. <tr align="center">
  2336. <td style="padding-top: 5px; padding-bottom: 5px">
  2337. </td>
  2338. </tr>
  2339. </table></td><td>
  2340. <table class="PriceBreaks" cellspacing="0" border="0">
  2341. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2342. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2343. </td>
  2344. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2345. </td>
  2346. </tr>
  2347. <tr>
  2348. <td class="PriceBreakQuantity">
  2349. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  2350. </td>
  2351. <td class="PriceBreakPrice">
  2352. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥285.3162</span>
  2353. </td>
  2354. </tr>
  2355. <tr>
  2356. <td class="PriceBreakQuantity">
  2357. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,5);">5:</a>
  2358. </td>
  2359. <td class="PriceBreakPrice">
  2360. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥258.7572</span>
  2361. </td>
  2362. </tr>
  2363. <tr>
  2364. <td class="PriceBreakQuantity">
  2365. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  2366. </td>
  2367. <td class="PriceBreakPrice">
  2368. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥232.3386</span>
  2369. </td>
  2370. </tr>
  2371. <tr>
  2372. <td class="PriceBreakQuantity">
  2373. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  2374. </td>
  2375. <td class="PriceBreakPrice">
  2376. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥202.9248</span>
  2377. </td>
  2378. </tr>
  2379. <tr>
  2380. <td class="PriceBreakQuantity">
  2381. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(10,50);">50:</a>
  2382. </td>
  2383. <td class="PriceBreakPrice">
  2384. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥179.3493</span>
  2385. </td>
  2386. </tr>
  2387. <tr>
  2388. <td><br /></td>
  2389. </tr>
  2390. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2391. <td colspan="2" style="text-align: center;">
  2392. </td>
  2393. </tr>
  2394. </table>
  2395. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_btnBuy&#39;)">
  2396. <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 />
  2397. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl12$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 10);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_btnBuy" title="购买 DP100FR" class="buy-button" /><br />
  2398. <table cellspacing="0" border="0" style="width: 100%;">
  2399. <tr>
  2400. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2401. 最低:
  2402. </td>
  2403. <td style="padding-left: 2px; text-align: left;">
  2404. 1
  2405. </td>
  2406. </tr>
  2407. <tr>
  2408. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2409. 多个:
  2410. </td>
  2411. <td style="padding-left: 2px; text-align: left;">
  2412. 1
  2413. </td>
  2414. </tr>
  2415. </table>
  2416. </div>
  2417. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  2418. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  2419. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=AfZGqDKFqZF5uDTnphf5qw%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=AfZGqDKFqZF5uDTnphf5qw%3d%3d" target="_blank">详细信息</a>
  2420. </div>
  2421. </td><td>Adhesives
  2422. </td><td>Epoxy Applicator
  2423. </td><td>50 mL, 12/Case
  2424. </td><td>Cartridge
  2425. </td>
  2426. </tr><tr class="SearchResultsRowOdd" data-partnumber="517-2216-GRY" data-index="13">
  2427. <td class="td-select" align="center">
  2428. <div style="padding: 5px 5px 0 5px;">
  2429. <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>
  2430. </div>
  2431. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/2216_B-A.jpg</div></a></td><td>
  2432. <div style="text-align:left;">
  2433. <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 />
  2434. <br />
  2435. <br />
  2436. </div></td><td>
  2437. <div class="mfrDiv">
  2438. <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 />
  2439. <br />
  2440. <div style="width: 100%; text-align: center;">
  2441. </div>
  2442. <div style="width: 100%; text-align: center;">
  2443. </div>
  2444. </div>
  2445. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  2446. </td><td>化学物质 2OZ. EPOXY KIT GRAY
  2447. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2448. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  2449. </div>
  2450. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-2216-GRY | 2216 B/A GRAY&quot;]);" href="http://multimedia.mmm.com/mws/mediawebserver.dyn?6666660Zjcf6lVs6EVs666GGfCOrrrrQ-" target="_blank">数据表</a>
  2451. </td><td>
  2452. <table>
  2453. <tr align="center">
  2454. <td style="padding-top: 5px">
  2455. </td>
  2456. </tr>
  2457. <tr align="center">
  2458. <td style="padding-top: 5px; padding-bottom: 5px">
  2459. </td>
  2460. </tr>
  2461. </table></td><td>
  2462. </td><td class="SearchResultsBuyColumn">
  2463. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlRestricted">
  2464. <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>
  2465. </div>
  2466. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  2467. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  2468. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bhZ1v1cYdsZg%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bhZ1v1cYdsZg%3d%3d" target="_blank">详细信息</a>
  2469. </div>
  2470. </td><td>Adhesives
  2471. </td><td>Epoxy Compound
  2472. </td><td>2 oz
  2473. </td><td>Plastic Tube
  2474. </td>
  2475. </tr><tr class="SearchResultsRowEven" data-partnumber="650-S1125-KIT-8" data-index="14">
  2476. <td class="td-select" align="center">
  2477. <div style="padding: 5px 5px 0 5px;">
  2478. <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>
  2479. </div>
  2480. </td><td></td><td>
  2481. <div style="text-align:left;">
  2482. <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 />
  2483. <br />
  2484. <br />
  2485. </div></td><td>
  2486. <div class="mfrDiv">
  2487. <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 />
  2488. <br />
  2489. <div style="width: 100%; text-align: center;">
  2490. </div>
  2491. <div style="width: 100%; text-align: center;">
  2492. </div>
  2493. </div>
  2494. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../raychem">TE Connectivity / Raychem</a>
  2495. </td><td>化学物质 ADHESIVE 50-ML DUAL SYRINGE
  2496. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2497. </div>
  2498. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;TE Connectivity / Raychem&quot;,&quot;650-S1125-KIT-8 | S1125-KIT-8&quot;]);" href="http://www.te.com/catalog/pn/en/657863-000?RQPN=S1125-KIT-8" target="_blank">数据表</a>
  2499. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">29<br/>有库存</span>
  2500. <table>
  2501. <tr align="center">
  2502. <td style="padding-top: 5px">
  2503. </td>
  2504. </tr>
  2505. <tr align="center">
  2506. <td style="padding-top: 5px; padding-bottom: 5px">
  2507. </td>
  2508. </tr>
  2509. </table></td><td>
  2510. <table class="PriceBreaks" cellspacing="0" border="0">
  2511. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2512. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2513. </td>
  2514. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2515. </td>
  2516. </tr>
  2517. <tr>
  2518. <td class="PriceBreakQuantity">
  2519. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  2520. </td>
  2521. <td class="PriceBreakPrice">
  2522. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥850.0284</span>
  2523. </td>
  2524. </tr>
  2525. <tr>
  2526. <td class="PriceBreakQuantity">
  2527. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  2528. </td>
  2529. <td class="PriceBreakPrice">
  2530. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥785.9592</span>
  2531. </td>
  2532. </tr>
  2533. <tr>
  2534. <td class="PriceBreakQuantity">
  2535. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,50);">50:</a>
  2536. </td>
  2537. <td class="PriceBreakPrice">
  2538. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥718.1109</span>
  2539. </td>
  2540. </tr>
  2541. <tr>
  2542. <td class="PriceBreakQuantity">
  2543. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  2544. </td>
  2545. <td class="PriceBreakPrice">
  2546. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥671.7555</span>
  2547. </td>
  2548. </tr>
  2549. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2550. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2551. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,250);">250:</a>
  2552. </td>
  2553. <td class="PriceBreakPrice">
  2554. <a onclick="javascript:window.location=&quot;../../../../Quote/quote.aspx?mouserpartnumber=650-S1125-KIT-8&amp;quantity=250&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;TE Connectivity / Raychem&quot;,&quot;650-S1125-KIT-8&quot;,1]);return false;" href="../../../../Quote/quote.aspx">报价</a>
  2555. </td>
  2556. </tr>
  2557. <tr>
  2558. <td><br /></td>
  2559. </tr>
  2560. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2561. <td colspan="2" style="text-align: center;">
  2562. </td>
  2563. </tr>
  2564. </table>
  2565. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy&#39;)">
  2566. <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 />
  2567. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl14$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 12);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_btnBuy" title="购买 S1125-KIT-8" class="buy-button" /><br />
  2568. <table cellspacing="0" border="0" style="width: 100%;">
  2569. <tr>
  2570. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2571. 最低:
  2572. </td>
  2573. <td style="padding-left: 2px; text-align: left;">
  2574. 1
  2575. </td>
  2576. </tr>
  2577. <tr>
  2578. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2579. 多个:
  2580. </td>
  2581. <td style="padding-left: 2px; text-align: left;">
  2582. 1
  2583. </td>
  2584. </tr>
  2585. </table>
  2586. </div>
  2587. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  2588. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2589. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=OUsCwFW6gFf31hw%2f%252b9Xhtw%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=OUsCwFW6gFf31hw%2f%252b9Xhtw%3d%3d" target="_blank">详细信息</a>
  2590. </div>
  2591. </td><td>Adhesives
  2592. </td><td>Epoxy Compound
  2593. </td><td>50 mL
  2594. </td><td>Syringe
  2595. </td>
  2596. </tr><tr class="SearchResultsRowOdd" data-partnumber="650-S1125-KIT-1" data-index="15">
  2597. <td class="td-select" align="center">
  2598. <div style="padding: 5px 5px 0 5px;">
  2599. <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>
  2600. </div>
  2601. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/tycoelectronics/images/S1125-KIT-1.jpg</div></a></td><td>
  2602. <div style="text-align:left;">
  2603. <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 />
  2604. <br />
  2605. <br />
  2606. </div></td><td>
  2607. <div class="mfrDiv">
  2608. <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 />
  2609. <br />
  2610. <div style="width: 100%; text-align: center;">
  2611. </div>
  2612. <div style="width: 100%; text-align: center;">
  2613. </div>
  2614. </div>
  2615. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../raychem">TE Connectivity / Raychem</a>
  2616. </td><td>化学物质 ADHESIVE 5 10-GRAM P
  2617. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2618. </div>
  2619. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;TE Connectivity / Raychem&quot;,&quot;650-S1125-KIT-1 | S1125-KIT-1&quot;]);" href="http://www.te.com/catalog/pn/en/S1125-KIT-1?RQPN=S1125-KIT-1" target="_blank">数据表</a>
  2620. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">28<br/>有库存</span>
  2621. <table>
  2622. <tr align="center">
  2623. <td style="padding-top: 5px">
  2624. </td>
  2625. </tr>
  2626. <tr align="center">
  2627. <td style="padding-top: 5px; padding-bottom: 5px">
  2628. </td>
  2629. </tr>
  2630. </table></td><td>
  2631. <table class="PriceBreaks" cellspacing="0" border="0">
  2632. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2633. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2634. </td>
  2635. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2636. </td>
  2637. </tr>
  2638. <tr>
  2639. <td class="PriceBreakQuantity">
  2640. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  2641. </td>
  2642. <td class="PriceBreakPrice">
  2643. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,011.3597</span>
  2644. </td>
  2645. </tr>
  2646. <tr>
  2647. <td class="PriceBreakQuantity">
  2648. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,25);">25:</a>
  2649. </td>
  2650. <td class="PriceBreakPrice">
  2651. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥889.6095</span>
  2652. </td>
  2653. </tr>
  2654. <tr>
  2655. <td class="PriceBreakQuantity">
  2656. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,50);">50:</a>
  2657. </td>
  2658. <td class="PriceBreakPrice">
  2659. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥826.3827</span>
  2660. </td>
  2661. </tr>
  2662. <tr>
  2663. <td class="PriceBreakQuantity">
  2664. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  2665. </td>
  2666. <td class="PriceBreakPrice">
  2667. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥767.9412</span>
  2668. </td>
  2669. </tr>
  2670. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2671. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2672. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(13,500);">500:</a>
  2673. </td>
  2674. <td class="PriceBreakPrice">
  2675. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/TE-Connectivity-Raychem/S1125-KIT-1/?qs=sGAEpiMZZMvJqaFk9BIiv9Kh1V3oBTlz9ICs8tVM7II%3d">查看</a>
  2676. </td>
  2677. </tr>
  2678. <tr>
  2679. <td><br /></td>
  2680. </tr>
  2681. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2682. <td colspan="2" style="text-align: center;">
  2683. </td>
  2684. </tr>
  2685. </table>
  2686. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy&#39;)">
  2687. <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 />
  2688. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl15$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 13);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_btnBuy" title="购买 S1125-KIT-1" class="buy-button" /><br />
  2689. <table cellspacing="0" border="0" style="width: 100%;">
  2690. <tr>
  2691. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2692. 最低:
  2693. </td>
  2694. <td style="padding-left: 2px; text-align: left;">
  2695. 1
  2696. </td>
  2697. </tr>
  2698. <tr>
  2699. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2700. 多个:
  2701. </td>
  2702. <td style="padding-left: 2px; text-align: left;">
  2703. 1
  2704. </td>
  2705. </tr>
  2706. </table>
  2707. </div>
  2708. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  2709. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2710. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=t5Mzyr7cGNdoP57f0ffZ%252bQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=t5Mzyr7cGNdoP57f0ffZ%252bQ%3d%3d" target="_blank">详细信息</a>
  2711. </div>
  2712. </td><td>Epoxy Compounds
  2713. </td><td>Epoxy Compound
  2714. </td><td>10 g
  2715. </td><td>Kit
  2716. </td>
  2717. </tr><tr class="SearchResultsRowEven" data-partnumber="517-DP-100-1.7" data-index="16">
  2718. <td class="td-select" align="center">
  2719. <div style="padding: 5px 5px 0 5px;">
  2720. <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>
  2721. </div>
  2722. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-100.jpg</div></a></td><td>
  2723. <div style="text-align:left;">
  2724. <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 />
  2725. <br />
  2726. <br />
  2727. </div></td><td>
  2728. <div class="mfrDiv">
  2729. <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 />
  2730. <br />
  2731. <div style="width: 100%; text-align: center;">
  2732. </div>
  2733. <div style="width: 100%; text-align: center;">
  2734. </div>
  2735. </div>
  2736. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  2737. </td><td>化学物质 EPOXY DP100 PLUS CLEAR DUO-PK 1.7OZ
  2738. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2739. </div>
  2740. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-DP-100-1.7 | DP-100 Plus&quot;]);" href="http://www.mouser.com/ds/2/1/3m_517-DP100CLR-356515.pdf" target="_blank">数据表</a>
  2741. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">166<br/>有库存</span>
  2742. <table>
  2743. <tr align="center">
  2744. <td style="padding-top: 5px">
  2745. </td>
  2746. </tr>
  2747. <tr align="center">
  2748. <td style="padding-top: 5px; padding-bottom: 5px">
  2749. </td>
  2750. </tr>
  2751. </table></td><td>
  2752. <table class="PriceBreaks" cellspacing="0" border="0">
  2753. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2754. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2755. </td>
  2756. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2757. </td>
  2758. </tr>
  2759. <tr>
  2760. <td class="PriceBreakQuantity">
  2761. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  2762. </td>
  2763. <td class="PriceBreakPrice">
  2764. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥153.1764</span>
  2765. </td>
  2766. </tr>
  2767. <tr>
  2768. <td class="PriceBreakQuantity">
  2769. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,6);">6:</a>
  2770. </td>
  2771. <td class="PriceBreakPrice">
  2772. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥145.4661</span>
  2773. </td>
  2774. </tr>
  2775. <tr>
  2776. <td class="PriceBreakQuantity">
  2777. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,12);">12:</a>
  2778. </td>
  2779. <td class="PriceBreakPrice">
  2780. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥141.3945</span>
  2781. </td>
  2782. </tr>
  2783. <tr>
  2784. <td class="PriceBreakQuantity">
  2785. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,24);">24:</a>
  2786. </td>
  2787. <td class="PriceBreakPrice">
  2788. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥141.3126</span>
  2789. </td>
  2790. </tr>
  2791. <tr>
  2792. <td class="PriceBreakQuantity">
  2793. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(14,36);">36:</a>
  2794. </td>
  2795. <td class="PriceBreakPrice">
  2796. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥137.8494</span>
  2797. </td>
  2798. </tr>
  2799. <tr>
  2800. <td><br /></td>
  2801. </tr>
  2802. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2803. <td colspan="2" style="text-align: center;">
  2804. </td>
  2805. </tr>
  2806. </table>
  2807. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy&#39;)">
  2808. <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 />
  2809. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 14);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy" title="购买 DP-100 Plus" class="buy-button" /><br />
  2810. <table cellspacing="0" border="0" style="width: 100%;">
  2811. <tr>
  2812. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2813. 最低:
  2814. </td>
  2815. <td style="padding-left: 2px; text-align: left;">
  2816. 1
  2817. </td>
  2818. </tr>
  2819. <tr>
  2820. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2821. 多个:
  2822. </td>
  2823. <td style="padding-left: 2px; text-align: left;">
  2824. 1
  2825. </td>
  2826. </tr>
  2827. </table>
  2828. </div>
  2829. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  2830. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  2831. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=wpCB6RMgn%2fimTp81urE1yA%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=wpCB6RMgn%2fimTp81urE1yA%3d%3d" target="_blank">详细信息</a>
  2832. </div>
  2833. </td><td>Adhesives
  2834. </td><td>Epoxy Compound
  2835. </td><td>1.7 oz
  2836. </td><td>Plastic Tube
  2837. </td>
  2838. </tr><tr class="SearchResultsRowOdd" data-partnumber="517-DP110-TRANS" data-index="17">
  2839. <td class="td-select" align="center">
  2840. <div style="padding: 5px 5px 0 5px;">
  2841. <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>
  2842. </div>
  2843. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-110.jpg</div></a></td><td>
  2844. <div style="text-align:left;">
  2845. <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 />
  2846. <br />
  2847. <br />
  2848. </div></td><td>
  2849. <div class="mfrDiv">
  2850. <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 />
  2851. <br />
  2852. <div style="width: 100%; text-align: center;">
  2853. </div>
  2854. <div style="width: 100%; text-align: center;">
  2855. </div>
  2856. </div>
  2857. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  2858. </td><td>化学物质 1.7oz EPOXY TRANS
  2859. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2860. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  2861. </div>
  2862. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-DP110-TRANS | DP-110 TRANS&quot;]);" href="http://www.mouser.com/ds/2/1/Final%20Structural%20Adhesive%20Guide%20LoRes-337769.pdf" target="_blank">数据表</a>
  2863. </td><td>
  2864. <table>
  2865. <tr align="center">
  2866. <td style="padding-top: 5px">
  2867. </td>
  2868. </tr>
  2869. <tr align="center">
  2870. <td style="padding-top: 5px; padding-bottom: 5px">
  2871. </td>
  2872. </tr>
  2873. </table></td><td>
  2874. </td><td class="SearchResultsBuyColumn">
  2875. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_pnlRestricted">
  2876. <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>
  2877. </div>
  2878. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  2879. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  2880. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bC%2fQghuOszRw%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bC%2fQghuOszRw%3d%3d" target="_blank">详细信息</a>
  2881. </div>
  2882. </td><td>Adhesives
  2883. </td><td>Epoxy Compound
  2884. </td><td>1.7 oz
  2885. </td><td>Plastic Tube
  2886. </td>
  2887. </tr><tr class="SearchResultsRowEven" data-partnumber="517-DP420-1.7" data-index="18">
  2888. <td class="td-select" align="center">
  2889. <div style="padding: 5px 5px 0 5px;">
  2890. <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>
  2891. </div>
  2892. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP420.jpg</div></a></td><td>
  2893. <div style="text-align:left;">
  2894. <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 />
  2895. <br />
  2896. <br />
  2897. </div></td><td>
  2898. <div class="mfrDiv">
  2899. <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 />
  2900. <br />
  2901. <div style="width: 100%; text-align: center;">
  2902. </div>
  2903. <div style="width: 100%; text-align: center;">
  2904. </div>
  2905. </div>
  2906. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  2907. </td><td>化学物质 1.25oz OFF-WHITE 2PRT
  2908. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2909. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  2910. </div>
  2911. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-DP420-1.7 | DP-420 OFF-WHITE&quot;]);" href="http://www.mouser.com/ds/2/1/420-476205.pdf" target="_blank">数据表<br /><br /></a>
  2912. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-0208-19&#39;);return false;" rel="nofollow" href="../../../../Cart/AdditionalProductInfo.aspx?part=5-0208-19" target="_blank">产品信息</a>
  2913. </td><td>
  2914. <table>
  2915. <tr align="center">
  2916. <td style="padding-top: 5px">
  2917. </td>
  2918. </tr>
  2919. <tr align="center">
  2920. <td style="padding-top: 5px; padding-bottom: 5px">
  2921. </td>
  2922. </tr>
  2923. </table></td><td>
  2924. </td><td class="SearchResultsBuyColumn">
  2925. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlRestricted">
  2926. <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>
  2927. </div>
  2928. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  2929. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  2930. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%2fU7amHdXmTOg%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%2fU7amHdXmTOg%3d%3d" target="_blank">详细信息</a>
  2931. </div>
  2932. </td><td>Adhesives
  2933. </td><td>Epoxy Compound
  2934. </td><td>1.25 oz
  2935. </td><td>Plastic Tube
  2936. </td>
  2937. </tr><tr class="SearchResultsRowOdd" data-partnumber="517-DP420-BLK-1.25" data-index="19">
  2938. <td class="td-select" align="center">
  2939. <div style="padding: 5px 5px 0 5px;">
  2940. <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>
  2941. </div>
  2942. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-190.jpg</div></a></td><td>
  2943. <div style="text-align:left;">
  2944. <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 />
  2945. <br />
  2946. <br />
  2947. </div></td><td>
  2948. <div class="mfrDiv">
  2949. <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 />
  2950. <br />
  2951. <div style="width: 100%; text-align: center;">
  2952. </div>
  2953. <div style="width: 100%; text-align: center;">
  2954. </div>
  2955. </div>
  2956. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  2957. </td><td>化学物质 1.25oz BLACK 2-PART
  2958. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2959. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  2960. </div>
  2961. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-DP420-BLK-1.25 | DP420-BLACK-1.25OZ&quot;]);" href="http://www.mouser.com/ds/2/1/420-56547.pdf" target="_blank">数据表</a>
  2962. </td><td>
  2963. <table>
  2964. <tr align="center">
  2965. <td style="padding-top: 5px">
  2966. </td>
  2967. </tr>
  2968. <tr align="center">
  2969. <td style="padding-top: 5px; padding-bottom: 5px">
  2970. </td>
  2971. </tr>
  2972. </table></td><td>
  2973. </td><td class="SearchResultsBuyColumn">
  2974. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlRestricted">
  2975. <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>
  2976. </div>
  2977. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  2978. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  2979. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=xgl3byeV3pk12KP3s8xW8A%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=xgl3byeV3pk12KP3s8xW8A%3d%3d" target="_blank">详细信息</a>
  2980. </div>
  2981. </td><td>Adhesives
  2982. </td><td>Epoxy Compound
  2983. </td><td>1.25 oz
  2984. </td><td>Plastic Tube
  2985. </td>
  2986. </tr><tr class="SearchResultsRowEven" data-partnumber="517-TC-2707-37ML" data-index="20">
  2987. <td class="td-select" align="center">
  2988. <div style="padding: 5px 5px 0 5px;">
  2989. <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>
  2990. </div>
  2991. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/TC_2707_37ml_DSL.jpg</div></a></td><td>
  2992. <div style="text-align:left;">
  2993. <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 />
  2994. <br />
  2995. <br />
  2996. </div></td><td>
  2997. <div class="mfrDiv">
  2998. <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 />
  2999. <br />
  3000. <div style="width: 100%; text-align: center;">
  3001. </div>
  3002. <div style="width: 100%; text-align: center;">
  3003. </div>
  3004. </div>
  3005. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  3006. </td><td>化学物质 THERM COND ADH 37ML DUO-PAK
  3007. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3008. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  3009. </div>
  3010. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-TC-2707-37ML | TC-2707-37ML&quot;]);" href="http://www.mouser.com/ds/2/1/TC-2707%20TDS-611097.pdf" target="_blank">数据表</a>
  3011. </td><td>
  3012. <table>
  3013. <tr align="center">
  3014. <td style="padding-top: 5px">
  3015. </td>
  3016. </tr>
  3017. <tr align="center">
  3018. <td style="padding-top: 5px; padding-bottom: 5px">
  3019. </td>
  3020. </tr>
  3021. </table></td><td>
  3022. </td><td class="SearchResultsBuyColumn">
  3023. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_pnlRestricted">
  3024. <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>
  3025. </div>
  3026. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  3027. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  3028. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=nm0t467p%252bu0lMubfda2x7A%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=nm0t467p%252bu0lMubfda2x7A%3d%3d" target="_blank">详细信息</a>
  3029. </div>
  3030. </td><td>Adhesives
  3031. </td><td>
  3032. </td><td>37 ml
  3033. </td><td>Case
  3034. </td>
  3035. </tr><tr class="SearchResultsRowOdd" data-partnumber="517-DP-105CLEAR" data-index="21">
  3036. <td class="td-select" align="center">
  3037. <div style="padding: 5px 5px 0 5px;">
  3038. <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>
  3039. </div>
  3040. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-105.jpg</div></a></td><td>
  3041. <div style="text-align:left;">
  3042. <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 />
  3043. <br />
  3044. <br />
  3045. </div></td><td>
  3046. <div class="mfrDiv">
  3047. <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 />
  3048. <br />
  3049. <div style="width: 100%; text-align: center;">
  3050. </div>
  3051. <div style="width: 100%; text-align: center;">
  3052. </div>
  3053. </div>
  3054. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  3055. </td><td>化学物质 2-PART EPOXLY 1.7OZ
  3056. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3057. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  3058. </div>
  3059. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-DP-105CLEAR | DP-105 CLEAR&quot;]);" href="http://www.mouser.com/ds/2/1/DP105-337509.pdf" target="_blank">数据表</a>
  3060. </td><td>
  3061. <table>
  3062. <tr align="center">
  3063. <td style="padding-top: 5px">
  3064. </td>
  3065. </tr>
  3066. <tr align="center">
  3067. <td style="padding-top: 5px; padding-bottom: 5px">
  3068. </td>
  3069. </tr>
  3070. </table></td><td>
  3071. </td><td class="SearchResultsBuyColumn">
  3072. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_pnlRestricted">
  3073. <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>
  3074. </div>
  3075. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  3076. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  3077. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bdOPqt37%2fBzg%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=bRf6e9DdGc%252bdOPqt37%2fBzg%3d%3d" target="_blank">详细信息</a>
  3078. </div>
  3079. </td><td>Adhesives
  3080. </td><td>Epoxy Compound
  3081. </td><td>1.7 oz
  3082. </td><td>Plastic Tube
  3083. </td>
  3084. </tr><tr class="SearchResultsRowEven" data-partnumber="532-102100F00G" data-index="22">
  3085. <td class="td-select" align="center">
  3086. <div style="padding: 5px 5px 0 5px;">
  3087. <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>
  3088. </div>
  3089. </td><td></td><td>
  3090. <div style="text-align:left;">
  3091. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Aavid-Thermalloy/102100F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrv4Jplg2jMlk%3d">532-102100F00G</a><br />
  3092. <br />
  3093. <br />
  3094. </div></td><td>
  3095. <div class="mfrDiv">
  3096. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Aavid-Thermalloy/102100F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrv4Jplg2jMlk%3d">102100F00000G</a><br />
  3097. <br />
  3098. <div style="width: 100%; text-align: center;">
  3099. </div>
  3100. <div style="width: 100%; text-align: center;">
  3101. </div>
  3102. </div>
  3103. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../Aavid-Thermalloy">Aavid Thermalloy</a>
  3104. </td><td>化学物质 SIL-FREE 16.0oz JAR WHITE
  3105. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3106. </div>
  3107. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Aavid Thermalloy&quot;,&quot;532-102100F00G | 102100F00000G&quot;]);" href="http://www.aavid.com/product-group/interface/greases" target="_blank">数据表</a>
  3108. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">44<br/>有库存</span>
  3109. <table>
  3110. <tr align="center">
  3111. <td style="padding-top: 5px">
  3112. </td>
  3113. </tr>
  3114. <tr align="center">
  3115. <td style="padding-top: 5px; padding-bottom: 5px">
  3116. </td>
  3117. </tr>
  3118. </table></td><td>
  3119. <table class="PriceBreaks" cellspacing="0" border="0">
  3120. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3121. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3122. </td>
  3123. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3124. </td>
  3125. </tr>
  3126. <tr>
  3127. <td class="PriceBreakQuantity">
  3128. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  3129. </td>
  3130. <td class="PriceBreakPrice">
  3131. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥470.4453</span>
  3132. </td>
  3133. </tr>
  3134. <tr>
  3135. <td class="PriceBreakQuantity">
  3136. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,2);">2:</a>
  3137. </td>
  3138. <td class="PriceBreakPrice">
  3139. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥461.0502</span>
  3140. </td>
  3141. </tr>
  3142. <tr>
  3143. <td class="PriceBreakQuantity">
  3144. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,5);">5:</a>
  3145. </td>
  3146. <td class="PriceBreakPrice">
  3147. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥447.5016</span>
  3148. </td>
  3149. </tr>
  3150. <tr>
  3151. <td class="PriceBreakQuantity">
  3152. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,10);">10:</a>
  3153. </td>
  3154. <td class="PriceBreakPrice">
  3155. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥419.4684</span>
  3156. </td>
  3157. </tr>
  3158. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3159. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3160. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(20,25);">25:</a>
  3161. </td>
  3162. <td class="PriceBreakPrice">
  3163. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Aavid-Thermalloy/102100F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrv4Jplg2jMlk%3d">查看</a>
  3164. </td>
  3165. </tr>
  3166. <tr>
  3167. <td><br /></td>
  3168. </tr>
  3169. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3170. <td colspan="2" style="text-align: center;">
  3171. </td>
  3172. </tr>
  3173. </table>
  3174. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy&#39;)">
  3175. <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 />
  3176. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl22$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 20);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_btnBuy" title="购买 102100F00000G" class="buy-button" /><br />
  3177. <table cellspacing="0" border="0" style="width: 100%;">
  3178. <tr>
  3179. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3180. 最低:
  3181. </td>
  3182. <td style="padding-left: 2px; text-align: left;">
  3183. 1
  3184. </td>
  3185. </tr>
  3186. <tr>
  3187. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3188. 多个:
  3189. </td>
  3190. <td style="padding-left: 2px; text-align: left;">
  3191. 1
  3192. </td>
  3193. </tr>
  3194. </table>
  3195. </div>
  3196. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  3197. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3198. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=S%2faC6yOeF6yphgmOB%252be5jA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=S%2faC6yOeF6yphgmOB%252be5jA%3d%3d" target="_blank">详细信息</a>
  3199. </div>
  3200. </td><td>Thermal Management
  3201. </td><td>Grease
  3202. </td><td>
  3203. </td><td>16 oz
  3204. </td>
  3205. </tr><tr class="SearchResultsRowOdd" data-partnumber="517-DP100CLR" data-index="23">
  3206. <td class="td-select" align="center">
  3207. <div style="padding: 5px 5px 0 5px;">
  3208. <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>
  3209. </div>
  3210. </td><td></td><td>
  3211. <div style="text-align:left;">
  3212. <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 />
  3213. <br />
  3214. <br />
  3215. </div></td><td>
  3216. <div class="mfrDiv">
  3217. <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 />
  3218. <br />
  3219. <div style="width: 100%; text-align: center;">
  3220. </div>
  3221. <div style="width: 100%; text-align: center;">
  3222. </div>
  3223. </div>
  3224. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  3225. </td><td>化学物质 EPOXY ADH DP100 1.7 FL OZ CLEAR
  3226. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3227. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  3228. </div>
  3229. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-DP100CLR | DP100 1.7OZ CLEAR&quot;]);" href="http://www.mouser.com/ds/2/1/3m_517-DP100CLR-356515.pdf" target="_blank">数据表</a>
  3230. </td><td>
  3231. <table>
  3232. <tr align="center">
  3233. <td style="padding-top: 5px">
  3234. </td>
  3235. </tr>
  3236. <tr align="center">
  3237. <td style="padding-top: 5px; padding-bottom: 5px">
  3238. </td>
  3239. </tr>
  3240. </table></td><td>
  3241. </td><td class="SearchResultsBuyColumn">
  3242. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_pnlRestricted">
  3243. <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>
  3244. </div>
  3245. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  3246. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  3247. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=mKoBufTnax1VMYj5r5e8lw%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=mKoBufTnax1VMYj5r5e8lw%3d%3d" target="_blank">详细信息</a>
  3248. </div>
  3249. </td><td>Adhesives
  3250. </td><td>
  3251. </td><td>1.7 oz
  3252. </td><td>Tube
  3253. </td>
  3254. </tr><tr class="SearchResultsRowEven" data-partnumber="571-275447-1" data-index="24">
  3255. <td class="td-select" align="center">
  3256. <div style="padding: 5px 5px 0 5px;">
  3257. <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>
  3258. </div>
  3259. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/tycoelectronics/images/pr7b54012b.jpg</div></a></td><td>
  3260. <div style="text-align:left;">
  3261. <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 />
  3262. <br />
  3263. <br />
  3264. </div></td><td>
  3265. <div class="mfrDiv">
  3266. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/TE-Connectivity-AMP/275447-1/?qs=sGAEpiMZZMvJqaFk9BIiv8pYiNd2j5UPCohDqwYGQjk%3d">275447-1</a><br />
  3267. <br />
  3268. <div style="width: 100%; text-align: center;">
  3269. </div>
  3270. <div style="width: 100%; text-align: center;">
  3271. </div>
  3272. </div>
  3273. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../teampconnectors">TE Connectivity / AMP</a>
  3274. </td><td>化学物质 SEALING & DIELECTRIC COMPOUND
  3275. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3276. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3277. </div>
  3278. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;TE Connectivity / AMP&quot;,&quot;571-275447-1 | 275447-1&quot;]);" href="http://www.mouser.com/ds/2/418/NG_CD_275447_B-625426.pdf" target="_blank">数据表</a>
  3279. </td><td>
  3280. <table>
  3281. <tr align="center">
  3282. <td style="padding-top: 5px">
  3283. </td>
  3284. </tr>
  3285. <tr align="center">
  3286. <td style="padding-top: 5px; padding-bottom: 5px">
  3287. </td>
  3288. </tr>
  3289. </table></td><td>
  3290. </td><td class="SearchResultsBuyColumn">
  3291. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_pnlRestricted">
  3292. <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>
  3293. </div>
  3294. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  3295. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3296. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=4%252bj1D2Vsm1CB7OeZw1CBcA%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=4%252bj1D2Vsm1CB7OeZw1CBcA%3d%3d" target="_blank">详细信息</a>
  3297. </div>
  3298. </td><td>Sealants
  3299. </td><td>
  3300. </td><td>95.25 mm x 95.25 mm
  3301. </td><td>Roll
  3302. </td>
  3303. </tr><tr class="SearchResultsRowOdd" data-partnumber="517-62-9171-9153-8" data-index="25">
  3304. <td class="td-select" align="center">
  3305. <div style="padding: 5px 5px 0 5px;">
  3306. <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>
  3307. </div>
  3308. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/62-9171-9153-8.jpg</div></a></td><td>
  3309. <div style="text-align:left;">
  3310. <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 />
  3311. <br />
  3312. <br />
  3313. </div></td><td>
  3314. <div class="mfrDiv">
  3315. <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 />
  3316. <br />
  3317. <div style="width: 100%; text-align: center;">
  3318. </div>
  3319. <div style="width: 100%; text-align: center;">
  3320. </div>
  3321. </div>
  3322. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  3323. </td><td>化学物质 SCOTCH-WELD 5.3MM MIX NOZZLE SQ GOLD
  3324. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3325. <img src="/Images/icon_ar_red.gif" alt='Mouser目前不销售该产品。' title='Mouser目前不销售该产品。' />
  3326. </div>
  3327. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-62-9171-9153-8 | 62-9171-9153-8&quot;]);" href="http://www.mouser.com/ds/2/1/78923671412-37988.pdf" target="_blank">数据表</a>
  3328. </td><td>
  3329. <table>
  3330. <tr align="center">
  3331. <td style="padding-top: 5px">
  3332. <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>
  3333. </td>
  3334. </tr>
  3335. <tr align="center">
  3336. <td style="padding-top: 5px; padding-bottom: 5px">
  3337. </td>
  3338. </tr>
  3339. </table></td><td>
  3340. </td><td class="SearchResultsBuyColumn">
  3341. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlRestricted">
  3342. <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>
  3343. </div>
  3344. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  3345. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  3346. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=4yhX4kfwF3DHgHuVXU7ZUA%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=4yhX4kfwF3DHgHuVXU7ZUA%3d%3d" target="_blank">详细信息</a>
  3347. </div>
  3348. </td><td>Application Tools
  3349. </td><td>Applicator
  3350. </td><td>5.3 mm
  3351. </td><td>Cartridge
  3352. </td>
  3353. </tr><tr class="SearchResultsRowEven" data-partnumber="517-DP-190" data-index="26">
  3354. <td class="td-select" align="center">
  3355. <div style="padding: 5px 5px 0 5px;">
  3356. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$chkSelect" onclick="javascript:RowSelected(26, this.checked);" /></span>
  3357. </div>
  3358. </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>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/3m/images/DP-190.jpg</div></a></td><td>
  3359. <div style="text-align:left;">
  3360. <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 />
  3361. <br />
  3362. <br />
  3363. </div></td><td>
  3364. <div class="mfrDiv">
  3365. <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 />
  3366. <br />
  3367. <div style="width: 100%; text-align: center;">
  3368. </div>
  3369. <div style="width: 100%; text-align: center;">
  3370. </div>
  3371. </div>
  3372. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../3mesm">3M Electronic Specialty</a>
  3373. </td><td>化学物质 S/W DP-190 GRY EPXY ADH 50ML DUO-PAK
  3374. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3375. <img src="/Images/icon_ar_red.gif" alt='Mouser 目前在您所在地区不销售该产品。' title='Mouser 目前在您所在地区不销售该产品。' />
  3376. </div>
  3377. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;3M Electronic Specialty&quot;,&quot;517-DP-190 | DP-190-GRAY&quot;]);" href="http://www.mouser.com/ds/2/1/78690029521-42292.pdf" target="_blank">数据表</a>
  3378. </td><td>
  3379. <table>
  3380. <tr align="center">
  3381. <td style="padding-top: 5px">
  3382. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../ProductDetail/3M-Electronic-Specialty/DP-190-GRAY/?qs=sGAEpiMZZMvJqaFk9BIivyt5kB31WvDFL3RShyRf%2fQA%3d">更多信息可用 </a>
  3383. </td>
  3384. </tr>
  3385. <tr align="center">
  3386. <td style="padding-top: 5px; padding-bottom: 5px">
  3387. </td>
  3388. </tr>
  3389. </table></td><td>
  3390. </td><td class="SearchResultsBuyColumn">
  3391. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_pnlRestricted">
  3392. <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>
  3393. </div>
  3394. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  3395. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  3396. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=JSo1CSzgIV%252bfb3Tsv7%252bJow%3d%3d&#39;);return false;" href="../../../../Search/include/CompliantByExemption.aspx?qs=JSo1CSzgIV%252bfb3Tsv7%252bJow%3d%3d" target="_blank">详细信息</a>
  3397. </div>
  3398. </td><td>Adhesives
  3399. </td><td>Epoxy Compound
  3400. </td><td>50 mL
  3401. </td><td>Plastic Tube
  3402. </td>
  3403. </tr><tr class="SearchResultsRowOdd" data-partnumber="532-100200F00000G" data-index="27">
  3404. <td class="td-select" align="center">
  3405. <div style="padding: 5px 5px 0 5px;">
  3406. <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>
  3407. </div>
  3408. </td><td></td><td>
  3409. <div style="text-align:left;">
  3410. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../ProductDetail/Aavid-Thermalloy/100200F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrFbTKY%2fl0r14%3d">532-100200F00000G</a><br />
  3411. <br />
  3412. <br />
  3413. </div></td><td>
  3414. <div class="mfrDiv">
  3415. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../ProductDetail/Aavid-Thermalloy/100200F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrFbTKY%2fl0r14%3d">100200F00000G</a><br />
  3416. <br />
  3417. <div style="width: 100%; text-align: center;">
  3418. </div>
  3419. <div style="width: 100%; text-align: center;">
  3420. </div>
  3421. </div>
  3422. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../Aavid-Thermalloy">Aavid Thermalloy</a>
  3423. </td><td>化学物质 SIL-FREE GREASE WHITE 5.0oz TUBE
  3424. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3425. </div>
  3426. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Aavid Thermalloy&quot;,&quot;532-100200F00000G | 100200F00000G&quot;]);" href="http://www.aavid.com/product-group/interface/greases" target="_blank">数据表</a>
  3427. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">37<br/>有库存</span>
  3428. <table>
  3429. <tr align="center">
  3430. <td style="padding-top: 5px">
  3431. </td>
  3432. </tr>
  3433. <tr align="center">
  3434. <td style="padding-top: 5px; padding-bottom: 5px">
  3435. </td>
  3436. </tr>
  3437. </table></td><td>
  3438. <table class="PriceBreaks" cellspacing="0" border="0">
  3439. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3440. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3441. </td>
  3442. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3443. </td>
  3444. </tr>
  3445. <tr>
  3446. <td class="PriceBreakQuantity">
  3447. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  3448. </td>
  3449. <td class="PriceBreakPrice">
  3450. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥292.4766</span>
  3451. </td>
  3452. </tr>
  3453. <tr>
  3454. <td class="PriceBreakQuantity">
  3455. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,5);">5:</a>
  3456. </td>
  3457. <td class="PriceBreakPrice">
  3458. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥283.6314</span>
  3459. </td>
  3460. </tr>
  3461. <tr>
  3462. <td class="PriceBreakQuantity">
  3463. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  3464. </td>
  3465. <td class="PriceBreakPrice">
  3466. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥275.3127</span>
  3467. </td>
  3468. </tr>
  3469. <tr>
  3470. <td class="PriceBreakQuantity">
  3471. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
  3472. </td>
  3473. <td class="PriceBreakPrice">
  3474. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥258.0552</span>
  3475. </td>
  3476. </tr>
  3477. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3478. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3479. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,50);">50:</a>
  3480. </td>
  3481. <td class="PriceBreakPrice">
  3482. <a title="单击查看其他价格间断。" href="../../../../ProductDetail/Aavid-Thermalloy/100200F00000G/?qs=sGAEpiMZZMvJqaFk9BIivz4od8xELqNrFbTKY%2fl0r14%3d">查看</a>
  3483. </td>
  3484. </tr>
  3485. <tr>
  3486. <td><br /></td>
  3487. </tr>
  3488. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3489. <td colspan="2" style="text-align: center;">
  3490. </td>
  3491. </tr>
  3492. </table>
  3493. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy&#39;)">
  3494. <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 />
  3495. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl27$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 25);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl08_btnBuy" title="购买 100200F00000G" class="buy-button" /><br />
  3496. <table cellspacing="0" border="0" style="width: 100%;">
  3497. <tr>
  3498. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3499. 最低:
  3500. </td>
  3501. <td style="padding-left: 2px; text-align: left;">
  3502. 1
  3503. </td>
  3504. </tr>
  3505. <tr>
  3506. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3507. 多个:
  3508. </td>
  3509. <td style="padding-left: 2px; text-align: left;">
  3510. 1
  3511. </td>
  3512. </tr>
  3513. </table>
  3514. </div>
  3515. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  3516. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3517. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=S%2faC6yOeF6xzp7CtdKJXkQ%3d%3d&#39;);return false;" href="../../../../Search/include/RoHSCompliant.aspx?qs=S%2faC6yOeF6xzp7CtdKJXkQ%3d%3d" target="_blank">详细信息</a>
  3518. </div>
  3519. </td><td>
  3520. </td><td>
  3521. </td><td>
  3522. </td><td>
  3523. </td>
  3524. </tr>
  3525. </table>
  3526. </div>
  3527. </td>
  3528. </tr>
  3529. <tr>
  3530. <td class="tdSearchResultsPagingBottom">
  3531. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  3532. <tr>
  3533. <td>
  3534. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  3535. </td>
  3536. <td>
  3537. <input type="submit" name="ctl00$ContentMain$btn4" value="对比所选" onclick="javascript:if(!IsAnyChecked(true) &amp;&amp; 0 == 0) { alert(&#39;请选择您希望对比的产品。&#39;); return false; };" id="ctl00_ContentMain_btn4" title="对比所选" class="compare-Selected-Button" ImageUrl="~/Images/Search/buy_selected.gif" />
  3538. </td>
  3539. <td>
  3540. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  3541. </td>
  3542. <td style="padding-left: 40px;">
  3543. <div class="floatrightpager">
  3544. <span class="bold">
  3545. 页面:
  3546. </span>
  3547. <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>
  3548. </div>
  3549. </td>
  3550. </tr>
  3551. </table>
  3552. </td>
  3553. </tr>
  3554. <tr>
  3555. <td>
  3556. <!--- Search Tips --->
  3557. </td>
  3558. </tr>
  3559. <tr>
  3560. <td>
  3561. <!-- SOP Section 2 -->
  3562. </td>
  3563. </tr>
  3564. </table>
  3565. </div>
  3566. </div><!-- #liProducts-->
  3567. <!-- Datasheets tab -->
  3568. <!-- #liDatasheets-->
  3569. <!-- Images tab -->
  3570. <!-- #liImages-->
  3571. <!-- Newest Products tab -->
  3572. <!-- #liProducts-->
  3573. </div>
  3574. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  3575. <div>
  3576. <span class="popular-searches-label">热门搜索:</span>
  3577. <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>
  3578. </div>
  3579. </div>
  3580. <div style="visibility: hidden;">
  3581. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  3582. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  3583. <span id="SearchResultCount">906</span>
  3584. <div id="disclaimer">
  3585. 图像仅供参考<br/>请参阅产品规格</div>
  3586. </div>
  3587. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Tools-Supplies/Chemicals" />
  3588. <script type="text/javascript" src='../../../../javascript/ProductImage.js'></script>
  3589. <script type="text/javascript" src='../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  3590. <script type="text/javascript" src='../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  3591. <!--[if gte IE 9]><!-->
  3592. <script type="text/javascript" src='../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  3593. <!--<![endif]-->
  3594. <!--[if lt IE 9]>
  3595. <script type="text/javascript" src='../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  3596. <![endif]-->
  3597. <script type="text/javascript" src='../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  3598. <script type="text/javascript">
  3599. var subdomain = 'cn2';
  3600. </script>
  3601. </div>
  3602. <div class="aspNetHidden">
  3603. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  3604. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  3605. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  3606. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  3607. </div>
  3608. <script type="text/javascript">
  3609. //<![CDATA[
  3610. var mfrIDsArray = new Array;
  3611. //]]>
  3612. </script>
  3613. <script src='../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  3614. <script type="text/javascript">
  3615. //<![CDATA[
  3616. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  3617. </script>
  3618. <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>
  3619. <script type="text/javascript">
  3620. //<![CDATA[
  3621. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  3622. //]]>
  3623. </script>
  3624. <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>
  3625. <script type="text/javascript">
  3626. //<![CDATA[
  3627. 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';
  3628. theForm.oldSubmit = theForm.submit;
  3629. theForm.submit = WebForm_SaveScrollPositionSubmit;
  3630. theForm.oldOnSubmit = theForm.onsubmit;
  3631. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  3632. //]]>
  3633. </script>
  3634. </form>
  3635. <div id="content-container2" class="hidden">
  3636. <div id="content-fixed-width2" class="content-fixed-width">
  3637. </div>
  3638. </div>
  3639. <div id="wideFooter" class="wideFooter">
  3640. <div id="footer" class="container">
  3641. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB07|20160304.2" />
  3642. <div id="ft_table1">
  3643. <div class="row">
  3644. <div class="col-xs-12">
  3645. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  3646. <div class="floatleft padding5right">
  3647. <strong class="h3">
  3648. 快速电子邮件注册</strong>&nbsp;&nbsp;
  3649. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  3650. </div>
  3651. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  3652. 提交
  3653. </a>
  3654. </div>
  3655. <div id="ft_icons" class="ft_icons">
  3656. <div id="ft_social">
  3657. <a id="ctl00_Footer1_lnkWechat" title="微信" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Wechat&#39;,&#39;http://www.mouser.cn/wechat&#39;);" href="http://www.mouser.cn/wechat"><div id="ctl00_Footer1_imgWechat" class="ico-social wechat"></div></a>
  3658. <a id="ctl00_Footer1_lnkYouKu" title="优酷" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;YouKu&#39;,&#39;http://i.youku.com/mouserelectronics&#39;);" href="http://i.youku.com/mouserelectronics" target="_blank"><div id="ctl00_Footer1_imgYouKu" class="ico-social youku"></div></a>
  3659. <a id="ctl00_Footer1_lnkWeibo" title="新浪微博" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Sina Weibo&#39;,&#39;http://www.weibo.com/u/2498646920&#39;);" href="http://www.weibo.com/u/2498646920" target="_blank"><div id="ctl00_Footer1_imgWeigo" class="ico-social weibo"></div></a>
  3660. <a id="ctl00_Footer1_lnkFB" title="facebook" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;facebook&#39;,&#39;http://www.facebook.com/mouserelectronics&#39;);" href="http://www.facebook.com/mouserelectronics" target="_blank">
  3661. <div class="ico-social fb"></div>
  3662. </a>
  3663. <a id="ctl00_Footer1_lnkTw" title="Twitter" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Twitter&#39;,&#39;http://www.twitter.com/mouserelec&#39;);" href="http://www.twitter.com/mouserelec" target="_blank">
  3664. <div class="ico-social tw"></div>
  3665. </a>
  3666. <a id="ctl00_Footer1_lnkRSS" title="RSS" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;RSS&#39;,&#39;http://www.mouser.cn/rssfeeds&#39;);" href="http://www.mouser.cn/rssfeeds" target="_blank">
  3667. <div class="ico-social rss"></div>
  3668. </a>
  3669. <a id="ctl00_Footer1_lnkYT" title="YouTube" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;YouTube&#39;,&#39;http://www.youtube.com/mouserelec&#39;);" href="http://www.youtube.com/mouserelec" target="_blank">
  3670. <div class="ico-social yt"></div>
  3671. </a>
  3672. <a id="ctl00_Footer1_lnkGp" title="Google+" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Google+&#39;,&#39;http://google.com/+MouserElec&#39;);" href="http://google.com/+MouserElec" target="_blank">
  3673. <div class="ico-social gp"></div>
  3674. </a>
  3675. <a id="ctl00_Footer1_lnkLn" title="LinkedIn" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;LinkedIn&#39;,&#39;http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT&#39;);" href="http://www.linkedin.com/company/26041?trk=NUS_CMPY_TWIT" target="_blank">
  3676. <div class="ico-social ln"></div>
  3677. </a>
  3678. <a id="ctl00_Footer1_lnkSb" title="订阅中心" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Subscription Center&#39;,&#39;http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx&#39;);" href="http://www.mouser.cn/SubscriptionCenter/CreateSubscription.aspx">
  3679. <div class="ico-social sb"></div>
  3680. </a>
  3681. <a id="ctl00_Footer1_lnkBlog" title="Mouser博客" onclick="ga(&#39;send&#39;,&#39;event&#39;,&#39;Social Media Footer Icon&#39;,&#39;Mouser Blog&#39;,&#39;http://www.mouser.cn/blog&#39;);" href="http://www.mouser.cn/blog">
  3682. <div class="ico-social blog"></div>
  3683. </a>
  3684. </div>
  3685. </div>
  3686. </div>
  3687. </div>
  3688. </div>
  3689. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  3690. <div class="ft_wrapper">
  3691. <div id="ft_links" class="row">
  3692. <div class="col-xs-3 paddingBtm10 hidden-xs">
  3693. <strong class="paddingTopBtm10 inline-block">
  3694. 公司</strong>
  3695. <ul>
  3696. <li>
  3697. <a id="ctl00_Footer1_lnk26" href="../../../../aboutus/">关于我们</a></li>
  3698. <li>
  3699. <a id="ctl00_Footer1_lnk28" href="../../../../educationalsales/">教育销售</a></li>
  3700. <li>
  3701. <a id="ctl00_Footer1_lnk31" href="../../../../pressroom/">新闻中心</a></li>
  3702. <li>
  3703. <a id="ctl00_Footer1_lnk32" href="../../../../careers/">Mouser 工作机会</a></li>
  3704. <li>
  3705. <a id="ctl00_Footer1_lnk29" href="../../../../quality/">品质保证</a></li>
  3706. <li>
  3707. <a id="ctl00_Footer1_lnk30" href="../../../../environmental/">环境保护</a></li>
  3708. </ul>
  3709. </div>
  3710. <div class="col-xs-3 hidden-xs">
  3711. <strong class="paddingTopBtm10 inline-block">
  3712. 快速链接</strong>
  3713. <ul>
  3714. <li><a id="A7" href="/blog">
  3715. Mouser博客</a></li>
  3716. <li>
  3717. <a id="ctl00_Footer1_hlnk1" href="../../../../new/">最新产品</a></li>
  3718. <li>
  3719. <a id="ctl00_Footer1_hlnk2" href="../../../../new/products/">新产品</a></li>
  3720. <li>
  3721. <a id="ctl00_Footer1_hlnk3" href="../../../../applications/">新技术</a></li>
  3722. </ul>
  3723. </div>
  3724. <div class="col-xs-12 col-sm-3">
  3725. <strong class="paddingTopBtm10 inline-block">
  3726. 支持</strong>
  3727. <ul>
  3728. <li><a id="A3" href="/feedback.aspx">
  3729. 反馈</a></li>
  3730. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  3731. 帮助</a></li>
  3732. <li>
  3733. <a id="ctl00_Footer1_lnk27" href="../../../../contact/">联系我们</a></li>
  3734. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  3735. 浏览器支持</a></li>
  3736. <li><a id="A6" href="/cookie-policy/">
  3737. Cookie政策</a></li>
  3738. </ul>
  3739. </div>
  3740. <div class="col-xs-12 col-sm-3">
  3741. <strong class="paddingTopBtm10 inline-block">
  3742. 昴氏(上海)电子贸易有限公司</strong>
  3743. <ul>
  3744. <li>
  3745. <h4>
  3746. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  3747. </li>
  3748. </ul>
  3749. </div>
  3750. </div>
  3751. </div>
  3752. </div>
  3753. <div class="row">
  3754. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  3755. <div id="ft_copy">
  3756. <span class="ft_terms">
  3757. <a id="A1" href="/privacypolicy/">
  3758. 隐私政策</a>
  3759. &nbsp;&nbsp;|&nbsp;&nbsp;
  3760. <a id="href3" href="/saleterms/">
  3761. 销售条款</a>
  3762. <br />
  3763. </span>
  3764. <span class="ft_copyright">
  3765. 版权所有©2016 Mouser Electronics, Inc
  3766. |
  3767. 沪ICP备15042575号-1
  3768. <br />
  3769. </span>
  3770. <span class="ft_trade">
  3771. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  3772. </span>
  3773. <span class="ft_hq">
  3774. Corporate headquarters and logistics center in Mansfield, Texas USA.
  3775. </span>
  3776. <br />
  3777. <span class="ft_ClassicMobile">
  3778. <strong>
  3779. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../m_Home.aspx">通过移动设备查看</a></strong>
  3780. </span>
  3781. </div>
  3782. </div>
  3783. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  3784. <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>
  3785. <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>
  3786. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  3787. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  3788. </a>
  3789. <a id="ctl00_Footer1_lnkSiteSecureSeal" class="ft_cert_padding ft_secure" href="https://seal.qualys.com/sealserv/info/?i=c8b29c82-965e-403b-956c-c855241927bb" target="_blank"><img id="ctl00_Footer1_imgSiteSecureSeal" oncontextmenu="javascript:alert(&#39;Copying Prohibited by Law&#39;); return false;" src="//seal.qualys.com/sealserv/seal.gif?i=c8b29c82-965e-403b-956c-c855241927bb" alt="Qualys Secure Seal" style="border-style:None;" /></a>
  3790. <a id="ctl00_Footer1_Hyperlink1" class="ft_cert_padding ft_sgs" href="http://www.sgs.gov.cn/lz/licenseLink.do?method=licenceView&amp;entyId=20120329100456493" target="_blank" style="text-decoration:none;"><img id="ctl00_Footer1_imgChinaCN2" src="../../../../images/footer/icon_SGS.gif" style="border-style:None;height:37px;width:45px;" />&nbsp;&nbsp;&nbsp;
  3791. </a>
  3792. </div>
  3793. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  3794. <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>
  3795. <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>
  3796. <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>
  3797. <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>
  3798. </div>
  3799. </div>
  3800. <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>
  3801. <script type="text/javascript">
  3802. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  3803. </script>
  3804. </div>
  3805. </div>
  3806. <script src="../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  3807. <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>
  3808. </body>
  3809. </html>