37.html 383 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468
  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_688f337f-d0a1-45da-88a2-d928564757dc-61840-354661';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. 数字电位计 IC | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应数字电位计 IC 。Mouser提供数字电位计 IC 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="数字电位计 IC" /><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","CV/oTLI1QsliD1nGfnT8Ttw0V1QnPgsag+jpwgb49Qc=",2]);_gaq.push(["_setCustomVar",31,"Cart","2c17b1f2-d51a-497f-9f04-1b6ad37dfec4",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA126AA195",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '579-MCP4018T502ELT',
  65. 'name': 'Digital Potentiometer ICs 5K I2C single 7-bit volatile memory',
  66. 'category': 'Digital Potentiometer ICs',
  67. 'brand': 'Microchip Technology',
  68. 'variant': 'MCP4018T-502E/LT',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '700-DS1804Z-010',
  74. 'name': 'Digital Potentiometer ICs NV Trimmer',
  75. 'category': 'Digital Potentiometer ICs',
  76. 'brand': 'Maxim Integrated',
  77. 'variant': 'DS1804Z-010+',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '700-DS1267BS-010+',
  83. 'name': 'Digital Potentiometer ICs Digital Sextet Potentiometer',
  84. 'category': 'Digital Potentiometer ICs',
  85. 'brand': 'Maxim Integrated',
  86. 'variant': 'DS1267BS-010+',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '584-AD5263BRUZ200',
  92. 'name': 'Digital Potentiometer ICs IC Quad 8-Bit I2C',
  93. 'category': 'Digital Potentiometer ICs',
  94. 'brand': 'Analog Devices',
  95. 'variant': 'AD5263BRUZ200',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '584-AD5231BRUZ10-R7',
  101. 'name': 'Digital Potentiometer ICs IC 10-Bit EEMEM',
  102. 'category': 'Digital Potentiometer ICs',
  103. 'brand': 'Analog Devices',
  104. 'variant': 'AD5231BRUZ10-REEL7',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '584-AD5272BCPZ-20-R7',
  110. 'name': 'Digital Potentiometer ICs 1024p 5v SGL CHI2C 50-TP Mem Digi Rstat',
  111. 'category': 'Digital Potentiometer ICs',
  112. 'brand': 'Analog Devices',
  113. 'variant': 'AD5272BCPZ-20-RL7',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '968-X9C503SZ',
  119. 'name': 'Digital Potentiometer ICs 50K EEPOTTM POT CMOS 8LD COM',
  120. 'category': 'Digital Potentiometer ICs',
  121. 'brand': 'Intersil',
  122. 'variant': 'X9C503SZ',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '584-AD5293BRUZ-20-R7',
  128. 'name': 'Digital Potentiometer ICs 1024-pos 1% w/SPI interface',
  129. 'category': 'Digital Potentiometer ICs',
  130. 'brand': 'Analog Devices',
  131. 'variant': 'AD5293BRUZ-20-RL7',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '584-AD5207BRUZ10-R7',
  137. 'name': 'Digital Potentiometer ICs DUAL 8-BIT',
  138. 'category': 'Digital Potentiometer ICs',
  139. 'brand': 'Analog Devices',
  140. 'variant': 'AD5207BRUZ10-RL7',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '595-TPL0501-100RSER',
  146. 'name': 'Digital Potentiometer ICs 256-TAP,100K,SGL CH POT',
  147. 'category': 'Digital Potentiometer ICs',
  148. 'brand': 'Texas Instruments',
  149. 'variant': 'TPL0501-100RSER',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '584-AD5232BRUZ100',
  155. 'name': 'Digital Potentiometer ICs IC Dual 8Bit EEMEM',
  156. 'category': 'Digital Potentiometer ICs',
  157. 'brand': 'Analog Devices',
  158. 'variant': 'AD5232BRUZ100',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '584-AD8403ARUZ10-R',
  164. 'name': 'Digital Potentiometer ICs IC QUAD CH 8-BIT',
  165. 'category': 'Digital Potentiometer ICs',
  166. 'brand': 'Analog Devices',
  167. 'variant': 'AD8403ARUZ10-REEL',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '584-AD5162BRMZ100-R7',
  173. 'name': 'Digital Potentiometer ICs IC Dual 8-Bit SPI',
  174. 'category': 'Digital Potentiometer ICs',
  175. 'brand': 'Analog Devices',
  176. 'variant': 'AD5162BRMZ100-RL7',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '700-MAX5391NATE+T',
  182. 'name': 'Digital Potentiometer ICs Dl 256-Tap Volatile Linear Taper',
  183. 'category': 'Digital Potentiometer ICs',
  184. 'brand': 'Maxim Integrated',
  185. 'variant': 'MAX5391NATE+T',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '700-MAX5391LATE+T',
  191. 'name': 'Digital Potentiometer ICs Dl 256-Tap Volatile Linear Taper',
  192. 'category': 'Digital Potentiometer ICs',
  193. 'brand': 'Maxim Integrated',
  194. 'variant': 'MAX5391LATE+T',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '579-MCP4018T103E/LT',
  200. 'name': 'Digital Potentiometer ICs 10K I2C single 7-bit volatile memory',
  201. 'category': 'Digital Potentiometer ICs',
  202. 'brand': 'Microchip Technology',
  203. 'variant': 'MCP4018T-103E/LT',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '584-AD5160BRJZ10-R7',
  209. 'name': 'Digital Potentiometer ICs IC 8-Bit SPI',
  210. 'category': 'Digital Potentiometer ICs',
  211. 'brand': 'Analog Devices',
  212. 'variant': 'AD5160BRJZ10-RL7',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '700-DS1804-010',
  218. 'name': 'Digital Potentiometer ICs NV Trimmer',
  219. 'category': 'Digital Potentiometer ICs',
  220. 'brand': 'Maxim Integrated',
  221. 'variant': 'DS1804-010+',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '700-MAX5481EUD',
  227. 'name': 'Digital Potentiometer ICs 10-Bit Nonvolatile Linear-Taper',
  228. 'category': 'Digital Potentiometer ICs',
  229. 'brand': 'Maxim Integrated',
  230. 'variant': 'MAX5481EUD+',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '584-AD8400ARZ1',
  236. 'name': 'Digital Potentiometer ICs SGL CH 8-BIT',
  237. 'category': 'Digital Potentiometer ICs',
  238. 'brand': 'Analog Devices',
  239. 'variant': 'AD8400ARZ1',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '584-AD5290YRMZ10',
  245. 'name': 'Digital Potentiometer ICs IC +/-15V 8-Bit',
  246. 'category': 'Digital Potentiometer ICs',
  247. 'brand': 'Analog Devices',
  248. 'variant': 'AD5290YRMZ10',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '584-AD5293BRUZ-20',
  254. 'name': 'Digital Potentiometer ICs 1024-pos 1% w/SPI interface',
  255. 'category': 'Digital Potentiometer ICs',
  256. 'brand': 'Analog Devices',
  257. 'variant': 'AD5293BRUZ-20',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '700-DS1809Z-010',
  263. 'name': 'Digital Potentiometer ICs Dallastat',
  264. 'category': 'Digital Potentiometer ICs',
  265. 'brand': 'Maxim Integrated',
  266. 'variant': 'DS1809Z-010+',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '595-TPL0401A-10DCKR',
  272. 'name': 'Digital Potentiometer ICs 128 TAPS DIGITAL POT',
  273. 'category': 'Digital Potentiometer ICs',
  274. 'brand': 'Texas Instruments',
  275. 'variant': 'TPL0401A-10DCKR',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '700-MAX5402EUA',
  281. 'name': 'Digital Potentiometer ICs 256-Tap Low-Drift',
  282. 'category': 'Digital Potentiometer ICs',
  283. 'brand': 'Maxim Integrated',
  284. 'variant': 'MAX5402EUA+',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','CV/oTLI1QsliD1nGfnT8Ttw0V1QnPgsag+jpwgb49Qc=');
  290. ga('set','dimension31','2c17b1f2-d51a-497f-9f04-1b6ad37dfec4');
  291. ga('set','dimension13','163AA125AA126AA195');
  292. ga('set','metric2',3018);
  293. ga('set','dimension5','Digital Potentiometer ICs');
  294. ga('set','dimension48','6j752');
  295. ga('set','dimension3','Refine');
  296. ga('set','dimension55','Products');
  297. ga('send', 'pageview');
  298. </script>
  299. <link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752" rel="canonical" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752" /><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/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" /><script type="text/javascript" src="/msrqqqqxsqb.js" defer></script><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#yxezcaswaauztuaqaww{display:none!important}</style></head>
  300. <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
  301. <script src='../../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
  302. <script src='../../../../../flash/js/empty.file.js' type="text/javascript"></script>
  303. <script src='../../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
  304. <script src='../../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
  305. <script src='../../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
  306. <!--[if lt IE 9]>
  307. <script src='../../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
  308. <![endif]-->
  309. <form method="post" action="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/" 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='10973414';
  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='10973414';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
  343. var left = (screen.width / 2) - (800 / 2);var top = (screen.height / 2) - (505 / 2); var msgWindow = window.open(url,'MsgWindow','height=505,width=800,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0');
  344. }
  345. function GenerateClientID(prefix, i, suffix) {
  346. if (i < 10) { return prefix + '0' + String(i) + suffix; }
  347. else { return prefix + String(i) + suffix; }
  348. }
  349. var checked = false;
  350. function SelectAll() {
  351. checked = !checked;
  352. var i = 3;
  353. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  354. while (i < 29) {
  355. if (chkSelect != null) chkSelect.checked = checked;
  356. i = i + 1;
  357. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  358. }
  359. }
  360. function IsAllChecked(checked) {
  361. var i = 3;
  362. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  363. while (i < 29) {
  364. if (chkSelect != null && chkSelect.checked != checked) return false;
  365. i = i + 1;
  366. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  367. }
  368. return true;
  369. }
  370. function IsAnyChecked(checked) {
  371. return !IsAllChecked(!checked);
  372. }
  373. function SelectRow(row, checked) {
  374. document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
  375. }
  376. function RowSelected(index, checked) { }
  377. function GetQuantityTextboxByRow(row) {
  378. return GetQuantityTextboxByIndex(row + 2);
  379. }
  380. function GetQuantityTextboxByIndex(index) {
  381. return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
  382. }
  383. function SelectQuantity(row, quantity) {
  384. txtQuantity = GetQuantityTextboxByRow(row);
  385. if (txtQuantity == null) { return; }
  386. txtQuantity.value = quantity;
  387. SelectRow(row, true);
  388. }
  389. var qtyRegEx = /^([0]|\s)*$/;
  390. function IsQuantityEmptyOrZero(quantity) {
  391. return qtyRegEx.test(quantity);
  392. }
  393. function QuantityChanged(row, quantity) {
  394. SelectRow(row, !IsQuantityEmptyOrZero(quantity));
  395. }
  396. var QuantityRowSelectedBase = RowSelected;
  397. function QuantityRowSelected(index, checked) {
  398. QuantityRowSelectedBase(index, checked);
  399. txtQuantity = GetQuantityTextboxByIndex(index);
  400. if (txtQuantity == null) { return; }
  401. if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
  402. else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
  403. }
  404. RowSelected = QuantityRowSelected;
  405. //]]>
  406. </script>
  407. <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&amp;t=5f9d5645" type="text/javascript"></script>
  408. <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&amp;t=5f9d5645" type="text/javascript"></script>
  409. <div id="cookie-notification-bar">
  410. </div>
  411. <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
  412. <div id="wideGab" class="wideGab">
  413. <div id="ctl00_globalActionBar" class="global-action-bar">
  414. <div id="gab-container" class="container">
  415. <div id="contact" class="row">
  416. <div class="topPadding col-xs-6">
  417. <div class="inline-block">
  418. <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
  419. <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>&nbsp;
  420. 400-821-6111</a><span id="yxezcaswaauztuaqaww"><a rel="file" style="display: none;" href="xxrrtbuu.html">ubqtbausacydzezvysubqtb</a></span>
  421. &nbsp;&nbsp;&nbsp;&nbsp;<span class="pipe">|</span>&nbsp;&nbsp;&nbsp;&nbsp;
  422. <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
  423. 反馈</a>
  424. </div>
  425. <span class="qqIcon inline-block">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
  426. </span>&nbsp;&nbsp;
  427. </div>
  428. <div class="col-xs-6 align-right">
  429. <div id="tdImg" class="inline-block topPadding9px">
  430. <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" class="smallgrey">
  431. <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
  432. <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
  433. </div>
  434. <div class="topPadding inline-block">
  435. <span class="pipe">|</span>&nbsp;&nbsp;&nbsp;
  436. <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7DPJaGveI7GqYfnrBpaJiySfWGm3J4Kvlx29iW6jg1gCUiiNLmKScqy%252bF0vRKc9TBc">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7DPJaGveI7GqYfnrBpaJiySfWGm3J4Kvlx29iW6jg1gCUiiNLmKScqy%252bF0vRKc9TBc"><img id="ctl00_gab1_img7" class="visualAttributeImage" src="../../../../../images/international/flags/cn2.gif" alt="更改位置" style="border-width: 1px;" /></a>
  438. <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
  439. <span id="ctl00_gab1_lbl1">RMB</span>
  440. </div>
  441. </div>
  442. </div>
  443. </div>
  444. <div style="clear: both;"></div>
  445. <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
  446. class="thickbox"></a>
  447. <div id="divCurrencyPopup" class="currency-popup">
  448. <div class="currency-close">
  449. <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();">&nbsp;</a>
  450. </div>
  451. <div>
  452. <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../../images/international/flags/cn2.gif" alt="中国" />&nbsp;<span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
  453. <br/>
  454. <div style="padding: 0 20px 0 20px">
  455. <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
  456. <br />
  457. <table width="95%">
  458. <tr>
  459. <td width="20%">
  460. <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
  461. </td>
  462. <td>
  463. <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
  464. <br/>
  465. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
  466. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
  467. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
  468. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
  469. </td>
  470. </tr>
  471. </table>
  472. </div>
  473. </div>
  474. </div>
  475. <div id="cartDialog" class="CartDialog" style="display: none;">
  476. <table id="miniCartOnly">
  477. <tr id="divall">
  478. <td id="tdCart">
  479. <table style="width: 100%; padding: 0px; border: 0px">
  480. <tr>
  481. <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
  482. <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
  483. </td>
  484. <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
  485. <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
  486. </td>
  487. </tr>
  488. </table>
  489. <table id="tableMiniCartItms">
  490. <tr id="trCart">
  491. <td>
  492. <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  493. <table id="tblMiniCart">
  494. <thead>
  495. <tr>
  496. <th class="miniCartColumn">制造商</th>
  497. <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
  498. <th class="miniCartColumn MiniCartHdBg">数量</th>
  499. <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
  500. </tr>
  501. </thead>
  502. </table>
  503. <script type="text/javascript">
  504. var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
  505. var currentGuid = '2c17b1f2-d51a-497f-9f04-1b6ad37dfec4';
  506. var currentCountryCode = 'CN';
  507. var currentCurrencyCode= 'RMB';
  508. var currencyCulture = 'zh-CN';
  509. var cultureCode = 'zh-CN';
  510. var customerID = '';
  511. </script>
  512. <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  513. </td>
  514. </tr>
  515. </table>
  516. <div style="display: none; padding-top: 10px" id="divSingleItem">
  517. <table id="tblSingeItem">
  518. <tr>
  519. <!-- Here goes the single item -->
  520. <td style="padding-right: 15px">
  521. <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
  522. <td style="align: right; padding-right: 2px" id="tdSingleItms">
  523. <div id="divAll">
  524. <div id="wrapper">
  525. <div id="divLbl">
  526. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
  527. </div>
  528. <div id="divHyp">
  529. </div>
  530. </div>
  531. <div id="divRest">
  532. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
  533. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
  534. <br />
  535. <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
  536. </div>
  537. </div>
  538. </td>
  539. </tr>
  540. </table>
  541. </div>
  542. <div id="divForCart" class="divMsgLnkTotal" style="display: none">
  543. <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
  544. <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
  545. <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
  546. <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
  547. <a onclick="javascript:return MiniCart.SendToCartPage(&#39;Cart Hover&#39;,&#39;View Cart Button&#39;);" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$linkToCartAtMiniCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  548. </div>
  549. </div>
  550. </td>
  551. <td style="display: none" id="trCartSubTotal">
  552. <table class="tblMiniCartSub">
  553. <tr>
  554. <td align="right" style="padding-bottom: 5px; padding-top: 2px">
  555. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
  556. <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
  557. </td>
  558. </tr>
  559. <tr>
  560. <td align="right" style="padding-bottom: 5px">
  561. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
  562. </td>
  563. </tr>
  564. <tr>
  565. <td align="left" style="padding-bottom: 5px">
  566. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
  567. </td>
  568. </tr>
  569. <tr>
  570. <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
  571. <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack(&#39;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune&#39;,&#39;&#39;)" style="color:White;text-decoration:none;">继续购物</a>
  572. <a onclick="return MiniCart.SendToCartPage(&#39;Add to Cart Modal&#39;,&#39;View Cart&#39;);" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  573. </td>
  574. </tr>
  575. </table>
  576. <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
  577. </td>
  578. </tr>
  579. <tr id="trHideModalCheckBox" style="display: none">
  580. <td colspan="2">
  581. <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
  582. </td>
  583. </tr>
  584. </table>
  585. <script type="text/javascript">
  586. $(document).ready(function () {
  587. MiniCart.source = 'refine';
  588. });
  589. </script>
  590. </div>
  591. <script type="text/javascript">
  592. function OpenCurrencyPopup() {
  593. $("#tblink").trigger('click');
  594. }
  595. function CloseCurrencyPopup() {
  596. var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
  597. var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
  598. if (ddlCurrency != null && hidCurrencyValue != null) {
  599. ddlCurrency.selectedIndex = hidCurrencyValue.value;
  600. }
  601. window.location.reload();
  602. }
  603. </script>
  604. </div>
  605. </div>
  606. <div id="wideHeader" class="wideHeader">
  607. <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
  608. <div id="search" class="row">
  609. <div id="logo" class='col-xs-4'>
  610. <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
  611. </div>
  612. <div id="search-block" class="col-xs-4">
  613. <div id="search-title">
  614. 物料编号/关键字
  615. </div>
  616. <div id="search-bar">
  617. <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_NavHeader_btn1&#39;)">
  618. <div id="searchPartNumberBox" class="search-box inline-block">
  619. <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
  620. <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
  621. </div>
  622. <div class="inline-block">
  623. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
  624. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
  625. </div>
  626. </div>
  627. </div>
  628. </div>
  629. <div id="account" class="col-xs-4 align-right">
  630. <ul>
  631. <li>
  632. </li>
  633. <li>
  634. <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7DPJaGveI7GqYfnrBpaJiySfWGm3J4Kvlx29iW6jg1gCUiiNLmKScqy%252bF0vRKc9TBc">登录</a>
  635. </li>
  636. <li>
  637. </li>
  638. <li>
  639. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  643. </li>
  644. <li>
  645. <!-- Mush:TBC -->
  646. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  647. </li>
  648. </ul>
  649. </div>
  650. </div>
  651. <div id="navArea" class="row">
  652. <div class="col-xs-12">
  653. <div id="navMain" class="inline-block">
  654. <div class="navbar">
  655. <ul class="topnav">
  656. <li>
  657. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  658. <ul class="subnav" id="subnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  661. </li>
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  670. </li>
  671. </ul>
  672. </li>
  673. <li>
  674. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  675. <ul class="subnav" id="subnav">
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  678. </li>
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  687. </li>
  688. </ul>
  689. </li>
  690. <li>
  691. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  692. <ul class="subnav" id="subnav">
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  695. </li>
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  725. </li>
  726. </ul>
  727. </li>
  728. <li>
  729. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  730. <ul class="subnav" id="subnav">
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  733. </li>
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  760. </li>
  761. </ul>
  762. </li>
  763. <li>
  764. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  765. <ul class="subnav" id="subnav">
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  768. </li>
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  777. </li>
  778. </ul>
  779. </li>
  780. <li>
  781. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  782. <ul class="subnav" id="subnav">
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  785. </li>
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  797. </li>
  798. </ul>
  799. </li>
  800. </ul>
  801. </div>
  802. </div>
  803. <div class="onlineCatalog inline-block">
  804. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  805. </div>
  806. </div>
  807. </div>
  808. </div>
  809. <div style="visibility: hidden; height: 0px;">
  810. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  811. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  812. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  813. </div>
  814. <script type="text/javascript">
  815. $(document).ready(function () {
  816. //* change to html5 catalog if javascript is enabled *
  817. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  818. });
  819. </script>
  820. <script type="text/javascript" src='../../../../../javascript/genLib.js'></script>
  821. </div>
  822. <div id="ctl00_divWide" class="divWide">
  823. <link rel="stylesheet" type="text/css" href='../../../../../css/fontawesome/css/font-awesome.min.css' />
  824. <br />
  825. <strong></strong>
  826. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  827. <strong>></strong>
  828. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" href="../../../../_/N-5gcb/" style="font-size: 9pt; font-weight: bold;">半导体</a>
  829. <strong>></strong>
  830. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-6j73k/" style="font-size: 9pt; font-weight: bold;">集成电路 - IC</a>
  831. <strong>></strong>
  832. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">数字电位计 IC</a>
  833. <hr />
  834. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  835. <div class="categorySearchLimits">
  836. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  837. </div>
  838. </div>
  839. </div>
  840. <table border="0" width="100%">
  841. <tr>
  842. <td>
  843. <div id="ctl00_ContentMain_pnl3">
  844. <div id="category-top" class="category-content">
  845. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> 数字电位计 IC</h1></a>
  846. <img id="ctl00_ContentMain_imageCat" class="category-img" src="../../../../../images/DisplayCategories/10973414.png" alt="数字电位计 IC" />
  847. <!--Marketing Content-->
  848. <table id="ctl00_ContentMain_tbl5">
  849. <tr>
  850. <td>
  851. <div class="marketing-content2">
  852. <p style="margin: 0in 0in 10pt;"><strong><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">数字电位计</span></strong><strong><span style="line-height: 115%; font-size: 9pt; font-family: arial, sans-serif; color: #333333;"> IC</span></strong><strong><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">(</span></strong><strong><span style="line-height: 115%; font-size: 9pt; font-family: arial, sans-serif; color: #333333;">Digital Potentiometer ICs</span></strong><strong><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">)</span></strong><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">,应有尽有。</span><span style="line-height: 115%; font-size: 9pt; font-family: arial, sans-serif; color: #333333;">Mouser Electronics</span><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">(贸泽电子)提供多家业界顶尖制造商的数字电位器</span><span style="line-height: 115%; font-size: 9pt; font-family: arial, sans-serif; color: #333333;">IC</span><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">。</span><span style="line-height: 115%; font-size: 9pt; font-family: arial, sans-serif; color: #333333;">Mouser Electronics</span><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">(贸泽电子)是众多数字电位器</span><span style="line-height: 115%; font-size: 9pt; font-family: arial, sans-serif; color: #333333;">IC</span><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">原厂的授权分销商,其中包括</span><span style="line-height: 115%; font-size: 9pt; font-family: arial, sans-serif; color: #333333;">Intersil</span><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">、</span><span style="line-height: 115%; font-size: 9pt; font-family: arial, sans-serif; color: #333333;">Maxim Integrated</span><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">(美信)、</span><span style="line-height: 115%; font-size: 9pt; font-family: arial, sans-serif; color: #333333;">Microchip</span><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">(微芯)、</span><span style="line-height: 115%; font-size: 9pt; font-family: arial, sans-serif; color: #333333;">ON Semiconductor</span><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">(安森美半导体)</span><span style="line-height: 115%; font-size: 9pt; font-family: arial, sans-serif; color: #333333;">......</span><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">等多家知名厂商。想了解更多数字电位器</span><span style="line-height: 115%; font-size: 9pt; font-family: arial, sans-serif; color: #333333;">IC</span><span style="line-height: 115%; font-size: 9pt; font-family: pmingliu, serif; color: #333333;">产品,请浏览下列产品分类</span><span style="line-height: 115%; font-size: 9pt; font-family: mingliu; color: #333333;">。</span></p>
  853. </div>
  854. </td>
  855. </tr>
  856. </table>
  857. <div id="ctl00_ContentMain_refinemfglogo">
  858. </div>
  859. </div><!--.category-content-->
  860. </div>
  861. </td>
  862. </tr>
  863. <tr>
  864. <td>
  865. </td>
  866. </tr>
  867. <tr>
  868. <td>
  869. <div id="refine-page2">
  870. </div>
  871. </td>
  872. </tr>
  873. </table>
  874. <div id="ctl00_ContentMain_divTabs" class="row">
  875. <div class="col-xs-12">
  876. <div id="tabsNavigation" >
  877. <ul>
  878. <li id="ctl00_ContentMain_liProductsTab" class="active">
  879. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(3,018)</span></a>
  880. </li>
  881. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  882. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Digital Potentiometer ICs&#39;);" href="../../Datasheets/_/N-6j752">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(293)</span></a>
  883. </li>
  884. <li id="ctl00_ContentMain_liImagesTab" class="">
  885. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Digital Potentiometer ICs&#39;);" href="../../Images/_/N-6j752">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(136)</span></a>
  886. </li>
  887. <li id="ctl00_ContentMain_liNewestTab" class="">
  888. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Digital Potentiometer ICs&#39;);" href="../../Newest-Products/_/N-6j752">最新产品</a>
  889. </li>
  890. </ul>
  891. </div>
  892. </div>
  893. </div>
  894. <div id="tabDivs" class="tab-divs">
  895. <script type="text/javascript">
  896. //<![CDATA[
  897. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  898. //]]>
  899. </script>
  900. <div id="ctl00_ContentMain_liProducts">
  901. <div id="refineSearchDiv">
  902. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  903. <div id="refine-keyword-search-2">
  904. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  905. <div id="boxPartSearch2">
  906. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  907. <tr>
  908. <td rowspan="3" style="vertical-align: middle">
  909. <div id="searchPartNumberBox" class="search-box" >
  910. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  911. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  912. </div>
  913. </td>
  914. </tr>
  915. <tr>
  916. <td class="chk-Search">
  917. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  918. </td>
  919. </tr>
  920. <tr>
  921. <td class="chk-Search">
  922. <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>
  923. </td>
  924. </tr>
  925. </table>
  926. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  927. </div>
  928. <script type="text/javascript" src='../../../../../flash/js/Placeholders.min.js'></script>
  929. <script type="text/javascript" src='../../../../../flash/js/watermark.js'></script>
  930. </div>
  931. </div>
  932. <div id="refine-mfg-select-2">
  933. </div>
  934. <div class="clear">
  935. </div>
  936. <table class="SearchParametricTable2">
  937. <tr>
  938. <td>
  939. <div id="AttributesDiv2">
  940. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  941. <div class="categorySearchLimits">
  942. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  943. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<span title="半导体"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx254459|Semiconductors" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973414|Digital Potentiometer ICs&#39;).checked = false;" /></span>&nbsp;<b>半导体</b>&nbsp;&#62;&nbsp;<span title="集成电路 - IC"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx10973360|Integrated Circuits - ICs" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973414|Digital Potentiometer ICs&#39;).checked = false;" /></span>&nbsp;<b>集成电路 - IC</b>&nbsp;&#62;&nbsp;<span title="数字电位计 IC"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973414|Digital Potentiometer ICs" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx10973414|Digital Potentiometer ICs" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = true;" /></span>&nbsp;<b>数字电位计 IC</b>
  944. </div>
  945. </div>
  946. <hr/>
  947. </div>
  948. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  949. <p class="applied-filter-lbl">
  950. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  951. <span id="ctl00_ContentMain_uc5_lblreccount">3,018 匹配</span>
  952. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  953. </p>
  954. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  955. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  956. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  957. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../../images/icon_tooltip.png" />
  958. <br />
  959. </div>
  960. </div>
  961. <table id="tb1" style="width: 100%;">
  962. <tr>
  963. <td>
  964. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  965. <tr>
  966. <td>
  967. <table cellpadding="0" cellspacing="0">
  968. <tr>
  969. <td>
  970. <table>
  971. <tr>
  972. <td>
  973. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  974. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  975. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  976. of parametric ids sent on the query string after the seo url is generated and redirected to.
  977. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  978. sorted parametric attributes from an endeca attribute group --->
  979. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  980. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  981. &nbsp;
  982. </div>
  983. </td>
  984. </tr>
  985. <tr>
  986. <td>
  987. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  988. <option value="4291852130">ams</option>
  989. <option value="4290538360">Analog Devices Inc.</option>
  990. <option value="4292499325">Intersil</option>
  991. <option value="4291596096">Maxim Integrated</option>
  992. <option value="4294758776">Microchip</option>
  993. <option value="4292703012">Monolithic Power Systems (MPS)</option>
  994. <option value="4294759663">ON Semiconductor</option>
  995. <option value="4294758655">Parallax</option>
  996. <option value="4294759686">Texas Instruments</option>
  997. </select>
  998. </td>
  999. </tr>
  1000. <tr>
  1001. <td>
  1002. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1003. </td>
  1004. </tr>
  1005. </table>
  1006. </td>
  1007. <td valign="bottom" style="width: 15px;">
  1008. &nbsp;
  1009. </td>
  1010. </tr>
  1011. </table>
  1012. </td><td>
  1013. <table cellpadding="0" cellspacing="0">
  1014. <tr>
  1015. <td>
  1016. <table>
  1017. <tr>
  1018. <td>
  1019. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">电阻</span>
  1020. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1021. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1022. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1023. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1024. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1025. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1026. sorted parametric attributes from an endeca attribute group --->
  1027. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1028. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688665" />
  1029. </div>
  1030. </td>
  1031. </tr>
  1032. <tr>
  1033. <td>
  1034. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688665" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688665">
  1035. <option value="4292479308">1 kOhms</option>
  1036. <option value="4292479301">2 kOhms</option>
  1037. <option value="4289580224">2 kOhms, 10 kOhms, 50 kOhms</option>
  1038. <option value="4292098611">2.1 kOhms</option>
  1039. <option value="4292098669">2.5 kOhms</option>
  1040. <option value="4292098612">2.8 kOhms</option>
  1041. <option value="4292098654">5 kOhms</option>
  1042. <option value="4292076941">5 kOhms to 100 kOhms</option>
  1043. <option value="4292475991">10 kOhms</option>
  1044. <option value="4292076864">10 kOhms, 100 kOhms</option>
  1045. <option value="4292076861">10 kOhms, 20 kOhms</option>
  1046. <option value="4292076863">10 kOhms, 30 kOhms</option>
  1047. <option value="4292076865">10 kOhms, 50 kOhms</option>
  1048. <option value="4287000649">10 kOhms, 90 kOhms</option>
  1049. <option value="4292090631">12.5 kOhms</option>
  1050. <option value="4292098674">15 kOhms</option>
  1051. <option value="4291350228">15 kOhms, 50 kOhms</option>
  1052. <option value="4292092755">16.5 kOhms</option>
  1053. <option value="4292068935">18.5 kOhms</option>
  1054. <option value="4292098670">20 kOhms</option>
  1055. <option value="4287000650">20 kOhms, 30 kOhms, 50 kOhms</option>
  1056. <option value="4292098668">22 kOhms</option>
  1057. <option value="4292098659">25 kOhms</option>
  1058. <option value="4291350227">30 kOhms, 50 kOhms</option>
  1059. <option value="4292092265">32 kOhms</option>
  1060. <option value="4292098642">33 kOhms</option>
  1061. <option value="4292098652">40 kOhms</option>
  1062. <option value="4292080749">45 kOhms</option>
  1063. <option value="4292475990">50 kOhms</option>
  1064. <option value="4292090225">57 kOhms</option>
  1065. <option value="4292098637">80 kOhms</option>
  1066. <option value="4292577004">100 kOhms</option>
  1067. <option value="4292098664">200 kOhms</option>
  1068. <option value="4292098658">250 kOhms</option>
  1069. <option value="4294571638">1 MOhms</option>
  1070. </select>
  1071. </td>
  1072. </tr>
  1073. <tr>
  1074. <td>
  1075. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1076. </td>
  1077. </tr>
  1078. </table>
  1079. </td>
  1080. <td valign="bottom" style="width: 15px;">
  1081. &nbsp;
  1082. </td>
  1083. </tr>
  1084. </table>
  1085. </td><td>
  1086. <table cellpadding="0" cellspacing="0">
  1087. <tr>
  1088. <td>
  1089. <table>
  1090. <tr>
  1091. <td>
  1092. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">温度系数</span>
  1093. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1094. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1095. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1096. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1097. sorted parametric attributes from an endeca attribute group --->
  1098. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1099. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="688731" />
  1100. &nbsp;
  1101. </div>
  1102. </td>
  1103. </tr>
  1104. <tr>
  1105. <td>
  1106. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688731" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_688731">
  1107. <option value="4292555614">0.025 PPM / C</option>
  1108. <option value="4292744525">4 PPM / C</option>
  1109. <option value="4292873780">5 PPM / C</option>
  1110. <option value="4289862482">12 PPM / C</option>
  1111. <option value="4291597005">15 PPM</option>
  1112. <option value="4294624888">+/- 30 PPM / C</option>
  1113. <option value="4292836182">30 PPM / C</option>
  1114. <option value="4292744528">35 PPM / C</option>
  1115. <option value="4286483461">45 PPM / C</option>
  1116. <option value="4294010798">50 PPM / C</option>
  1117. <option value="4292871347">60 PPM / C</option>
  1118. <option value="4292709121">80 PPM / C</option>
  1119. <option value="4276075302">85 PPM / C</option>
  1120. <option value="4292744521">92 PPM / C</option>
  1121. <option value="4294622942">+/- 100 PPM / C</option>
  1122. <option value="4294034492">100 PPM / C</option>
  1123. <option value="4292744524">125 PPM / C</option>
  1124. <option value="4292744527">150 PPM / C</option>
  1125. <option value="4294010793">200 PPM / C</option>
  1126. <option value="4292874874">250 PPM / C</option>
  1127. <option value="4294622040">+/- 300 PPM / C</option>
  1128. <option value="4293983743">300 PPM / C</option>
  1129. <option value="4292707608">450 PPM / C</option>
  1130. <option value="4292766814">500 PPM / C</option>
  1131. <option value="4292707875">600 PPM / C</option>
  1132. <option value="4292707567">650 PPM / C</option>
  1133. <option value="4292712395">700 PPM / C</option>
  1134. <option value="4291963132">750 PPM</option>
  1135. <option value="4292744526">750 PPM / C</option>
  1136. <option value="4292707607">800 PPM / C</option>
  1137. </select>
  1138. </td>
  1139. </tr>
  1140. <tr>
  1141. <td>
  1142. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1143. </td>
  1144. </tr>
  1145. </table>
  1146. </td>
  1147. <td valign="bottom" style="width: 15px;">
  1148. &nbsp;
  1149. </td>
  1150. </tr>
  1151. </table>
  1152. </td><td>
  1153. <table cellpadding="0" cellspacing="0">
  1154. <tr>
  1155. <td>
  1156. <table>
  1157. <tr>
  1158. <td>
  1159. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">容差</span>
  1160. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1161. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1162. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1163. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1164. sorted parametric attributes from an endeca attribute group --->
  1165. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1166. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="688748" />
  1167. &nbsp;
  1168. </div>
  1169. </td>
  1170. </tr>
  1171. <tr>
  1172. <td>
  1173. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688748" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_688748">
  1174. <option value="4294440917">0.025 %</option>
  1175. <option value="4290563360">- 40 % to + 20 %</option>
  1176. <option value="4290563367">- 20 % to + 55 %</option>
  1177. <option value="4294619412">1 %</option>
  1178. <option value="4290563377">8 %</option>
  1179. <option value="4294646396">10 %</option>
  1180. <option value="4294646051">15 %</option>
  1181. <option value="4294646057">20 %</option>
  1182. <option value="4294611449">25 %</option>
  1183. <option value="4294618621">30 %</option>
  1184. </select>
  1185. </td>
  1186. </tr>
  1187. <tr>
  1188. <td>
  1189. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1190. </td>
  1191. </tr>
  1192. </table>
  1193. </td>
  1194. <td valign="bottom" style="width: 15px;">
  1195. &nbsp;
  1196. </td>
  1197. </tr>
  1198. </table>
  1199. </td><td>
  1200. <table cellpadding="0" cellspacing="0">
  1201. <tr>
  1202. <td>
  1203. <table>
  1204. <tr>
  1205. <td>
  1206. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">POT 数量</span>
  1207. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1208. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1209. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1210. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1211. sorted parametric attributes from an endeca attribute group --->
  1212. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1213. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000000103" />
  1214. &nbsp;
  1215. </div>
  1216. </td>
  1217. </tr>
  1218. <tr>
  1219. <td>
  1220. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000103" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000000103">
  1221. <option value="4294002473">Dual</option>
  1222. <option value="4290381585">Hextuple</option>
  1223. <option value="4294002472">Quad</option>
  1224. <option value="4294002475">Single</option>
  1225. <option value="4292972527">Triple</option>
  1226. </select>
  1227. </td>
  1228. </tr>
  1229. <tr>
  1230. <td>
  1231. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1232. </td>
  1233. </tr>
  1234. </table>
  1235. </td>
  1236. <td valign="bottom" style="width: 15px;">
  1237. &nbsp;
  1238. </td>
  1239. </tr>
  1240. </table>
  1241. </td><td>
  1242. <table cellpadding="0" cellspacing="0">
  1243. <tr>
  1244. <td>
  1245. <table>
  1246. <tr>
  1247. <td>
  1248. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">每 POT 分接头</span>
  1249. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1250. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1251. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1252. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1253. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1254. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1255. sorted parametric attributes from an endeca attribute group --->
  1256. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1257. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="1000000153" />
  1258. </div>
  1259. </td>
  1260. </tr>
  1261. <tr>
  1262. <td>
  1263. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000000153" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_1000000153">
  1264. <option value="4292974893">8</option>
  1265. <option value="4294029402">16</option>
  1266. <option value="4294455642">32</option>
  1267. <option value="4290563366">33</option>
  1268. <option value="4294455074">64</option>
  1269. <option value="4292974904">65</option>
  1270. <option value="4294455872">100</option>
  1271. <option value="4292789984">100, 256</option>
  1272. <option value="4294029595">128</option>
  1273. <option value="4292887765">129</option>
  1274. <option value="4294455868">256</option>
  1275. <option value="4292884140">257</option>
  1276. <option value="4292996315">1024</option>
  1277. </select>
  1278. </td>
  1279. </tr>
  1280. <tr>
  1281. <td>
  1282. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1283. </td>
  1284. </tr>
  1285. </table>
  1286. </td>
  1287. <td valign="bottom" style="width: 15px;">
  1288. &nbsp;
  1289. </td>
  1290. </tr>
  1291. </table>
  1292. </td><td>
  1293. <table cellpadding="0" cellspacing="0">
  1294. <tr>
  1295. <td>
  1296. <table>
  1297. <tr>
  1298. <td>
  1299. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">弧刷存储器</span>
  1300. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  1301. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1302. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1303. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1304. sorted parametric attributes from an endeca attribute group --->
  1305. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  1306. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="1000000158" />
  1307. &nbsp;
  1308. </div>
  1309. </td>
  1310. </tr>
  1311. <tr>
  1312. <td>
  1313. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000158" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_1000000158">
  1314. <option value="4294002718">Non Volatile</option>
  1315. <option value="4294454080">Volatile</option>
  1316. </select>
  1317. </td>
  1318. </tr>
  1319. <tr>
  1320. <td>
  1321. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1322. </td>
  1323. </tr>
  1324. </table>
  1325. </td>
  1326. <td valign="bottom" style="width: 15px;">
  1327. &nbsp;
  1328. </td>
  1329. </tr>
  1330. </table>
  1331. </td><td>
  1332. <table cellpadding="0" cellspacing="0">
  1333. <tr>
  1334. <td>
  1335. <table>
  1336. <tr>
  1337. <td>
  1338. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lblheader" style="font-weight:bold;white-space:normal;">数字接口</span>
  1339. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_RangePnl">
  1340. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1341. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1342. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1343. sorted parametric attributes from an endeca attribute group --->
  1344. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnRange" />
  1345. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnDimId" value="688397" />
  1346. &nbsp;
  1347. </div>
  1348. </td>
  1349. </tr>
  1350. <tr>
  1351. <td>
  1352. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$688397" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_688397">
  1353. <option value="4292856407">2-Wire</option>
  1354. <option value="4289754503">2-Wire Parallel</option>
  1355. <option value="4288388810">2-Wire, I2C</option>
  1356. <option value="4294686174">3-Wire</option>
  1357. <option value="4292785960">3-Wire (SPI)</option>
  1358. <option value="4292491082">3-Wire, SPI</option>
  1359. <option value="4288388822">4-Wire, SPI</option>
  1360. <option value="4292974897">Contact-Closure</option>
  1361. <option value="4292839930">Debounced Pushbutton Up+ Down</option>
  1362. <option value="4294001584">Direction+Clock</option>
  1363. <option value="4293982004">I2C</option>
  1364. <option value="4294029761">Increment-Decrement</option>
  1365. <option value="4292869932">Parallel</option>
  1366. <option value="4294001572">Parallel (2-Wire)</option>
  1367. <option value="4292974894">Parallel (3-Input)</option>
  1368. <option value="4292789976">Parallel, Serial (2-Wire)</option>
  1369. <option value="4292234450">Push Button</option>
  1370. <option value="4294689754">Serial</option>
  1371. <option value="4294455076">Serial (2-Wire)</option>
  1372. <option value="4294025684">Serial (2-Wire, 3-Wire)</option>
  1373. <option value="4292839943">Serial (2-Wire, 5-Wire)</option>
  1374. <option value="4294029598">Serial (2-Wire, I2C)</option>
  1375. <option value="4294029728">Serial (3-Wire)</option>
  1376. <option value="4294455578">Serial (3-Wire, SPI)</option>
  1377. <option value="4294455870">Serial (4-Wire, SPI)</option>
  1378. <option value="4292979694">Serial (I2C)</option>
  1379. <option value="4294029404">Serial (SPI)</option>
  1380. <option value="4292714141">Serial, 3-Wire, SPI</option>
  1381. <option value="4294689570">SPI</option>
  1382. <option value="4286483455">SPI, I2C</option>
  1383. <option value="4294001574">Up/Down</option>
  1384. </select>
  1385. </td>
  1386. </tr>
  1387. <tr>
  1388. <td>
  1389. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1390. </td>
  1391. </tr>
  1392. </table>
  1393. </td>
  1394. <td valign="bottom" style="width: 15px;">
  1395. &nbsp;
  1396. </td>
  1397. </tr>
  1398. </table>
  1399. </td><td>
  1400. <table cellpadding="0" cellspacing="0">
  1401. <tr>
  1402. <td>
  1403. <table>
  1404. <tr>
  1405. <td>
  1406. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lblheader" style="font-weight:bold;white-space:normal;">工作电源电压</span>
  1407. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_RangePnl">
  1408. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1409. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1410. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1411. sorted parametric attributes from an endeca attribute group --->
  1412. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnRange" />
  1413. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnDimId" value="1000000393" />
  1414. &nbsp;
  1415. </div>
  1416. </td>
  1417. </tr>
  1418. <tr>
  1419. <td>
  1420. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$1000000393" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_1000000393">
  1421. <option value="4294604711">1.7 V to 5.5 V</option>
  1422. <option value="4290153238">1.8 to 5.5 V</option>
  1423. <option value="4286321745">1.8 V to 36 V</option>
  1424. <option value="4294602456">1.8 V to 5.5 V</option>
  1425. <option value="4294425033">2.25 V to 5.5 V</option>
  1426. <option value="4276075304">2.25 V to 5.5 V, - 2.25 V to - 5.5 V</option>
  1427. <option value="4294630002">2.4 V to 5.5 V</option>
  1428. <option value="4294592527">+/- 2.5 V</option>
  1429. <option value="4289861840">+/- 2.5 V, +/- 2.75 V</option>
  1430. <option value="4291430847">+/- 2.5 V, +/- 3.3 V, +/- 5 V</option>
  1431. <option value="4294627930">2.5 V to 5.5 V</option>
  1432. <option value="4294629154">2.5 V to 6 V</option>
  1433. <option value="4292863214">2.5 V, 3.3 V, 5 V</option>
  1434. <option value="4292836954">2.6 V to 5.5 V</option>
  1435. <option value="4289861995">+/- 2.7 V, +/- 5.5 V</option>
  1436. <option value="4294593026">2.7 V</option>
  1437. <option value="4294597457">2.7 V to 5 V</option>
  1438. <option value="4294604612">2.7 V to 5.25 V</option>
  1439. <option value="4294629721">2.7 V to 5.5 V</option>
  1440. <option value="4290174697">2.7 V to 5.5 V, +/- 2.5 V to +/- 2.75 V</option>
  1441. <option value="4286483470">2.7 V to 5.5 V, 2.25 V to 2.75 V</option>
  1442. <option value="4286483466">2.7 V to 5.5 V, 2.3 V to 2.7 V</option>
  1443. <option value="4294586858">2.75 V</option>
  1444. <option value="4294602281">2.8 V to 5.5 V</option>
  1445. <option value="4294629224">2.85 V to 5.5 V</option>
  1446. <option value="4292978504">3 V, 5 V</option>
  1447. <option value="4288393917">3 V, 5 V, +/- 2.5 V</option>
  1448. <option value="4294025781">+/- 3.3 V</option>
  1449. <option value="4292775590">+/- 3.3 V, +/- 5 V</option>
  1450. <option value="4294629989">3.3 V</option>
  1451. <option value="4294604126">3.3 V to 5 V</option>
  1452. <option value="4294594351">3.3 V, 5 V</option>
  1453. <option value="4294629906">4.5 V to 13.2 V</option>
  1454. <option value="4286483458">4.5 V to 16.5 V, 4.5 V to 5.5 V</option>
  1455. <option value="4286483454">4.5 V to 16.5 V, 4.5 V to 7.5 V</option>
  1456. <option value="4294630355">4.5 V to 5.5 V</option>
  1457. <option value="4292798407">4.5 V, 5.5 V</option>
  1458. <option value="4294628563">4.75 V to 5.25 V</option>
  1459. <option value="4294595848">+/- 5 V</option>
  1460. <option value="4292714140">+/- 5 V to +/- 15 V</option>
  1461. <option value="4294630592">5 V</option>
  1462. <option value="4292508648">5 V, +/- 5 V</option>
  1463. <option value="4292793534">5 V, 9 V, 12 V, 15 V</option>
  1464. <option value="4294428251">5.4 V</option>
  1465. <option value="4294629993">5.5 V</option>
  1466. <option value="4294604829">6 V</option>
  1467. <option value="4294629311">7.5 V</option>
  1468. <option value="4292792358">9 V, 12 V</option>
  1469. <option value="4292793533">9 V, 12 V, 15 V</option>
  1470. <option value="4292758191">12 V to 15 V</option>
  1471. <option value="4292789975">12 V, 15 V</option>
  1472. <option value="4289861839">15 V, +/- 5 V</option>
  1473. <option value="4294604837">36 V</option>
  1474. <option value="4289862449"> - 2.7 V to + 5.5 V</option>
  1475. </select>
  1476. </td>
  1477. </tr>
  1478. <tr>
  1479. <td>
  1480. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1481. </td>
  1482. </tr>
  1483. </table>
  1484. </td>
  1485. <td valign="bottom" style="width: 15px;">
  1486. &nbsp;
  1487. </td>
  1488. </tr>
  1489. </table>
  1490. </td><td>
  1491. <table cellpadding="0" cellspacing="0">
  1492. <tr>
  1493. <td>
  1494. <table>
  1495. <tr>
  1496. <td>
  1497. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lblheader" style="font-weight:bold;white-space:normal;">最大工作温度</span>
  1498. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_RangePnl">
  1499. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1500. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1501. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1502. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1503. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1504. sorted parametric attributes from an endeca attribute group --->
  1505. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnRange" />
  1506. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnDimId" value="1000000314" />
  1507. </div>
  1508. </td>
  1509. </tr>
  1510. <tr>
  1511. <td>
  1512. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$1000000314" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_1000000314">
  1513. <option value="4294629996">+ 70 C</option>
  1514. <option value="4294630005">+ 85 C</option>
  1515. <option value="4294031282">+ 95 C</option>
  1516. <option value="4294629968">+ 100 C</option>
  1517. <option value="4294568129">+ 105 C</option>
  1518. <option value="4294631245">+ 125 C</option>
  1519. </select>
  1520. </td>
  1521. </tr>
  1522. <tr>
  1523. <td>
  1524. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1525. </td>
  1526. </tr>
  1527. </table>
  1528. </td>
  1529. <td valign="bottom" style="width: 15px;">
  1530. &nbsp;
  1531. </td>
  1532. </tr>
  1533. </table>
  1534. </td><td>
  1535. <table cellpadding="0" cellspacing="0">
  1536. <tr>
  1537. <td>
  1538. <table>
  1539. <tr>
  1540. <td>
  1541. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lblheader" style="font-weight:bold;white-space:normal;">安装风格</span>
  1542. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_RangePnl">
  1543. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1544. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1545. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1546. sorted parametric attributes from an endeca attribute group --->
  1547. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_hdnRange" />
  1548. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_hdnDimId" value="1323044" />
  1549. &nbsp;
  1550. </div>
  1551. </td>
  1552. </tr>
  1553. <tr>
  1554. <td>
  1555. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$1323044" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_1323044">
  1556. <option value="4294741457">SMD/SMT</option>
  1557. <option value="4294739373">Through Hole</option>
  1558. </select>
  1559. </td>
  1560. </tr>
  1561. <tr>
  1562. <td>
  1563. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1564. </td>
  1565. </tr>
  1566. </table>
  1567. </td>
  1568. <td valign="bottom" style="width: 15px;">
  1569. &nbsp;
  1570. </td>
  1571. </tr>
  1572. </table>
  1573. </td><td>
  1574. <table cellpadding="0" cellspacing="0">
  1575. <tr>
  1576. <td>
  1577. <table>
  1578. <tr>
  1579. <td>
  1580. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  1581. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_RangePnl">
  1582. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1583. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1584. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1585. sorted parametric attributes from an endeca attribute group --->
  1586. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_hdnRange" />
  1587. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_hdnDimId" value="688606" />
  1588. &nbsp;
  1589. </div>
  1590. </td>
  1591. </tr>
  1592. <tr>
  1593. <td>
  1594. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_688606">
  1595. <option value="4292789974">CSBGA-16</option>
  1596. <option value="4294687858">DFN-10</option>
  1597. <option value="4290897535">DFN-10 EP</option>
  1598. <option value="4294680745">DFN-8</option>
  1599. <option value="4292786066">DFN-8 EP</option>
  1600. <option value="4294730147">DIP-16</option>
  1601. <option value="4294730330">DIP-8</option>
  1602. <option value="4290527226">LFCSP-10</option>
  1603. <option value="4290563371">LFCSP-16</option>
  1604. <option value="4290563370">LFCSP-24</option>
  1605. <option value="4292880926">LFCSP-32</option>
  1606. <option value="4292755129">LFCSP-8</option>
  1607. <option value="4294680716">MSOP</option>
  1608. <option value="4294735476">MSOP-10</option>
  1609. <option value="4294738692">MSOP-8</option>
  1610. <option value="4294689850">PDIP-14</option>
  1611. <option value="4294688827">PDIP-20</option>
  1612. <option value="4294687493">PDIP-24</option>
  1613. <option value="4294741647">PDIP-8</option>
  1614. <option value="4284637612">PDIP-Narrow-16</option>
  1615. <option value="4284649653">PDIP-Narrow-20</option>
  1616. <option value="4294671306">QFN EP</option>
  1617. <option value="4292789980">QFN EP-16</option>
  1618. <option value="4294719844">QFN-16</option>
  1619. <option value="4294719608">QFN-20</option>
  1620. <option value="4294719691">QFN-32</option>
  1621. <option value="4292765147">QFN-EP-20</option>
  1622. <option value="4294707458">QSOP-16</option>
  1623. <option value="4294738690">SC-70-5</option>
  1624. <option value="4294736799">SC-70-6</option>
  1625. <option value="4294731118">SO-16</option>
  1626. <option value="4294738805">SOIC N</option>
  1627. <option value="4294719654">SOIC W</option>
  1628. <option value="4294707481">SOIC-14</option>
  1629. <option value="4294012958">SOIC-14 Narrow</option>
  1630. <option value="4294738489">SOIC-16</option>
  1631. <option value="4294687554">SOIC-16 Wide</option>
  1632. <option value="4294729352">SOIC-20</option>
  1633. <option value="4294687576">SOIC-20 Wide</option>
  1634. <option value="4294687808">SOIC-24</option>
  1635. <option value="4294687449">SOIC-24 Wide</option>
  1636. <option value="4294741649">SOIC-8</option>
  1637. <option value="4294012959">SOIC-8 Narrow</option>
  1638. <option value="4284650519">SOIC-Narrow-16</option>
  1639. <option value="4284650430">SOIC-Narrow-8</option>
  1640. <option value="4284650329">SOIC-Wide-16</option>
  1641. <option value="4284625363">SOIC-Wide-20</option>
  1642. <option value="4284650286">SOIC-Wide-24</option>
  1643. <option value="4294741655">SOT-23</option>
  1644. <option value="4294735478">SOT-23-5</option>
  1645. <option value="4294741651">SOT-23-6</option>
  1646. <option value="4294720802">SOT-23-8</option>
  1647. <option value="4294680756">SOT-23A-6</option>
  1648. <option value="4294687790">SSOP-24</option>
  1649. <option value="4292789982">TDFN EP-8</option>
  1650. <option value="4292981909">TDFN-10</option>
  1651. <option value="4294721306">TDFN-8</option>
  1652. <option value="4291513361">TDFN-EP-10</option>
  1653. <option value="4292858950">TDFN-EP-8</option>
  1654. <option value="4294719121">TQFN-16</option>
  1655. <option value="4292834778">TQFN-8</option>
  1656. <option value="4292765112">TQFN-EP-16</option>
  1657. <option value="4292858945">TQFN-EP-20</option>
  1658. <option value="4292870808">TQFN-EP-40</option>
  1659. <option value="4294671839">TSOT-23</option>
  1660. <option value="4294672629">TSOT-23-6</option>
  1661. <option value="4292825259">TSOT-8</option>
  1662. <option value="4294735405">TSSOP</option>
  1663. <option value="4292490607">TSSOP N</option>
  1664. <option value="4294720455">TSSOP-14</option>
  1665. <option value="4294719970">TSSOP-16</option>
  1666. <option value="4294740958">TSSOP-20</option>
  1667. <option value="4294719112">TSSOP-24</option>
  1668. <option value="4294741800">TSSOP-8</option>
  1669. <option value="4294672976">UDFN-8</option>
  1670. <option value="4292555589">UMAX-10</option>
  1671. <option value="4292555613">UMAX-8</option>
  1672. <option value="4292850339">UQFN-8</option>
  1673. <option value="4284625216">USOP-10</option>
  1674. <option value="4292978518">uSOP-8</option>
  1675. <option value="4284625404">USOP-8</option>
  1676. <option value="4292718131">UTQFN-10</option>
  1677. <option value="4277875830">UTQFN-16</option>
  1678. <option value="4294675158">WQFN-16</option>
  1679. <option value="4292768687">X2QFN-14</option>
  1680. </select>
  1681. </td>
  1682. </tr>
  1683. <tr>
  1684. <td>
  1685. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1686. </td>
  1687. </tr>
  1688. </table>
  1689. </td>
  1690. <td valign="bottom" style="width: 15px;">
  1691. &nbsp;
  1692. </td>
  1693. </tr>
  1694. </table>
  1695. </td><td>
  1696. <table cellpadding="0" cellspacing="0">
  1697. <tr>
  1698. <td>
  1699. <table>
  1700. <tr>
  1701. <td>
  1702. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_lblheader" style="font-weight:bold;white-space:normal;">封装</span>
  1703. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_RangePnl">
  1704. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1705. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1706. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1707. sorted parametric attributes from an endeca attribute group --->
  1708. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl12$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_hdnRange" />
  1709. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl12$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_hdnDimId" value="688610" />
  1710. &nbsp;
  1711. </div>
  1712. </td>
  1713. </tr>
  1714. <tr>
  1715. <td>
  1716. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl12$688610" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_688610">
  1717. <option value="4294966193">Bulk</option>
  1718. <option value="4294962567">Rail</option>
  1719. <option value="4294966263">Reel</option>
  1720. <option value="4294965250">Tray</option>
  1721. <option value="4294966123">Tube</option>
  1722. </select>
  1723. </td>
  1724. </tr>
  1725. <tr>
  1726. <td>
  1727. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1728. </td>
  1729. </tr>
  1730. </table>
  1731. </td>
  1732. <td valign="bottom" style="width: 15px;">
  1733. &nbsp;
  1734. </td>
  1735. </tr>
  1736. </table>
  1737. </td>
  1738. </tr>
  1739. </table>
  1740. <table class="ApplyFilter">
  1741. <tr>
  1742. <td class="ApplyFilterColumn1">
  1743. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1744. </td>
  1745. <td class="ApplyFilterColumn2">
  1746. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  1747. </td>
  1748. <td class="ApplyFilterColumn2_5">
  1749. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  1750. </td>
  1751. <td class="ApplyFilterColumn3">
  1752. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1753. </td>
  1754. </tr>
  1755. </table>
  1756. </td>
  1757. </tr>
  1758. </table>
  1759. </div>
  1760. </td>
  1761. </tr>
  1762. </table>
  1763. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  1764. height: 70px; display: none; background: white; border: 1px solid #000;'>
  1765. <br />
  1766. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  1767. <br />
  1768. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  1769. <!--Close Window-->
  1770. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  1771. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  1772. </a>&nbsp;&nbsp;</div>
  1773. </div>
  1774. <div id ="VisualAttributePopup" class="hidden" >
  1775. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  1776. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  1777. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  1778. </div>
  1779. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id= "loadingimgspinner" src="/Images/spinner2.gif" /></div>
  1780. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  1781. <table id="tblAttributes" >
  1782. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  1783. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  1784. <td class="visualAttributeImage">
  1785. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  1786. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  1787. </td>
  1788. <td>
  1789. <table class="visualAttValueDesc">
  1790. <tr>
  1791. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  1792. </tr>
  1793. <tr>
  1794. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  1795. </tr>
  1796. <tr data-bind="if: ImagePath1 ">
  1797. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs"/></div></td>
  1798. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  1799. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  1800. </tr>
  1801. </table>
  1802. </td>
  1803. </tr>
  1804. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  1805. </tbody>
  1806. </table>
  1807. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id= "Img1" src="/Images/spinner2.gif" />
  1808. <div data-bind="if: hasMoreOptions" align="center">
  1809. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  1810. </div>
  1811. </div>
  1812. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  1813. <div class="visualAttributesBtnDiv">
  1814. <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" />
  1815. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  1816. <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" />
  1817. </div>
  1818. </div>
  1819. <style type="text/css">
  1820. /* These styles are to customize "Visual Parametrics" modal window */
  1821. .ui-dialog { position: absolute; padding: 0px !important; width: 300px; overflow: hidden;}
  1822. .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .6em !important; background: none; overflow: auto; zoom: 1; max-height: 450px;}
  1823. .ui-dialog .ui-dialog-titlebar { padding: .4em .5em !important; position: relative; background: none repeat scroll 0 0 #E0E4E9; font-size:15px; }
  1824. .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border-bottom-right-radius: 0; }
  1825. .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-bottom-left-radius: 0; }
  1826. </style>
  1827. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1828. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  1829. </div>
  1830. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  1831. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  1832. <script src='../../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  1833. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1834. <script type="text/javascript">
  1835. $().ready(function () {
  1836. ko.applyBindings(new DisplayAttributesModel());
  1837. ko.bindingHandlers.hoverToggle = {
  1838. update: function (element, valueAccessor) {
  1839. var css = valueAccessor();
  1840. var isSelected = $(element).hasClass("selectedAttribute");
  1841. if (!isSelected) {
  1842. ko.utils.registerEventHandler(element, "mouseenter", function () {
  1843. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  1844. });
  1845. ko.utils.registerEventHandler(element, "mouseleave", function () {
  1846. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  1847. });
  1848. }
  1849. }
  1850. };
  1851. });
  1852. </script>
  1853. </div>
  1854. <div id="refine-mfg-logo2">
  1855. </div>
  1856. </div>
  1857. <br />
  1858. <table border="0" width="100%">
  1859. <tr>
  1860. <td>
  1861. </td>
  1862. </tr>
  1863. <tr>
  1864. <td>
  1865. <!--- Search Features --->
  1866. </td>
  1867. </tr>
  1868. <tr>
  1869. <td>
  1870. <div id="refine-page">
  1871. </div>
  1872. </td>
  1873. </tr>
  1874. <tr>
  1875. <td class="refine-show-products">
  1876. <span class="redtextb">
  1877. </span> <span class="redtextb">
  1878. </span> <span class="redtextb">
  1879. </span> <span class="redtextb">
  1880. </span>
  1881. <span class="redtextb">
  1882. </span>
  1883. </td>
  1884. </tr>
  1885. <tr>
  1886. <td>
  1887. </td>
  1888. </tr>
  1889. <tr>
  1890. <td>
  1891. <!--- Special Order Parts New --->
  1892. <!-- SOP Section 1 -->
  1893. </td>
  1894. </tr>
  1895. </table>
  1896. <div id="searchResultsTbl">
  1897. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  1898. <tr>
  1899. <td class="tdSearchResultsPagingTop">
  1900. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  1901. <tr>
  1902. <td>
  1903. <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" />
  1904. </td>
  1905. <td>
  1906. <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" />
  1907. </td>
  1908. <td>
  1909. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  1910. </td>
  1911. <td style="padding-left: 40px;">
  1912. <div class="floatrightpager">
  1913. <span class="bold">
  1914. 页面:
  1915. </span>
  1916. <span id="ctl00_ContentMain_PagerTop"><span id="ctl00_ContentMain_PagerTop_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerTop_1" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_120" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=3000">121</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=25">下一页</a></span>
  1917. </div>
  1918. </td>
  1919. </tr>
  1920. </table>
  1921. </td>
  1922. </tr>
  1923. <tr>
  1924. <td>
  1925. <div>
  1926. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  1927. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  1928. <th class="td-select" scope="col" style="width:35px;">
  1929. 选择
  1930. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  1931. </th><th scope="col">制造商 零件编号
  1932. </th><th scope="col">制造商
  1933. </th><th scope="col">描述
  1934. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../Images/Search/pdf.gif" alt="文件" />
  1935. </th><th scope="col">供货情况
  1936. </th><th scope="col">单价(含17%增值税)
  1937. <br />
  1938. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  1939. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  1940. </th><th class="SearchResultParametricColumnHeading" scope="col">电阻
  1941. </th><th class="SearchResultParametricColumnHeading" scope="col">温度系数
  1942. </th><th class="SearchResultParametricColumnHeading" scope="col">容差
  1943. </th><th class="SearchResultParametricColumnHeading" scope="col">POT 数量
  1944. </th><th class="SearchResultParametricColumnHeading" scope="col">每 POT 分接头
  1945. </th><th class="SearchResultParametricColumnHeading" scope="col">弧刷存储器
  1946. </th><th class="SearchResultParametricColumnHeading" scope="col">数字接口
  1947. </th><th class="SearchResultParametricColumnHeading" scope="col">工作电源电压
  1948. </th><th class="SearchResultParametricColumnHeading" scope="col">最大工作温度
  1949. </th><th class="SearchResultParametricColumnHeading" scope="col">安装风格
  1950. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  1951. </th><th class="SearchResultParametricColumnHeading" scope="col">封装
  1952. </th>
  1953. </tr><tr class="SearchResultsSortCell">
  1954. <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$ctl23&#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$ctl25&#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_ctl27" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl27&#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$ctl29&#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$ctl31&#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$ctl33&#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$ctl35&#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$ctl37&#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$ctl39&#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$Resistance>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$Resistance>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$Temperature Coefficient>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$Temperature Coefficient>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><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Tolerance>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl49&#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$Tolerance>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl51&#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$Number of POTs>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl53&#39;,&#39;&#39;)"><img title="按 POT 数量 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 POT 数量 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of POTs>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl55&#39;,&#39;&#39;)"><img title="按 POT 数量 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 POT 数量 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Taps per POT>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl57&#39;,&#39;&#39;)"><img title="按 每 POT 分接头 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 每 POT 分接头 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Taps per POT>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl59&#39;,&#39;&#39;)"><img title="按 每 POT 分接头 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 每 POT 分接头 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Wiper Memory>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl61&#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$Wiper Memory>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl63&#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$Digital Interface>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl65&#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$Digital Interface>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl67&#39;,&#39;&#39;)"><img title="按 数字接口 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 数字接口 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Operating Supply Voltage>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl69&#39;,&#39;&#39;)"><img title="按 工作电源电压 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 工作电源电压 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Operating Supply Voltage>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl71&#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$Maximum Operating Temperature>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl73&#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$Maximum Operating Temperature>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl75&#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$Mounting Style>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl77&#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$Mounting Style>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl79&#39;,&#39;&#39;)"><img title="按 安装风格 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 安装风格 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl81&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 封装 / 箱体 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl83&#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$Packaging>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl85&#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$Packaging>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl87&#39;,&#39;&#39;)"><img title="按 封装 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 Descending 排序" /></a></td>
  1955. </tr><tr class="SearchResultsRowOdd" data-partnumber="579-MCP4018T502ELT" data-index="3">
  1956. <td class="td-select" align="center">
  1957. <div style="padding: 5px 5px 0 5px;">
  1958. <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>
  1959. </div>
  1960. </td><td><a href='/ProductDetail/Microchip-Technology/MCP4018T-502E-LT/?qs=sGAEpiMZZMsX%252bY3VKDPZyGQ84rVqyfD%252b%2fyRv%252bMI%2fGPI%3d'><img title='Microchip Technology MCP4018T-502E/LT' alt='Microchip Technology MCP4018T-502E/LT' id=331211789 src='/images/microchiptechnology/sm/sc70-6.jpg'/></a></td><td>
  1961. <div style="text-align:left;">
  1962. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology/MCP4018T-502E-LT/?qs=sGAEpiMZZMsX%252bY3VKDPZyGQ84rVqyfD%252b%2fyRv%252bMI%2fGPI%3d">579-MCP4018T502ELT</a><br />
  1963. <br />
  1964. <br />
  1965. 要购买完整 卷轴,请订购 3000 的倍数:
  1966. </div></td><td>
  1967. <div class="mfrDiv">
  1968. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology/MCP4018T-502E-LT/?qs=sGAEpiMZZMsX%252bY3VKDPZyGQ84rVqyfD%252b%2fyRv%252bMI%2fGPI%3d">MCP4018T-502E/LT</a><br />
  1969. <br />
  1970. <div style="width: 100%; text-align: center;">
  1971. </div>
  1972. <div style="width: 100%; text-align: center;">
  1973. </div>
  1974. </div>
  1975. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../microchip">Microchip Technology</a>
  1976. </td><td>数字电位计 IC 5K I2C single 7-bit volatile memory
  1977. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1978. </div>
  1979. </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;Microchip Technology&quot;,&quot;579-MCP4018T502ELT | MCP4018T-502E/LT&quot;]);" href="http://www.mouser.com/ds/2/268/22147a-54123.pdf" target="_blank">数据表</a>
  1980. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">39,095<br/>有库存</span>
  1981. <table>
  1982. <tr align="center">
  1983. <td style="padding-top: 5px">
  1984. </td>
  1985. </tr>
  1986. <tr align="center">
  1987. <td style="padding-top: 5px; padding-bottom: 5px">
  1988. </td>
  1989. </tr>
  1990. </table></td><td>
  1991. <table class="PriceBreaks" cellspacing="0" border="0">
  1992. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1993. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1994. </td>
  1995. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1996. </td>
  1997. </tr>
  1998. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1999. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2000. 剪切带
  2001. </td>
  2002. </tr>
  2003. <tr>
  2004. <td class="PriceBreakQuantity">
  2005. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  2006. </td>
  2007. <td class="PriceBreakPrice">
  2008. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥4.3173</span>
  2009. </td>
  2010. </tr>
  2011. <tr>
  2012. <td class="PriceBreakQuantity">
  2013. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  2014. </td>
  2015. <td class="PriceBreakPrice">
  2016. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3.9312</span>
  2017. </td>
  2018. </tr>
  2019. <tr>
  2020. <td class="PriceBreakQuantity">
  2021. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  2022. </td>
  2023. <td class="PriceBreakPrice">
  2024. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.3111</span>
  2025. </td>
  2026. </tr>
  2027. <tr>
  2028. <td class="PriceBreakQuantity">
  2029. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,100);">100:</a>
  2030. </td>
  2031. <td class="PriceBreakPrice">
  2032. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3.0069</span>
  2033. </td>
  2034. </tr>
  2035. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2036. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2037. 卷轴
  2038. </td>
  2039. </tr>
  2040. <tr>
  2041. <td class="PriceBreakQuantity">
  2042. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(1,3000);">3,000:</a>
  2043. </td>
  2044. <td class="PriceBreakPrice">
  2045. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥3.0069</span>
  2046. </td>
  2047. </tr>
  2048. <tr>
  2049. <td><br /></td>
  2050. </tr>
  2051. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2052. <td colspan="2" style="text-align: center;">
  2053. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Microchip-Technology/MCP4018T-502E-LT/?qs=sGAEpiMZZMsX%252bY3VKDPZyGQ84rVqyfD%252b%2fyRv%252bMI%2fGPI%3d">MouseReel 提供服务支持</a>
  2054. </td>
  2055. </tr>
  2056. </table>
  2057. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy&#39;)">
  2058. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(1,this.value);" /><br />
  2059. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 1);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_btnBuy" title="购买 MCP4018T-502E/LT" class="buy-button" /><br />
  2060. <table cellspacing="0" border="0" style="width: 100%;">
  2061. <tr>
  2062. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2063. 最低:
  2064. </td>
  2065. <td style="padding-left: 2px; text-align: left;">
  2066. 1
  2067. </td>
  2068. </tr>
  2069. <tr>
  2070. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2071. 多个:
  2072. </td>
  2073. <td style="padding-left: 2px; text-align: left;">
  2074. 1
  2075. </td>
  2076. </tr>
  2077. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_trReel">
  2078. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2079. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(1,3000);">卷轴</a>:
  2080. </td>
  2081. <td style="padding-left: 2px; text-align: left;">
  2082. <em class="SearchResultsReel">
  2083. 3,000
  2084. </em>
  2085. </td>
  2086. </tr>
  2087. </table>
  2088. </div>
  2089. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  2090. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2091. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=awaOlAj91Kiy4BmR7DprqQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=awaOlAj91Kiy4BmR7DprqQ%3d%3d" target="_blank">详细信息</a>
  2092. </div>
  2093. </td><td>5 kOhms
  2094. </td><td>50 PPM / C
  2095. </td><td>20 %
  2096. </td><td>Single
  2097. </td><td>128
  2098. </td><td>Volatile
  2099. </td><td>I2C
  2100. </td><td>1.8 V to 5.5 V
  2101. </td><td>+ 125 C
  2102. </td><td>SMD/SMT
  2103. </td><td>SC-70-6
  2104. </td><td>Reel
  2105. </td>
  2106. </tr><tr class="SearchResultsRowEven" data-partnumber="700-DS1804Z-010" data-index="4">
  2107. <td class="td-select" align="center">
  2108. <div style="padding: 5px 5px 0 5px;">
  2109. <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>
  2110. </div>
  2111. </td><td><a href='/ProductDetail/Maxim-Integrated/DS1804Z-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyHD7AK0KwejH8RzjT%252b7j7q8%3d'><img title='Maxim Integrated DS1804Z-010+' alt='Maxim Integrated DS1804Z-010+' id=360279449 src='/images/mouserimages/sm/SOIC_8_t.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/mouserimages/images/SOIC_8_t.jpg</div></a></td><td>
  2112. <div style="text-align:left;">
  2113. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/DS1804Z-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyHD7AK0KwejH8RzjT%252b7j7q8%3d">700-DS1804Z-010</a><br />
  2114. <br />
  2115. <br />
  2116. </div></td><td>
  2117. <div class="mfrDiv">
  2118. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/DS1804Z-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyHD7AK0KwejH8RzjT%252b7j7q8%3d">DS1804Z-010+</a><br />
  2119. <br />
  2120. <div style="width: 100%; text-align: center;">
  2121. </div>
  2122. <div style="width: 100%; text-align: center;">
  2123. </div>
  2124. </div>
  2125. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  2126. </td><td>数字电位计 IC NV Trimmer
  2127. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2128. </div>
  2129. </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;Maxim Integrated&quot;,&quot;700-DS1804Z-010 | DS1804Z-010+&quot;]);" href="http://www.mouser.com/ds/2/256/DS1804-99557.pdf" target="_blank">数据表</a>
  2130. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">5,389<br/>有库存</span>
  2131. <table>
  2132. <tr align="center">
  2133. <td style="padding-top: 5px">
  2134. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Maxim-Integrated/DS1804Z-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyHD7AK0KwejH8RzjT%252b7j7q8%3d">更多信息可用 </a>
  2135. </td>
  2136. </tr>
  2137. <tr align="center">
  2138. <td style="padding-top: 5px; padding-bottom: 5px">
  2139. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAlternativePackaging" title="备用包装 | 700-DS1804Z-010" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSGjGBxylJsGe3mcgG1UI5N3x2vk26ef6gJM9OqNS5u%252beFORx6lZQO93DUzkdNWO6leaxzCR%252bqXgoIdVK7FoqQ8EIk87%252bkDd8hqvJTZNJoX%252bzttVc2gPUQOmATFYAcZWPg%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2140. </td>
  2141. </tr>
  2142. </table></td><td>
  2143. <table class="PriceBreaks" cellspacing="0" border="0">
  2144. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2145. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2146. </td>
  2147. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2148. </td>
  2149. </tr>
  2150. <tr>
  2151. <td class="PriceBreakQuantity">
  2152. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  2153. </td>
  2154. <td class="PriceBreakPrice">
  2155. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥14.7069</span>
  2156. </td>
  2157. </tr>
  2158. <tr>
  2159. <td class="PriceBreakQuantity">
  2160. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  2161. </td>
  2162. <td class="PriceBreakPrice">
  2163. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥14.3208</span>
  2164. </td>
  2165. </tr>
  2166. <tr>
  2167. <td class="PriceBreakQuantity">
  2168. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,25);">25:</a>
  2169. </td>
  2170. <td class="PriceBreakPrice">
  2171. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥14.1687</span>
  2172. </td>
  2173. </tr>
  2174. <tr>
  2175. <td class="PriceBreakQuantity">
  2176. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  2177. </td>
  2178. <td class="PriceBreakPrice">
  2179. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥13.5486</span>
  2180. </td>
  2181. </tr>
  2182. <tr>
  2183. <td><br /></td>
  2184. </tr>
  2185. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2186. <td colspan="2" style="text-align: center;">
  2187. </td>
  2188. </tr>
  2189. </table>
  2190. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy&#39;)">
  2191. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(2,this.value);" /><br />
  2192. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 2);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl08_btnBuy" title="购买 DS1804Z-010+" class="buy-button" /><br />
  2193. <table cellspacing="0" border="0" style="width: 100%;">
  2194. <tr>
  2195. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2196. 最低:
  2197. </td>
  2198. <td style="padding-left: 2px; text-align: left;">
  2199. 1
  2200. </td>
  2201. </tr>
  2202. <tr>
  2203. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2204. 多个:
  2205. </td>
  2206. <td style="padding-left: 2px; text-align: left;">
  2207. 1
  2208. </td>
  2209. </tr>
  2210. </table>
  2211. </div>
  2212. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  2213. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2214. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=QybzLzoyD34URoF9AxHAPQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=QybzLzoyD34URoF9AxHAPQ%3d%3d" target="_blank">详细信息</a>
  2215. </div>
  2216. </td><td>10 kOhms
  2217. </td><td>
  2218. </td><td>
  2219. </td><td>Single
  2220. </td><td>100
  2221. </td><td>Non Volatile
  2222. </td><td>Increment-Decrement
  2223. </td><td>3 V, 5 V
  2224. </td><td>+ 85 C
  2225. </td><td>SMD/SMT
  2226. </td><td>SOIC-Narrow-8
  2227. </td><td>Tube
  2228. </td>
  2229. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-DS1267BS-010+" data-index="5">
  2230. <td class="td-select" align="center">
  2231. <div style="padding: 5px 5px 0 5px;">
  2232. <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>
  2233. </div>
  2234. </td><td><a href='/ProductDetail/Maxim-Integrated/DS1267BS-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyJH%2fTIY0SNTXFQ4IExu9R8M%3d'><img title='Maxim Integrated DS1267BS-010+' alt='Maxim Integrated DS1267BS-010+' id=933496830 src='/images/mouserimages/sm/SO_16_N_CAT.jpg'/></a></td><td>
  2235. <div style="text-align:left;">
  2236. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/DS1267BS-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyJH%2fTIY0SNTXFQ4IExu9R8M%3d">700-DS1267BS-010+</a><br />
  2237. <br />
  2238. <br />
  2239. </div></td><td>
  2240. <div class="mfrDiv">
  2241. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/DS1267BS-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyJH%2fTIY0SNTXFQ4IExu9R8M%3d">DS1267BS-010+</a><br />
  2242. <br />
  2243. <div style="width: 100%; text-align: center;">
  2244. </div>
  2245. <div style="width: 100%; text-align: center;">
  2246. </div>
  2247. </div>
  2248. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  2249. </td><td>数字电位计 IC Digital Sextet Potentiometer
  2250. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2251. </div>
  2252. </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;Maxim Integrated&quot;,&quot;700-DS1267BS-010+ | DS1267BS-010+&quot;]);" href="http://www.mouser.com/ds/2/256/DS1267B-239545.pdf" target="_blank">数据表</a>
  2253. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">2,563<br/>有库存</span>
  2254. <table>
  2255. <tr align="center">
  2256. <td style="padding-top: 5px">
  2257. </td>
  2258. </tr>
  2259. <tr align="center">
  2260. <td style="padding-top: 5px; padding-bottom: 5px">
  2261. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAlternativePackaging" title="备用包装 | 700-DS1267BS-010+" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSGjGBxylJsGTnS7Ycb4lMnMzewWB%2fv2kT0tlTVl367vemEJWo27AZJSWU%2fkaKw18fCeFCyA4DdzGpFI%252bHkeh0r4hoPjhYapQJOs5qKOkzh%2fQvjbPz19PUU3xNgrDT%2fV2wnnaQ2y5ctwA%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2262. </td>
  2263. </tr>
  2264. </table></td><td>
  2265. <table class="PriceBreaks" cellspacing="0" border="0">
  2266. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2267. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2268. </td>
  2269. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2270. </td>
  2271. </tr>
  2272. <tr>
  2273. <td class="PriceBreakQuantity">
  2274. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  2275. </td>
  2276. <td class="PriceBreakPrice">
  2277. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥31.2624</span>
  2278. </td>
  2279. </tr>
  2280. <tr>
  2281. <td class="PriceBreakQuantity">
  2282. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  2283. </td>
  2284. <td class="PriceBreakPrice">
  2285. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥30.1158</span>
  2286. </td>
  2287. </tr>
  2288. <tr>
  2289. <td class="PriceBreakQuantity">
  2290. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,50);">50:</a>
  2291. </td>
  2292. <td class="PriceBreakPrice">
  2293. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥29.8818</span>
  2294. </td>
  2295. </tr>
  2296. <tr>
  2297. <td class="PriceBreakQuantity">
  2298. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  2299. </td>
  2300. <td class="PriceBreakPrice">
  2301. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥29.5659</span>
  2302. </td>
  2303. </tr>
  2304. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2305. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2306. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(3,250);">250:</a>
  2307. </td>
  2308. <td class="PriceBreakPrice">
  2309. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/DS1267BS-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyJH%2fTIY0SNTXFQ4IExu9R8M%3d">查看</a>
  2310. </td>
  2311. </tr>
  2312. <tr>
  2313. <td><br /></td>
  2314. </tr>
  2315. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2316. <td colspan="2" style="text-align: center;">
  2317. </td>
  2318. </tr>
  2319. </table>
  2320. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy&#39;)">
  2321. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(3,this.value);" /><br />
  2322. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl05$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 3);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy" title="购买 DS1267BS-010+" class="buy-button" /><br />
  2323. <table cellspacing="0" border="0" style="width: 100%;">
  2324. <tr>
  2325. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2326. 最低:
  2327. </td>
  2328. <td style="padding-left: 2px; text-align: left;">
  2329. 1
  2330. </td>
  2331. </tr>
  2332. <tr>
  2333. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2334. 多个:
  2335. </td>
  2336. <td style="padding-left: 2px; text-align: left;">
  2337. 1
  2338. </td>
  2339. </tr>
  2340. </table>
  2341. </div>
  2342. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2343. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2344. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=evJ7JJBxjKaAi0K1wo8P8Q%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=evJ7JJBxjKaAi0K1wo8P8Q%3d%3d" target="_blank">详细信息</a>
  2345. </div>
  2346. </td><td>10 kOhms
  2347. </td><td>750 PPM / C
  2348. </td><td>20 %
  2349. </td><td>Dual
  2350. </td><td>256
  2351. </td><td>
  2352. </td><td>3-Wire
  2353. </td><td>4.5 V to 5.5 V
  2354. </td><td>+ 85 C
  2355. </td><td>SMD/SMT
  2356. </td><td>SO-16
  2357. </td><td>Tube
  2358. </td>
  2359. </tr><tr class="SearchResultsRowEven" data-partnumber="584-AD5263BRUZ200" data-index="6">
  2360. <td class="td-select" align="center">
  2361. <div style="padding: 5px 5px 0 5px;">
  2362. <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>
  2363. </div>
  2364. </td><td><a href='/ProductDetail/Analog-Devices/AD5263BRUZ200/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1MJSXa5APhHo%3d'><img title='Analog Devices AD5263BRUZ200' alt='Analog Devices AD5263BRUZ200' id=940103729 src='/images/adi/sm/ADI_TSSOP_24.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/adi/images/ADI_TSSOP_24.jpg</div></a></td><td>
  2365. <div style="text-align:left;">
  2366. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD5263BRUZ200/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1MJSXa5APhHo%3d">584-AD5263BRUZ200</a><br />
  2367. <br />
  2368. <br />
  2369. </div></td><td>
  2370. <div class="mfrDiv">
  2371. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD5263BRUZ200/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1MJSXa5APhHo%3d">AD5263BRUZ200</a><br />
  2372. <br />
  2373. <div style="width: 100%; text-align: center;">
  2374. </div>
  2375. <div style="width: 100%; text-align: center;">
  2376. </div>
  2377. </div>
  2378. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  2379. </td><td>数字电位计 IC IC Quad 8-Bit I2C
  2380. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2381. </div>
  2382. </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;Analog Devices&quot;,&quot;584-AD5263BRUZ200 | AD5263BRUZ200&quot;]);" href="http://www.mouser.com/ds/2/609/AD5263-877091.pdf" target="_blank">数据表</a>
  2383. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">2,451<br/>有库存</span>
  2384. <table>
  2385. <tr align="center">
  2386. <td style="padding-top: 5px">
  2387. </td>
  2388. </tr>
  2389. <tr align="center">
  2390. <td style="padding-top: 5px; padding-bottom: 5px">
  2391. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAlternativePackaging" title="备用包装 | 584-AD5263BRUZ200" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQJtWKS2FXtmSUICq2mF4PcR%252bhLNWOmDfR7t8QrG5uH3p319YPZaBpHAIOqqT%2fKcavprfo0dGJRyaTkXPMV0uMHxafFbdpnPE7X5miR1IZJHQJcWWxJoaTlYmLW3P4g%2fCaTM2C5PE7Gtw%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2392. </td>
  2393. </tr>
  2394. </table></td><td>
  2395. <table class="PriceBreaks" cellspacing="0" border="0">
  2396. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2397. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2398. </td>
  2399. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2400. </td>
  2401. </tr>
  2402. <tr>
  2403. <td class="PriceBreakQuantity">
  2404. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  2405. </td>
  2406. <td class="PriceBreakPrice">
  2407. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥51.4449</span>
  2408. </td>
  2409. </tr>
  2410. <tr>
  2411. <td class="PriceBreakQuantity">
  2412. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,10);">10:</a>
  2413. </td>
  2414. <td class="PriceBreakPrice">
  2415. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥46.2852</span>
  2416. </td>
  2417. </tr>
  2418. <tr>
  2419. <td class="PriceBreakQuantity">
  2420. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,25);">25:</a>
  2421. </td>
  2422. <td class="PriceBreakPrice">
  2423. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥42.2019</span>
  2424. </td>
  2425. </tr>
  2426. <tr>
  2427. <td class="PriceBreakQuantity">
  2428. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,50);">50:</a>
  2429. </td>
  2430. <td class="PriceBreakPrice">
  2431. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥39.2769</span>
  2432. </td>
  2433. </tr>
  2434. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2435. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2436. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(4,100);">100:</a>
  2437. </td>
  2438. <td class="PriceBreakPrice">
  2439. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Analog-Devices/AD5263BRUZ200/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1MJSXa5APhHo%3d">查看</a>
  2440. </td>
  2441. </tr>
  2442. <tr>
  2443. <td><br /></td>
  2444. </tr>
  2445. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2446. <td colspan="2" style="text-align: center;">
  2447. </td>
  2448. </tr>
  2449. </table>
  2450. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_btnBuy&#39;)">
  2451. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl06$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(4,this.value);" /><br />
  2452. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl06$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 4);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_btnBuy" title="购买 AD5263BRUZ200" class="buy-button" /><br />
  2453. <table cellspacing="0" border="0" style="width: 100%;">
  2454. <tr>
  2455. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2456. 最低:
  2457. </td>
  2458. <td style="padding-left: 2px; text-align: left;">
  2459. 1
  2460. </td>
  2461. </tr>
  2462. <tr>
  2463. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2464. 多个:
  2465. </td>
  2466. <td style="padding-left: 2px; text-align: left;">
  2467. 1
  2468. </td>
  2469. </tr>
  2470. </table>
  2471. </div>
  2472. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  2473. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2474. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUogT1X5jl48Sg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUogT1X5jl48Sg%3d%3d" target="_blank">详细信息</a>
  2475. </div>
  2476. </td><td>200 kOhms
  2477. </td><td>30 PPM / C
  2478. </td><td>30 %
  2479. </td><td>Quad
  2480. </td><td>256
  2481. </td><td>Volatile
  2482. </td><td>SPI
  2483. </td><td>2.75 V
  2484. </td><td>+ 125 C
  2485. </td><td>SMD/SMT
  2486. </td><td>TSSOP-24
  2487. </td><td>Tube
  2488. </td>
  2489. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-AD5231BRUZ10-R7" data-index="7">
  2490. <td class="td-select" align="center">
  2491. <div style="padding: 5px 5px 0 5px;">
  2492. <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>
  2493. </div>
  2494. </td><td><a href='/ProductDetail/Analog-Devices/AD5231BRUZ10-REEL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1hxvmVxUb2Aw%3d'><img title='Analog Devices AD5231BRUZ10-REEL7' alt='Analog Devices AD5231BRUZ10-REEL7' id=940103299 src='/images/adi/sm/ADI_TSSOP_16.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/adi/images/ADI_TSSOP_16.jpg</div></a></td><td>
  2495. <div style="text-align:left;">
  2496. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD5231BRUZ10-REEL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1hxvmVxUb2Aw%3d">584-AD5231BRUZ10-R7</a><br />
  2497. <br />
  2498. <br />
  2499. 要购买完整 卷轴,请订购 1000 的倍数:
  2500. </div></td><td>
  2501. <div class="mfrDiv">
  2502. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD5231BRUZ10-REEL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1hxvmVxUb2Aw%3d">AD5231BRUZ10-REEL7</a><br />
  2503. <br />
  2504. <div style="width: 100%; text-align: center;">
  2505. </div>
  2506. <div style="width: 100%; text-align: center;">
  2507. </div>
  2508. </div>
  2509. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  2510. </td><td>数字电位计 IC IC 10-Bit EEMEM
  2511. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2512. </div>
  2513. </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;Analog Devices&quot;,&quot;584-AD5231BRUZ10-R7 | AD5231BRUZ10-REEL7&quot;]);" href="http://www.mouser.com/ds/2/609/AD5231-877026.pdf" target="_blank">数据表</a>
  2514. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">3,327<br/>有库存</span>
  2515. <table>
  2516. <tr align="center">
  2517. <td style="padding-top: 5px">
  2518. </td>
  2519. </tr>
  2520. <tr align="center">
  2521. <td style="padding-top: 5px; padding-bottom: 5px">
  2522. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAlternativePackaging" title="备用包装 | 584-AD5231BRUZ10-R7" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQJtWKS2FXtmWiTlm5IrzsG7xia6qu1gw277Tu95rjbxnZLHLFt929NnbKzeOD7BIpPNYHB6NpcyNZ3ukoiLotMUoEMofG0hTzf4lSFZ%252byTyKK6gvIi9glkab6X%252bdGELIRQWKqQL%252bEI2A%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2523. </td>
  2524. </tr>
  2525. </table></td><td>
  2526. <table class="PriceBreaks" cellspacing="0" border="0">
  2527. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2528. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2529. </td>
  2530. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2531. </td>
  2532. </tr>
  2533. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2534. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2535. 剪切带
  2536. </td>
  2537. </tr>
  2538. <tr>
  2539. <td class="PriceBreakQuantity">
  2540. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  2541. </td>
  2542. <td class="PriceBreakPrice">
  2543. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥38.2005</span>
  2544. </td>
  2545. </tr>
  2546. <tr>
  2547. <td class="PriceBreakQuantity">
  2548. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  2549. </td>
  2550. <td class="PriceBreakPrice">
  2551. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥34.1172</span>
  2552. </td>
  2553. </tr>
  2554. <tr>
  2555. <td class="PriceBreakQuantity">
  2556. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
  2557. </td>
  2558. <td class="PriceBreakPrice">
  2559. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥30.654</span>
  2560. </td>
  2561. </tr>
  2562. <tr>
  2563. <td class="PriceBreakQuantity">
  2564. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,50);">50:</a>
  2565. </td>
  2566. <td class="PriceBreakPrice">
  2567. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥28.8054</span>
  2568. </td>
  2569. </tr>
  2570. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2571. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2572. 卷轴
  2573. </td>
  2574. </tr>
  2575. <tr>
  2576. <td class="PriceBreakQuantity">
  2577. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(5,1000);">1,000:</a>
  2578. </td>
  2579. <td class="PriceBreakPrice">
  2580. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥19.0242</span>
  2581. </td>
  2582. </tr>
  2583. <tr>
  2584. <td class="PriceBreakQuantity">
  2585. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(5,2000);">2,000:</a>
  2586. </td>
  2587. <td class="PriceBreakPrice">
  2588. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Analog-Devices/AD5231BRUZ10-REEL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1hxvmVxUb2Aw%3d' >查看</a></span>
  2589. </td>
  2590. </tr>
  2591. <tr>
  2592. <td><br /></td>
  2593. </tr>
  2594. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  2595. <td colspan="2" style="text-align: center;">
  2596. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Analog-Devices/AD5231BRUZ10-REEL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1hxvmVxUb2Aw%3d">MouseReel 提供服务支持</a>
  2597. </td>
  2598. </tr>
  2599. </table>
  2600. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_btnBuy&#39;)">
  2601. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(5,this.value);" /><br />
  2602. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 5);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_btnBuy" title="购买 AD5231BRUZ10-REEL7" class="buy-button" /><br />
  2603. <table cellspacing="0" border="0" style="width: 100%;">
  2604. <tr>
  2605. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2606. 最低:
  2607. </td>
  2608. <td style="padding-left: 2px; text-align: left;">
  2609. 1
  2610. </td>
  2611. </tr>
  2612. <tr>
  2613. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2614. 多个:
  2615. </td>
  2616. <td style="padding-left: 2px; text-align: left;">
  2617. 1
  2618. </td>
  2619. </tr>
  2620. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_trReel">
  2621. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2622. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(5,1000);">卷轴</a>:
  2623. </td>
  2624. <td style="padding-left: 2px; text-align: left;">
  2625. <em class="SearchResultsReel">
  2626. 1,000
  2627. </em>
  2628. </td>
  2629. </tr>
  2630. </table>
  2631. </div>
  2632. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2633. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2634. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUqcoW1SDBnTKA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUqcoW1SDBnTKA%3d%3d" target="_blank">详细信息</a>
  2635. </div>
  2636. </td><td>10 kOhms
  2637. </td><td>600 PPM / C
  2638. </td><td>30 %
  2639. </td><td>Single
  2640. </td><td>1024
  2641. </td><td>Non Volatile
  2642. </td><td>SPI
  2643. </td><td>2.7 V
  2644. </td><td>+ 85 C
  2645. </td><td>SMD/SMT
  2646. </td><td>TSSOP-16
  2647. </td><td>Reel
  2648. </td>
  2649. </tr><tr class="SearchResultsRowEven" data-partnumber="584-AD5272BCPZ-20-R7" data-index="8">
  2650. <td class="td-select" align="center">
  2651. <div style="padding: 5px 5px 0 5px;">
  2652. <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>
  2653. </div>
  2654. </td><td><a href='/ProductDetail/Analog-Devices/AD5272BCPZ-20-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1V2oowvOh%252bSs%3d'><img title='Analog Devices AD5272BCPZ-20-RL7' alt='Analog Devices AD5272BCPZ-20-RL7' id=940103783 src='/images/adi/sm/ADI_LFCSP_10.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/adi/images/ADI_LFCSP_10.jpg</div></a></td><td>
  2655. <div style="text-align:left;">
  2656. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD5272BCPZ-20-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1V2oowvOh%252bSs%3d">584-AD5272BCPZ-20-R7</a><br />
  2657. <br />
  2658. <br />
  2659. 要购买完整 卷轴,请订购 1500 的倍数:
  2660. </div></td><td>
  2661. <div class="mfrDiv">
  2662. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD5272BCPZ-20-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1V2oowvOh%252bSs%3d">AD5272BCPZ-20-RL7</a><br />
  2663. <br />
  2664. <div style="width: 100%; text-align: center;">
  2665. </div>
  2666. <div style="width: 100%; text-align: center;">
  2667. </div>
  2668. </div>
  2669. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  2670. </td><td>数字电位计 IC 1024p 5v SGL CHI2C 50-TP Mem Digi Rstat
  2671. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2672. </div>
  2673. </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;Analog Devices&quot;,&quot;584-AD5272BCPZ-20-R7 | AD5272BCPZ-20-RL7&quot;]);" href="http://www.mouser.com/ds/2/609/AD5272_5274-877041.pdf" target="_blank">数据表</a>
  2674. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">5,408<br/>有库存</span>
  2675. <table>
  2676. <tr align="center">
  2677. <td style="padding-top: 5px">
  2678. </td>
  2679. </tr>
  2680. <tr align="center">
  2681. <td style="padding-top: 5px; padding-bottom: 5px">
  2682. </td>
  2683. </tr>
  2684. </table></td><td>
  2685. <table class="PriceBreaks" cellspacing="0" border="0">
  2686. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2687. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2688. </td>
  2689. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2690. </td>
  2691. </tr>
  2692. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2693. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2694. 剪切带
  2695. </td>
  2696. </tr>
  2697. <tr>
  2698. <td class="PriceBreakQuantity">
  2699. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  2700. </td>
  2701. <td class="PriceBreakPrice">
  2702. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥30.8061</span>
  2703. </td>
  2704. </tr>
  2705. <tr>
  2706. <td class="PriceBreakQuantity">
  2707. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  2708. </td>
  2709. <td class="PriceBreakPrice">
  2710. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥27.495</span>
  2711. </td>
  2712. </tr>
  2713. <tr>
  2714. <td class="PriceBreakQuantity">
  2715. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  2716. </td>
  2717. <td class="PriceBreakPrice">
  2718. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥24.7923</span>
  2719. </td>
  2720. </tr>
  2721. <tr>
  2722. <td class="PriceBreakQuantity">
  2723. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,50);">50:</a>
  2724. </td>
  2725. <td class="PriceBreakPrice">
  2726. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥23.1777</span>
  2727. </td>
  2728. </tr>
  2729. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2730. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2731. 卷轴
  2732. </td>
  2733. </tr>
  2734. <tr>
  2735. <td class="PriceBreakQuantity">
  2736. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(6,1500);">1,500:</a>
  2737. </td>
  2738. <td class="PriceBreakPrice">
  2739. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥15.327</span>
  2740. </td>
  2741. </tr>
  2742. <tr>
  2743. <td class="PriceBreakQuantity">
  2744. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(6,3000);">3,000:</a>
  2745. </td>
  2746. <td class="PriceBreakPrice">
  2747. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Analog-Devices/AD5272BCPZ-20-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1V2oowvOh%252bSs%3d' >查看</a></span>
  2748. </td>
  2749. </tr>
  2750. <tr>
  2751. <td><br /></td>
  2752. </tr>
  2753. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  2754. <td colspan="2" style="text-align: center;">
  2755. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Analog-Devices/AD5272BCPZ-20-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1V2oowvOh%252bSs%3d">MouseReel 提供服务支持</a>
  2756. </td>
  2757. </tr>
  2758. </table>
  2759. </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;)">
  2760. <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 />
  2761. <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="购买 AD5272BCPZ-20-RL7" class="buy-button" /><br />
  2762. <table cellspacing="0" border="0" style="width: 100%;">
  2763. <tr>
  2764. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2765. 最低:
  2766. </td>
  2767. <td style="padding-left: 2px; text-align: left;">
  2768. 1
  2769. </td>
  2770. </tr>
  2771. <tr>
  2772. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2773. 多个:
  2774. </td>
  2775. <td style="padding-left: 2px; text-align: left;">
  2776. 1
  2777. </td>
  2778. </tr>
  2779. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_trReel">
  2780. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2781. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(6,1500);">卷轴</a>:
  2782. </td>
  2783. <td style="padding-left: 2px; text-align: left;">
  2784. <em class="SearchResultsReel">
  2785. 1,500
  2786. </em>
  2787. </td>
  2788. </tr>
  2789. </table>
  2790. </div>
  2791. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2792. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2793. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUoL9LGow%252bjeMQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUoL9LGow%252bjeMQ%3d%3d" target="_blank">详细信息</a>
  2794. </div>
  2795. </td><td>20 kOhms
  2796. </td><td>5 PPM / C
  2797. </td><td>1 %
  2798. </td><td>Single
  2799. </td><td>1024
  2800. </td><td>Non Volatile
  2801. </td><td>I2C
  2802. </td><td>6 V
  2803. </td><td>+ 125 C
  2804. </td><td>SMD/SMT
  2805. </td><td>LFCSP-10
  2806. </td><td>Reel
  2807. </td>
  2808. </tr><tr class="SearchResultsRowOdd" data-partnumber="968-X9C503SZ" data-index="9">
  2809. <td class="td-select" align="center">
  2810. <div style="padding: 5px 5px 0 5px;">
  2811. <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>
  2812. </div>
  2813. </td><td><a href='/ProductDetail/Intersil/X9C503SZ/?qs=sGAEpiMZZMsX%252bY3VKDPZyEk97ZwKT6JORdKnBUkhpnk%3d'><img title='Intersil X9C503SZ' alt='Intersil X9C503SZ' id=764497382 src='/images/mouserimages/sm/SOIC_8_t.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/mouserimages/images/SOIC_8_t.jpg</div></a></td><td>
  2814. <div style="text-align:left;">
  2815. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Intersil/X9C503SZ/?qs=sGAEpiMZZMsX%252bY3VKDPZyEk97ZwKT6JORdKnBUkhpnk%3d">968-X9C503SZ</a><br />
  2816. <br />
  2817. <br />
  2818. </div></td><td>
  2819. <div class="mfrDiv">
  2820. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Intersil/X9C503SZ/?qs=sGAEpiMZZMsX%252bY3VKDPZyEk97ZwKT6JORdKnBUkhpnk%3d">X9C503SZ</a><br />
  2821. <br />
  2822. <div style="width: 100%; text-align: center;">
  2823. </div>
  2824. <div style="width: 100%; text-align: center;">
  2825. </div>
  2826. </div>
  2827. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../intersil">Intersil</a>
  2828. </td><td>数字电位计 IC 50K EEPOTTM POT CMOS 8LD COM
  2829. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2830. </div>
  2831. </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;Intersil&quot;,&quot;968-X9C503SZ | X9C503SZ&quot;]);" href="http://www.mouser.com/ds/2/465/x9c102-103-104-503-555255.pdf" target="_blank">数据表</a>
  2832. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">2,442<br/>有库存</span>
  2833. <table>
  2834. <tr align="center">
  2835. <td style="padding-top: 5px">
  2836. </td>
  2837. </tr>
  2838. <tr align="center">
  2839. <td style="padding-top: 5px; padding-bottom: 5px">
  2840. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAlternativePackaging" title="备用包装 | 968-X9C503SZ" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSrn5ljPWM%252bBEoQPTz7lRQ%2f6jEecRBwFK1xD7hbIfnkyHlevwxyUZ7c%252bI7gcew2Vh9LUqJgJJkmzofVuOHzM9Puz6Nsk7HjFuTBvqNjC5238QNFOe%2fQIlwB&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2841. </td>
  2842. </tr>
  2843. </table></td><td>
  2844. <table class="PriceBreaks" cellspacing="0" border="0">
  2845. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2846. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2847. </td>
  2848. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2849. </td>
  2850. </tr>
  2851. <tr>
  2852. <td class="PriceBreakQuantity">
  2853. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  2854. </td>
  2855. <td class="PriceBreakPrice">
  2856. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥44.8227</span>
  2857. </td>
  2858. </tr>
  2859. <tr>
  2860. <td class="PriceBreakQuantity">
  2861. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  2862. </td>
  2863. <td class="PriceBreakPrice">
  2864. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥38.0484</span>
  2865. </td>
  2866. </tr>
  2867. <tr>
  2868. <td class="PriceBreakQuantity">
  2869. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,50);">50:</a>
  2870. </td>
  2871. <td class="PriceBreakPrice">
  2872. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥37.4283</span>
  2873. </td>
  2874. </tr>
  2875. <tr>
  2876. <td class="PriceBreakQuantity">
  2877. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  2878. </td>
  2879. <td class="PriceBreakPrice">
  2880. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥33.0408</span>
  2881. </td>
  2882. </tr>
  2883. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2884. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2885. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,200);">200:</a>
  2886. </td>
  2887. <td class="PriceBreakPrice">
  2888. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Intersil/X9C503SZ/?qs=sGAEpiMZZMsX%252bY3VKDPZyEk97ZwKT6JORdKnBUkhpnk%3d">查看</a>
  2889. </td>
  2890. </tr>
  2891. <tr>
  2892. <td><br /></td>
  2893. </tr>
  2894. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2895. <td colspan="2" style="text-align: center;">
  2896. </td>
  2897. </tr>
  2898. </table>
  2899. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy&#39;)">
  2900. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(7,this.value);" /><br />
  2901. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl09$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 7);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_btnBuy" title="购买 X9C503SZ" class="buy-button" /><br />
  2902. <table cellspacing="0" border="0" style="width: 100%;">
  2903. <tr>
  2904. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2905. 最低:
  2906. </td>
  2907. <td style="padding-left: 2px; text-align: left;">
  2908. 1
  2909. </td>
  2910. </tr>
  2911. <tr>
  2912. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2913. 多个:
  2914. </td>
  2915. <td style="padding-left: 2px; text-align: left;">
  2916. 1
  2917. </td>
  2918. </tr>
  2919. </table>
  2920. </div>
  2921. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  2922. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2923. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=lGDIGzLuwV0p%252bVrsphfnxQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=lGDIGzLuwV0p%252bVrsphfnxQ%3d%3d" target="_blank">详细信息</a>
  2924. </div>
  2925. </td><td>50 kOhms
  2926. </td><td>300 PPM / C
  2927. </td><td>20 %
  2928. </td><td>Single
  2929. </td><td>100
  2930. </td><td>Non Volatile
  2931. </td><td>3-Wire
  2932. </td><td>5 V
  2933. </td><td>+ 70 C
  2934. </td><td>SMD/SMT
  2935. </td><td>SOIC-8
  2936. </td><td>Tube
  2937. </td>
  2938. </tr><tr class="SearchResultsRowEven" data-partnumber="584-AD5293BRUZ-20-R7" data-index="10">
  2939. <td class="td-select" align="center">
  2940. <div style="padding: 5px 5px 0 5px;">
  2941. <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>
  2942. </div>
  2943. </td><td><a href='/ProductDetail/Analog-Devices/AD5293BRUZ-20-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1J5PB%2fWFfmoM%3d'><img title='Analog Devices AD5293BRUZ-20-RL7' alt='Analog Devices AD5293BRUZ-20-RL7' id=940103885 src='/images/adi/sm/ADI_TSSOP_14.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/adi/images/ADI_TSSOP_14.jpg</div></a></td><td>
  2944. <div style="text-align:left;">
  2945. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD5293BRUZ-20-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1J5PB%2fWFfmoM%3d">584-AD5293BRUZ-20-R7</a><br />
  2946. <br />
  2947. <br />
  2948. 要购买完整 卷轴,请订购 1000 的倍数:
  2949. </div></td><td>
  2950. <div class="mfrDiv">
  2951. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD5293BRUZ-20-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1J5PB%2fWFfmoM%3d">AD5293BRUZ-20-RL7</a><br />
  2952. <br />
  2953. <div style="width: 100%; text-align: center;">
  2954. </div>
  2955. <div style="width: 100%; text-align: center;">
  2956. </div>
  2957. </div>
  2958. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  2959. </td><td>数字电位计 IC 1024-pos 1% w/SPI interface
  2960. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2961. </div>
  2962. </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;Analog Devices&quot;,&quot;584-AD5293BRUZ-20-R7 | AD5293BRUZ-20-RL7&quot;]);" href="http://www.mouser.com/ds/2/609/AD5293-877042.pdf" target="_blank">数据表</a>
  2963. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">2,196<br/>有库存</span>
  2964. <table>
  2965. <tr align="center">
  2966. <td style="padding-top: 5px">
  2967. </td>
  2968. </tr>
  2969. <tr align="center">
  2970. <td style="padding-top: 5px; padding-bottom: 5px">
  2971. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAlternativePackaging" title="备用包装 | 584-AD5293BRUZ-20-R7" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQJtWKS2FXtmQXgHR8eyU5N3uA7K32TJ4u5cAVby1jI3gTV1A3gFPwRxXt9ME9438fRdVkXWmFVq%252bCehq2iUrln7mdP4euNptspg1514lIF0VM9i8ewbpe1IIEWpgDD%252bbzJdybLEHGRtA%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2972. </td>
  2973. </tr>
  2974. </table></td><td>
  2975. <table class="PriceBreaks" cellspacing="0" border="0">
  2976. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2977. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2978. </td>
  2979. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2980. </td>
  2981. </tr>
  2982. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2983. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2984. 剪切带
  2985. </td>
  2986. </tr>
  2987. <tr>
  2988. <td class="PriceBreakQuantity">
  2989. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  2990. </td>
  2991. <td class="PriceBreakPrice">
  2992. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥46.8936</span>
  2993. </td>
  2994. </tr>
  2995. <tr>
  2996. <td class="PriceBreakQuantity">
  2997. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,10);">10:</a>
  2998. </td>
  2999. <td class="PriceBreakPrice">
  3000. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥42.2019</span>
  3001. </td>
  3002. </tr>
  3003. <tr>
  3004. <td class="PriceBreakQuantity">
  3005. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,25);">25:</a>
  3006. </td>
  3007. <td class="PriceBreakPrice">
  3008. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥38.5047</span>
  3009. </td>
  3010. </tr>
  3011. <tr>
  3012. <td class="PriceBreakQuantity">
  3013. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,50);">50:</a>
  3014. </td>
  3015. <td class="PriceBreakPrice">
  3016. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥35.8137</span>
  3017. </td>
  3018. </tr>
  3019. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3020. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3021. 卷轴
  3022. </td>
  3023. </tr>
  3024. <tr>
  3025. <td class="PriceBreakQuantity">
  3026. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(8,1000);">1,000:</a>
  3027. </td>
  3028. <td class="PriceBreakPrice">
  3029. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥25.2603</span>
  3030. </td>
  3031. </tr>
  3032. <tr>
  3033. <td class="PriceBreakQuantity">
  3034. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(8,2000);">2,000:</a>
  3035. </td>
  3036. <td class="PriceBreakPrice">
  3037. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Analog-Devices/AD5293BRUZ-20-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1J5PB%2fWFfmoM%3d' >查看</a></span>
  3038. </td>
  3039. </tr>
  3040. <tr>
  3041. <td><br /></td>
  3042. </tr>
  3043. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3044. <td colspan="2" style="text-align: center;">
  3045. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Analog-Devices/AD5293BRUZ-20-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1J5PB%2fWFfmoM%3d">MouseReel 提供服务支持</a>
  3046. </td>
  3047. </tr>
  3048. </table>
  3049. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy&#39;)">
  3050. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(8,this.value);" /><br />
  3051. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl10$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 8);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_btnBuy" title="购买 AD5293BRUZ-20-RL7" class="buy-button" /><br />
  3052. <table cellspacing="0" border="0" style="width: 100%;">
  3053. <tr>
  3054. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3055. 最低:
  3056. </td>
  3057. <td style="padding-left: 2px; text-align: left;">
  3058. 1
  3059. </td>
  3060. </tr>
  3061. <tr>
  3062. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3063. 多个:
  3064. </td>
  3065. <td style="padding-left: 2px; text-align: left;">
  3066. 1
  3067. </td>
  3068. </tr>
  3069. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_trReel">
  3070. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3071. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(8,1000);">卷轴</a>:
  3072. </td>
  3073. <td style="padding-left: 2px; text-align: left;">
  3074. <em class="SearchResultsReel">
  3075. 1,000
  3076. </em>
  3077. </td>
  3078. </tr>
  3079. </table>
  3080. </div>
  3081. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  3082. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3083. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUogkkJG0uf8sg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUogkkJG0uf8sg%3d%3d" target="_blank">详细信息</a>
  3084. </div>
  3085. </td><td>20 kOhms
  3086. </td><td>5 PPM / C
  3087. </td><td>1 %
  3088. </td><td>Single
  3089. </td><td>1024
  3090. </td><td>Volatile
  3091. </td><td>SPI
  3092. </td><td>5.5 V
  3093. </td><td>+ 105 C
  3094. </td><td>SMD/SMT
  3095. </td><td>TSSOP-14
  3096. </td><td>Reel
  3097. </td>
  3098. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-AD5207BRUZ10-R7" data-index="11">
  3099. <td class="td-select" align="center">
  3100. <div style="padding: 5px 5px 0 5px;">
  3101. <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>
  3102. </div>
  3103. </td><td><a href='/ProductDetail/Analog-Devices/AD5207BRUZ10-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1xzgsNnL0%252bdw%3d'><img title='Analog Devices AD5207BRUZ10-RL7' alt='Analog Devices AD5207BRUZ10-RL7' id=940103193 src='/images/adi/sm/ADI_TSSOP_14.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/adi/images/ADI_TSSOP_14.jpg</div></a></td><td>
  3104. <div style="text-align:left;">
  3105. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD5207BRUZ10-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1xzgsNnL0%252bdw%3d">584-AD5207BRUZ10-R7</a><br />
  3106. <br />
  3107. <br />
  3108. 要购买完整 卷轴,请订购 1000 的倍数:
  3109. </div></td><td>
  3110. <div class="mfrDiv">
  3111. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD5207BRUZ10-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1xzgsNnL0%252bdw%3d">AD5207BRUZ10-RL7</a><br />
  3112. <br />
  3113. <div style="width: 100%; text-align: center;">
  3114. </div>
  3115. <div style="width: 100%; text-align: center;">
  3116. </div>
  3117. </div>
  3118. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  3119. </td><td>数字电位计 IC DUAL 8-BIT
  3120. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3121. </div>
  3122. </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;Analog Devices&quot;,&quot;584-AD5207BRUZ10-R7 | AD5207BRUZ10-RL7&quot;]);" href="http://www.mouser.com/ds/2/609/AD5207-877089.pdf" target="_blank">数据表</a>
  3123. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">7,261<br/>有库存</span>
  3124. <table>
  3125. <tr align="center">
  3126. <td style="padding-top: 5px">
  3127. </td>
  3128. </tr>
  3129. <tr align="center">
  3130. <td style="padding-top: 5px; padding-bottom: 5px">
  3131. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAlternativePackaging" title="备用包装 | 584-AD5207BRUZ10-R7" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQJtWKS2FXtmU9jtCWaSz%252be8eObkQNgVL5MwLSToAui3qPdKOOrBESqk5C3N%252bX%2f93HzLjX%252bG3dJKeY7U4AIrNhvlQv7LYhtl5WOGrQT3b4UwF6gnZoDGUuqNnpdks%252bmLm9SDDW4Wq%252bFzQ%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3132. </td>
  3133. </tr>
  3134. </table></td><td>
  3135. <table class="PriceBreaks" cellspacing="0" border="0">
  3136. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3137. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3138. </td>
  3139. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3140. </td>
  3141. </tr>
  3142. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3143. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3144. 剪切带
  3145. </td>
  3146. </tr>
  3147. <tr>
  3148. <td class="PriceBreakQuantity">
  3149. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  3150. </td>
  3151. <td class="PriceBreakPrice">
  3152. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥20.5569</span>
  3153. </td>
  3154. </tr>
  3155. <tr>
  3156. <td class="PriceBreakQuantity">
  3157. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
  3158. </td>
  3159. <td class="PriceBreakPrice">
  3160. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥18.3339</span>
  3161. </td>
  3162. </tr>
  3163. <tr>
  3164. <td class="PriceBreakQuantity">
  3165. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  3166. </td>
  3167. <td class="PriceBreakPrice">
  3168. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥16.4853</span>
  3169. </td>
  3170. </tr>
  3171. <tr>
  3172. <td class="PriceBreakQuantity">
  3173. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,50);">50:</a>
  3174. </td>
  3175. <td class="PriceBreakPrice">
  3176. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥15.4791</span>
  3177. </td>
  3178. </tr>
  3179. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3180. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3181. 卷轴
  3182. </td>
  3183. </tr>
  3184. <tr>
  3185. <td class="PriceBreakQuantity">
  3186. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(9,1000);">1,000:</a>
  3187. </td>
  3188. <td class="PriceBreakPrice">
  3189. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥10.2375</span>
  3190. </td>
  3191. </tr>
  3192. <tr>
  3193. <td class="PriceBreakQuantity">
  3194. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(9,2000);">2,000:</a>
  3195. </td>
  3196. <td class="PriceBreakPrice">
  3197. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Analog-Devices/AD5207BRUZ10-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1xzgsNnL0%252bdw%3d' >查看</a></span>
  3198. </td>
  3199. </tr>
  3200. <tr>
  3201. <td><br /></td>
  3202. </tr>
  3203. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3204. <td colspan="2" style="text-align: center;">
  3205. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Analog-Devices/AD5207BRUZ10-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1xzgsNnL0%252bdw%3d">MouseReel 提供服务支持</a>
  3206. </td>
  3207. </tr>
  3208. </table>
  3209. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy&#39;)">
  3210. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(9,this.value);" /><br />
  3211. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl11$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 9);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_btnBuy" title="购买 AD5207BRUZ10-RL7" class="buy-button" /><br />
  3212. <table cellspacing="0" border="0" style="width: 100%;">
  3213. <tr>
  3214. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3215. 最低:
  3216. </td>
  3217. <td style="padding-left: 2px; text-align: left;">
  3218. 1
  3219. </td>
  3220. </tr>
  3221. <tr>
  3222. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3223. 多个:
  3224. </td>
  3225. <td style="padding-left: 2px; text-align: left;">
  3226. 1
  3227. </td>
  3228. </tr>
  3229. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_trReel">
  3230. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3231. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(9,1000);">卷轴</a>:
  3232. </td>
  3233. <td style="padding-left: 2px; text-align: left;">
  3234. <em class="SearchResultsReel">
  3235. 1,000
  3236. </em>
  3237. </td>
  3238. </tr>
  3239. </table>
  3240. </div>
  3241. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  3242. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3243. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUrAWXUKc0oCtw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUrAWXUKc0oCtw%3d%3d" target="_blank">详细信息</a>
  3244. </div>
  3245. </td><td>10 kOhms
  3246. </td><td>500 PPM / C
  3247. </td><td>30 %
  3248. </td><td>Dual
  3249. </td><td>256
  3250. </td><td>Volatile
  3251. </td><td>SPI
  3252. </td><td>5.5 V
  3253. </td><td>+ 125 C
  3254. </td><td>SMD/SMT
  3255. </td><td>TSSOP-14
  3256. </td><td>Reel
  3257. </td>
  3258. </tr><tr class="SearchResultsRowEven" data-partnumber="595-TPL0501-100RSER" data-index="12">
  3259. <td class="td-select" align="center">
  3260. <div style="padding: 5px 5px 0 5px;">
  3261. <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>
  3262. </div>
  3263. </td><td><a href='/ProductDetail/Texas-Instruments/TPL0501-100RSER/?qs=sGAEpiMZZMsX%252bY3VKDPZyAKPS1JQ3SqWb1edcYtn7HU%3d'><img title='Texas Instruments TPL0501-100RSER' alt='Texas Instruments TPL0501-100RSER' id=519645258 src='/images/texasinstruments/sm/sot-23-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/texasinstruments/images/sot-23-8.jpg</div></a></td><td>
  3264. <div style="text-align:left;">
  3265. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TPL0501-100RSER/?qs=sGAEpiMZZMsX%252bY3VKDPZyAKPS1JQ3SqWb1edcYtn7HU%3d">595-TPL0501-100RSER</a><br />
  3266. <br />
  3267. <br />
  3268. 要购买完整 卷轴,请订购 5000 的倍数:
  3269. </div></td><td>
  3270. <div class="mfrDiv">
  3271. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TPL0501-100RSER/?qs=sGAEpiMZZMsX%252bY3VKDPZyAKPS1JQ3SqWb1edcYtn7HU%3d">TPL0501-100RSER</a><br />
  3272. <br />
  3273. <div style="width: 100%; text-align: center;">
  3274. </div>
  3275. <div style="width: 100%; text-align: center;">
  3276. </div>
  3277. </div>
  3278. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  3279. </td><td>数字电位计 IC 256-TAP,100K,SGL CH POT
  3280. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3281. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-tpl0501">了解更多</a>
  3282. </div>
  3283. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3284. </div>
  3285. </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;Texas Instruments&quot;,&quot;595-TPL0501-100RSER | TPL0501-100RSER&quot;]);" href="http://www.mouser.com/ds/2/405/tpl0501-100-454703.pdf" target="_blank">数据表</a>
  3286. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">11,689<br/>有库存</span>
  3287. <table>
  3288. <tr align="center">
  3289. <td style="padding-top: 5px">
  3290. </td>
  3291. </tr>
  3292. <tr align="center">
  3293. <td style="padding-top: 5px; padding-bottom: 5px">
  3294. </td>
  3295. </tr>
  3296. </table></td><td>
  3297. <table class="PriceBreaks" cellspacing="0" border="0">
  3298. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3299. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3300. </td>
  3301. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3302. </td>
  3303. </tr>
  3304. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3305. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3306. 剪切带
  3307. </td>
  3308. </tr>
  3309. <tr>
  3310. <td class="PriceBreakQuantity">
  3311. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  3312. </td>
  3313. <td class="PriceBreakPrice">
  3314. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥12.8583</span>
  3315. </td>
  3316. </tr>
  3317. <tr>
  3318. <td class="PriceBreakQuantity">
  3319. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  3320. </td>
  3321. <td class="PriceBreakPrice">
  3322. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥11.5479</span>
  3323. </td>
  3324. </tr>
  3325. <tr>
  3326. <td class="PriceBreakQuantity">
  3327. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  3328. </td>
  3329. <td class="PriceBreakPrice">
  3330. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥10.6236</span>
  3331. </td>
  3332. </tr>
  3333. <tr>
  3334. <td class="PriceBreakQuantity">
  3335. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,50);">50:</a>
  3336. </td>
  3337. <td class="PriceBreakPrice">
  3338. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥10.3194</span>
  3339. </td>
  3340. </tr>
  3341. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3342. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3343. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(10,100);">100:</a>
  3344. </td>
  3345. <td class="PriceBreakPrice">
  3346. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/TPL0501-100RSER/?qs=sGAEpiMZZMsX%252bY3VKDPZyAKPS1JQ3SqWb1edcYtn7HU%3d">查看</a>
  3347. </td>
  3348. </tr>
  3349. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3350. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3351. </td>
  3352. </tr>
  3353. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trReel">
  3354. <td class="PriceBreakQuantity">
  3355. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(10,5000);" style="white-space: nowrap">5,000:</a>
  3356. </td>
  3357. <td class="PriceBreakPrice">
  3358. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥5.4639</span>
  3359. </td>
  3360. </tr>
  3361. <tr>
  3362. <td><br /></td>
  3363. </tr>
  3364. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3365. <td colspan="2" style="text-align: center;">
  3366. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/TPL0501-100RSER/?qs=sGAEpiMZZMsX%252bY3VKDPZyAKPS1JQ3SqWb1edcYtn7HU%3d">MouseReel 提供服务支持</a>
  3367. </td>
  3368. </tr>
  3369. </table>
  3370. </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;)">
  3371. <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 />
  3372. <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="购买 TPL0501-100RSER" class="buy-button" /><br />
  3373. <table cellspacing="0" border="0" style="width: 100%;">
  3374. <tr>
  3375. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3376. 最低:
  3377. </td>
  3378. <td style="padding-left: 2px; text-align: left;">
  3379. 1
  3380. </td>
  3381. </tr>
  3382. <tr>
  3383. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3384. 多个:
  3385. </td>
  3386. <td style="padding-left: 2px; text-align: left;">
  3387. 1
  3388. </td>
  3389. </tr>
  3390. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_trReel">
  3391. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3392. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(10,5000);">卷轴</a>:
  3393. </td>
  3394. <td style="padding-left: 2px; text-align: left;">
  3395. <em class="SearchResultsReel">
  3396. 5,000
  3397. </em>
  3398. </td>
  3399. </tr>
  3400. </table>
  3401. </div>
  3402. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  3403. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3404. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=6LCrQr1hUYW9tfB2yPB3gA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=6LCrQr1hUYW9tfB2yPB3gA%3d%3d" target="_blank">详细信息</a>
  3405. </div>
  3406. </td><td>100 kOhms
  3407. </td><td>35 PPM / C
  3408. </td><td>20 %
  3409. </td><td>Single
  3410. </td><td>256
  3411. </td><td>Non Volatile
  3412. </td><td>SPI
  3413. </td><td>2.7 V to 5 V
  3414. </td><td>+ 125 C
  3415. </td><td>SMD/SMT
  3416. </td><td>UQFN-8
  3417. </td><td>Reel
  3418. </td>
  3419. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-AD5232BRUZ100" data-index="13">
  3420. <td class="td-select" align="center">
  3421. <div style="padding: 5px 5px 0 5px;">
  3422. <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>
  3423. </div>
  3424. </td><td><a href='/ProductDetail/Analog-Devices/AD5232BRUZ100/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1LVxPlNeM5bc%3d'><img title='Analog Devices AD5232BRUZ100' alt='Analog Devices AD5232BRUZ100' id=940103315 src='/images/adi/sm/ADI_TSSOP_16.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/adi/images/ADI_TSSOP_16.jpg</div></a></td><td>
  3425. <div style="text-align:left;">
  3426. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD5232BRUZ100/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1LVxPlNeM5bc%3d">584-AD5232BRUZ100</a><br />
  3427. <br />
  3428. <br />
  3429. </div></td><td>
  3430. <div class="mfrDiv">
  3431. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD5232BRUZ100/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1LVxPlNeM5bc%3d">AD5232BRUZ100</a><br />
  3432. <br />
  3433. <div style="width: 100%; text-align: center;">
  3434. </div>
  3435. <div style="width: 100%; text-align: center;">
  3436. </div>
  3437. </div>
  3438. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  3439. </td><td>数字电位计 IC IC Dual 8Bit EEMEM
  3440. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3441. </div>
  3442. </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;Analog Devices&quot;,&quot;584-AD5232BRUZ100 | AD5232BRUZ100&quot;]);" href="http://www.mouser.com/ds/2/609/AD5232-586733.pdf" target="_blank">数据表</a>
  3443. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">3,019<br/>有库存</span>
  3444. <table>
  3445. <tr align="center">
  3446. <td style="padding-top: 5px">
  3447. </td>
  3448. </tr>
  3449. <tr align="center">
  3450. <td style="padding-top: 5px; padding-bottom: 5px">
  3451. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAlternativePackaging" title="备用包装 | 584-AD5232BRUZ100" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQJtWKS2FXtmfAML0gkwjOPL5%2fECE8MCxqMzTOF1SAp4HuDhwI4AhPbA96CCtv%2fthYPJPXH%252bslrSWQNah7ZdPU0RWW2Abv3gyMJ5h%252bHngV8aDFNzGfyXd6LeN%2fahhIzmmWGaetT%2foSzQQ%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3452. </td>
  3453. </tr>
  3454. </table></td><td>
  3455. <table class="PriceBreaks" cellspacing="0" border="0">
  3456. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3457. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3458. </td>
  3459. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3460. </td>
  3461. </tr>
  3462. <tr>
  3463. <td class="PriceBreakQuantity">
  3464. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  3465. </td>
  3466. <td class="PriceBreakPrice">
  3467. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥46.7415</span>
  3468. </td>
  3469. </tr>
  3470. <tr>
  3471. <td class="PriceBreakQuantity">
  3472. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
  3473. </td>
  3474. <td class="PriceBreakPrice">
  3475. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥42.0498</span>
  3476. </td>
  3477. </tr>
  3478. <tr>
  3479. <td class="PriceBreakQuantity">
  3480. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  3481. </td>
  3482. <td class="PriceBreakPrice">
  3483. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥38.3526</span>
  3484. </td>
  3485. </tr>
  3486. <tr>
  3487. <td class="PriceBreakQuantity">
  3488. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,50);">50:</a>
  3489. </td>
  3490. <td class="PriceBreakPrice">
  3491. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥35.7318</span>
  3492. </td>
  3493. </tr>
  3494. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3495. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3496. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(11,100);">100:</a>
  3497. </td>
  3498. <td class="PriceBreakPrice">
  3499. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Analog-Devices/AD5232BRUZ100/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1LVxPlNeM5bc%3d">查看</a>
  3500. </td>
  3501. </tr>
  3502. <tr>
  3503. <td><br /></td>
  3504. </tr>
  3505. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3506. <td colspan="2" style="text-align: center;">
  3507. </td>
  3508. </tr>
  3509. </table>
  3510. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy&#39;)">
  3511. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(11,this.value);" /><br />
  3512. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl13$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 11);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_btnBuy" title="购买 AD5232BRUZ100" class="buy-button" /><br />
  3513. <table cellspacing="0" border="0" style="width: 100%;">
  3514. <tr>
  3515. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3516. 最低:
  3517. </td>
  3518. <td style="padding-left: 2px; text-align: left;">
  3519. 1
  3520. </td>
  3521. </tr>
  3522. <tr>
  3523. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3524. 多个:
  3525. </td>
  3526. <td style="padding-left: 2px; text-align: left;">
  3527. 1
  3528. </td>
  3529. </tr>
  3530. </table>
  3531. </div>
  3532. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  3533. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3534. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUqBuh%252blh5yZ6g%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUqBuh%252blh5yZ6g%3d%3d" target="_blank">详细信息</a>
  3535. </div>
  3536. </td><td>100 kOhms
  3537. </td><td>300 PPM / C
  3538. </td><td>- 40 % to + 20 %
  3539. </td><td>Dual
  3540. </td><td>256
  3541. </td><td>Non Volatile
  3542. </td><td>SPI
  3543. </td><td>2.7 V
  3544. </td><td>+ 85 C
  3545. </td><td>SMD/SMT
  3546. </td><td>TSSOP-16
  3547. </td><td>Tube
  3548. </td>
  3549. </tr><tr class="SearchResultsRowEven" data-partnumber="584-AD8403ARUZ10-R" data-index="14">
  3550. <td class="td-select" align="center">
  3551. <div style="padding: 5px 5px 0 5px;">
  3552. <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>
  3553. </div>
  3554. </td><td><a href='/ProductDetail/Analog-Devices/AD8403ARUZ10-REEL/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1qqYQuS5VJXc%3d'><img title='Analog Devices AD8403ARUZ10-REEL' alt='Analog Devices AD8403ARUZ10-REEL' id=940116868 src='/images/adi/sm/ADI_TSSOP_24.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/adi/images/ADI_TSSOP_24.jpg</div></a></td><td>
  3555. <div style="text-align:left;">
  3556. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD8403ARUZ10-REEL/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1qqYQuS5VJXc%3d">584-AD8403ARUZ10-R</a><br />
  3557. <br />
  3558. <br />
  3559. 要购买完整 卷轴,请订购 2500 的倍数:
  3560. </div></td><td>
  3561. <div class="mfrDiv">
  3562. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD8403ARUZ10-REEL/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1qqYQuS5VJXc%3d">AD8403ARUZ10-REEL</a><br />
  3563. <br />
  3564. <div style="width: 100%; text-align: center;">
  3565. </div>
  3566. <div style="width: 100%; text-align: center;">
  3567. </div>
  3568. </div>
  3569. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  3570. </td><td>数字电位计 IC IC QUAD CH 8-BIT
  3571. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3572. </div>
  3573. </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;Analog Devices&quot;,&quot;584-AD8403ARUZ10-R | AD8403ARUZ10-REEL&quot;]);" href="http://www.mouser.com/ds/2/609/AD8400_8402_8403-877783.pdf" target="_blank">数据表</a>
  3574. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">2,493<br/>有库存</span>
  3575. <table>
  3576. <tr align="center">
  3577. <td style="padding-top: 5px">
  3578. </td>
  3579. </tr>
  3580. <tr align="center">
  3581. <td style="padding-top: 5px; padding-bottom: 5px">
  3582. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAlternativePackaging" title="备用包装 | 584-AD8403ARUZ10-R" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSAROlHHp0dTz49gSOgR9nt9ueWXmo3sPzx1C1S7xFdfVVJFtstqW%2fStyC8G9r74twWz1q%252bPCE0XvFXeArUDIxDvkEDq6cbneoZjGXzfLUdcXgcUKStvZppXyIcaKimHzm55qw3lhzJUw%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3583. </td>
  3584. </tr>
  3585. </table></td><td>
  3586. <table class="PriceBreaks" cellspacing="0" border="0">
  3587. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3588. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3589. </td>
  3590. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3591. </td>
  3592. </tr>
  3593. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3594. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3595. 剪切带
  3596. </td>
  3597. </tr>
  3598. <tr>
  3599. <td class="PriceBreakQuantity">
  3600. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  3601. </td>
  3602. <td class="PriceBreakPrice">
  3603. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥49.5144</span>
  3604. </td>
  3605. </tr>
  3606. <tr>
  3607. <td class="PriceBreakQuantity">
  3608. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,10);">10:</a>
  3609. </td>
  3610. <td class="PriceBreakPrice">
  3611. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥44.5887</span>
  3612. </td>
  3613. </tr>
  3614. <tr>
  3615. <td class="PriceBreakQuantity">
  3616. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  3617. </td>
  3618. <td class="PriceBreakPrice">
  3619. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥40.5873</span>
  3620. </td>
  3621. </tr>
  3622. <tr>
  3623. <td class="PriceBreakQuantity">
  3624. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,50);">50:</a>
  3625. </td>
  3626. <td class="PriceBreakPrice">
  3627. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥37.8144</span>
  3628. </td>
  3629. </tr>
  3630. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3631. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3632. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  3633. </td>
  3634. <td class="PriceBreakPrice">
  3635. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Analog-Devices/AD8403ARUZ10-REEL/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1qqYQuS5VJXc%3d">查看</a>
  3636. </td>
  3637. </tr>
  3638. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3639. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3640. </td>
  3641. </tr>
  3642. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trReel">
  3643. <td class="PriceBreakQuantity">
  3644. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(12,2500);" style="white-space: nowrap">2,500:</a>
  3645. </td>
  3646. <td class="PriceBreakPrice">
  3647. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥26.4888</span>
  3648. </td>
  3649. </tr>
  3650. <tr>
  3651. <td><br /></td>
  3652. </tr>
  3653. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3654. <td colspan="2" style="text-align: center;">
  3655. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Analog-Devices/AD8403ARUZ10-REEL/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1qqYQuS5VJXc%3d">MouseReel 提供服务支持</a>
  3656. </td>
  3657. </tr>
  3658. </table>
  3659. </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;)">
  3660. <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 />
  3661. <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="购买 AD8403ARUZ10-REEL" class="buy-button" /><br />
  3662. <table cellspacing="0" border="0" style="width: 100%;">
  3663. <tr>
  3664. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3665. 最低:
  3666. </td>
  3667. <td style="padding-left: 2px; text-align: left;">
  3668. 1
  3669. </td>
  3670. </tr>
  3671. <tr>
  3672. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3673. 多个:
  3674. </td>
  3675. <td style="padding-left: 2px; text-align: left;">
  3676. 1
  3677. </td>
  3678. </tr>
  3679. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_trReel">
  3680. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3681. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(12,2500);">卷轴</a>:
  3682. </td>
  3683. <td style="padding-left: 2px; text-align: left;">
  3684. <em class="SearchResultsReel">
  3685. 2,500
  3686. </em>
  3687. </td>
  3688. </tr>
  3689. </table>
  3690. </div>
  3691. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  3692. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3693. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=cq2xG0CYCOGsTrsOcCq6vw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=cq2xG0CYCOGsTrsOcCq6vw%3d%3d" target="_blank">详细信息</a>
  3694. </div>
  3695. </td><td>10 kOhms
  3696. </td><td>500 PPM / C
  3697. </td><td>20 %
  3698. </td><td>Quad
  3699. </td><td>256
  3700. </td><td>Volatile
  3701. </td><td>SPI
  3702. </td><td>3 V, 5 V
  3703. </td><td>+ 125 C
  3704. </td><td>SMD/SMT
  3705. </td><td>TSSOP-24
  3706. </td><td>Reel
  3707. </td>
  3708. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-AD5162BRMZ100-R7" data-index="15">
  3709. <td class="td-select" align="center">
  3710. <div style="padding: 5px 5px 0 5px;">
  3711. <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>
  3712. </div>
  3713. </td><td><a href='/ProductDetail/Analog-Devices/AD5162BRMZ100-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1UgH%2fNPfcY7g%3d'><img title='Analog Devices AD5162BRMZ100-RL7' alt='Analog Devices AD5162BRMZ100-RL7' id=940102949 src='/images/adi/sm/ADI_SOP_10.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/adi/images/ADI_SOP_10.jpg</div></a></td><td>
  3714. <div style="text-align:left;">
  3715. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD5162BRMZ100-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1UgH%2fNPfcY7g%3d">584-AD5162BRMZ100-R7</a><br />
  3716. <br />
  3717. <br />
  3718. 要购买完整 卷轴,请订购 1000 的倍数:
  3719. </div></td><td>
  3720. <div class="mfrDiv">
  3721. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD5162BRMZ100-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1UgH%2fNPfcY7g%3d">AD5162BRMZ100-RL7</a><br />
  3722. <br />
  3723. <div style="width: 100%; text-align: center;">
  3724. </div>
  3725. <div style="width: 100%; text-align: center;">
  3726. </div>
  3727. </div>
  3728. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  3729. </td><td>数字电位计 IC IC Dual 8-Bit SPI
  3730. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3731. </div>
  3732. </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;Analog Devices&quot;,&quot;584-AD5162BRMZ100-R7 | AD5162BRMZ100-RL7&quot;]);" href="http://www.mouser.com/ds/2/609/AD5162-877007.pdf" target="_blank">数据表</a>
  3733. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">5,450<br/>有库存</span>
  3734. <table>
  3735. <tr align="center">
  3736. <td style="padding-top: 5px">
  3737. </td>
  3738. </tr>
  3739. <tr align="center">
  3740. <td style="padding-top: 5px; padding-bottom: 5px">
  3741. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAlternativePackaging" title="备用包装 | 584-AD5162BRMZ100-R7" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQJtWKS2FXtmUOMhgnFhmsX6saXksqeEXWenrLMVB%2fBmPyST0eZ9GcUTjTuQ1NP%252bQKrPZWdLkqxmP85CS0pG%2fyjNtF%2fmzu%2f7%252bSuTfaDsxCpZJWInotN4VoGc4w1Sdahec8oUFqm1CKMHw%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3742. </td>
  3743. </tr>
  3744. </table></td><td>
  3745. <table class="PriceBreaks" cellspacing="0" border="0">
  3746. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3747. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3748. </td>
  3749. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3750. </td>
  3751. </tr>
  3752. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3753. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3754. 剪切带
  3755. </td>
  3756. </tr>
  3757. <tr>
  3758. <td class="PriceBreakQuantity">
  3759. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  3760. </td>
  3761. <td class="PriceBreakPrice">
  3762. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥19.4103</span>
  3763. </td>
  3764. </tr>
  3765. <tr>
  3766. <td class="PriceBreakQuantity">
  3767. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  3768. </td>
  3769. <td class="PriceBreakPrice">
  3770. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥17.3277</span>
  3771. </td>
  3772. </tr>
  3773. <tr>
  3774. <td class="PriceBreakQuantity">
  3775. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,25);">25:</a>
  3776. </td>
  3777. <td class="PriceBreakPrice">
  3778. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥15.561</span>
  3779. </td>
  3780. </tr>
  3781. <tr>
  3782. <td class="PriceBreakQuantity">
  3783. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,50);">50:</a>
  3784. </td>
  3785. <td class="PriceBreakPrice">
  3786. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥14.5548</span>
  3787. </td>
  3788. </tr>
  3789. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3790. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3791. 卷轴
  3792. </td>
  3793. </tr>
  3794. <tr>
  3795. <td class="PriceBreakQuantity">
  3796. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(13,1000);">1,000:</a>
  3797. </td>
  3798. <td class="PriceBreakPrice">
  3799. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥9.6291</span>
  3800. </td>
  3801. </tr>
  3802. <tr>
  3803. <td class="PriceBreakQuantity">
  3804. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(13,2000);">2,000:</a>
  3805. </td>
  3806. <td class="PriceBreakPrice">
  3807. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Analog-Devices/AD5162BRMZ100-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1UgH%2fNPfcY7g%3d' >查看</a></span>
  3808. </td>
  3809. </tr>
  3810. <tr>
  3811. <td><br /></td>
  3812. </tr>
  3813. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3814. <td colspan="2" style="text-align: center;">
  3815. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Analog-Devices/AD5162BRMZ100-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1UgH%2fNPfcY7g%3d">MouseReel 提供服务支持</a>
  3816. </td>
  3817. </tr>
  3818. </table>
  3819. </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;)">
  3820. <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 />
  3821. <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="购买 AD5162BRMZ100-RL7" class="buy-button" /><br />
  3822. <table cellspacing="0" border="0" style="width: 100%;">
  3823. <tr>
  3824. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3825. 最低:
  3826. </td>
  3827. <td style="padding-left: 2px; text-align: left;">
  3828. 1
  3829. </td>
  3830. </tr>
  3831. <tr>
  3832. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3833. 多个:
  3834. </td>
  3835. <td style="padding-left: 2px; text-align: left;">
  3836. 1
  3837. </td>
  3838. </tr>
  3839. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_trReel">
  3840. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3841. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(13,1000);">卷轴</a>:
  3842. </td>
  3843. <td style="padding-left: 2px; text-align: left;">
  3844. <em class="SearchResultsReel">
  3845. 1,000
  3846. </em>
  3847. </td>
  3848. </tr>
  3849. </table>
  3850. </div>
  3851. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  3852. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3853. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uLVZnZTI8SBHHzgRSJYiHQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=uLVZnZTI8SBHHzgRSJYiHQ%3d%3d" target="_blank">详细信息</a>
  3854. </div>
  3855. </td><td>100 kOhms
  3856. </td><td>35 PPM / C
  3857. </td><td>20 %
  3858. </td><td>Dual
  3859. </td><td>256
  3860. </td><td>Volatile
  3861. </td><td>SPI
  3862. </td><td>5.5 V
  3863. </td><td>+ 125 C
  3864. </td><td>SMD/SMT
  3865. </td><td>MSOP-10
  3866. </td><td>Reel
  3867. </td>
  3868. </tr><tr class="SearchResultsRowEven" data-partnumber="700-MAX5391NATE+T" data-index="16">
  3869. <td class="td-select" align="center">
  3870. <div style="padding: 5px 5px 0 5px;">
  3871. <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>
  3872. </div>
  3873. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX5391NATE+T/?qs=sGAEpiMZZMsX%252bY3VKDPZyC64rWQqzjOe4C5SjAy%252bP%252bQ%3d'><img title='Maxim Integrated MAX5391NATE+T' alt='Maxim Integrated MAX5391NATE+T' id=423438680 src='/images/mouserimages/sm/TQFN_16_EP_t.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/mouserimages/images/TQFN_16_EP_t.jpg</div></a></td><td>
  3874. <div style="text-align:left;">
  3875. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX5391NATE+T/?qs=sGAEpiMZZMsX%252bY3VKDPZyC64rWQqzjOe4C5SjAy%252bP%252bQ%3d">700-MAX5391NATE+T</a><br />
  3876. <br />
  3877. <br />
  3878. 要购买完整 卷轴,请订购 2500 的倍数:
  3879. </div></td><td>
  3880. <div class="mfrDiv">
  3881. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX5391NATE+T/?qs=sGAEpiMZZMsX%252bY3VKDPZyC64rWQqzjOe4C5SjAy%252bP%252bQ%3d">MAX5391NATE+T</a><br />
  3882. <br />
  3883. <div style="width: 100%; text-align: center;">
  3884. </div>
  3885. <div style="width: 100%; text-align: center;">
  3886. </div>
  3887. </div>
  3888. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  3889. </td><td>数字电位计 IC Dl 256-Tap Volatile Linear Taper
  3890. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3891. </div>
  3892. </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;Maxim Integrated&quot;,&quot;700-MAX5391NATE+T | MAX5391NATE+T&quot;]);" href="http://www.mouser.com/ds/2/256/MAX5391-MAX5393-271362.pdf" target="_blank">数据表</a>
  3893. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">4,831<br/>有库存</span>
  3894. <table>
  3895. <tr align="center">
  3896. <td style="padding-top: 5px">
  3897. </td>
  3898. </tr>
  3899. <tr align="center">
  3900. <td style="padding-top: 5px; padding-bottom: 5px">
  3901. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX5391NATE+T" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fcpK8ktCf%2fGFIu09SHPEQ0iVnyOs%252bX1CsRA5Mpu6oIMnyKCmQjPy7Y7rxzuLCmJ4GlgB2vpZqh%2frkjJ8tXn1UGJXFg9IEOgp%252bZiLHwBV%2fdkD4U09sSdY6ko%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3902. </td>
  3903. </tr>
  3904. </table></td><td>
  3905. <table class="PriceBreaks" cellspacing="0" border="0">
  3906. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3907. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3908. </td>
  3909. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3910. </td>
  3911. </tr>
  3912. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3913. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3914. 剪切带
  3915. </td>
  3916. </tr>
  3917. <tr>
  3918. <td class="PriceBreakQuantity">
  3919. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  3920. </td>
  3921. <td class="PriceBreakPrice">
  3922. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥28.4193</span>
  3923. </td>
  3924. </tr>
  3925. <tr>
  3926. <td class="PriceBreakQuantity">
  3927. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,25);">25:</a>
  3928. </td>
  3929. <td class="PriceBreakPrice">
  3930. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥21.8673</span>
  3931. </td>
  3932. </tr>
  3933. <tr>
  3934. <td class="PriceBreakQuantity">
  3935. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,50);">50:</a>
  3936. </td>
  3937. <td class="PriceBreakPrice">
  3938. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥20.7909</span>
  3939. </td>
  3940. </tr>
  3941. <tr>
  3942. <td class="PriceBreakQuantity">
  3943. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
  3944. </td>
  3945. <td class="PriceBreakPrice">
  3946. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥19.1763</span>
  3947. </td>
  3948. </tr>
  3949. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3950. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3951. 卷轴
  3952. </td>
  3953. </tr>
  3954. <tr>
  3955. <td class="PriceBreakQuantity">
  3956. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(14,2500);">2,500:</a>
  3957. </td>
  3958. <td class="PriceBreakPrice">
  3959. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥13.2444</span>
  3960. </td>
  3961. </tr>
  3962. <tr>
  3963. <td class="PriceBreakQuantity">
  3964. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(14,5000);">5,000:</a>
  3965. </td>
  3966. <td class="PriceBreakPrice">
  3967. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Maxim-Integrated/MAX5391NATE+T/?qs=sGAEpiMZZMsX%252bY3VKDPZyC64rWQqzjOe4C5SjAy%252bP%252bQ%3d' >查看</a></span>
  3968. </td>
  3969. </tr>
  3970. <tr>
  3971. <td><br /></td>
  3972. </tr>
  3973. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3974. <td colspan="2" style="text-align: center;">
  3975. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Maxim-Integrated/MAX5391NATE+T/?qs=sGAEpiMZZMsX%252bY3VKDPZyC64rWQqzjOe4C5SjAy%252bP%252bQ%3d">MouseReel 提供服务支持</a>
  3976. </td>
  3977. </tr>
  3978. </table>
  3979. </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;)">
  3980. <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 />
  3981. <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="购买 MAX5391NATE+T" class="buy-button" /><br />
  3982. <table cellspacing="0" border="0" style="width: 100%;">
  3983. <tr>
  3984. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3985. 最低:
  3986. </td>
  3987. <td style="padding-left: 2px; text-align: left;">
  3988. 1
  3989. </td>
  3990. </tr>
  3991. <tr>
  3992. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3993. 多个:
  3994. </td>
  3995. <td style="padding-left: 2px; text-align: left;">
  3996. 1
  3997. </td>
  3998. </tr>
  3999. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_trReel">
  4000. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4001. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(14,2500);">卷轴</a>:
  4002. </td>
  4003. <td style="padding-left: 2px; text-align: left;">
  4004. <em class="SearchResultsReel">
  4005. 2,500
  4006. </em>
  4007. </td>
  4008. </tr>
  4009. </table>
  4010. </div>
  4011. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  4012. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4013. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=LPFd7ecjD%2f3iyjLUaFmVwQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=LPFd7ecjD%2f3iyjLUaFmVwQ%3d%3d" target="_blank">详细信息</a>
  4014. </div>
  4015. </td><td>100 kOhms
  4016. </td><td>35 PPM / C
  4017. </td><td>25 %
  4018. </td><td>Dual
  4019. </td><td>256
  4020. </td><td>Volatile
  4021. </td><td>3-Wire, SPI
  4022. </td><td>5.5 V
  4023. </td><td>+ 125 C
  4024. </td><td>SMD/SMT
  4025. </td><td>TQFN-EP-16
  4026. </td><td>Reel
  4027. </td>
  4028. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-MAX5391LATE+T" data-index="17">
  4029. <td class="td-select" align="center">
  4030. <div style="padding: 5px 5px 0 5px;">
  4031. <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>
  4032. </div>
  4033. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX5391LATE+T/?qs=sGAEpiMZZMsX%252bY3VKDPZyC64rWQqzjOeFHLNwnBw9XM%3d'><img title='Maxim Integrated MAX5391LATE+T' alt='Maxim Integrated MAX5391LATE+T' id=423438672 src='/images/mouserimages/sm/TQFN_16_EP_t.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/mouserimages/images/TQFN_16_EP_t.jpg</div></a></td><td>
  4034. <div style="text-align:left;">
  4035. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX5391LATE+T/?qs=sGAEpiMZZMsX%252bY3VKDPZyC64rWQqzjOeFHLNwnBw9XM%3d">700-MAX5391LATE+T</a><br />
  4036. <br />
  4037. <br />
  4038. 要购买完整 卷轴,请订购 2500 的倍数:
  4039. </div></td><td>
  4040. <div class="mfrDiv">
  4041. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX5391LATE+T/?qs=sGAEpiMZZMsX%252bY3VKDPZyC64rWQqzjOeFHLNwnBw9XM%3d">MAX5391LATE+T</a><br />
  4042. <br />
  4043. <div style="width: 100%; text-align: center;">
  4044. </div>
  4045. <div style="width: 100%; text-align: center;">
  4046. </div>
  4047. </div>
  4048. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  4049. </td><td>数字电位计 IC Dl 256-Tap Volatile Linear Taper
  4050. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4051. </div>
  4052. </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;Maxim Integrated&quot;,&quot;700-MAX5391LATE+T | MAX5391LATE+T&quot;]);" href="http://www.mouser.com/ds/2/256/MAX5391-MAX5393-271362.pdf" target="_blank">数据表</a>
  4053. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">4,657<br/>有库存</span>
  4054. <table>
  4055. <tr align="center">
  4056. <td style="padding-top: 5px">
  4057. </td>
  4058. </tr>
  4059. <tr align="center">
  4060. <td style="padding-top: 5px; padding-bottom: 5px">
  4061. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX5391LATE+T" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fYMLOfRQc0GyaoK%2f3l%2ftrfMaZ1AtJ4mc1c7l4HUw9Yo4Tz%2fEN9o8PObmWplaOOXRpziksOKUfJkbjWjQgIG6QIqZbwwAuYdAUyrr%2flBninpINLU3EVJd9oU%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4062. </td>
  4063. </tr>
  4064. </table></td><td>
  4065. <table class="PriceBreaks" cellspacing="0" border="0">
  4066. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4067. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4068. </td>
  4069. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4070. </td>
  4071. </tr>
  4072. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4073. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4074. 剪切带
  4075. </td>
  4076. </tr>
  4077. <tr>
  4078. <td class="PriceBreakQuantity">
  4079. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  4080. </td>
  4081. <td class="PriceBreakPrice">
  4082. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥26.8047</span>
  4083. </td>
  4084. </tr>
  4085. <tr>
  4086. <td class="PriceBreakQuantity">
  4087. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,25);">25:</a>
  4088. </td>
  4089. <td class="PriceBreakPrice">
  4090. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥20.2527</span>
  4091. </td>
  4092. </tr>
  4093. <tr>
  4094. <td class="PriceBreakQuantity">
  4095. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,50);">50:</a>
  4096. </td>
  4097. <td class="PriceBreakPrice">
  4098. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥19.4103</span>
  4099. </td>
  4100. </tr>
  4101. <tr>
  4102. <td class="PriceBreakQuantity">
  4103. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,100);">100:</a>
  4104. </td>
  4105. <td class="PriceBreakPrice">
  4106. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥17.7138</span>
  4107. </td>
  4108. </tr>
  4109. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4110. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4111. 卷轴
  4112. </td>
  4113. </tr>
  4114. <tr>
  4115. <td class="PriceBreakQuantity">
  4116. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(15,2500);">2,500:</a>
  4117. </td>
  4118. <td class="PriceBreakPrice">
  4119. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥11.4777</span>
  4120. </td>
  4121. </tr>
  4122. <tr>
  4123. <td class="PriceBreakQuantity">
  4124. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(15,5000);">5,000:</a>
  4125. </td>
  4126. <td class="PriceBreakPrice">
  4127. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Maxim-Integrated/MAX5391LATE+T/?qs=sGAEpiMZZMsX%252bY3VKDPZyC64rWQqzjOeFHLNwnBw9XM%3d' >查看</a></span>
  4128. </td>
  4129. </tr>
  4130. <tr>
  4131. <td><br /></td>
  4132. </tr>
  4133. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4134. <td colspan="2" style="text-align: center;">
  4135. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Maxim-Integrated/MAX5391LATE+T/?qs=sGAEpiMZZMsX%252bY3VKDPZyC64rWQqzjOeFHLNwnBw9XM%3d">MouseReel 提供服务支持</a>
  4136. </td>
  4137. </tr>
  4138. </table>
  4139. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_btnBuy&#39;)">
  4140. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(15,this.value);" /><br />
  4141. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl17$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 15);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_btnBuy" title="购买 MAX5391LATE+T" class="buy-button" /><br />
  4142. <table cellspacing="0" border="0" style="width: 100%;">
  4143. <tr>
  4144. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4145. 最低:
  4146. </td>
  4147. <td style="padding-left: 2px; text-align: left;">
  4148. 1
  4149. </td>
  4150. </tr>
  4151. <tr>
  4152. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4153. 多个:
  4154. </td>
  4155. <td style="padding-left: 2px; text-align: left;">
  4156. 1
  4157. </td>
  4158. </tr>
  4159. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_trReel">
  4160. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4161. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(15,2500);">卷轴</a>:
  4162. </td>
  4163. <td style="padding-left: 2px; text-align: left;">
  4164. <em class="SearchResultsReel">
  4165. 2,500
  4166. </em>
  4167. </td>
  4168. </tr>
  4169. </table>
  4170. </div>
  4171. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  4172. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4173. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=LPFd7ecjD%2f35jK2%252b%252bnDHqw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=LPFd7ecjD%2f35jK2%252b%252bnDHqw%3d%3d" target="_blank">详细信息</a>
  4174. </div>
  4175. </td><td>10 kOhms
  4176. </td><td>35 PPM / C
  4177. </td><td>25 %
  4178. </td><td>Dual
  4179. </td><td>256
  4180. </td><td>Volatile
  4181. </td><td>3-Wire, SPI
  4182. </td><td>5.5 V
  4183. </td><td>+ 125 C
  4184. </td><td>SMD/SMT
  4185. </td><td>TQFN-EP-16
  4186. </td><td>Reel
  4187. </td>
  4188. </tr><tr class="SearchResultsRowEven" data-partnumber="579-MCP4018T103E/LT" data-index="18">
  4189. <td class="td-select" align="center">
  4190. <div style="padding: 5px 5px 0 5px;">
  4191. <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>
  4192. </div>
  4193. </td><td><a href='/ProductDetail/Microchip-Technology/MCP4018T-103E-LT/?qs=sGAEpiMZZMsX%252bY3VKDPZyOaUdRDbwWnUePM2ck2R32A%3d'><img title='Microchip Technology MCP4018T-103E/LT' alt='Microchip Technology MCP4018T-103E/LT' id=323090757 src='/images/microchiptechnology/sm/sc70-6.jpg'/></a></td><td>
  4194. <div style="text-align:left;">
  4195. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology/MCP4018T-103E-LT/?qs=sGAEpiMZZMsX%252bY3VKDPZyOaUdRDbwWnUePM2ck2R32A%3d">579-MCP4018T103E/LT</a><br />
  4196. <br />
  4197. <br />
  4198. 要购买完整 卷轴,请订购 3000 的倍数:
  4199. </div></td><td>
  4200. <div class="mfrDiv">
  4201. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology/MCP4018T-103E-LT/?qs=sGAEpiMZZMsX%252bY3VKDPZyOaUdRDbwWnUePM2ck2R32A%3d">MCP4018T-103E/LT</a><br />
  4202. <br />
  4203. <div style="width: 100%; text-align: center;">
  4204. </div>
  4205. <div style="width: 100%; text-align: center;">
  4206. </div>
  4207. </div>
  4208. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../microchip">Microchip Technology</a>
  4209. </td><td>数字电位计 IC 10K I2C single 7-bit volatile memory
  4210. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4211. </div>
  4212. </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;Microchip Technology&quot;,&quot;579-MCP4018T103E/LT | MCP4018T-103E/LT&quot;]);" href="http://www.mouser.com/ds/2/268/22147a-54123.pdf" target="_blank">数据表</a>
  4213. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">6,310<br/>有库存</span>
  4214. <table>
  4215. <tr align="center">
  4216. <td style="padding-top: 5px">
  4217. </td>
  4218. </tr>
  4219. <tr align="center">
  4220. <td style="padding-top: 5px; padding-bottom: 5px">
  4221. </td>
  4222. </tr>
  4223. </table></td><td>
  4224. <table class="PriceBreaks" cellspacing="0" border="0">
  4225. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4226. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4227. </td>
  4228. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4229. </td>
  4230. </tr>
  4231. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4232. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4233. 剪切带
  4234. </td>
  4235. </tr>
  4236. <tr>
  4237. <td class="PriceBreakQuantity">
  4238. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  4239. </td>
  4240. <td class="PriceBreakPrice">
  4241. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥4.3173</span>
  4242. </td>
  4243. </tr>
  4244. <tr>
  4245. <td class="PriceBreakQuantity">
  4246. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  4247. </td>
  4248. <td class="PriceBreakPrice">
  4249. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3.9312</span>
  4250. </td>
  4251. </tr>
  4252. <tr>
  4253. <td class="PriceBreakQuantity">
  4254. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,25);">25:</a>
  4255. </td>
  4256. <td class="PriceBreakPrice">
  4257. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.2292</span>
  4258. </td>
  4259. </tr>
  4260. <tr>
  4261. <td class="PriceBreakQuantity">
  4262. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,100);">100:</a>
  4263. </td>
  4264. <td class="PriceBreakPrice">
  4265. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3.0069</span>
  4266. </td>
  4267. </tr>
  4268. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4269. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4270. 卷轴
  4271. </td>
  4272. </tr>
  4273. <tr>
  4274. <td class="PriceBreakQuantity">
  4275. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(16,3000);">3,000:</a>
  4276. </td>
  4277. <td class="PriceBreakPrice">
  4278. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥3.0069</span>
  4279. </td>
  4280. </tr>
  4281. <tr>
  4282. <td><br /></td>
  4283. </tr>
  4284. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  4285. <td colspan="2" style="text-align: center;">
  4286. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Microchip-Technology/MCP4018T-103E-LT/?qs=sGAEpiMZZMsX%252bY3VKDPZyOaUdRDbwWnUePM2ck2R32A%3d">MouseReel 提供服务支持</a>
  4287. </td>
  4288. </tr>
  4289. </table>
  4290. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_btnBuy&#39;)">
  4291. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(16,this.value);" /><br />
  4292. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 16);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_btnBuy" title="购买 MCP4018T-103E/LT" class="buy-button" /><br />
  4293. <table cellspacing="0" border="0" style="width: 100%;">
  4294. <tr>
  4295. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4296. 最低:
  4297. </td>
  4298. <td style="padding-left: 2px; text-align: left;">
  4299. 1
  4300. </td>
  4301. </tr>
  4302. <tr>
  4303. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4304. 多个:
  4305. </td>
  4306. <td style="padding-left: 2px; text-align: left;">
  4307. 1
  4308. </td>
  4309. </tr>
  4310. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_trReel">
  4311. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4312. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(16,3000);">卷轴</a>:
  4313. </td>
  4314. <td style="padding-left: 2px; text-align: left;">
  4315. <em class="SearchResultsReel">
  4316. 3,000
  4317. </em>
  4318. </td>
  4319. </tr>
  4320. </table>
  4321. </div>
  4322. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  4323. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4324. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=EivAs3dkIsyE8hmjueUGww%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=EivAs3dkIsyE8hmjueUGww%3d%3d" target="_blank">详细信息</a>
  4325. </div>
  4326. </td><td>10 kOhms
  4327. </td><td>50 PPM / C
  4328. </td><td>20 %
  4329. </td><td>Single
  4330. </td><td>128
  4331. </td><td>Volatile
  4332. </td><td>I2C
  4333. </td><td>1.8 V to 5.5 V
  4334. </td><td>+ 125 C
  4335. </td><td>SMD/SMT
  4336. </td><td>SC-70-6
  4337. </td><td>Reel
  4338. </td>
  4339. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-AD5160BRJZ10-R7" data-index="19">
  4340. <td class="td-select" align="center">
  4341. <div style="padding: 5px 5px 0 5px;">
  4342. <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>
  4343. </div>
  4344. </td><td><a href='/ProductDetail/Analog-Devices/AD5160BRJZ10-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1dHPtsU2qfvY%3d'><img title='Analog Devices AD5160BRJZ10-RL7' alt='Analog Devices AD5160BRJZ10-RL7' id=940102891 src='/images/adi/sm/ADI_SOT_23_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/adi/images/ADI_SOT_23_8.jpg</div></a></td><td>
  4345. <div style="text-align:left;">
  4346. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD5160BRJZ10-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1dHPtsU2qfvY%3d">584-AD5160BRJZ10-R7</a><br />
  4347. <br />
  4348. <br />
  4349. 要购买完整 卷轴,请订购 3000 的倍数:
  4350. </div></td><td>
  4351. <div class="mfrDiv">
  4352. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD5160BRJZ10-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1dHPtsU2qfvY%3d">AD5160BRJZ10-RL7</a><br />
  4353. <br />
  4354. <div style="width: 100%; text-align: center;">
  4355. </div>
  4356. <div style="width: 100%; text-align: center;">
  4357. </div>
  4358. </div>
  4359. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  4360. </td><td>数字电位计 IC IC 8-Bit SPI
  4361. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4362. </div>
  4363. </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;Analog Devices&quot;,&quot;584-AD5160BRJZ10-R7 | AD5160BRJZ10-RL7&quot;]);" href="http://www.mouser.com/ds/2/609/AD5160-534137.pdf" target="_blank">数据表</a>
  4364. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">4,471<br/>有库存</span>
  4365. <table>
  4366. <tr align="center">
  4367. <td style="padding-top: 5px">
  4368. </td>
  4369. </tr>
  4370. <tr align="center">
  4371. <td style="padding-top: 5px; padding-bottom: 5px">
  4372. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAlternativePackaging" title="备用包装 | 584-AD5160BRJZ10-R7" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQJtWKS2FXtmdfVOZ%252bcd7tU5zb03ti78NOXBo3vJAGRY5Z5f64pF4eadX%2fzW23uZ%2fYMdXM5aMrNpbHKVY7kLFNxCyyiEs1jTxUMCK%252bfz%252bOerjO7MHl5aZYV8n90MfzYfreIWZbYjKTyGw%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4373. </td>
  4374. </tr>
  4375. </table></td><td>
  4376. <table class="PriceBreaks" cellspacing="0" border="0">
  4377. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4378. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4379. </td>
  4380. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4381. </td>
  4382. </tr>
  4383. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4384. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4385. 剪切带
  4386. </td>
  4387. </tr>
  4388. <tr>
  4389. <td class="PriceBreakQuantity">
  4390. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  4391. </td>
  4392. <td class="PriceBreakPrice">
  4393. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥13.7124</span>
  4394. </td>
  4395. </tr>
  4396. <tr>
  4397. <td class="PriceBreakQuantity">
  4398. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,10);">10:</a>
  4399. </td>
  4400. <td class="PriceBreakPrice">
  4401. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥12.402</span>
  4402. </td>
  4403. </tr>
  4404. <tr>
  4405. <td class="PriceBreakQuantity">
  4406. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,25);">25:</a>
  4407. </td>
  4408. <td class="PriceBreakPrice">
  4409. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥11.0916</span>
  4410. </td>
  4411. </tr>
  4412. <tr>
  4413. <td class="PriceBreakQuantity">
  4414. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,100);">100:</a>
  4415. </td>
  4416. <td class="PriceBreakPrice">
  4417. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥9.9333</span>
  4418. </td>
  4419. </tr>
  4420. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4421. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4422. 卷轴
  4423. </td>
  4424. </tr>
  4425. <tr>
  4426. <td class="PriceBreakQuantity">
  4427. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(17,3000);">3,000:</a>
  4428. </td>
  4429. <td class="PriceBreakPrice">
  4430. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥5.9787</span>
  4431. </td>
  4432. </tr>
  4433. <tr>
  4434. <td class="PriceBreakQuantity">
  4435. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(17,6000);">6,000:</a>
  4436. </td>
  4437. <td class="PriceBreakPrice">
  4438. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Analog-Devices/AD5160BRJZ10-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1dHPtsU2qfvY%3d' >查看</a></span>
  4439. </td>
  4440. </tr>
  4441. <tr>
  4442. <td><br /></td>
  4443. </tr>
  4444. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4445. <td colspan="2" style="text-align: center;">
  4446. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Analog-Devices/AD5160BRJZ10-RL7/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1dHPtsU2qfvY%3d">MouseReel 提供服务支持</a>
  4447. </td>
  4448. </tr>
  4449. </table>
  4450. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_btnBuy&#39;)">
  4451. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(17,this.value);" /><br />
  4452. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 17);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_btnBuy" title="购买 AD5160BRJZ10-RL7" class="buy-button" /><br />
  4453. <table cellspacing="0" border="0" style="width: 100%;">
  4454. <tr>
  4455. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4456. 最低:
  4457. </td>
  4458. <td style="padding-left: 2px; text-align: left;">
  4459. 1
  4460. </td>
  4461. </tr>
  4462. <tr>
  4463. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4464. 多个:
  4465. </td>
  4466. <td style="padding-left: 2px; text-align: left;">
  4467. 1
  4468. </td>
  4469. </tr>
  4470. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_trReel">
  4471. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4472. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(17,3000);">卷轴</a>:
  4473. </td>
  4474. <td style="padding-left: 2px; text-align: left;">
  4475. <em class="SearchResultsReel">
  4476. 3,000
  4477. </em>
  4478. </td>
  4479. </tr>
  4480. </table>
  4481. </div>
  4482. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  4483. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4484. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uLVZnZTI8SAAanVgOgTGvw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=uLVZnZTI8SAAanVgOgTGvw%3d%3d" target="_blank">详细信息</a>
  4485. </div>
  4486. </td><td>10 kOhms
  4487. </td><td>35 PPM / C
  4488. </td><td>15 %
  4489. </td><td>Single
  4490. </td><td>256
  4491. </td><td>Volatile
  4492. </td><td>SPI
  4493. </td><td>5.5 V
  4494. </td><td>+ 125 C
  4495. </td><td>SMD/SMT
  4496. </td><td>SOT-23-8
  4497. </td><td>Reel
  4498. </td>
  4499. </tr><tr class="SearchResultsRowEven" data-partnumber="700-DS1804-010" data-index="20">
  4500. <td class="td-select" align="center">
  4501. <div style="padding: 5px 5px 0 5px;">
  4502. <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>
  4503. </div>
  4504. </td><td><a href='/ProductDetail/Maxim-Integrated/DS1804-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyLvkclqwsv9GsAnNX5iSlDo%3d'><img title='Maxim Integrated DS1804-010+' alt='Maxim Integrated DS1804-010+' id=358995618 src='/images/mouserimages/sm/DIP_8_t.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/mouserimages/images/DIP_8_t.jpg</div></a></td><td>
  4505. <div style="text-align:left;">
  4506. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/DS1804-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyLvkclqwsv9GsAnNX5iSlDo%3d">700-DS1804-010</a><br />
  4507. <br />
  4508. <br />
  4509. </div></td><td>
  4510. <div class="mfrDiv">
  4511. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/DS1804-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyLvkclqwsv9GsAnNX5iSlDo%3d">DS1804-010+</a><br />
  4512. <br />
  4513. <div style="width: 100%; text-align: center;">
  4514. </div>
  4515. <div style="width: 100%; text-align: center;">
  4516. </div>
  4517. </div>
  4518. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  4519. </td><td>数字电位计 IC NV Trimmer
  4520. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4521. </div>
  4522. </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;Maxim Integrated&quot;,&quot;700-DS1804-010 | DS1804-010+&quot;]);" href="http://www.mouser.com/ds/2/256/DS1804-99557.pdf" target="_blank">数据表</a>
  4523. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">1,618<br/>有库存</span>
  4524. <table>
  4525. <tr align="center">
  4526. <td style="padding-top: 5px">
  4527. </td>
  4528. </tr>
  4529. <tr align="center">
  4530. <td style="padding-top: 5px; padding-bottom: 5px">
  4531. </td>
  4532. </tr>
  4533. </table></td><td>
  4534. <table class="PriceBreaks" cellspacing="0" border="0">
  4535. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4536. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4537. </td>
  4538. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4539. </td>
  4540. </tr>
  4541. <tr>
  4542. <td class="PriceBreakQuantity">
  4543. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  4544. </td>
  4545. <td class="PriceBreakPrice">
  4546. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥14.7069</span>
  4547. </td>
  4548. </tr>
  4549. <tr>
  4550. <td class="PriceBreakQuantity">
  4551. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,10);">10:</a>
  4552. </td>
  4553. <td class="PriceBreakPrice">
  4554. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥14.3208</span>
  4555. </td>
  4556. </tr>
  4557. <tr>
  4558. <td class="PriceBreakQuantity">
  4559. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,25);">25:</a>
  4560. </td>
  4561. <td class="PriceBreakPrice">
  4562. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥14.1687</span>
  4563. </td>
  4564. </tr>
  4565. <tr>
  4566. <td class="PriceBreakQuantity">
  4567. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  4568. </td>
  4569. <td class="PriceBreakPrice">
  4570. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥13.5486</span>
  4571. </td>
  4572. </tr>
  4573. <tr>
  4574. <td><br /></td>
  4575. </tr>
  4576. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4577. <td colspan="2" style="text-align: center;">
  4578. </td>
  4579. </tr>
  4580. </table>
  4581. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_btnBuy&#39;)">
  4582. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(18,this.value);" /><br />
  4583. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl20$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 18);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_btnBuy" title="购买 DS1804-010+" class="buy-button" /><br />
  4584. <table cellspacing="0" border="0" style="width: 100%;">
  4585. <tr>
  4586. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4587. 最低:
  4588. </td>
  4589. <td style="padding-left: 2px; text-align: left;">
  4590. 1
  4591. </td>
  4592. </tr>
  4593. <tr>
  4594. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4595. 多个:
  4596. </td>
  4597. <td style="padding-left: 2px; text-align: left;">
  4598. 1
  4599. </td>
  4600. </tr>
  4601. </table>
  4602. </div>
  4603. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  4604. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4605. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=e6Dhi585aq1ZvtZ1FYbTdw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=e6Dhi585aq1ZvtZ1FYbTdw%3d%3d" target="_blank">详细信息</a>
  4606. </div>
  4607. </td><td>10 kOhms
  4608. </td><td>750 PPM / C
  4609. </td><td>20 %
  4610. </td><td>Single
  4611. </td><td>100
  4612. </td><td>Non Volatile
  4613. </td><td>Increment-Decrement
  4614. </td><td>2.7 V to 5.5 V
  4615. </td><td>+ 85 C
  4616. </td><td>Through Hole
  4617. </td><td>DIP-8
  4618. </td><td>Tube
  4619. </td>
  4620. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-MAX5481EUD" data-index="21">
  4621. <td class="td-select" align="center">
  4622. <div style="padding: 5px 5px 0 5px;">
  4623. <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>
  4624. </div>
  4625. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX5481EUD+/?qs=sGAEpiMZZMsX%252bY3VKDPZyLtsxHG5o6Ji%2fsBcaq4nQ0o%3d'><img title='Maxim Integrated MAX5481EUD+' alt='Maxim Integrated MAX5481EUD+' id=295637741 src='/images/mouserimages/sm/TSSOP_14_t.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/mouserimages/images/TSSOP_14_t.jpg</div></a></td><td>
  4626. <div style="text-align:left;">
  4627. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX5481EUD+/?qs=sGAEpiMZZMsX%252bY3VKDPZyLtsxHG5o6Ji%2fsBcaq4nQ0o%3d">700-MAX5481EUD</a><br />
  4628. <br />
  4629. <br />
  4630. </div></td><td>
  4631. <div class="mfrDiv">
  4632. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX5481EUD+/?qs=sGAEpiMZZMsX%252bY3VKDPZyLtsxHG5o6Ji%2fsBcaq4nQ0o%3d">MAX5481EUD+</a><br />
  4633. <br />
  4634. <div style="width: 100%; text-align: center;">
  4635. </div>
  4636. <div style="width: 100%; text-align: center;">
  4637. </div>
  4638. </div>
  4639. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  4640. </td><td>数字电位计 IC 10-Bit Nonvolatile Linear-Taper
  4641. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4642. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/maxim-integrated/maxim-programmable-logic-controllers/">了解更多</a>
  4643. </div>
  4644. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4645. </div>
  4646. </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;Maxim Integrated&quot;,&quot;700-MAX5481EUD | MAX5481EUD+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX5481-MAX5484-104913.pdf" target="_blank">数据表</a>
  4647. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">691<br/>有库存</span>
  4648. <table>
  4649. <tr align="center">
  4650. <td style="padding-top: 5px">
  4651. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Maxim-Integrated/MAX5481EUD+/?qs=sGAEpiMZZMsX%252bY3VKDPZyLtsxHG5o6Ji%2fsBcaq4nQ0o%3d">更多信息可用 </a>
  4652. </td>
  4653. </tr>
  4654. <tr align="center">
  4655. <td style="padding-top: 5px; padding-bottom: 5px">
  4656. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX5481EUD" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fWfS6aEhPOJZXnS5%252b7qkBHlHQRtY9cpWtPoEaGZEBSTC6haYj%252bW0rwuBizvTWolN3qD%252bOm6VC6gPvLRb5R1ldxgocGP6edsXAJbUzQdssp%2fgBiPaZbc9sHg%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4657. </td>
  4658. </tr>
  4659. </table></td><td>
  4660. <table class="PriceBreaks" cellspacing="0" border="0">
  4661. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4662. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4663. </td>
  4664. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4665. </td>
  4666. </tr>
  4667. <tr>
  4668. <td class="PriceBreakQuantity">
  4669. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  4670. </td>
  4671. <td class="PriceBreakPrice">
  4672. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥20.943</span>
  4673. </td>
  4674. </tr>
  4675. <tr>
  4676. <td class="PriceBreakQuantity">
  4677. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,10);">10:</a>
  4678. </td>
  4679. <td class="PriceBreakPrice">
  4680. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥20.1708</span>
  4681. </td>
  4682. </tr>
  4683. <tr>
  4684. <td class="PriceBreakQuantity">
  4685. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,50);">50:</a>
  4686. </td>
  4687. <td class="PriceBreakPrice">
  4688. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥20.0187</span>
  4689. </td>
  4690. </tr>
  4691. <tr>
  4692. <td class="PriceBreakQuantity">
  4693. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  4694. </td>
  4695. <td class="PriceBreakPrice">
  4696. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥19.7964</span>
  4697. </td>
  4698. </tr>
  4699. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4700. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4701. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(19,250);">250:</a>
  4702. </td>
  4703. <td class="PriceBreakPrice">
  4704. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/MAX5481EUD+/?qs=sGAEpiMZZMsX%252bY3VKDPZyLtsxHG5o6Ji%2fsBcaq4nQ0o%3d">查看</a>
  4705. </td>
  4706. </tr>
  4707. <tr>
  4708. <td><br /></td>
  4709. </tr>
  4710. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4711. <td colspan="2" style="text-align: center;">
  4712. </td>
  4713. </tr>
  4714. </table>
  4715. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_btnBuy&#39;)">
  4716. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(19,this.value);" /><br />
  4717. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl21$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 19);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_btnBuy" title="购买 MAX5481EUD+" class="buy-button" /><br />
  4718. <table cellspacing="0" border="0" style="width: 100%;">
  4719. <tr>
  4720. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4721. 最低:
  4722. </td>
  4723. <td style="padding-left: 2px; text-align: left;">
  4724. 1
  4725. </td>
  4726. </tr>
  4727. <tr>
  4728. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4729. 多个:
  4730. </td>
  4731. <td style="padding-left: 2px; text-align: left;">
  4732. 1
  4733. </td>
  4734. </tr>
  4735. </table>
  4736. </div>
  4737. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  4738. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4739. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=jelsDP9liL8kfnmIHTs6zg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=jelsDP9liL8kfnmIHTs6zg%3d%3d" target="_blank">详细信息</a>
  4740. </div>
  4741. </td><td>10 kOhms
  4742. </td><td>35 PPM / C
  4743. </td><td>25 %
  4744. </td><td>Single
  4745. </td><td>1024
  4746. </td><td>Non Volatile
  4747. </td><td>Serial (3-Wire, SPI)
  4748. </td><td>2.7 V to 5.25 V
  4749. </td><td>+ 85 C
  4750. </td><td>SMD/SMT
  4751. </td><td>TSSOP-14
  4752. </td><td>Tube
  4753. </td>
  4754. </tr><tr class="SearchResultsRowEven" data-partnumber="584-AD8400ARZ1" data-index="22">
  4755. <td class="td-select" align="center">
  4756. <div style="padding: 5px 5px 0 5px;">
  4757. <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>
  4758. </div>
  4759. </td><td><a href='/ProductDetail/Analog-Devices/AD8400ARZ1/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1KEppBfVfgFg%3d'><img title='Analog Devices AD8400ARZ1' alt='Analog Devices AD8400ARZ1' id=940116774 src='/images/adi/sm/ADI_SOIC_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/adi/images/ADI_SOIC_8.jpg</div></a></td><td>
  4760. <div style="text-align:left;">
  4761. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD8400ARZ1/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1KEppBfVfgFg%3d">584-AD8400ARZ1</a><br />
  4762. <br />
  4763. <br />
  4764. </div></td><td>
  4765. <div class="mfrDiv">
  4766. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD8400ARZ1/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1KEppBfVfgFg%3d">AD8400ARZ1</a><br />
  4767. <br />
  4768. <div style="width: 100%; text-align: center;">
  4769. </div>
  4770. <div style="width: 100%; text-align: center;">
  4771. </div>
  4772. </div>
  4773. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  4774. </td><td>数字电位计 IC SGL CH 8-BIT
  4775. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4776. </div>
  4777. </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;Analog Devices&quot;,&quot;584-AD8400ARZ1 | AD8400ARZ1&quot;]);" href="http://www.mouser.com/ds/2/609/AD8400_8402_8403-877783.pdf" target="_blank">数据表</a>
  4778. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">1,133<br/>有库存</span>
  4779. <table>
  4780. <tr align="center">
  4781. <td style="padding-top: 5px">
  4782. </td>
  4783. </tr>
  4784. <tr align="center">
  4785. <td style="padding-top: 5px; padding-bottom: 5px">
  4786. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAlternativePackaging" title="备用包装 | 584-AD8400ARZ1" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSAROlHHp0dTy7GvIhp2agTR4DY6ufIrKtFP38BHfXZsuWShCoMEByPjKmkV4zxUrdfWRCFzEl9rXOSieMlMiDRUseV42s2ClOgn%2fsftFvB0kaWyF%252bus2%2finys0CnVYZmw%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4787. </td>
  4788. </tr>
  4789. </table></td><td>
  4790. <table class="PriceBreaks" cellspacing="0" border="0">
  4791. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4792. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4793. </td>
  4794. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4795. </td>
  4796. </tr>
  4797. <tr>
  4798. <td class="PriceBreakQuantity">
  4799. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  4800. </td>
  4801. <td class="PriceBreakPrice">
  4802. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥22.1013</span>
  4803. </td>
  4804. </tr>
  4805. <tr>
  4806. <td class="PriceBreakQuantity">
  4807. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,10);">10:</a>
  4808. </td>
  4809. <td class="PriceBreakPrice">
  4810. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥19.7145</span>
  4811. </td>
  4812. </tr>
  4813. <tr>
  4814. <td class="PriceBreakQuantity">
  4815. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,25);">25:</a>
  4816. </td>
  4817. <td class="PriceBreakPrice">
  4818. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥17.7138</span>
  4819. </td>
  4820. </tr>
  4821. <tr>
  4822. <td class="PriceBreakQuantity">
  4823. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,50);">50:</a>
  4824. </td>
  4825. <td class="PriceBreakPrice">
  4826. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥16.6374</span>
  4827. </td>
  4828. </tr>
  4829. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4830. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4831. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(20,100);">100:</a>
  4832. </td>
  4833. <td class="PriceBreakPrice">
  4834. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Analog-Devices/AD8400ARZ1/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1KEppBfVfgFg%3d">查看</a>
  4835. </td>
  4836. </tr>
  4837. <tr>
  4838. <td><br /></td>
  4839. </tr>
  4840. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4841. <td colspan="2" style="text-align: center;">
  4842. </td>
  4843. </tr>
  4844. </table>
  4845. </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;)">
  4846. <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 />
  4847. <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="购买 AD8400ARZ1" class="buy-button" /><br />
  4848. <table cellspacing="0" border="0" style="width: 100%;">
  4849. <tr>
  4850. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4851. 最低:
  4852. </td>
  4853. <td style="padding-left: 2px; text-align: left;">
  4854. 1
  4855. </td>
  4856. </tr>
  4857. <tr>
  4858. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4859. 多个:
  4860. </td>
  4861. <td style="padding-left: 2px; text-align: left;">
  4862. 1
  4863. </td>
  4864. </tr>
  4865. </table>
  4866. </div>
  4867. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  4868. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4869. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=cq2xG0CYCOFscffszDfs7A%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=cq2xG0CYCOFscffszDfs7A%3d%3d" target="_blank">详细信息</a>
  4870. </div>
  4871. </td><td>1 kOhms
  4872. </td><td>500 PPM / C
  4873. </td><td>20 %
  4874. </td><td>Single
  4875. </td><td>256
  4876. </td><td>Volatile
  4877. </td><td>SPI
  4878. </td><td>5.5 V
  4879. </td><td>+ 125 C
  4880. </td><td>SMD/SMT
  4881. </td><td>SOIC-8
  4882. </td><td>Tube
  4883. </td>
  4884. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-AD5290YRMZ10" data-index="23">
  4885. <td class="td-select" align="center">
  4886. <div style="padding: 5px 5px 0 5px;">
  4887. <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>
  4888. </div>
  4889. </td><td><a href='/ProductDetail/Analog-Devices/AD5290YRMZ10/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1RQoIkV2YG%252b8%3d'><img title='Analog Devices AD5290YRMZ10' alt='Analog Devices AD5290YRMZ10' id=940103851 src='/images/adi/sm/ADI_SOP_10.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/adi/images/ADI_SOP_10.jpg</div></a></td><td>
  4890. <div style="text-align:left;">
  4891. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD5290YRMZ10/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1RQoIkV2YG%252b8%3d">584-AD5290YRMZ10</a><br />
  4892. <br />
  4893. <br />
  4894. </div></td><td>
  4895. <div class="mfrDiv">
  4896. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD5290YRMZ10/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1RQoIkV2YG%252b8%3d">AD5290YRMZ10</a><br />
  4897. <br />
  4898. <div style="width: 100%; text-align: center;">
  4899. </div>
  4900. <div style="width: 100%; text-align: center;">
  4901. </div>
  4902. </div>
  4903. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  4904. </td><td>数字电位计 IC IC +/-15V 8-Bit
  4905. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4906. </div>
  4907. </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;Analog Devices&quot;,&quot;584-AD5290YRMZ10 | AD5290YRMZ10&quot;]);" href="http://www.mouser.com/ds/2/609/AD5290-877030.pdf" target="_blank">数据表</a>
  4908. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">961<br/>有库存</span>
  4909. <table>
  4910. <tr align="center">
  4911. <td style="padding-top: 5px">
  4912. </td>
  4913. </tr>
  4914. <tr align="center">
  4915. <td style="padding-top: 5px; padding-bottom: 5px">
  4916. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAlternativePackaging" title="备用包装 | 584-AD5290YRMZ10" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQJtWKS2FXtmcaFJgTjPBTCrOdcTDofjzMyOmAHWnB3lowpfj5Ohg%252bsFcb%2fB9XAhgiA%252bYrGtFLPAPwazC0UvFZS3OI288t1YEvFdBo5uZ7OIHUbQKkVwKMret9sCg%252bJ5R1IvWx92q7aqg%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4917. </td>
  4918. </tr>
  4919. </table></td><td>
  4920. <table class="PriceBreaks" cellspacing="0" border="0">
  4921. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4922. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4923. </td>
  4924. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4925. </td>
  4926. </tr>
  4927. <tr>
  4928. <td class="PriceBreakQuantity">
  4929. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  4930. </td>
  4931. <td class="PriceBreakPrice">
  4932. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥38.2005</span>
  4933. </td>
  4934. </tr>
  4935. <tr>
  4936. <td class="PriceBreakQuantity">
  4937. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  4938. </td>
  4939. <td class="PriceBreakPrice">
  4940. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥34.1172</span>
  4941. </td>
  4942. </tr>
  4943. <tr>
  4944. <td class="PriceBreakQuantity">
  4945. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,25);">25:</a>
  4946. </td>
  4947. <td class="PriceBreakPrice">
  4948. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥30.654</span>
  4949. </td>
  4950. </tr>
  4951. <tr>
  4952. <td class="PriceBreakQuantity">
  4953. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,50);">50:</a>
  4954. </td>
  4955. <td class="PriceBreakPrice">
  4956. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥28.8054</span>
  4957. </td>
  4958. </tr>
  4959. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4960. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4961. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(21,100);">100:</a>
  4962. </td>
  4963. <td class="PriceBreakPrice">
  4964. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Analog-Devices/AD5290YRMZ10/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1RQoIkV2YG%252b8%3d">查看</a>
  4965. </td>
  4966. </tr>
  4967. <tr>
  4968. <td><br /></td>
  4969. </tr>
  4970. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4971. <td colspan="2" style="text-align: center;">
  4972. </td>
  4973. </tr>
  4974. </table>
  4975. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy&#39;)">
  4976. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(21,this.value);" /><br />
  4977. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl23$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 21);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy" title="购买 AD5290YRMZ10" class="buy-button" /><br />
  4978. <table cellspacing="0" border="0" style="width: 100%;">
  4979. <tr>
  4980. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4981. 最低:
  4982. </td>
  4983. <td style="padding-left: 2px; text-align: left;">
  4984. 1
  4985. </td>
  4986. </tr>
  4987. <tr>
  4988. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4989. 多个:
  4990. </td>
  4991. <td style="padding-left: 2px; text-align: left;">
  4992. 1
  4993. </td>
  4994. </tr>
  4995. </table>
  4996. </div>
  4997. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  4998. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4999. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUoSGGslqmSa1Q%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUoSGGslqmSa1Q%3d%3d" target="_blank">详细信息</a>
  5000. </div>
  5001. </td><td>10 kOhms
  5002. </td><td>35 PPM / C
  5003. </td><td>30 %
  5004. </td><td>Single
  5005. </td><td>256
  5006. </td><td>Volatile
  5007. </td><td>SPI
  5008. </td><td>5.5 V
  5009. </td><td>+ 105 C
  5010. </td><td>SMD/SMT
  5011. </td><td>MSOP-10
  5012. </td><td>Tube
  5013. </td>
  5014. </tr><tr class="SearchResultsRowEven" data-partnumber="584-AD5293BRUZ-20" data-index="24">
  5015. <td class="td-select" align="center">
  5016. <div style="padding: 5px 5px 0 5px;">
  5017. <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>
  5018. </div>
  5019. </td><td><a href='/ProductDetail/Analog-Devices/AD5293BRUZ-20/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1%2feH8MA2g0z8%3d'><img title='Analog Devices AD5293BRUZ-20' alt='Analog Devices AD5293BRUZ-20' id=940103883 src='/images/adi/sm/ADI_TSSOP_14.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/adi/images/ADI_TSSOP_14.jpg</div></a></td><td>
  5020. <div style="text-align:left;">
  5021. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD5293BRUZ-20/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1%2feH8MA2g0z8%3d">584-AD5293BRUZ-20</a><br />
  5022. <br />
  5023. <br />
  5024. </div></td><td>
  5025. <div class="mfrDiv">
  5026. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD5293BRUZ-20/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1%2feH8MA2g0z8%3d">AD5293BRUZ-20</a><br />
  5027. <br />
  5028. <div style="width: 100%; text-align: center;">
  5029. </div>
  5030. <div style="width: 100%; text-align: center;">
  5031. </div>
  5032. </div>
  5033. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  5034. </td><td>数字电位计 IC 1024-pos 1% w/SPI interface
  5035. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5036. </div>
  5037. </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;Analog Devices&quot;,&quot;584-AD5293BRUZ-20 | AD5293BRUZ-20&quot;]);" href="http://www.mouser.com/ds/2/609/AD5293-877042.pdf" target="_blank">数据表</a>
  5038. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">411<br/>有库存</span>
  5039. <table>
  5040. <tr align="center">
  5041. <td style="padding-top: 5px">
  5042. </td>
  5043. </tr>
  5044. <tr align="center">
  5045. <td style="padding-top: 5px; padding-bottom: 5px">
  5046. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAlternativePackaging" title="备用包装 | 584-AD5293BRUZ-20" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQJtWKS2FXtmQXgHR8eyU5NZKgPiHJH5IynZNG6zils0vTUjl3IHfj6D475tV9SVROqArNj8%2f0SYlB4IUAy5dbzLg77Xm2xR4CVkqbdPUsdxTjCLJRGWhDNqMgewm%252bmUpgI%252bwuThDa4ew%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  5047. </td>
  5048. </tr>
  5049. </table></td><td>
  5050. <table class="PriceBreaks" cellspacing="0" border="0">
  5051. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5052. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5053. </td>
  5054. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5055. </td>
  5056. </tr>
  5057. <tr>
  5058. <td class="PriceBreakQuantity">
  5059. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  5060. </td>
  5061. <td class="PriceBreakPrice">
  5062. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥46.8936</span>
  5063. </td>
  5064. </tr>
  5065. <tr>
  5066. <td class="PriceBreakQuantity">
  5067. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  5068. </td>
  5069. <td class="PriceBreakPrice">
  5070. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥42.2019</span>
  5071. </td>
  5072. </tr>
  5073. <tr>
  5074. <td class="PriceBreakQuantity">
  5075. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,25);">25:</a>
  5076. </td>
  5077. <td class="PriceBreakPrice">
  5078. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥38.5047</span>
  5079. </td>
  5080. </tr>
  5081. <tr>
  5082. <td class="PriceBreakQuantity">
  5083. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,50);">50:</a>
  5084. </td>
  5085. <td class="PriceBreakPrice">
  5086. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥35.8137</span>
  5087. </td>
  5088. </tr>
  5089. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5090. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5091. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  5092. </td>
  5093. <td class="PriceBreakPrice">
  5094. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Analog-Devices/AD5293BRUZ-20/?qs=sGAEpiMZZMsX%252bY3VKDPZyLyApBHnHzW1%2feH8MA2g0z8%3d">查看</a>
  5095. </td>
  5096. </tr>
  5097. <tr>
  5098. <td><br /></td>
  5099. </tr>
  5100. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5101. <td colspan="2" style="text-align: center;">
  5102. </td>
  5103. </tr>
  5104. </table>
  5105. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy&#39;)">
  5106. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(22,this.value);" /><br />
  5107. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl24$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 22);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl08_btnBuy" title="购买 AD5293BRUZ-20" class="buy-button" /><br />
  5108. <table cellspacing="0" border="0" style="width: 100%;">
  5109. <tr>
  5110. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5111. 最低:
  5112. </td>
  5113. <td style="padding-left: 2px; text-align: left;">
  5114. 1
  5115. </td>
  5116. </tr>
  5117. <tr>
  5118. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5119. 多个:
  5120. </td>
  5121. <td style="padding-left: 2px; text-align: left;">
  5122. 1
  5123. </td>
  5124. </tr>
  5125. </table>
  5126. </div>
  5127. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  5128. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5129. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUp%252buq8VihUMbg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=L2RGsCdGEUp%252buq8VihUMbg%3d%3d" target="_blank">详细信息</a>
  5130. </div>
  5131. </td><td>20 kOhms
  5132. </td><td>5 PPM / C
  5133. </td><td>1 %
  5134. </td><td>Single
  5135. </td><td>1024
  5136. </td><td>Volatile
  5137. </td><td>SPI
  5138. </td><td>5.5 V
  5139. </td><td>+ 105 C
  5140. </td><td>SMD/SMT
  5141. </td><td>TSSOP-14
  5142. </td><td>Tube
  5143. </td>
  5144. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-DS1809Z-010" data-index="25">
  5145. <td class="td-select" align="center">
  5146. <div style="padding: 5px 5px 0 5px;">
  5147. <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>
  5148. </div>
  5149. </td><td><a href='/ProductDetail/Maxim-Integrated/DS1809Z-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyLvkclqwsv9Ge3VaSOx6f4A%3d'><img title='Maxim Integrated DS1809Z-010+' alt='Maxim Integrated DS1809Z-010+' id=358995644 src='/images/mouserimages/sm/SOIC_8_t.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/mouserimages/images/SOIC_8_t.jpg</div></a></td><td>
  5150. <div style="text-align:left;">
  5151. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/DS1809Z-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyLvkclqwsv9Ge3VaSOx6f4A%3d">700-DS1809Z-010</a><br />
  5152. <br />
  5153. <br />
  5154. </div></td><td>
  5155. <div class="mfrDiv">
  5156. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/DS1809Z-010+/?qs=sGAEpiMZZMsX%252bY3VKDPZyLvkclqwsv9Ge3VaSOx6f4A%3d">DS1809Z-010+</a><br />
  5157. <br />
  5158. <div style="width: 100%; text-align: center;">
  5159. </div>
  5160. <div style="width: 100%; text-align: center;">
  5161. </div>
  5162. </div>
  5163. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  5164. </td><td>数字电位计 IC Dallastat
  5165. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5166. </div>
  5167. </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;Maxim Integrated&quot;,&quot;700-DS1809Z-010 | DS1809Z-010+&quot;]);" href="http://www.mouser.com/ds/2/256/DS1809-86847.pdf" target="_blank">数据表</a>
  5168. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">1,116<br/>有库存</span>
  5169. <table>
  5170. <tr align="center">
  5171. <td style="padding-top: 5px">
  5172. </td>
  5173. </tr>
  5174. <tr align="center">
  5175. <td style="padding-top: 5px; padding-bottom: 5px">
  5176. </td>
  5177. </tr>
  5178. </table></td><td>
  5179. <table class="PriceBreaks" cellspacing="0" border="0">
  5180. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5181. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5182. </td>
  5183. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5184. </td>
  5185. </tr>
  5186. <tr>
  5187. <td class="PriceBreakQuantity">
  5188. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  5189. </td>
  5190. <td class="PriceBreakPrice">
  5191. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥14.4729</span>
  5192. </td>
  5193. </tr>
  5194. <tr>
  5195. <td class="PriceBreakQuantity">
  5196. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  5197. </td>
  5198. <td class="PriceBreakPrice">
  5199. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥14.0985</span>
  5200. </td>
  5201. </tr>
  5202. <tr>
  5203. <td class="PriceBreakQuantity">
  5204. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,25);">25:</a>
  5205. </td>
  5206. <td class="PriceBreakPrice">
  5207. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥13.9347</span>
  5208. </td>
  5209. </tr>
  5210. <tr>
  5211. <td class="PriceBreakQuantity">
  5212. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
  5213. </td>
  5214. <td class="PriceBreakPrice">
  5215. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥13.3263</span>
  5216. </td>
  5217. </tr>
  5218. <tr>
  5219. <td><br /></td>
  5220. </tr>
  5221. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5222. <td colspan="2" style="text-align: center;">
  5223. </td>
  5224. </tr>
  5225. </table>
  5226. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy&#39;)">
  5227. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(23,this.value);" /><br />
  5228. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl25$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 23);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy" title="购买 DS1809Z-010+" class="buy-button" /><br />
  5229. <table cellspacing="0" border="0" style="width: 100%;">
  5230. <tr>
  5231. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5232. 最低:
  5233. </td>
  5234. <td style="padding-left: 2px; text-align: left;">
  5235. 1
  5236. </td>
  5237. </tr>
  5238. <tr>
  5239. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5240. 多个:
  5241. </td>
  5242. <td style="padding-left: 2px; text-align: left;">
  5243. 1
  5244. </td>
  5245. </tr>
  5246. </table>
  5247. </div>
  5248. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  5249. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5250. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=e6Dhi585aq15s9bgs2m8Uw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=e6Dhi585aq15s9bgs2m8Uw%3d%3d" target="_blank">详细信息</a>
  5251. </div>
  5252. </td><td>10 kOhms
  5253. </td><td>750 PPM / C
  5254. </td><td>20 %
  5255. </td><td>Single
  5256. </td><td>64
  5257. </td><td>Non Volatile
  5258. </td><td>Contact-Closure
  5259. </td><td>4.5 V to 5.5 V
  5260. </td><td>+ 85 C
  5261. </td><td>SMD/SMT
  5262. </td><td>SOIC-8
  5263. </td><td>Tube
  5264. </td>
  5265. </tr><tr class="SearchResultsRowEven" data-partnumber="595-TPL0401A-10DCKR" data-index="26">
  5266. <td class="td-select" align="center">
  5267. <div style="padding: 5px 5px 0 5px;">
  5268. <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>
  5269. </div>
  5270. </td><td><a href='/ProductDetail/Texas-Instruments/TPL0401A-10DCKR/?qs=sGAEpiMZZMsX%252bY3VKDPZyCr2zWkzc2dFi1QYSHyKlc4%3d'><img title='Texas Instruments TPL0401A-10DCKR' alt='Texas Instruments TPL0401A-10DCKR' id=611087536 src='/images/texasinstruments/sm/TI_SC_70_6.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/texasinstruments/images/TI_SC_70_6.jpg</div></a></td><td>
  5271. <div style="text-align:left;">
  5272. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TPL0401A-10DCKR/?qs=sGAEpiMZZMsX%252bY3VKDPZyCr2zWkzc2dFi1QYSHyKlc4%3d">595-TPL0401A-10DCKR</a><br />
  5273. <br />
  5274. <br />
  5275. 要购买完整 卷轴,请订购 3000 的倍数:
  5276. </div></td><td>
  5277. <div class="mfrDiv">
  5278. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TPL0401A-10DCKR/?qs=sGAEpiMZZMsX%252bY3VKDPZyCr2zWkzc2dFi1QYSHyKlc4%3d">TPL0401A-10DCKR</a><br />
  5279. <br />
  5280. <div style="width: 100%; text-align: center;">
  5281. </div>
  5282. <div style="width: 100%; text-align: center;">
  5283. </div>
  5284. </div>
  5285. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  5286. </td><td>数字电位计 IC 128 TAPS DIGITAL POT
  5287. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5288. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-tpl0401">了解更多</a>
  5289. </div>
  5290. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5291. </div>
  5292. </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;Texas Instruments&quot;,&quot;595-TPL0401A-10DCKR | TPL0401A-10DCKR&quot;]);" href="http://www.mouser.com/ds/2/405/tpl0401a-10-405242.pdf" target="_blank">数据表</a>
  5293. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">4,635<br/>有库存</span>
  5294. <table>
  5295. <tr align="center">
  5296. <td style="padding-top: 5px">
  5297. </td>
  5298. </tr>
  5299. <tr align="center">
  5300. <td style="padding-top: 5px; padding-bottom: 5px">
  5301. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAlternativePackaging" title="备用包装 | 595-TPL0401A-10DCKR" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT99Id7b6f45uI%2f6iBTPeEAOAjVr5pNgXjJfTIGm4Q4VwHXkMLouJhU3Xd0JhJqN6vCxifYbi7egq6OfEKATwsG0RdsqENy9Twv51BUyxivPeXHw%2fotY3cDNBR5%252bUkHhCh4j4%252bPC%252bzJJQ%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  5302. </td>
  5303. </tr>
  5304. </table></td><td>
  5305. <table class="PriceBreaks" cellspacing="0" border="0">
  5306. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5307. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5308. </td>
  5309. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5310. </td>
  5311. </tr>
  5312. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  5313. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  5314. 剪切带
  5315. </td>
  5316. </tr>
  5317. <tr>
  5318. <td class="PriceBreakQuantity">
  5319. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  5320. </td>
  5321. <td class="PriceBreakPrice">
  5322. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥8.6229</span>
  5323. </td>
  5324. </tr>
  5325. <tr>
  5326. <td class="PriceBreakQuantity">
  5327. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  5328. </td>
  5329. <td class="PriceBreakPrice">
  5330. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥7.6986</span>
  5331. </td>
  5332. </tr>
  5333. <tr>
  5334. <td class="PriceBreakQuantity">
  5335. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,25);">25:</a>
  5336. </td>
  5337. <td class="PriceBreakPrice">
  5338. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥7.1838</span>
  5339. </td>
  5340. </tr>
  5341. <tr>
  5342. <td class="PriceBreakQuantity">
  5343. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,50);">50:</a>
  5344. </td>
  5345. <td class="PriceBreakPrice">
  5346. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥6.4584</span>
  5347. </td>
  5348. </tr>
  5349. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5350. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5351. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(24,100);">100:</a>
  5352. </td>
  5353. <td class="PriceBreakPrice">
  5354. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/TPL0401A-10DCKR/?qs=sGAEpiMZZMsX%252bY3VKDPZyCr2zWkzc2dFi1QYSHyKlc4%3d">查看</a>
  5355. </td>
  5356. </tr>
  5357. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  5358. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  5359. </td>
  5360. </tr>
  5361. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trReel">
  5362. <td class="PriceBreakQuantity">
  5363. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(24,3000);" style="white-space: nowrap">3,000:</a>
  5364. </td>
  5365. <td class="PriceBreakPrice">
  5366. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥3.2994</span>
  5367. </td>
  5368. </tr>
  5369. <tr>
  5370. <td><br /></td>
  5371. </tr>
  5372. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5373. <td colspan="2" style="text-align: center;">
  5374. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/TPL0401A-10DCKR/?qs=sGAEpiMZZMsX%252bY3VKDPZyCr2zWkzc2dFi1QYSHyKlc4%3d">MouseReel 提供服务支持</a>
  5375. </td>
  5376. </tr>
  5377. </table>
  5378. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_btnBuy&#39;)">
  5379. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(24,this.value);" /><br />
  5380. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 24);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_btnBuy" title="购买 TPL0401A-10DCKR" class="buy-button" /><br />
  5381. <table cellspacing="0" border="0" style="width: 100%;">
  5382. <tr>
  5383. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5384. 最低:
  5385. </td>
  5386. <td style="padding-left: 2px; text-align: left;">
  5387. 1
  5388. </td>
  5389. </tr>
  5390. <tr>
  5391. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5392. 多个:
  5393. </td>
  5394. <td style="padding-left: 2px; text-align: left;">
  5395. 1
  5396. </td>
  5397. </tr>
  5398. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_trReel">
  5399. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5400. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(24,3000);">卷轴</a>:
  5401. </td>
  5402. <td style="padding-left: 2px; text-align: left;">
  5403. <em class="SearchResultsReel">
  5404. 3,000
  5405. </em>
  5406. </td>
  5407. </tr>
  5408. </table>
  5409. </div>
  5410. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  5411. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5412. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=OppY8G8xaW2xDINVXUjZww%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=OppY8G8xaW2xDINVXUjZww%3d%3d" target="_blank">详细信息</a>
  5413. </div>
  5414. </td><td>10 kOhms
  5415. </td><td>35 PPM / C
  5416. </td><td>20 %
  5417. </td><td>Single
  5418. </td><td>128
  5419. </td><td>Non Volatile
  5420. </td><td>I2C
  5421. </td><td>2.7 V to 5.5 V
  5422. </td><td>+ 125 C
  5423. </td><td>SMD/SMT
  5424. </td><td>SC-70-6
  5425. </td><td>Reel
  5426. </td>
  5427. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-MAX5402EUA" data-index="27">
  5428. <td class="td-select" align="center">
  5429. <div style="padding: 5px 5px 0 5px;">
  5430. <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>
  5431. </div>
  5432. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX5402EUA+/?qs=sGAEpiMZZMsX%252bY3VKDPZyAiHVHMoyMDPFtbsmINaX4U%3d'><img title='Maxim Integrated MAX5402EUA+' alt='Maxim Integrated MAX5402EUA+' id=359493786 src='/images/mouserimages/sm/uMAX_8_t.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/mouserimages/images/uMAX_8_t.jpg</div></a></td><td>
  5433. <div style="text-align:left;">
  5434. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX5402EUA+/?qs=sGAEpiMZZMsX%252bY3VKDPZyAiHVHMoyMDPFtbsmINaX4U%3d">700-MAX5402EUA</a><br />
  5435. <br />
  5436. <br />
  5437. </div></td><td>
  5438. <div class="mfrDiv">
  5439. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX5402EUA+/?qs=sGAEpiMZZMsX%252bY3VKDPZyAiHVHMoyMDPFtbsmINaX4U%3d">MAX5402EUA+</a><br />
  5440. <br />
  5441. <div style="width: 100%; text-align: center;">
  5442. </div>
  5443. <div style="width: 100%; text-align: center;">
  5444. </div>
  5445. </div>
  5446. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  5447. </td><td>数字电位计 IC 256-Tap Low-Drift
  5448. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5449. </div>
  5450. </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;Maxim Integrated&quot;,&quot;700-MAX5402EUA | MAX5402EUA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX5402-104879.pdf" target="_blank">数据表</a>
  5451. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">1,865<br/>有库存</span>
  5452. <table>
  5453. <tr align="center">
  5454. <td style="padding-top: 5px">
  5455. </td>
  5456. </tr>
  5457. <tr align="center">
  5458. <td style="padding-top: 5px; padding-bottom: 5px">
  5459. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX5402EUA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fde6WY%2fWG6JURBw2k8itwp0u%252bxrJDF0UCi98q0%2fteVviVnpVLxhAw1is7Hgb%2fPk6scKXQaT2g8TUmc%252b5n6Drh9ANCm3Tc%2f4mlBP66N4naukAcYcRWeHeIl0%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  5460. </td>
  5461. </tr>
  5462. </table></td><td>
  5463. <table class="PriceBreaks" cellspacing="0" border="0">
  5464. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5465. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5466. </td>
  5467. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5468. </td>
  5469. </tr>
  5470. <tr>
  5471. <td class="PriceBreakQuantity">
  5472. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  5473. </td>
  5474. <td class="PriceBreakPrice">
  5475. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥12.402</span>
  5476. </td>
  5477. </tr>
  5478. <tr>
  5479. <td class="PriceBreakQuantity">
  5480. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  5481. </td>
  5482. <td class="PriceBreakPrice">
  5483. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥11.934</span>
  5484. </td>
  5485. </tr>
  5486. <tr>
  5487. <td class="PriceBreakQuantity">
  5488. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  5489. </td>
  5490. <td class="PriceBreakPrice">
  5491. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥11.3256</span>
  5492. </td>
  5493. </tr>
  5494. <tr>
  5495. <td><br /></td>
  5496. </tr>
  5497. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  5498. <td colspan="2" style="text-align: center;">
  5499. </td>
  5500. </tr>
  5501. </table>
  5502. </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;)">
  5503. <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 />
  5504. <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="购买 MAX5402EUA+" class="buy-button" /><br />
  5505. <table cellspacing="0" border="0" style="width: 100%;">
  5506. <tr>
  5507. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5508. 最低:
  5509. </td>
  5510. <td style="padding-left: 2px; text-align: left;">
  5511. 1
  5512. </td>
  5513. </tr>
  5514. <tr>
  5515. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5516. 多个:
  5517. </td>
  5518. <td style="padding-left: 2px; text-align: left;">
  5519. 1
  5520. </td>
  5521. </tr>
  5522. </table>
  5523. </div>
  5524. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  5525. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5526. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=5pltRT2fr3QaHGoA%252bDp37A%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=5pltRT2fr3QaHGoA%252bDp37A%3d%3d" target="_blank">详细信息</a>
  5527. </div>
  5528. </td><td>10 kOhms
  5529. </td><td>35 PPM / C
  5530. </td><td>25 %
  5531. </td><td>Single
  5532. </td><td>32
  5533. </td><td>Volatile
  5534. </td><td>Serial (2-Wire)
  5535. </td><td>2.7 V to 5.5 V
  5536. </td><td>+ 85 C
  5537. </td><td>SMD/SMT
  5538. </td><td>UMAX-8
  5539. </td><td>Tube
  5540. </td>
  5541. </tr>
  5542. </table>
  5543. </div>
  5544. </td>
  5545. </tr>
  5546. <tr>
  5547. <td class="tdSearchResultsPagingBottom">
  5548. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  5549. <tr>
  5550. <td>
  5551. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  5552. </td>
  5553. <td>
  5554. <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" />
  5555. </td>
  5556. <td>
  5557. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  5558. </td>
  5559. <td style="padding-left: 40px;">
  5560. <div class="floatrightpager">
  5561. <span class="bold">
  5562. 页面:
  5563. </span>
  5564. <span id="ctl00_ContentMain_PagerBottom"><span id="ctl00_ContentMain_PagerBottom_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerBottom_1" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_120" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=3000">121</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?No=25">下一页</a></span>
  5565. </div>
  5566. </td>
  5567. </tr>
  5568. </table>
  5569. </td>
  5570. </tr>
  5571. <tr>
  5572. <td>
  5573. <!--- Search Tips --->
  5574. </td>
  5575. </tr>
  5576. <tr>
  5577. <td>
  5578. <!-- SOP Section 2 -->
  5579. </td>
  5580. </tr>
  5581. </table>
  5582. </div>
  5583. </div><!-- #liProducts-->
  5584. <!-- Datasheets tab -->
  5585. <!-- #liDatasheets-->
  5586. <!-- Images tab -->
  5587. <!-- #liImages-->
  5588. <!-- Newest Products tab -->
  5589. <!-- #liProducts-->
  5590. </div>
  5591. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  5592. <div>
  5593. <span class="popular-searches-label">热门搜索:</span>
  5594. <span class="popular-searches-links"><a href='/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?P=1z0z5l0&pop=wttl' onclick="ga('send','event','Popular Search Refine Click','Digital Potentiometer ICs','MSOP-8 Digital Potentiometer ICs')">MSOP-8 数字电位计 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752?P=1z0jdihZ1z0z7pt&pop=75b2' onclick="ga('send','event','Popular Search Refine Click','Digital Potentiometer ICs','SMD/SMT Dual Digital Potentiometer ICs')">SMD/SMT Dual 数字电位计 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752?P=1yzmno7Z1z0z63xZ1z0t3csZ1z0jdpa&pop=qtso' onclick="ga('send','event','Popular Search Refine Click','Digital Potentiometer ICs','10 kOhms Through Hole 256 Non Volatile Digital Potentiometer ICs')">10 kOhms Through Hole 256 Non Volatile 数字电位计 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752/?P=1yy8vfa&pop=wttk' onclick="ga('send','event','Popular Search Refine Click','Digital Potentiometer ICs','1.8 to 5.5 V Digital Potentiometer ICs')">1.8 to 5.5 V 数字电位计 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752?P=1yzotm4&pop=6y1c' onclick="ga('send','event','Popular Search Refine Click','Digital Potentiometer ICs','100 kOhms Digital Potentiometer ICs')">100 kOhms 数字电位计 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs/_/N-6j752?P=1z0jyfv&pop=v93x' onclick="ga('send','event','Popular Search Refine Click','Digital Potentiometer ICs','128 Digital Potentiometer ICs')">128 数字电位计 IC</a></span>
  5595. </div>
  5596. </div>
  5597. <div style="visibility: hidden;">
  5598. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  5599. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  5600. <span id="SearchResultCount">3018</span>
  5601. <div id="disclaimer">
  5602. 图像仅供参考<br/>请参阅产品规格</div>
  5603. </div>
  5604. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Integrated-Circuits-ICs/Digital-Potentiometer-ICs" />
  5605. <script type="text/javascript" src='../../../../../javascript/ProductImage.js'></script>
  5606. <script type="text/javascript" src='../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  5607. <script type="text/javascript" src='../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  5608. <!--[if gte IE 9]><!-->
  5609. <script type="text/javascript" src='../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  5610. <!--<![endif]-->
  5611. <!--[if lt IE 9]>
  5612. <script type="text/javascript" src='../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  5613. <![endif]-->
  5614. <script type="text/javascript" src='../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  5615. <script type="text/javascript">
  5616. var subdomain = 'cn2';
  5617. </script>
  5618. </div>
  5619. <div class="aspNetHidden">
  5620. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  5621. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  5622. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  5623. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  5624. </div>
  5625. <script type="text/javascript">
  5626. //<![CDATA[
  5627. var mfrIDsArray = new Array;
  5628. //]]>
  5629. </script>
  5630. <script src='../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  5631. <script type="text/javascript">
  5632. //<![CDATA[
  5633. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  5634. </script>
  5635. <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>
  5636. <script type="text/javascript">
  5637. //<![CDATA[
  5638. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  5639. <!-- Google Code for Conversion Page Remarketing List -->
  5640. <!--
  5641. var google_conversion_id = 1046090287;
  5642. var google_conversion_language = "en";
  5643. var google_conversion_format = "3";
  5644. var google_conversion_color = "666666";
  5645. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  5646. var google_conversion_value = 0;
  5647. //-->
  5648. </script>
  5649. <div class="ga-remarketing">
  5650. <script type="text/javascript"
  5651. src="http://www.googleadservices.com/pagead/conversion.js">
  5652. </script>
  5653. </div>
  5654. <noscript>
  5655. <div style="display:inline;">
  5656. <img height="1" width="1" style="border-style:none;" alt=""
  5657. src="http://www.googleadservices.com/pagead/conversion/1046090287/?label=9WmrCMOVxQEQr6To8gM&amp;guid=ON&amp;script=0"/>
  5658. </div>
  5659. </noscript>
  5660. <script type="text/javascript">
  5661. //]]>
  5662. </script>
  5663. <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>
  5664. <script type="text/javascript">
  5665. //<![CDATA[
  5666. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688665^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688731^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688748^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000103^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000000153^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000158^ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$688397^ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$1000000393^ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$1000000314^ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$1323044^ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$688606^ctl00$ContentMain$uc5$AttributeCategoryList$ctl12$688610';
  5667. theForm.oldSubmit = theForm.submit;
  5668. theForm.submit = WebForm_SaveScrollPositionSubmit;
  5669. theForm.oldOnSubmit = theForm.onsubmit;
  5670. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  5671. //]]>
  5672. </script>
  5673. </form>
  5674. <div id="content-container2" class="hidden">
  5675. <div id="content-fixed-width2" class="content-fixed-width">
  5676. </div>
  5677. </div>
  5678. <div id="wideFooter" class="wideFooter">
  5679. <div id="footer" class="container">
  5680. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB08|20160304.2" />
  5681. <div id="ft_table1">
  5682. <div class="row">
  5683. <div class="col-xs-12">
  5684. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  5685. <div class="floatleft padding5right">
  5686. <strong class="h3">
  5687. 快速电子邮件注册</strong>&nbsp;&nbsp;
  5688. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  5689. </div>
  5690. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  5691. 提交
  5692. </a>
  5693. </div>
  5694. <div id="ft_icons" class="ft_icons">
  5695. <div id="ft_social">
  5696. <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>
  5697. <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>
  5698. <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>
  5699. <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">
  5700. <div class="ico-social fb"></div>
  5701. </a>
  5702. <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">
  5703. <div class="ico-social tw"></div>
  5704. </a>
  5705. <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">
  5706. <div class="ico-social rss"></div>
  5707. </a>
  5708. <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">
  5709. <div class="ico-social yt"></div>
  5710. </a>
  5711. <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">
  5712. <div class="ico-social gp"></div>
  5713. </a>
  5714. <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">
  5715. <div class="ico-social ln"></div>
  5716. </a>
  5717. <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">
  5718. <div class="ico-social sb"></div>
  5719. </a>
  5720. <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">
  5721. <div class="ico-social blog"></div>
  5722. </a>
  5723. </div>
  5724. </div>
  5725. </div>
  5726. </div>
  5727. </div>
  5728. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  5729. <div class="ft_wrapper">
  5730. <div id="ft_links" class="row">
  5731. <div class="col-xs-3 paddingBtm10 hidden-xs">
  5732. <strong class="paddingTopBtm10 inline-block">
  5733. 公司</strong>
  5734. <ul>
  5735. <li>
  5736. <a id="ctl00_Footer1_lnk26" href="../../../../../aboutus/">关于我们</a></li>
  5737. <li>
  5738. <a id="ctl00_Footer1_lnk28" href="../../../../../educationalsales/">教育销售</a></li>
  5739. <li>
  5740. <a id="ctl00_Footer1_lnk31" href="../../../../../pressroom/">新闻中心</a></li>
  5741. <li>
  5742. <a id="ctl00_Footer1_lnk32" href="../../../../../careers/">Mouser 工作机会</a></li>
  5743. <li>
  5744. <a id="ctl00_Footer1_lnk29" href="../../../../../quality/">品质保证</a></li>
  5745. <li>
  5746. <a id="ctl00_Footer1_lnk30" href="../../../../../environmental/">环境保护</a></li>
  5747. </ul>
  5748. </div>
  5749. <div class="col-xs-3 hidden-xs">
  5750. <strong class="paddingTopBtm10 inline-block">
  5751. 快速链接</strong>
  5752. <ul>
  5753. <li><a id="A7" href="/blog">
  5754. Mouser博客</a></li>
  5755. <li>
  5756. <a id="ctl00_Footer1_hlnk1" href="../../../../../new/">最新产品</a></li>
  5757. <li>
  5758. <a id="ctl00_Footer1_hlnk2" href="../../../../../new/products/">新产品</a></li>
  5759. <li>
  5760. <a id="ctl00_Footer1_hlnk3" href="../../../../../applications/">新技术</a></li>
  5761. </ul>
  5762. </div>
  5763. <div class="col-xs-12 col-sm-3">
  5764. <strong class="paddingTopBtm10 inline-block">
  5765. 支持</strong>
  5766. <ul>
  5767. <li><a id="A3" href="/feedback.aspx">
  5768. 反馈</a></li>
  5769. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  5770. 帮助</a></li>
  5771. <li>
  5772. <a id="ctl00_Footer1_lnk27" href="../../../../../contact/">联系我们</a></li>
  5773. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  5774. 浏览器支持</a></li>
  5775. <li><a id="A6" href="/cookie-policy/">
  5776. Cookie政策</a></li>
  5777. </ul>
  5778. </div>
  5779. <div class="col-xs-12 col-sm-3">
  5780. <strong class="paddingTopBtm10 inline-block">
  5781. 昴氏(上海)电子贸易有限公司</strong>
  5782. <ul>
  5783. <li>
  5784. <h4>
  5785. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  5786. </li>
  5787. </ul>
  5788. </div>
  5789. </div>
  5790. </div>
  5791. </div>
  5792. <div class="row">
  5793. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  5794. <div id="ft_copy">
  5795. <span class="ft_terms">
  5796. <a id="A1" href="/privacypolicy/">
  5797. 隐私政策</a>
  5798. &nbsp;&nbsp;|&nbsp;&nbsp;
  5799. <a id="href3" href="/saleterms/">
  5800. 销售条款</a>
  5801. <br />
  5802. </span>
  5803. <span class="ft_copyright">
  5804. 版权所有©2016 Mouser Electronics, Inc
  5805. |
  5806. 沪ICP备15042575号-1
  5807. <br />
  5808. </span>
  5809. <span class="ft_trade">
  5810. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  5811. </span>
  5812. <span class="ft_hq">
  5813. Corporate headquarters and logistics center in Mansfield, Texas USA.
  5814. </span>
  5815. <br />
  5816. <span class="ft_ClassicMobile">
  5817. <strong>
  5818. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  5819. </span>
  5820. </div>
  5821. </div>
  5822. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  5823. <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>
  5824. <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>
  5825. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  5826. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  5827. </a>
  5828. <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>
  5829. <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;
  5830. </a>
  5831. </div>
  5832. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  5833. <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>
  5834. <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>
  5835. <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>
  5836. <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>
  5837. </div>
  5838. </div>
  5839. <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>
  5840. <script type="text/javascript">
  5841. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  5842. </script>
  5843. </div>
  5844. </div>
  5845. <script src="../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  5846. <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>
  5847. </body>
  5848. </html>