25.html 376 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207
  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_43bfacf2-7e03-4516-9fc3-032fc12dfd12-37604-336731';</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","odF/lx8/tDEuoYAyI7fVN7sF37m8isnBcn2SgX9fW34=",2]);_gaq.push(["_setCustomVar",31,"Cart","04e9d9fa-54b9-48a3-be46-202973a47b98",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA126AA144",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '595-DP83867ERGZT',
  65. 'name': 'Ethernet ICs Ext Temp, Gigabit Ethernet PHY',
  66. 'category': 'Ethernet ICs',
  67. 'brand': 'Texas Instruments',
  68. 'variant': 'DP83867ERGZT',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '595-TLK10031CTR',
  74. 'name': 'Ethernet ICs Single-Channel XAUI/10GBASE-KR Transceiver 144-FCBGA -40 to 85',
  75. 'category': 'Ethernet ICs',
  76. 'brand': 'Texas Instruments',
  77. 'variant': 'TLK10031CTR',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '998-KSZ8081MNXCA',
  83. 'name': 'Ethernet ICs 10/100 PHY, 0.11u',
  84. 'category': 'Ethernet ICs',
  85. 'brand': 'Microchip Technology / Micrel',
  86. 'variant': 'KSZ8081MNXCA',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '692-Z8523016VEG',
  92. 'name': 'Network Controller \u0026 Processor ICs 16MHz ESCC XTEMP',
  93. 'category': 'Network Controller \u0026 Processor ICs',
  94. 'brand': 'ZiLOG',
  95. 'variant': 'Z8523016VEG',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '886-LAN8710AI-EZK-TR',
  101. 'name': 'Ethernet ICs 10/100 Ethernet XCVR w/HPAutoMDIX INDTEMP',
  102. 'category': 'Ethernet ICs',
  103. 'brand': 'Microchip Technology',
  104. 'variant': 'LAN8710AI-EZK-TR',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '998-KSZ8081MNXIATR',
  110. 'name': 'Ethernet ICs',
  111. 'category': 'Ethernet ICs',
  112. 'brand': 'Microchip Technology / Micrel',
  113. 'variant': 'KSZ8081MNXIA-TR',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '926-DP83848IVV/NOPB',
  119. 'name': 'Ethernet ICs PHYTER Industrial Temp SGL Port',
  120. 'category': 'Ethernet ICs',
  121. 'brand': 'Texas Instruments',
  122. 'variant': 'DP83848IVV/NOPB',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '886-LAN9500AI-ABZJ',
  128. 'name': 'Ethernet ICs Hi-Speed USB 2.0 10/100 Ethernet CTRL',
  129. 'category': 'Ethernet ICs',
  130. 'brand': 'Microchip Technology',
  131. 'variant': 'LAN9500AI-ABZJ',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '607-WGI210ITSLJXT',
  137. 'name': 'Ethernet ICs Controller IEEE 10/ 100/1000 Mbps QFN64',
  138. 'category': 'Ethernet ICs',
  139. 'brand': 'Intel',
  140. 'variant': 'WGI210IT S LJXT',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '886-LAN9218I-MT',
  146. 'name': 'Ethernet ICs Indust Hi Perfrm Single-Chip',
  147. 'category': 'Ethernet ICs',
  148. 'brand': 'Microchip Technology',
  149. 'variant': 'LAN9218I-MT',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '607-WGI210ITSLJXS',
  155. 'name': 'Ethernet ICs I210IT PQFN64',
  156. 'category': 'Ethernet ICs',
  157. 'brand': 'Intel',
  158. 'variant': 'WGI210IT S LJXS',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '401-BCM5482HA2KFBG',
  164. 'name': 'Ethernet ICs Dual PORT 10/100/1000BASE-T PH',
  165. 'category': 'Ethernet ICs',
  166. 'brand': 'Broadcom',
  167. 'variant': 'BCM5482HA2KFBG',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '998-KSZ8081RNACATR',
  173. 'name': 'Ethernet ICs',
  174. 'category': 'Ethernet ICs',
  175. 'brand': 'Microchip Technology / Micrel',
  176. 'variant': 'KSZ8081RNACA-TR',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '886-LAN8710A-EZC-TR',
  182. 'name': 'Ethernet ICs 10/100 Ethernet XCVR HP AutoMDIX FlexPwr',
  183. 'category': 'Ethernet ICs',
  184. 'brand': 'Microchip Technology',
  185. 'variant': 'LAN8710A-EZC-TR',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '886-LAN8720AI-CP-TR',
  191. 'name': 'Ethernet ICs 10/100 Ethernet XCVR w/HP AutoMDIXSupport',
  192. 'category': 'Ethernet ICs',
  193. 'brand': 'Microchip Technology',
  194. 'variant': 'LAN8720AI-CP-TR',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '998-KSZ8081RNAIATR',
  200. 'name': 'Ethernet ICs',
  201. 'category': 'Ethernet ICs',
  202. 'brand': 'Microchip Technology / Micrel',
  203. 'variant': 'KSZ8081RNAIA-TR',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '579-ENC424J600-I/PT',
  209. 'name': 'Ethernet ICs 10/100 Base-T Stand alone Ethernet Ctrlr',
  210. 'category': 'Ethernet ICs',
  211. 'brand': 'Microchip Technology',
  212. 'variant': 'ENC424J600-I/PT',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '926-DP83848CVV/NOPB',
  218. 'name': 'Ethernet ICs PHYTER COMMERCIAL TEMP SGL PORT',
  219. 'category': 'Ethernet ICs',
  220. 'brand': 'Texas Instruments',
  221. 'variant': 'DP83848CVV/NOPB',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '926-DP83848CVVX/NOPB',
  227. 'name': 'Ethernet ICs PHYTER COMMERCIAL TEMP SGL PORT',
  228. 'category': 'Ethernet ICs',
  229. 'brand': 'Texas Instruments',
  230. 'variant': 'DP83848CVVX/NOPB',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '607-WG82574LSLBA8',
  236. 'name': 'Ethernet ICs Controller IEEE 10/ 100/1000 Mbps QFN64',
  237. 'category': 'Ethernet ICs',
  238. 'brand': 'Intel',
  239. 'variant': 'WG82574L S LBA8',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '998-KSZ9021RNI',
  245. 'name': 'Ethernet ICs Gigabit Ethernet Transceiver with RGMII, I-Temp',
  246. 'category': 'Ethernet ICs',
  247. 'brand': 'Microchip Technology / Micrel',
  248. 'variant': 'KSZ9021RNI',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '886-LAN9303I-ABZJ',
  254. 'name': 'Ethernet ICs 3 Port 0/100 Ether Switch MII/RMII/Turb',
  255. 'category': 'Ethernet ICs',
  256. 'brand': 'Microchip Technology',
  257. 'variant': 'LAN9303I-ABZJ',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '607-WG82574ITSLBAB',
  263. 'name': 'Ethernet ICs Controller IEEE 10/ 100/1000 Mbps QFN64',
  264. 'category': 'Ethernet ICs',
  265. 'brand': 'Intel',
  266. 'variant': 'WG82574IT S LBAB',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '607-WG82574ITSLBAC',
  272. 'name': 'Ethernet ICs Controller IEEE 10/ 100/1000 Mbps QFN64',
  273. 'category': 'Ethernet ICs',
  274. 'brand': 'Intel',
  275. 'variant': 'WG82574IT S LBAC',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '511-ST7580',
  281. 'name': 'Network Controller \u0026 Processor ICs FSK, PSK Multi-Mode PWR LN SOC 9.6 kbps',
  282. 'category': 'Network Controller \u0026 Processor ICs',
  283. 'brand': 'STMicroelectronics',
  284. 'variant': 'ST7580',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','odF/lx8/tDEuoYAyI7fVN7sF37m8isnBcn2SgX9fW34=');
  290. ga('set','dimension31','04e9d9fa-54b9-48a3-be46-202973a47b98');
  291. ga('set','dimension13','163AA125AA126AA144');
  292. ga('set','metric2',1517);
  293. ga('set','dimension5','Communication \u0026 Networking ICs');
  294. ga('set','dimension48','6j74f');
  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/Communication-Networking-ICs/_/N-6j74f/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f" rel="canonical" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f" /><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/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/" /><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/Communication-Networking-ICs/_/N-6j74f/" 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='10973391';
  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='10973391';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
  343. var left = (screen.width / 2) - (800 / 2);var top = (screen.height / 2) - (505 / 2); var msgWindow = window.open(url,'MsgWindow','height=505,width=800,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0');
  344. }
  345. function OpenPTCWindow(url) {var left = (screen.width / 2) - (542 / 2);var top = (screen.height / 2) - (531 / 2);
  346. window.open(url, "popup", "height=488,width=454,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0");
  347. }
  348. function GenerateClientID(prefix, i, suffix) {
  349. if (i < 10) { return prefix + '0' + String(i) + suffix; }
  350. else { return prefix + String(i) + suffix; }
  351. }
  352. var checked = false;
  353. function SelectAll() {
  354. checked = !checked;
  355. var i = 3;
  356. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  357. while (i < 29) {
  358. if (chkSelect != null) chkSelect.checked = checked;
  359. i = i + 1;
  360. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  361. }
  362. }
  363. function IsAllChecked(checked) {
  364. var i = 3;
  365. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  366. while (i < 29) {
  367. if (chkSelect != null && chkSelect.checked != checked) return false;
  368. i = i + 1;
  369. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  370. }
  371. return true;
  372. }
  373. function IsAnyChecked(checked) {
  374. return !IsAllChecked(!checked);
  375. }
  376. function SelectRow(row, checked) {
  377. document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
  378. }
  379. function RowSelected(index, checked) { }
  380. function GetQuantityTextboxByRow(row) {
  381. return GetQuantityTextboxByIndex(row + 2);
  382. }
  383. function GetQuantityTextboxByIndex(index) {
  384. return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
  385. }
  386. function SelectQuantity(row, quantity) {
  387. txtQuantity = GetQuantityTextboxByRow(row);
  388. if (txtQuantity == null) { return; }
  389. txtQuantity.value = quantity;
  390. SelectRow(row, true);
  391. }
  392. var qtyRegEx = /^([0]|\s)*$/;
  393. function IsQuantityEmptyOrZero(quantity) {
  394. return qtyRegEx.test(quantity);
  395. }
  396. function QuantityChanged(row, quantity) {
  397. SelectRow(row, !IsQuantityEmptyOrZero(quantity));
  398. }
  399. var QuantityRowSelectedBase = RowSelected;
  400. function QuantityRowSelected(index, checked) {
  401. QuantityRowSelectedBase(index, checked);
  402. txtQuantity = GetQuantityTextboxByIndex(index);
  403. if (txtQuantity == null) { return; }
  404. if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
  405. else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
  406. }
  407. RowSelected = QuantityRowSelected;
  408. //]]>
  409. </script>
  410. <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&amp;t=5f9d5645" type="text/javascript"></script>
  411. <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&amp;t=5f9d5645" type="text/javascript"></script>
  412. <div id="cookie-notification-bar">
  413. </div>
  414. <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
  415. <div id="wideGab" class="wideGab">
  416. <div id="ctl00_globalActionBar" class="global-action-bar">
  417. <div id="gab-container" class="container">
  418. <div id="contact" class="row">
  419. <div class="topPadding col-xs-6">
  420. <div class="inline-block">
  421. <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
  422. <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>&nbsp;
  423. 400-821-6111</a><a href="xxrrtbuu.html" style="display: none;" rel="file" id="yxezcaswaauztuaqaww">ubqtbausacydzezvysubqtb</a>
  424. &nbsp;&nbsp;&nbsp;&nbsp;<span class="pipe">|</span>&nbsp;&nbsp;&nbsp;&nbsp;
  425. <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
  426. 反馈</a>
  427. </div>
  428. <span class="qqIcon inline-block">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
  429. </span>&nbsp;&nbsp;
  430. </div>
  431. <div class="col-xs-6 align-right">
  432. <div id="tdImg" class="inline-block topPadding9px">
  433. <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" class="smallgrey">
  434. <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
  435. <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
  436. </div>
  437. <div class="topPadding inline-block">
  438. <span class="pipe">|</span>&nbsp;&nbsp;&nbsp;
  439. <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%252buNXLnJSO08m%2fu13UGFI5yk9U9LJtL3SIcyXENABj%252b6p9%252b6w4r3qji%2fLtSIpzTrp">更改国家</a>
  440. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%252buNXLnJSO08m%2fu13UGFI5yk9U9LJtL3SIcyXENABj%252b6p9%252b6w4r3qji%2fLtSIpzTrp"><img id="ctl00_gab1_img7" class="visualAttributeImage" src="../../../../../images/international/flags/cn2.gif" alt="更改位置" style="border-width: 1px;" /></a>
  441. <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
  442. <span id="ctl00_gab1_lbl1">RMB</span>
  443. </div>
  444. </div>
  445. </div>
  446. </div>
  447. <div style="clear: both;"></div>
  448. <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
  449. class="thickbox"></a>
  450. <div id="divCurrencyPopup" class="currency-popup">
  451. <div class="currency-close">
  452. <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();">&nbsp;</a>
  453. </div>
  454. <div>
  455. <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../../images/international/flags/cn2.gif" alt="中国" />&nbsp;<span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
  456. <br/>
  457. <div style="padding: 0 20px 0 20px">
  458. <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
  459. <br />
  460. <table width="95%">
  461. <tr>
  462. <td width="20%">
  463. <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
  464. </td>
  465. <td>
  466. <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
  467. <br/>
  468. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
  469. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
  470. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
  471. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
  472. </td>
  473. </tr>
  474. </table>
  475. </div>
  476. </div>
  477. </div>
  478. <div id="cartDialog" class="CartDialog" style="display: none;">
  479. <table id="miniCartOnly">
  480. <tr id="divall">
  481. <td id="tdCart">
  482. <table style="width: 100%; padding: 0px; border: 0px">
  483. <tr>
  484. <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
  485. <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
  486. </td>
  487. <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
  488. <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
  489. </td>
  490. </tr>
  491. </table>
  492. <table id="tableMiniCartItms">
  493. <tr id="trCart">
  494. <td>
  495. <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  496. <table id="tblMiniCart">
  497. <thead>
  498. <tr>
  499. <th class="miniCartColumn">制造商</th>
  500. <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
  501. <th class="miniCartColumn MiniCartHdBg">数量</th>
  502. <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
  503. </tr>
  504. </thead>
  505. </table>
  506. <script type="text/javascript">
  507. var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
  508. var currentGuid = '04e9d9fa-54b9-48a3-be46-202973a47b98';
  509. var currentCountryCode = 'CN';
  510. var currentCurrencyCode= 'RMB';
  511. var currencyCulture = 'zh-CN';
  512. var cultureCode = 'zh-CN';
  513. var customerID = '';
  514. </script>
  515. <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  516. </td>
  517. </tr>
  518. </table>
  519. <div style="display: none; padding-top: 10px" id="divSingleItem">
  520. <table id="tblSingeItem">
  521. <tr>
  522. <!-- Here goes the single item -->
  523. <td style="padding-right: 15px">
  524. <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
  525. <td style="align: right; padding-right: 2px" id="tdSingleItms">
  526. <div id="divAll">
  527. <div id="wrapper">
  528. <div id="divLbl">
  529. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
  530. </div>
  531. <div id="divHyp">
  532. </div>
  533. </div>
  534. <div id="divRest">
  535. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
  536. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
  537. <br />
  538. <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
  539. </div>
  540. </div>
  541. </td>
  542. </tr>
  543. </table>
  544. </div>
  545. <div id="divForCart" class="divMsgLnkTotal" style="display: none">
  546. <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
  547. <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
  548. <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
  549. <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
  550. <a onclick="javascript:return MiniCart.SendToCartPage(&#39;Cart Hover&#39;,&#39;View Cart Button&#39;);" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$linkToCartAtMiniCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  551. </div>
  552. </div>
  553. </td>
  554. <td style="display: none" id="trCartSubTotal">
  555. <table class="tblMiniCartSub">
  556. <tr>
  557. <td align="right" style="padding-bottom: 5px; padding-top: 2px">
  558. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
  559. <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
  560. </td>
  561. </tr>
  562. <tr>
  563. <td align="right" style="padding-bottom: 5px">
  564. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
  565. </td>
  566. </tr>
  567. <tr>
  568. <td align="left" style="padding-bottom: 5px">
  569. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
  570. </td>
  571. </tr>
  572. <tr>
  573. <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
  574. <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack(&#39;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune&#39;,&#39;&#39;)" style="color:White;text-decoration:none;">继续购物</a>
  575. <a onclick="return MiniCart.SendToCartPage(&#39;Add to Cart Modal&#39;,&#39;View Cart&#39;);" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  576. </td>
  577. </tr>
  578. </table>
  579. <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
  580. </td>
  581. </tr>
  582. <tr id="trHideModalCheckBox" style="display: none">
  583. <td colspan="2">
  584. <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
  585. </td>
  586. </tr>
  587. </table>
  588. <script type="text/javascript">
  589. $(document).ready(function () {
  590. MiniCart.source = 'refine';
  591. });
  592. </script>
  593. </div>
  594. <script type="text/javascript">
  595. function OpenCurrencyPopup() {
  596. $("#tblink").trigger('click');
  597. }
  598. function CloseCurrencyPopup() {
  599. var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
  600. var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
  601. if (ddlCurrency != null && hidCurrencyValue != null) {
  602. ddlCurrency.selectedIndex = hidCurrencyValue.value;
  603. }
  604. window.location.reload();
  605. }
  606. </script>
  607. </div>
  608. </div>
  609. <div id="wideHeader" class="wideHeader">
  610. <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
  611. <div id="search" class="row">
  612. <div id="logo" class='col-xs-4'>
  613. <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
  614. </div>
  615. <div id="search-block" class="col-xs-4">
  616. <div id="search-title">
  617. 物料编号/关键字
  618. </div>
  619. <div id="search-bar">
  620. <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_NavHeader_btn1&#39;)">
  621. <div id="searchPartNumberBox" class="search-box inline-block">
  622. <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
  623. <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
  624. </div>
  625. <div class="inline-block">
  626. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
  627. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
  628. </div>
  629. </div>
  630. </div>
  631. </div>
  632. <div id="account" class="col-xs-4 align-right">
  633. <ul>
  634. <li>
  635. </li>
  636. <li>
  637. <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%252buNXLnJSO08m%2fu13UGFI5yk9U9LJtL3SIcyXENABj%252b6p9%252b6w4r3qji%2fLtSIpzTrp">登录</a>
  638. </li>
  639. <li>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  643. </li>
  644. <li>
  645. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  646. </li>
  647. <li>
  648. <!-- Mush:TBC -->
  649. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  650. </li>
  651. </ul>
  652. </div>
  653. </div>
  654. <div id="navArea" class="row">
  655. <div class="col-xs-12">
  656. <div id="navMain" class="inline-block">
  657. <div class="navbar">
  658. <ul class="topnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  661. <ul class="subnav" id="subnav">
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  670. </li>
  671. <li>
  672. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  673. </li>
  674. </ul>
  675. </li>
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  678. <ul class="subnav" id="subnav">
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  687. </li>
  688. <li>
  689. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  690. </li>
  691. </ul>
  692. </li>
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  695. <ul class="subnav" id="subnav">
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  725. </li>
  726. <li>
  727. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  728. </li>
  729. </ul>
  730. </li>
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  733. <ul class="subnav" id="subnav">
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  760. </li>
  761. <li>
  762. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  763. </li>
  764. </ul>
  765. </li>
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  768. <ul class="subnav" id="subnav">
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  777. </li>
  778. <li>
  779. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  780. </li>
  781. </ul>
  782. </li>
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  785. <ul class="subnav" id="subnav">
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  797. </li>
  798. <li>
  799. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  800. </li>
  801. </ul>
  802. </li>
  803. </ul>
  804. </div>
  805. </div>
  806. <div class="onlineCatalog inline-block">
  807. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  808. </div>
  809. </div>
  810. </div>
  811. </div>
  812. <div style="visibility: hidden; height: 0px;">
  813. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  814. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  815. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  816. </div>
  817. <script type="text/javascript">
  818. $(document).ready(function () {
  819. //* change to html5 catalog if javascript is enabled *
  820. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  821. });
  822. </script>
  823. <script type="text/javascript" src='../../../../../javascript/genLib.js'></script>
  824. </div>
  825. <div id="ctl00_divWide" class="divWide">
  826. <link rel="stylesheet" type="text/css" href='../../../../../css/fontawesome/css/font-awesome.min.css' />
  827. <br />
  828. <strong></strong>
  829. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  830. <strong>></strong>
  831. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" href="../../../../_/N-5gcb/" style="font-size: 9pt; font-weight: bold;">半导体</a>
  832. <strong>></strong>
  833. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-6j73k/" style="font-size: 9pt; font-weight: bold;">集成电路 - IC</a>
  834. <strong>></strong>
  835. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">通信及网络 IC</a>
  836. <hr />
  837. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  838. <div class="categorySearchLimits">
  839. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  840. </div>
  841. </div>
  842. </div>
  843. <table border="0" width="100%">
  844. <tr>
  845. <td>
  846. <div id="ctl00_ContentMain_pnl3">
  847. <div id="category-top" class="category-content">
  848. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> 通信及网络 IC</h1></a>
  849. <!--Marketing Content-->
  850. <div id="ctl00_ContentMain_refinemfglogo">
  851. </div>
  852. </div><!--.category-content-->
  853. </div>
  854. </td>
  855. </tr>
  856. <tr>
  857. <td>
  858. </td>
  859. </tr>
  860. <tr>
  861. <td>
  862. <div id="refine-page2">
  863. </div>
  864. </td>
  865. </tr>
  866. </table>
  867. <div id="ctl00_ContentMain_divTabs" class="row">
  868. <div class="col-xs-12">
  869. <div id="tabsNavigation" >
  870. <ul>
  871. <li id="ctl00_ContentMain_liProductsTab" class="active">
  872. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(1,517)</span></a>
  873. </li>
  874. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  875. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Communication &amp; Networking ICs&#39;);" href="../../Datasheets/_/N-6j74f">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(601)</span></a>
  876. </li>
  877. <li id="ctl00_ContentMain_liImagesTab" class="">
  878. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Communication &amp; Networking ICs&#39;);" href="../../Images/_/N-6j74f">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(203)</span></a>
  879. </li>
  880. <li id="ctl00_ContentMain_liNewestTab" class="">
  881. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Communication &amp; Networking ICs&#39;);" href="../../Newest-Products/_/N-6j74f">最新产品</a>
  882. </li>
  883. </ul>
  884. </div>
  885. </div>
  886. </div>
  887. <div id="tabDivs" class="tab-divs">
  888. <!-- Hide the View links if javascript is disabled -->
  889. <noscript>
  890. <style type="text/css">
  891. .list-visual
  892. {
  893. display: none;
  894. }
  895. </style>
  896. </noscript>
  897. <div id="CategoryControlTop">
  898. <table class="table-categories">
  899. <tr><td valign="top">
  900. <input type="hidden" name="ctl00$ContentMain$uc6$listCategories$ctl01$hdnCatID" id="ctl00_ContentMain_uc6_listCategories_ctl01_hdnCatID" value="10973391" />
  901. <div class="topCatTitle">
  902. <div class="col-xs-8 no-left-pad">
  903. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkCategory" class="SearchResultsTopLevelCategory" href="./"><h2>通信及网络 IC类型</h2></a>
  904. </div>
  905. <div class="text-right">
  906. <div class="list-visual">
  907. <ul>
  908. <li class="right-border active">
  909. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;List&#39;, &#39;Communication &amp; Networking ICs&#39;); SwitchListView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkListView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkListView&#39;,&#39;&#39;)">
  910. <i class="fa fa-th-list"></i>&nbsp;列表</a>
  911. </li>
  912. <li>
  913. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;Visual&#39;, &#39;Communication &amp; Networking ICs&#39;); SwitchVisualView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkVisualView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkVisualView&#39;,&#39;&#39;)">
  914. <i class="fa fa-th-large"></i>&nbsp;目视</a>
  915. </li>
  916. </ul>
  917. </div>
  918. </div>
  919. </div>
  920. <ul class="sub-cats">
  921. <table id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories" cellspacing="0" style="width:100%;border-collapse:collapse;">
  922. <tr>
  923. <td>
  924. <li class="sub-cat">
  925. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973392.png" alt="Analog &amp; Digital Crosspoint ICs" /></div>
  926. <div class="div-cat-title">
  927. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Analog-Digital-Crosspoint-ICs/_/N-6j74g/"><h3>模拟和数字交叉点 IC</h3></a>
  928. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lblRecordCount">344</span>)</span>
  929. </div>
  930. </li>
  931. </td><td>
  932. <li class="sub-cat">
  933. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973394.png" alt="Ethernet ICs" /></div>
  934. <div class="div-cat-title">
  935. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Ethernet-ICs/_/N-6j74i/"><h3>以太网 IC</h3></a>
  936. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lblRecordCount">904</span>)</span>
  937. </div>
  938. </li>
  939. </td><td>
  940. <li class="sub-cat">
  941. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973399.png" alt="Network Controller &amp; Processor ICs" /></div>
  942. <div class="div-cat-title">
  943. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Network-Controller-Processor-ICs/_/N-6j74n/"><h3>网络控制器与处理器 IC</h3></a>
  944. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lblRecordCount">212</span>)</span>
  945. </div>
  946. </li>
  947. </td>
  948. </tr><tr>
  949. <td>
  950. <li class="sub-cat">
  951. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973393.png" alt="Communication ICs - Various" /></div>
  952. <div class="div-cat-title">
  953. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Communication-ICs-Various/_/N-6j74h/"><h3>通信集成电路 - 若干</h3></a>
  954. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lblRecordCount">57</span>)</span>
  955. </div>
  956. </li>
  957. </td><td></td><td></td>
  958. </tr>
  959. </table></ul>
  960. </td></tr></table>
  961. <div id="search-left-col">
  962. </div>
  963. </div>
  964. <script type="text/javascript">
  965. //<![CDATA[
  966. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  967. //]]>
  968. </script>
  969. <div id="ctl00_ContentMain_liProducts">
  970. <div id="refineSearchDiv">
  971. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  972. <div id="refine-keyword-search-2">
  973. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  974. <div id="boxPartSearch2">
  975. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  976. <tr>
  977. <td rowspan="3" style="vertical-align: middle">
  978. <div id="searchPartNumberBox" class="search-box" >
  979. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  980. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  981. </div>
  982. </td>
  983. </tr>
  984. <tr>
  985. <td class="chk-Search">
  986. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  987. </td>
  988. </tr>
  989. <tr>
  990. <td class="chk-Search">
  991. <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>
  992. </td>
  993. </tr>
  994. </table>
  995. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  996. </div>
  997. <script type="text/javascript" src='../../../../../flash/js/Placeholders.min.js'></script>
  998. <script type="text/javascript" src='../../../../../flash/js/watermark.js'></script>
  999. </div>
  1000. </div>
  1001. <div id="refine-mfg-select-2">
  1002. </div>
  1003. <div class="clear">
  1004. </div>
  1005. <table class="SearchParametricTable2">
  1006. <tr>
  1007. <td>
  1008. <div id="AttributesDiv2">
  1009. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  1010. <div class="categorySearchLimits">
  1011. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  1012. <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_chkbx10973391|Communication &amp; Networking 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_chkbx10973391|Communication &amp; Networking ICs&#39;).checked = false;" /></span>&nbsp;<b>集成电路 - IC</b>&nbsp;&#62;&nbsp;<span title="通信及网络 IC"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973391|Communication & Networking ICs" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx10973391|Communication & Networking 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>
  1013. </div>
  1014. </div>
  1015. <hr/>
  1016. </div>
  1017. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  1018. <p class="applied-filter-lbl">
  1019. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  1020. <span id="ctl00_ContentMain_uc5_lblreccount">1,517 匹配</span>
  1021. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  1022. </p>
  1023. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  1024. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  1025. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  1026. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../../images/icon_tooltip.png" />
  1027. <br />
  1028. </div>
  1029. </div>
  1030. <table id="tb1" style="width: 100%;">
  1031. <tr>
  1032. <td>
  1033. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  1034. <tr>
  1035. <td>
  1036. <table cellpadding="0" cellspacing="0">
  1037. <tr>
  1038. <td>
  1039. <table>
  1040. <tr>
  1041. <td>
  1042. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  1043. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  1044. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1045. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1046. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1047. sorted parametric attributes from an endeca attribute group --->
  1048. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  1049. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  1050. </div>
  1051. </td>
  1052. </tr>
  1053. <tr>
  1054. <td>
  1055. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  1056. <option value="4290538360">Analog Devices Inc.</option>
  1057. <option value="4294759229">Atmel</option>
  1058. <option value="4285578461">Broadcom</option>
  1059. <option value="4294449078">Cirrus Logic</option>
  1060. <option value="4294759226">Connect One</option>
  1061. <option value="4294014452">Cypress Semiconductor</option>
  1062. <option value="4292828383">Epson</option>
  1063. <option value="4294014054">Exar</option>
  1064. <option value="4294759187">Fairchild Semiconductor</option>
  1065. <option value="4292490764">IDT (Integrated Device Technology)</option>
  1066. <option value="4290047598">Intel</option>
  1067. <option value="4292499325">Intersil</option>
  1068. <option value="4294758873">IXYS</option>
  1069. <option value="4294758842">Lattice</option>
  1070. <option value="4291596096">Maxim Integrated</option>
  1071. <option value="4294758776">Microchip</option>
  1072. <option value="4292748898">Microsemi</option>
  1073. <option value="4294758775">NetBurner</option>
  1074. <option value="4294758971">NXP</option>
  1075. <option value="4294759663">ON Semiconductor</option>
  1076. <option value="4294758652">Pericom</option>
  1077. <option value="4294759378">Phoenix Contact</option>
  1078. <option value="4294763909">Rabbit Semiconductor</option>
  1079. <option value="4294005660">ROHM Semiconductor</option>
  1080. <option value="4274281261">Semtech</option>
  1081. <option value="4294763905">Silicon Laboratories</option>
  1082. <option value="4294764375">STMicroelectronics</option>
  1083. <option value="4294759686">Texas Instruments</option>
  1084. <option value="4294759685">Vishay</option>
  1085. <option value="4292589411">WIZnet</option>
  1086. <option value="4294759235">ZiLOG</option>
  1087. </select>
  1088. </td>
  1089. </tr>
  1090. <tr>
  1091. <td>
  1092. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1093. </td>
  1094. </tr>
  1095. </table>
  1096. </td>
  1097. <td valign="bottom" style="width: 15px;">
  1098. &nbsp;
  1099. </td>
  1100. </tr>
  1101. </table>
  1102. </td><td>
  1103. <table cellpadding="0" cellspacing="0">
  1104. <tr>
  1105. <td>
  1106. <table>
  1107. <tr>
  1108. <td>
  1109. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">产品</span>
  1110. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1111. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1112. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1113. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1114. sorted parametric attributes from an endeca attribute group --->
  1115. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1116. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688640" />
  1117. </div>
  1118. </td>
  1119. </tr>
  1120. <tr>
  1121. <td>
  1122. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688640">
  1123. <option value="4273988647">ADPCM Transcoders</option>
  1124. <option value="4273996507">ADSL/VDSL DC Terminations</option>
  1125. <option value="4290562669">Analog Crosspoint Switches</option>
  1126. <option value="4273991256">ARCNET Controllers</option>
  1127. <option value="4276272434">Audio Crosspoint Switches</option>
  1128. <option value="4276273531">Audio/Video Crosspoint Switches</option>
  1129. <option value="4273581970">BERT - Bit Error Rate Testers</option>
  1130. <option value="4274000761">Communication Controllers</option>
  1131. <option value="4276275661">Digital Crosspoint Switches</option>
  1132. <option value="4273997550">Digital Data Processors</option>
  1133. <option value="4273988649">Digital Telephone Circuits</option>
  1134. <option value="4273999658">Echo Cancellers</option>
  1135. <option value="4293984121">Ethernet Controllers</option>
  1136. <option value="4273995308">Ethernet Over Coax Chipset</option>
  1137. <option value="4293984120">Ethernet Switches</option>
  1138. <option value="4294438395">Ethernet Transceivers</option>
  1139. <option value="4273991198">Fiber Optic Controllers</option>
  1140. <option value="4274000610">ISOModems</option>
  1141. <option value="4273997857">Link Replicators</option>
  1142. <option value="4273992335">Melody Synthesizers</option>
  1143. <option value="4275289377">Modems</option>
  1144. <option value="4273990993">Multi-Port PCI Gateway</option>
  1145. <option value="4273999310">Network Processors</option>
  1146. <option value="4273999457">Phone Line Monitors</option>
  1147. <option value="4274443533">Physical Layer Transceivers</option>
  1148. <option value="4273995936">PLL Tone Decoders</option>
  1149. <option value="4274000592">Power Line Communications</option>
  1150. <option value="4273999459">SHDSL/ISDN DC Terminations</option>
  1151. <option value="4273995938">Speech Networks</option>
  1152. <option value="4273993559">Tone Decoders</option>
  1153. <option value="4274000577">Tone Detectors</option>
  1154. <option value="4292026831">Tone Generators</option>
  1155. <option value="4264394134">Transport Processors</option>
  1156. <option value="4264393983">TSI Switches</option>
  1157. <option value="4276275569">Video Crosspoint Switches</option>
  1158. <option value="4273996932">Voice Guidance</option>
  1159. </select>
  1160. </td>
  1161. </tr>
  1162. <tr>
  1163. <td>
  1164. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1165. </td>
  1166. </tr>
  1167. </table>
  1168. </td>
  1169. <td valign="bottom" style="width: 15px;">
  1170. &nbsp;
  1171. </td>
  1172. </tr>
  1173. </table>
  1174. </td><td>
  1175. <table cellpadding="0" cellspacing="0">
  1176. <tr>
  1177. <td>
  1178. <table>
  1179. <tr>
  1180. <td>
  1181. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">数据速率</span>
  1182. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1183. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1184. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1185. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1186. sorted parametric attributes from an endeca attribute group --->
  1187. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1188. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="688375" />
  1189. </div>
  1190. </td>
  1191. </tr>
  1192. <tr>
  1193. <td>
  1194. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688375" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_688375">
  1195. <option value="4286040186">2.4 kb/s</option>
  1196. <option value="4273526214">2.88 kb/s</option>
  1197. <option value="4273527638">4.8 kb/s</option>
  1198. <option value="4286039760">14.4 kb/s</option>
  1199. <option value="4288140426">33.6 kb/s</option>
  1200. <option value="4273589912">40 kb/s</option>
  1201. <option value="4288143056">56 kb/s</option>
  1202. <option value="4273524357">57.6 kb/s</option>
  1203. <option value="4288141470">64 kb/s</option>
  1204. <option value="4273581532">64 kb/s, 2.048 Mb/s</option>
  1205. <option value="4288143647">100 kb/s</option>
  1206. <option value="4288142307">128 kb/s</option>
  1207. <option value="4288140029">312.5 kb/s</option>
  1208. <option value="4287752392">2.5 Mb/s</option>
  1209. <option value="4286040015">3 Mb/s</option>
  1210. <option value="4286046384">4 Mb/s</option>
  1211. <option value="4273581545">4.1 Mb/s</option>
  1212. <option value="4287752393">5 Mb/s</option>
  1213. <option value="4291887568">10 Mb/s</option>
  1214. <option value="4291911015">10 Mb/s, 100 Mb/s</option>
  1215. <option value="4276286782">10 Mb/s, 100 Mb/s, 1 Gb/s</option>
  1216. <option value="4264394072">10 Mb/s, 100 Mb/s, 1 Gb/s, 10 Gb/s</option>
  1217. <option value="4264394077">10 Mb/s, 100 Mb/s, 1 Gb/s, 10/12 Gb/s</option>
  1218. <option value="4264394079">10 Mb/s, 100 Mb/s, 1 Gb/s, 12 Gb/s</option>
  1219. <option value="4264394103">10 Mb/s, 100 Mb/s, 1 Gb/s, 2.5 Gb/s</option>
  1220. <option value="4264394074">10 Mb/s, 100 Mb/s, 1 Gb/s, 2.5 Gb/s, 10 Gb/s</option>
  1221. <option value="4291885397">10 Mb/s, 100 Mb/s, 1000 Mb/s</option>
  1222. <option value="4282145226">10 Mb/s, 100 Mb/s, 1000Mb/s</option>
  1223. <option value="4274157381">10 Mb/s, 100 Mb/s, 200 Mb/s</option>
  1224. <option value="4282143121">10 Mb/s, 1000 Mb/s</option>
  1225. <option value="4273524721">14 Mb/s</option>
  1226. <option value="4288394526">100 Mb/s</option>
  1227. <option value="4291907940">125 Mb/s</option>
  1228. <option value="4276253210">143 Mb/s, 270 Mb/s, 1.483 Gb/s, 1.485 Gb/s</option>
  1229. <option value="4285001230">0.5 Gb/s to 10.3125 Gb/s</option>
  1230. <option value="4291908332">600 Mb/s, 3.75 Gb/s</option>
  1231. <option value="4284984070">622 Mb/s</option>
  1232. <option value="4286149406">0.8 Gb/s</option>
  1233. <option value="4288394080">800 Mb/s</option>
  1234. <option value="4291909595">1 Gb/s</option>
  1235. <option value="4282143659">1 Gb/s, 10 Gb/s</option>
  1236. <option value="4264394081">1 Gb/s, 2.5 Gb/s</option>
  1237. <option value="4264394069">1 Gb/s, 2.5 Gb/s, 10 Gb/s</option>
  1238. <option value="4285879095">1000 Mb/s</option>
  1239. <option value="4291909887">1.25 Gb/s</option>
  1240. <option value="4291909889">1.3 Gb/s</option>
  1241. <option value="4286149209">1.5 Gb/s</option>
  1242. <option value="4286147574">1.6 Gb/s</option>
  1243. <option value="4285879094">2 Gb/s</option>
  1244. <option value="4292572678">2.5 Gb/s</option>
  1245. <option value="4282143668">2.5 Gb/s, 3.2 Gb/s, 10 Gb/s, 12.8 Gb/s</option>
  1246. <option value="4282143638">2.5 Gb/s, 5 Gb/s</option>
  1247. <option value="4282156493">2.6 Gb/s</option>
  1248. <option value="4286149367">2.7 Gb/s</option>
  1249. <option value="4286570396">3 Gb/s</option>
  1250. <option value="4291909884">3.125 Gb/s</option>
  1251. <option value="4286147575">3.2 Gb/s</option>
  1252. <option value="4273678881">3.5 Gb/s</option>
  1253. <option value="4288369651">4 Gb/s</option>
  1254. <option value="4286148883">4.25 Gb/s</option>
  1255. <option value="4286147572">5 Gb/s</option>
  1256. <option value="4291905050">5 Gb/s, 10 Gb/s</option>
  1257. <option value="4273679034">5 Gb/s, 5.4 Gb/s</option>
  1258. <option value="4286146733">6.25 Gb/s</option>
  1259. <option value="4286146790">6.4 Gb/s</option>
  1260. <option value="4286148304">6.5 Gb/s</option>
  1261. <option value="4286149284">7 Gb/s</option>
  1262. <option value="4264394143">8.5 Gb/s</option>
  1263. <option value="4286148301">10 Gb/s</option>
  1264. <option value="4283329549">10.3125 Gb/s</option>
  1265. <option value="4288394082">10.7 Gb/s</option>
  1266. <option value="4264394149">10.709 Gb/s</option>
  1267. <option value="4286146712">11.3 Gb/s</option>
  1268. <option value="4264394145">11.5 Gb/s</option>
  1269. <option value="4286148081">12.5 Gb/s</option>
  1270. <option value="4285261123">14 Gb/s</option>
  1271. <option value="4273678948">14.025 Gb/s</option>
  1272. <option value="4285878841">14.2 Gb/s</option>
  1273. <option value="4286149492">21 Gb/s</option>
  1274. <option value="4282156329">30 Gb/s</option>
  1275. <option value="4286149491">38 Gb/s</option>
  1276. <option value="4264394063">52 Gb/s</option>
  1277. <option value="4264394067">80 Gb/s</option>
  1278. <option value="4264393239">90 Gb/s</option>
  1279. <option value="4264393985">340 Gb/s</option>
  1280. <option value="4288831956">-</option>
  1281. </select>
  1282. </td>
  1283. </tr>
  1284. <tr>
  1285. <td>
  1286. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1287. </td>
  1288. </tr>
  1289. </table>
  1290. </td>
  1291. <td valign="bottom" style="width: 15px;">
  1292. &nbsp;
  1293. </td>
  1294. </tr>
  1295. </table>
  1296. </td><td>
  1297. <table cellpadding="0" cellspacing="0">
  1298. <tr>
  1299. <td>
  1300. <table>
  1301. <tr>
  1302. <td>
  1303. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">工作电源电压</span>
  1304. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1305. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1306. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1307. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1308. sorted parametric attributes from an endeca attribute group --->
  1309. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1310. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="1000000393" />
  1311. </div>
  1312. </td>
  1313. </tr>
  1314. <tr>
  1315. <td>
  1316. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000393" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_1000000393">
  1317. <option value="4264394040">970 mV, 1.2 V</option>
  1318. <option value="4274925400">- 9 V</option>
  1319. <option value="4289580288">- 3.3 V</option>
  1320. <option value="4276211997">- 3 V, 5 V, 15 V</option>
  1321. <option value="4294595635">1 V</option>
  1322. <option value="4264394042">1 V, 1.2 V</option>
  1323. <option value="4292585245">1 V, 1.5 V, 1.8 V</option>
  1324. <option value="4273387522">1 V, 1.5 V/1.8 V</option>
  1325. <option value="4292512005">1 V, 1.8 V, 2.5 V</option>
  1326. <option value="4292562863">1 V, 1.8 V, 2.5 V, 3.3 V</option>
  1327. <option value="4264394088">1 V, 1.8, 2.5 V</option>
  1328. <option value="4288355198">1 V, 2.5 V</option>
  1329. <option value="4292776965">1 V, 2.5 V, 3.3 V</option>
  1330. <option value="4294592437">1.14 V to 1.26 V</option>
  1331. <option value="4290305964">1.14 V to 1.32 V, 3 V to 3.6 V</option>
  1332. <option value="4274915117">1.14 V to 2.63 V</option>
  1333. <option value="4274915120">1.14 V to 3.46 V</option>
  1334. <option value="4274917846">1.14 V to 3.465 V</option>
  1335. <option value="4274916410">1.14 V to 3.47 V</option>
  1336. <option value="4264394056">1.14 V to 3.6 V</option>
  1337. <option value="4277621448">1.14 V to 3.63 V</option>
  1338. <option value="4294604096">1.2 V</option>
  1339. <option value="4274925594">1.2 V, 1.5 V, 1.8 V, 2.5 V</option>
  1340. <option value="4285787939">1.2 V, 1.5 V, 3.3 V</option>
  1341. <option value="4292553363">1.2 V, 1.8 V</option>
  1342. <option value="4289861871">1.2 V, 1.8 V, 2.5 V</option>
  1343. <option value="4264394136">1.2 V, 2.5V/3.3 V</option>
  1344. <option value="4292795339">1.2 V, 3.3 V</option>
  1345. <option value="4276269870">1.2 V/2.5 V</option>
  1346. <option value="4290931791">1.235 V to 1.365 V</option>
  1347. <option value="4289849920">1.235 V to 3.6 V</option>
  1348. <option value="4294629310">1.3 V</option>
  1349. <option value="4292563210">1.5 V, 1.8 V, 2.5 V, 3.3 V</option>
  1350. <option value="4274927865">1.5 V, 2.5 V</option>
  1351. <option value="4294588387">1.6 V to 3.6 V</option>
  1352. <option value="4274916649">1.62 V to 3.3 V</option>
  1353. <option value="4294592684">1.65 V to 4.3 V</option>
  1354. <option value="4292580868">1.71 V to 1.89 V</option>
  1355. <option value="4294604809">1.8 V</option>
  1356. <option value="4294627807">1.8 V to 3.3 V</option>
  1357. <option value="4292792840">1.8 V, 2.5 V</option>
  1358. <option value="4294593605">1.8 V, 2.5 V, 3.3 V</option>
  1359. <option value="4293987368">1.8 V, 3.3 V</option>
  1360. <option value="4273589280">2 V, 3.5 V, 4 V, 7 V</option>
  1361. <option value="4292715448">2.1 V, 3.3 V</option>
  1362. <option value="4294604848">2.2 V to 5.5 V</option>
  1363. <option value="4291758190">2.3 V to 5.7 V</option>
  1364. <option value="4292776992">+/- 2.5 V, +/- 3.3 V</option>
  1365. <option value="4294627904">2.5 V</option>
  1366. <option value="4294627905">2.5 V to 3.3 V</option>
  1367. <option value="4294592120">2.5 V, 3.3 V</option>
  1368. <option value="4294439255">2.5 V/3.3 V</option>
  1369. <option value="4292974888">+/- 2.7 V to +/- 5.5 V</option>
  1370. <option value="4294405006">2.7 V to 3.5 V</option>
  1371. <option value="4294627748">2.7 V to 3.6 V</option>
  1372. <option value="4294629721">2.7 V to 5.5 V</option>
  1373. <option value="4294602281">2.8 V to 5.5 V</option>
  1374. <option value="4276253208">+/- 3 V to +/- 5 V</option>
  1375. <option value="4291844642">+/- 3 V to +/- 5.5 V</option>
  1376. <option value="4294604646">3 V</option>
  1377. <option value="4294629911">3 V to 3.6 V</option>
  1378. <option value="4294601654">3 V to 5 V</option>
  1379. <option value="4294628236">3.1 V to 3.6 V</option>
  1380. <option value="4294629989">3.3 V</option>
  1381. <option value="4294604126">3.3 V to 5 V</option>
  1382. <option value="4294594351">3.3 V, 5 V</option>
  1383. <option value="4292978140">+/- 4.5 V to +/- 5.5 V</option>
  1384. <option value="4294628563">4.75 V to 5.25 V</option>
  1385. <option value="4294595848">+/- 5 V</option>
  1386. <option value="4294630592">5 V</option>
  1387. <option value="4292799117">5 V, 9 V, 12 V</option>
  1388. <option value="4294604829">6 V</option>
  1389. <option value="4294604959">12 V</option>
  1390. <option value="4294604742">13 V</option>
  1391. <option value="4294629914">13.2 V</option>
  1392. <option value="4289511324">14.5 V</option>
  1393. <option value="4294603411">16 V</option>
  1394. <option value="4294592460">24 V</option>
  1395. <option value="4294604822">35 V</option>
  1396. </select>
  1397. </td>
  1398. </tr>
  1399. <tr>
  1400. <td>
  1401. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1402. </td>
  1403. </tr>
  1404. </table>
  1405. </td>
  1406. <td valign="bottom" style="width: 15px;">
  1407. &nbsp;
  1408. </td>
  1409. </tr>
  1410. </table>
  1411. </td><td>
  1412. <table cellpadding="0" cellspacing="0">
  1413. <tr>
  1414. <td>
  1415. <table>
  1416. <tr>
  1417. <td>
  1418. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">最大工作温度</span>
  1419. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1420. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1421. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1422. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1423. sorted parametric attributes from an endeca attribute group --->
  1424. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1425. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000000314" />
  1426. </div>
  1427. </td>
  1428. </tr>
  1429. <tr>
  1430. <td>
  1431. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000314" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000000314">
  1432. <option value="4294574814">+ 55 C</option>
  1433. <option value="4294574807">+ 60 C</option>
  1434. <option value="4293990989">+ 65 C</option>
  1435. <option value="4294629996">+ 70 C</option>
  1436. <option value="4294629984">+ 75 C</option>
  1437. <option value="4294631168">+ 80 C</option>
  1438. <option value="4294630005">+ 85 C</option>
  1439. <option value="4294575688">+ 90 C</option>
  1440. <option value="4294031282">+ 95 C</option>
  1441. <option value="4294629968">+ 100 C</option>
  1442. <option value="4294568129">+ 105 C</option>
  1443. <option value="4294592637">+ 110 C</option>
  1444. <option value="4294441852">+ 115 C</option>
  1445. <option value="4294631245">+ 125 C</option>
  1446. </select>
  1447. </td>
  1448. </tr>
  1449. <tr>
  1450. <td>
  1451. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1452. </td>
  1453. </tr>
  1454. </table>
  1455. </td>
  1456. <td valign="bottom" style="width: 15px;">
  1457. &nbsp;
  1458. </td>
  1459. </tr>
  1460. </table>
  1461. </td><td>
  1462. <table cellpadding="0" cellspacing="0">
  1463. <tr>
  1464. <td>
  1465. <table>
  1466. <tr>
  1467. <td>
  1468. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">安装风格</span>
  1469. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1470. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1471. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1472. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1473. sorted parametric attributes from an endeca attribute group --->
  1474. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1475. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="1323044" />
  1476. </div>
  1477. </td>
  1478. </tr>
  1479. <tr>
  1480. <td>
  1481. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1323044" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_1323044">
  1482. <option value="4294741457">SMD/SMT</option>
  1483. <option value="4294739373">Through Hole</option>
  1484. </select>
  1485. </td>
  1486. </tr>
  1487. <tr>
  1488. <td>
  1489. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1490. </td>
  1491. </tr>
  1492. </table>
  1493. </td>
  1494. <td valign="bottom" style="width: 15px;">
  1495. &nbsp;
  1496. </td>
  1497. </tr>
  1498. </table>
  1499. </td><td>
  1500. <table cellpadding="0" cellspacing="0">
  1501. <tr>
  1502. <td>
  1503. <table>
  1504. <tr>
  1505. <td>
  1506. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  1507. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  1508. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1509. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1510. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1511. sorted parametric attributes from an endeca attribute group --->
  1512. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  1513. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="688606" />
  1514. </div>
  1515. </td>
  1516. </tr>
  1517. <tr>
  1518. <td>
  1519. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_688606">
  1520. <option value="4294694469">BGA</option>
  1521. <option value="4264394150">BGA-1072</option>
  1522. <option value="4290037009">BGA-1433</option>
  1523. <option value="4294688763">BGA-144</option>
  1524. <option value="4290037008">BGA-1677</option>
  1525. <option value="4294672631">BGA-169</option>
  1526. <option value="4294677007">BGA-196</option>
  1527. <option value="4273678880">BGA-2377</option>
  1528. <option value="4294680905">BGA-256</option>
  1529. <option value="4290561271">BGA-260</option>
  1530. <option value="4294677008">BGA-289</option>
  1531. <option value="4294671098">BGA-304</option>
  1532. <option value="4294671333">BGA-324</option>
  1533. <option value="4294684542">BGA-352</option>
  1534. <option value="4291430675">BGA-356</option>
  1535. <option value="4290454824">BGA-364</option>
  1536. <option value="4264394009">BGA-444</option>
  1537. <option value="4294675857">BGA-484</option>
  1538. <option value="4294025904">BGA-49</option>
  1539. <option value="4290561228">BGA-576</option>
  1540. <option value="4291430717">BGA-672</option>
  1541. <option value="4287878236">BGA-80 Microstar Junior</option>
  1542. <option value="4290037000">BGA-897</option>
  1543. <option value="4290539926">BPGA-400</option>
  1544. <option value="4290038681">CABGA-196</option>
  1545. <option value="4264394135">CBGA-897</option>
  1546. <option value="4292880623">DFN-16</option>
  1547. <option value="4285566279">DRQFN-132</option>
  1548. <option value="4294687301">DSBGA-6</option>
  1549. <option value="4285566277">eLQFP-256</option>
  1550. <option value="4292511278">FBGA-100</option>
  1551. <option value="4290527543">FBGA-121</option>
  1552. <option value="4294674867">FBGA-256</option>
  1553. <option value="4291430742">FBGA-400</option>
  1554. <option value="4294014533">FBGA-64</option>
  1555. <option value="4264393984">FCBGA-1072</option>
  1556. <option value="4289555692">FCBGA-1232</option>
  1557. <option value="4289555689">FCBGA-1433</option>
  1558. <option value="4292736406">FCBGA-144</option>
  1559. <option value="4289555691">FCBGA-1677</option>
  1560. <option value="4264394037">FCBGA-195</option>
  1561. <option value="4264191117">FCBGA-196</option>
  1562. <option value="4289555693">FCBGA-220</option>
  1563. <option value="4281793872">FCBGA-256</option>
  1564. <option value="4292972279">FCBGA-324</option>
  1565. <option value="4289555708">FCBGA-484</option>
  1566. <option value="4264394146">FCBGA-613</option>
  1567. <option value="4285566267">FCBGA-648</option>
  1568. <option value="4264394022">FCBGA-780</option>
  1569. <option value="4290036979">FCBGA-883</option>
  1570. <option value="4290037010">FCBGA-897</option>
  1571. <option value="4294649465">FPBGA-208</option>
  1572. <option value="4292984201">FPBGA-256</option>
  1573. <option value="4285566311">FPBGA-354</option>
  1574. <option value="4292984200">FPBGA-484</option>
  1575. <option value="4287546639">HLQFP-48</option>
  1576. <option value="4264191054">HSBGA-444</option>
  1577. <option value="4294668118">HSOP-24</option>
  1578. <option value="4294677352">HTQFP-48</option>
  1579. <option value="4294677356">HTQFP-64</option>
  1580. <option value="4294677354">HTQFP-80</option>
  1581. <option value="4294717754">HTSSOP-28</option>
  1582. <option value="4294677009">HVQFP-64</option>
  1583. <option value="4285566292">KML-48</option>
  1584. <option value="4264191136">LBGA-117</option>
  1585. <option value="4294669637">LFBGA-100</option>
  1586. <option value="4290504265">LFCSP-100</option>
  1587. <option value="4292880926">LFCSP-32</option>
  1588. <option value="4290563343">LFCSP-64</option>
  1589. <option value="4290562553">LFCSP-72</option>
  1590. <option value="4290562284">LFCSP-88</option>
  1591. <option value="4291640718">LQFN-100</option>
  1592. <option value="4294689638">LQFP</option>
  1593. <option value="4293996888">LQFP EP</option>
  1594. <option value="4294688832">LQFP-100</option>
  1595. <option value="4294685151">LQFP-128</option>
  1596. <option value="4294688778">LQFP-144</option>
  1597. <option value="4294683494">LQFP-176</option>
  1598. <option value="4290562631">LQFP-184</option>
  1599. <option value="4294689560">LQFP-32</option>
  1600. <option value="4294688772">LQFP-44</option>
  1601. <option value="4294689385">LQFP-48</option>
  1602. <option value="4294688791">LQFP-64</option>
  1603. <option value="4294686690">LQFP-80</option>
  1604. <option value="4290934995">MLF-16</option>
  1605. <option value="4294700355">MLF-24</option>
  1606. <option value="4294025914">MLF-32</option>
  1607. <option value="4294025908">MLF-44</option>
  1608. <option value="4294676263">MLP-32</option>
  1609. <option value="4292830601">MLP-48</option>
  1610. <option value="4285566255">MLP-68</option>
  1611. <option value="4285566282">MML-186</option>
  1612. <option value="4281795615">NFBGA-160</option>
  1613. <option value="4290539928">PBGA-289</option>
  1614. <option value="4292873522">PBGA-400</option>
  1615. <option value="4290504264">PBGA-676</option>
  1616. <option value="4294689850">PDIP-14</option>
  1617. <option value="4294688823">PDIP-28</option>
  1618. <option value="4294720783">PDIP-40</option>
  1619. <option value="4294741647">PDIP-8</option>
  1620. <option value="4294729354">PLCC-28</option>
  1621. <option value="4294720779">PLCC-44</option>
  1622. <option value="4289555684">PQFN-64</option>
  1623. <option value="4294683240">PQFP-128</option>
  1624. <option value="4294679339">PQFP-208</option>
  1625. <option value="4294685285">QFN-11</option>
  1626. <option value="4264394019">QFN-135</option>
  1627. <option value="4264191084">QFN-138</option>
  1628. <option value="4292995716">QFN-156</option>
  1629. <option value="4294719844">QFN-16</option>
  1630. <option value="4292786572">QFN-16 EP</option>
  1631. <option value="4294687848">QFN-24</option>
  1632. <option value="4292780077">QFN-24 EP</option>
  1633. <option value="4294689635">QFN-28</option>
  1634. <option value="4292794261">QFN-28 EP</option>
  1635. <option value="4294719691">QFN-32</option>
  1636. <option value="4292790006">QFN-32 EP</option>
  1637. <option value="4294678025">QFN-32, 5 x 5</option>
  1638. <option value="4294686100">QFN-36</option>
  1639. <option value="4294679322">QFN-38</option>
  1640. <option value="4294686108">QFN-44</option>
  1641. <option value="4292777051">QFN-44 EP</option>
  1642. <option value="4294685209">QFN-48</option>
  1643. <option value="4292873747">QFN-52</option>
  1644. <option value="4294676865">QFN-56</option>
  1645. <option value="4281794473">QFN-56 EP</option>
  1646. <option value="4294686204">QFN-64</option>
  1647. <option value="4286786533">QFN-64 EP</option>
  1648. <option value="4294666562">QFN-72</option>
  1649. <option value="4281794472">QFN-72 EP</option>
  1650. <option value="4292686916">QFN-88</option>
  1651. <option value="4284637098">QFN-EP-24</option>
  1652. <option value="4294720937">QFP-100</option>
  1653. <option value="4294718158">QFP-128</option>
  1654. <option value="4294677143">QFP-208</option>
  1655. <option value="4294677353">QFP-52</option>
  1656. <option value="4294685171">QFP-64</option>
  1657. <option value="4294720941">QFP-80</option>
  1658. <option value="4294707458">QSOP-16</option>
  1659. <option value="4294668690">QSOP-36</option>
  1660. <option value="4290504266">SBGA-256</option>
  1661. <option value="4294689423">SO-28</option>
  1662. <option value="4284571334">SO-Wide-28</option>
  1663. <option value="4294738489">SOIC-16</option>
  1664. <option value="4294687808">SOIC-24</option>
  1665. <option value="4294689807">SOIC-28</option>
  1666. <option value="4294689289">SOIC-28 Wide</option>
  1667. <option value="4294686278">SOIC-32</option>
  1668. <option value="4294741649">SOIC-8</option>
  1669. <option value="4294012959">SOIC-8 Narrow</option>
  1670. <option value="4284650429">SOIC-Narrow-14</option>
  1671. <option value="4294728957">SOP-8</option>
  1672. <option value="4294680707">SPDIP-28</option>
  1673. <option value="4290548997">SQFN-24</option>
  1674. <option value="4290549003">SQFN-32</option>
  1675. <option value="4294687810">SSOP-16</option>
  1676. <option value="4294689666">SSOP-28</option>
  1677. <option value="4294687022">SSOP-36</option>
  1678. <option value="4294689692">SSOP-48</option>
  1679. <option value="4294674132">TEBGA</option>
  1680. <option value="4292995539">TFBGA-100</option>
  1681. <option value="4294740663">TO-220</option>
  1682. <option value="4294649470">TOSSP-24</option>
  1683. <option value="4294671072">TQFN-24</option>
  1684. <option value="4294671083">TQFN-32</option>
  1685. <option value="4294004486">TQFN-40</option>
  1686. <option value="4294718154">TQFP-100</option>
  1687. <option value="4294718152">TQFP-128</option>
  1688. <option value="4294688334">TQFP-144</option>
  1689. <option value="4264191162">TQFP-284</option>
  1690. <option value="4264191159">TQFP-302</option>
  1691. <option value="4294686246">TQFP-32</option>
  1692. <option value="4294686335">TQFP-44</option>
  1693. <option value="4294686753">TQFP-48</option>
  1694. <option value="4294718155">TQFP-64</option>
  1695. <option value="4294685179">TQFP-80</option>
  1696. <option value="4294719970">TSSOP-16</option>
  1697. <option value="4294719112">TSSOP-24</option>
  1698. <option value="4294687460">TSSOP-28</option>
  1699. <option value="4294735472">TSSOP-38</option>
  1700. <option value="4292499559">UMLP-20</option>
  1701. <option value="4292795344">UQFN-28</option>
  1702. <option value="4292765107">VFQFPN-32</option>
  1703. <option value="4293992153">VFQFPN-40</option>
  1704. <option value="4294683466">VFQFPN-48</option>
  1705. <option value="4290274170">VFQFPN-56</option>
  1706. <option value="4294575726">VQFN-24</option>
  1707. <option value="4294572410">VQFN-32</option>
  1708. <option value="4294668098">VQFN-36</option>
  1709. <option value="4294572502">VQFN-40</option>
  1710. <option value="4294649696">VQFN-48</option>
  1711. <option value="4294675158">WQFN-16</option>
  1712. <option value="4294006079">WQFN-32</option>
  1713. <option value="4294677467">WQFN-40</option>
  1714. <option value="4291607598">WQFN-48</option>
  1715. <option value="4294425190">WQFN-56</option>
  1716. <option value="4276514101">XFBGA-28</option>
  1717. <option value="4287856103">XVTQFP-128</option>
  1718. </select>
  1719. </td>
  1720. </tr>
  1721. <tr>
  1722. <td>
  1723. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1724. </td>
  1725. </tr>
  1726. </table>
  1727. </td>
  1728. <td valign="bottom" style="width: 15px;">
  1729. &nbsp;
  1730. </td>
  1731. </tr>
  1732. </table>
  1733. </td>
  1734. </tr>
  1735. </table>
  1736. <table class="ApplyFilter">
  1737. <tr>
  1738. <td class="ApplyFilterColumn1">
  1739. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1740. </td>
  1741. <td class="ApplyFilterColumn2">
  1742. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  1743. </td>
  1744. <td class="ApplyFilterColumn2_5">
  1745. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  1746. </td>
  1747. <td class="ApplyFilterColumn3">
  1748. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1749. </td>
  1750. </tr>
  1751. </table>
  1752. </td>
  1753. </tr>
  1754. </table>
  1755. </div>
  1756. </td>
  1757. </tr>
  1758. </table>
  1759. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  1760. height: 70px; display: none; background: white; border: 1px solid #000;'>
  1761. <br />
  1762. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  1763. <br />
  1764. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  1765. <!--Close Window-->
  1766. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  1767. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  1768. </a>&nbsp;&nbsp;</div>
  1769. </div>
  1770. <div id ="VisualAttributePopup" class="hidden" >
  1771. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  1772. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  1773. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  1774. </div>
  1775. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id= "loadingimgspinner" src="/Images/spinner2.gif" /></div>
  1776. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  1777. <table id="tblAttributes" >
  1778. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  1779. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  1780. <td class="visualAttributeImage">
  1781. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  1782. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  1783. </td>
  1784. <td>
  1785. <table class="visualAttValueDesc">
  1786. <tr>
  1787. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  1788. </tr>
  1789. <tr>
  1790. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  1791. </tr>
  1792. <tr data-bind="if: ImagePath1 ">
  1793. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs"/></div></td>
  1794. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  1795. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  1796. </tr>
  1797. </table>
  1798. </td>
  1799. </tr>
  1800. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  1801. </tbody>
  1802. </table>
  1803. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id= "Img1" src="/Images/spinner2.gif" />
  1804. <div data-bind="if: hasMoreOptions" align="center">
  1805. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  1806. </div>
  1807. </div>
  1808. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  1809. <div class="visualAttributesBtnDiv">
  1810. <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" />
  1811. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  1812. <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" />
  1813. </div>
  1814. </div>
  1815. <style type="text/css">
  1816. /* These styles are to customize "Visual Parametrics" modal window */
  1817. .ui-dialog { position: absolute; padding: 0px !important; width: 300px; overflow: hidden;}
  1818. .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .6em !important; background: none; overflow: auto; zoom: 1; max-height: 450px;}
  1819. .ui-dialog .ui-dialog-titlebar { padding: .4em .5em !important; position: relative; background: none repeat scroll 0 0 #E0E4E9; font-size:15px; }
  1820. .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border-bottom-right-radius: 0; }
  1821. .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-bottom-left-radius: 0; }
  1822. </style>
  1823. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1824. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  1825. </div>
  1826. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  1827. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  1828. <script src='../../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  1829. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1830. <script type="text/javascript">
  1831. $().ready(function () {
  1832. ko.applyBindings(new DisplayAttributesModel());
  1833. ko.bindingHandlers.hoverToggle = {
  1834. update: function (element, valueAccessor) {
  1835. var css = valueAccessor();
  1836. var isSelected = $(element).hasClass("selectedAttribute");
  1837. if (!isSelected) {
  1838. ko.utils.registerEventHandler(element, "mouseenter", function () {
  1839. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  1840. });
  1841. ko.utils.registerEventHandler(element, "mouseleave", function () {
  1842. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  1843. });
  1844. }
  1845. }
  1846. };
  1847. });
  1848. </script>
  1849. </div>
  1850. <div id="refine-mfg-logo2">
  1851. </div>
  1852. </div>
  1853. <br />
  1854. <table border="0" width="100%">
  1855. <tr>
  1856. <td>
  1857. </td>
  1858. </tr>
  1859. <tr>
  1860. <td>
  1861. <!--- Search Features --->
  1862. </td>
  1863. </tr>
  1864. <tr>
  1865. <td>
  1866. <div id="refine-page">
  1867. </div>
  1868. </td>
  1869. </tr>
  1870. <tr>
  1871. <td class="refine-show-products">
  1872. <span class="redtextb">
  1873. </span> <span class="redtextb">
  1874. </span> <span class="redtextb">
  1875. </span> <span class="redtextb">
  1876. </span>
  1877. <span class="redtextb">
  1878. </span>
  1879. </td>
  1880. </tr>
  1881. <tr>
  1882. <td>
  1883. </td>
  1884. </tr>
  1885. <tr>
  1886. <td>
  1887. <!--- Special Order Parts New --->
  1888. <!-- SOP Section 1 -->
  1889. </td>
  1890. </tr>
  1891. </table>
  1892. <div id="searchResultsTbl">
  1893. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  1894. <tr>
  1895. <td class="tdSearchResultsPagingTop">
  1896. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  1897. <tr>
  1898. <td>
  1899. <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" />
  1900. </td>
  1901. <td>
  1902. <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" />
  1903. </td>
  1904. <td>
  1905. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  1906. </td>
  1907. <td style="padding-left: 40px;">
  1908. <div class="floatrightpager">
  1909. <span class="bold">
  1910. 页面:
  1911. </span>
  1912. <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/Communication-Networking-ICs/_/N-6j74f/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_60" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=1500">61</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=25">下一页</a></span>
  1913. </div>
  1914. </td>
  1915. </tr>
  1916. </table>
  1917. </td>
  1918. </tr>
  1919. <tr>
  1920. <td>
  1921. <div>
  1922. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  1923. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  1924. <th class="td-select" scope="col" style="width:35px;">
  1925. 选择
  1926. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  1927. </th><th scope="col">制造商 零件编号
  1928. </th><th scope="col">制造商
  1929. </th><th scope="col">描述
  1930. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../Images/Search/pdf.gif" alt="文件" />
  1931. </th><th scope="col">供货情况
  1932. </th><th scope="col">单价(含17%增值税)
  1933. <br />
  1934. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  1935. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  1936. </th><th class="SearchResultParametricColumnHeading" scope="col">产品
  1937. </th><th class="SearchResultParametricColumnHeading" scope="col">数据速率
  1938. </th><th class="SearchResultParametricColumnHeading" scope="col">工作电源电压
  1939. </th><th class="SearchResultParametricColumnHeading" scope="col">最大工作温度
  1940. </th><th class="SearchResultParametricColumnHeading" scope="col">安装风格
  1941. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  1942. </th>
  1943. </tr><tr class="SearchResultsSortCell">
  1944. <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$ctl17&#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$ctl19&#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_ctl21" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl21&#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$ctl23&#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$ctl25&#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$ctl27&#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$ctl29&#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$ctl31&#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$ctl33&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Product>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl35&#39;,&#39;&#39;)"><img title="按 产品 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 产品 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Product>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl37&#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$Data Rate>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl39&#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$Data Rate>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl41&#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$ctl43&#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$ctl45&#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$ctl47&#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$ctl49&#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$ctl51&#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$ctl53&#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$ctl55&#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$ctl57&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 / 箱体 Descending 排序" /></a></td>
  1945. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-DP83867ERGZT" data-index="3">
  1946. <td class="td-select" align="center">
  1947. <div style="padding: 5px 5px 0 5px;">
  1948. <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>
  1949. </div>
  1950. </td><td><a href='/ProductDetail/Texas-Instruments/DP83867ERGZT/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPji4FplYkkVEFS2rYyfF8wQ%3d%3d'><img title='Texas Instruments DP83867ERGZT' alt='Texas Instruments DP83867ERGZT' id=1631791184 src='/images/mouserimages/sm/QFN_48_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/QFN_48_t.jpg</div></a></td><td>
  1951. <div style="text-align:left;">
  1952. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/DP83867ERGZT/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPji4FplYkkVEFS2rYyfF8wQ%3d%3d">595-DP83867ERGZT</a><br />
  1953. <br />
  1954. <br />
  1955. 要购买完整 卷轴,请订购 250 的倍数:
  1956. </div></td><td>
  1957. <div class="mfrDiv">
  1958. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DP83867ERGZT/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPji4FplYkkVEFS2rYyfF8wQ%3d%3d">DP83867ERGZT</a><br />
  1959. <br />
  1960. <div style="width: 100%; text-align: center;">
  1961. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  1962. </div>
  1963. <div style="width: 100%; text-align: center;">
  1964. </div>
  1965. </div>
  1966. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  1967. </td><td>以太网 IC Ext Temp, Gigabit Ethernet PHY
  1968. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1969. </div>
  1970. </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;Texas Instruments&quot;,&quot;595-DP83867ERGZT | DP83867ERGZT&quot;]);" href="http://www.mouser.com/ds/2/405/dp83867e-778530.pdf" target="_blank">数据表</a>
  1971. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">250<br/>有库存</span>
  1972. <table>
  1973. <tr align="center">
  1974. <td style="padding-top: 5px">
  1975. </td>
  1976. </tr>
  1977. <tr align="center">
  1978. <td style="padding-top: 5px; padding-bottom: 5px">
  1979. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAlternativePackaging" title="备用包装 | 595-DP83867ERGZT" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRl7dSN%2flRH1Zcfs24VHtZL7peEI7zqSNBrL6q5bU1X8KaTIJCjNf2OfLABvmKJmpI9deqWI%252b1ECJRgPjqX1ie0uM5EiTmXbL7f4yvl%252bSsne%252beYTe3A5fBy%252bgDOSsj9Wrc%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  1980. </td>
  1981. </tr>
  1982. </table></td><td>
  1983. <table class="PriceBreaks" cellspacing="0" border="0">
  1984. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1985. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1986. </td>
  1987. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1988. </td>
  1989. </tr>
  1990. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  1991. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  1992. 剪切带
  1993. </td>
  1994. </tr>
  1995. <tr>
  1996. <td class="PriceBreakQuantity">
  1997. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  1998. </td>
  1999. <td class="PriceBreakPrice">
  2000. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥139.8501</span>
  2001. </td>
  2002. </tr>
  2003. <tr>
  2004. <td class="PriceBreakQuantity">
  2005. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  2006. </td>
  2007. <td class="PriceBreakPrice">
  2008. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥128.6064</span>
  2009. </td>
  2010. </tr>
  2011. <tr>
  2012. <td class="PriceBreakQuantity">
  2013. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  2014. </td>
  2015. <td class="PriceBreakPrice">
  2016. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥121.9023</span>
  2017. </td>
  2018. </tr>
  2019. <tr>
  2020. <td class="PriceBreakQuantity">
  2021. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,50);">50:</a>
  2022. </td>
  2023. <td class="PriceBreakPrice">
  2024. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥118.5912</span>
  2025. </td>
  2026. </tr>
  2027. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2028. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2029. 卷轴
  2030. </td>
  2031. </tr>
  2032. <tr>
  2033. <td class="PriceBreakQuantity">
  2034. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(1,250);">250:</a>
  2035. </td>
  2036. <td class="PriceBreakPrice">
  2037. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥99.8829</span>
  2038. </td>
  2039. </tr>
  2040. <tr>
  2041. <td class="PriceBreakQuantity">
  2042. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(1,500);">500:</a>
  2043. </td>
  2044. <td class="PriceBreakPrice">
  2045. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Texas-Instruments/DP83867ERGZT/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPji4FplYkkVEFS2rYyfF8wQ%3d%3d' >查看</a></span>
  2046. </td>
  2047. </tr>
  2048. <tr>
  2049. <td><br /></td>
  2050. </tr>
  2051. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  2052. <td colspan="2" style="text-align: center;">
  2053. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/DP83867ERGZT/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPji4FplYkkVEFS2rYyfF8wQ%3d%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="购买 DP83867ERGZT" 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,250);">卷轴</a>:
  2080. </td>
  2081. <td style="padding-left: 2px; text-align: left;">
  2082. <em class="SearchResultsReel">
  2083. 250
  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=V6U5yCPdTCpIPvdKtYtIaw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=V6U5yCPdTCpIPvdKtYtIaw%3d%3d" target="_blank">详细信息</a>
  2092. </div>
  2093. </td><td>Physical Layer Transceivers
  2094. </td><td>10 Mb/s, 100 Mb/s, 1 Gb/s
  2095. </td><td>1 V, 1.8 V, 2.5 V
  2096. </td><td>+ 105 C
  2097. </td><td>SMD/SMT
  2098. </td><td>QFN-48
  2099. </td>
  2100. </tr><tr class="SearchResultsRowEven" data-partnumber="595-TLK10031CTR" data-index="4">
  2101. <td class="td-select" align="center">
  2102. <div style="padding: 5px 5px 0 5px;">
  2103. <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>
  2104. </div>
  2105. </td><td><a href='/ProductDetail/Texas-Instruments/TLK10031CTR/?qs=sGAEpiMZZMsjXX4loUgemv%2f%252bSswxZOi2rfzYUeArFLMJM%2f12ceCAbw%3d%3d'><img title='Texas Instruments TLK10031CTR' alt='Texas Instruments TLK10031CTR' id=1528745272 src='/images/mouserimages/sm/BGA_144_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/BGA_144_t.jpg</div></a></td><td>
  2106. <div style="text-align:left;">
  2107. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TLK10031CTR/?qs=sGAEpiMZZMsjXX4loUgemv%2f%252bSswxZOi2rfzYUeArFLMJM%2f12ceCAbw%3d%3d">595-TLK10031CTR</a><br />
  2108. <br />
  2109. <br />
  2110. </div></td><td>
  2111. <div class="mfrDiv">
  2112. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TLK10031CTR/?qs=sGAEpiMZZMsjXX4loUgemv%2f%252bSswxZOi2rfzYUeArFLMJM%2f12ceCAbw%3d%3d">TLK10031CTR</a><br />
  2113. <br />
  2114. <div style="width: 100%; text-align: center;">
  2115. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2116. </div>
  2117. <div style="width: 100%; text-align: center;">
  2118. </div>
  2119. </div>
  2120. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2121. </td><td>以太网 IC Single-Channel XAUI/10GBASE-KR Transceiver 144-FCBGA -40 to 85
  2122. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2123. </div>
  2124. </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;Texas Instruments&quot;,&quot;595-TLK10031CTR | TLK10031CTR&quot;]);" href="http://www.mouser.com/ds/2/405/tlk10031-748934.pdf" target="_blank">数据表</a>
  2125. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">119<br/>有库存</span>
  2126. <table>
  2127. <tr align="center">
  2128. <td style="padding-top: 5px">
  2129. </td>
  2130. </tr>
  2131. <tr align="center">
  2132. <td style="padding-top: 5px; padding-bottom: 5px">
  2133. </td>
  2134. </tr>
  2135. </table></td><td>
  2136. <table class="PriceBreaks" cellspacing="0" border="0">
  2137. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2138. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2139. </td>
  2140. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2141. </td>
  2142. </tr>
  2143. <tr>
  2144. <td class="PriceBreakQuantity">
  2145. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  2146. </td>
  2147. <td class="PriceBreakPrice">
  2148. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥200.6082</span>
  2149. </td>
  2150. </tr>
  2151. <tr>
  2152. <td class="PriceBreakQuantity">
  2153. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  2154. </td>
  2155. <td class="PriceBreakPrice">
  2156. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥185.0589</span>
  2157. </td>
  2158. </tr>
  2159. <tr>
  2160. <td class="PriceBreakQuantity">
  2161. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,25);">25:</a>
  2162. </td>
  2163. <td class="PriceBreakPrice">
  2164. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥176.7402</span>
  2165. </td>
  2166. </tr>
  2167. <tr>
  2168. <td class="PriceBreakQuantity">
  2169. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,50);">50:</a>
  2170. </td>
  2171. <td class="PriceBreakPrice">
  2172. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥171.4986</span>
  2173. </td>
  2174. </tr>
  2175. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2176. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2177. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  2178. </td>
  2179. <td class="PriceBreakPrice">
  2180. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/TLK10031CTR/?qs=sGAEpiMZZMsjXX4loUgemv%2f%252bSswxZOi2rfzYUeArFLMJM%2f12ceCAbw%3d%3d">查看</a>
  2181. </td>
  2182. </tr>
  2183. <tr>
  2184. <td><br /></td>
  2185. </tr>
  2186. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2187. <td colspan="2" style="text-align: center;">
  2188. </td>
  2189. </tr>
  2190. </table>
  2191. </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;)">
  2192. <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 />
  2193. <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="购买 TLK10031CTR" class="buy-button" /><br />
  2194. <table cellspacing="0" border="0" style="width: 100%;">
  2195. <tr>
  2196. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2197. 最低:
  2198. </td>
  2199. <td style="padding-left: 2px; text-align: left;">
  2200. 1
  2201. </td>
  2202. </tr>
  2203. <tr>
  2204. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2205. 多个:
  2206. </td>
  2207. <td style="padding-left: 2px; text-align: left;">
  2208. 1
  2209. </td>
  2210. </tr>
  2211. </table>
  2212. </div>
  2213. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  2214. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2215. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=8Bo7WOUs0Cjxuob2mK%2ffLQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=8Bo7WOUs0Cjxuob2mK%2ffLQ%3d%3d" target="_blank">详细信息</a>
  2216. </div>
  2217. </td><td>Ethernet Transceivers
  2218. </td><td>10.3125 Gb/s
  2219. </td><td>1 V, 1.5 V/1.8 V
  2220. </td><td>+ 85 C
  2221. </td><td>
  2222. </td><td>
  2223. </td>
  2224. </tr><tr class="SearchResultsRowOdd" data-partnumber="998-KSZ8081MNXCA" data-index="5">
  2225. <td class="td-select" align="center">
  2226. <div style="padding: 5px 5px 0 5px;">
  2227. <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>
  2228. </div>
  2229. </td><td><a href='/ProductDetail/Microchip-Technology-Micrel/KSZ8081MNXCA/?qs=sGAEpiMZZMsjXX4loUgemuWqGr1hiB4Lr6lriPaLiECxQTu%252bzduqMA%3d%3d'><img title='Microchip Technology / Micrel KSZ8081MNXCA' alt='Microchip Technology / Micrel KSZ8081MNXCA' id=1507045330 src='/images/mouserimages/sm/QFN_32_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/QFN_32_t.jpg</div></a></td><td>
  2230. <div style="text-align:left;">
  2231. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ8081MNXCA/?qs=sGAEpiMZZMsjXX4loUgemuWqGr1hiB4Lr6lriPaLiECxQTu%252bzduqMA%3d%3d">998-KSZ8081MNXCA</a><br />
  2232. <br />
  2233. <br />
  2234. </div></td><td>
  2235. <div class="mfrDiv">
  2236. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ8081MNXCA/?qs=sGAEpiMZZMsjXX4loUgemuWqGr1hiB4Lr6lriPaLiECxQTu%252bzduqMA%3d%3d">KSZ8081MNXCA</a><br />
  2237. <br />
  2238. <div style="width: 100%; text-align: center;">
  2239. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2240. </div>
  2241. <div style="width: 100%; text-align: center;">
  2242. </div>
  2243. </div>
  2244. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../Micrel-Semiconductor">Microchip Technology / Micrel</a>
  2245. </td><td>以太网 IC 10/100 PHY, 0.11u
  2246. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2247. </div>
  2248. </td><td>
  2249. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">172<br/>有库存</span>
  2250. <table>
  2251. <tr align="center">
  2252. <td style="padding-top: 5px">
  2253. </td>
  2254. </tr>
  2255. <tr align="center">
  2256. <td style="padding-top: 5px; padding-bottom: 5px">
  2257. </td>
  2258. </tr>
  2259. </table></td><td>
  2260. <table class="PriceBreaks" cellspacing="0" border="0">
  2261. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2262. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2263. </td>
  2264. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2265. </td>
  2266. </tr>
  2267. <tr>
  2268. <td class="PriceBreakQuantity">
  2269. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  2270. </td>
  2271. <td class="PriceBreakPrice">
  2272. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥10.0854</span>
  2273. </td>
  2274. </tr>
  2275. <tr>
  2276. <td class="PriceBreakQuantity">
  2277. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  2278. </td>
  2279. <td class="PriceBreakPrice">
  2280. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥8.3889</span>
  2281. </td>
  2282. </tr>
  2283. <tr>
  2284. <td class="PriceBreakQuantity">
  2285. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  2286. </td>
  2287. <td class="PriceBreakPrice">
  2288. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥7.0083</span>
  2289. </td>
  2290. </tr>
  2291. <tr>
  2292. <td class="PriceBreakQuantity">
  2293. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  2294. </td>
  2295. <td class="PriceBreakPrice">
  2296. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥6.7743</span>
  2297. </td>
  2298. </tr>
  2299. <tr>
  2300. <td><br /></td>
  2301. </tr>
  2302. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2303. <td colspan="2" style="text-align: center;">
  2304. </td>
  2305. </tr>
  2306. </table>
  2307. </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;)">
  2308. <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 />
  2309. <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="购买 KSZ8081MNXCA" class="buy-button" /><br />
  2310. <table cellspacing="0" border="0" style="width: 100%;">
  2311. <tr>
  2312. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2313. 最低:
  2314. </td>
  2315. <td style="padding-left: 2px; text-align: left;">
  2316. 1
  2317. </td>
  2318. </tr>
  2319. <tr>
  2320. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2321. 多个:
  2322. </td>
  2323. <td style="padding-left: 2px; text-align: left;">
  2324. 1
  2325. </td>
  2326. </tr>
  2327. </table>
  2328. </div>
  2329. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2330. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2331. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=8HExzSQEebI6lE2iUzqrjg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=8HExzSQEebI6lE2iUzqrjg%3d%3d" target="_blank">详细信息</a>
  2332. </div>
  2333. </td><td>
  2334. </td><td>
  2335. </td><td>
  2336. </td><td>
  2337. </td><td>
  2338. </td><td>
  2339. </td>
  2340. </tr><tr class="SearchResultsRowEven" data-partnumber="692-Z8523016VEG" data-index="6">
  2341. <td class="td-select" align="center">
  2342. <div style="padding: 5px 5px 0 5px;">
  2343. <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>
  2344. </div>
  2345. </td><td></td><td>
  2346. <div style="text-align:left;">
  2347. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/ZiLOG/Z8523016VEG/?qs=sGAEpiMZZMsjXX4loUgemlmnvjVXxR%2f1qEoLxsoCXfk%3d">692-Z8523016VEG</a><br />
  2348. <br />
  2349. <br />
  2350. </div></td><td>
  2351. <div class="mfrDiv">
  2352. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/ZiLOG/Z8523016VEG/?qs=sGAEpiMZZMsjXX4loUgemlmnvjVXxR%2f1qEoLxsoCXfk%3d">Z8523016VEG</a><br />
  2353. <br />
  2354. <div style="width: 100%; text-align: center;">
  2355. </div>
  2356. <div style="width: 100%; text-align: center;">
  2357. </div>
  2358. </div>
  2359. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../zilog">ZiLOG</a>
  2360. </td><td>网络控制器与处理器 IC 16MHz ESCC XTEMP
  2361. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2362. </div>
  2363. </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;ZiLOG&quot;,&quot;692-Z8523016VEG | Z8523016VEG&quot;]);" href="http://www.mouser.com/ds/2/450/ps0053-29868.pdf" target="_blank">数据表</a>
  2364. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">2,027<br/>有库存</span>
  2365. <table>
  2366. <tr align="center">
  2367. <td style="padding-top: 5px">
  2368. </td>
  2369. </tr>
  2370. <tr align="center">
  2371. <td style="padding-top: 5px; padding-bottom: 5px">
  2372. </td>
  2373. </tr>
  2374. </table></td><td>
  2375. <table class="PriceBreaks" cellspacing="0" border="0">
  2376. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2377. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2378. </td>
  2379. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2380. </td>
  2381. </tr>
  2382. <tr>
  2383. <td class="PriceBreakQuantity">
  2384. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  2385. </td>
  2386. <td class="PriceBreakPrice">
  2387. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥234.4212</span>
  2388. </td>
  2389. </tr>
  2390. <tr>
  2391. <td class="PriceBreakQuantity">
  2392. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,25);">25:</a>
  2393. </td>
  2394. <td class="PriceBreakPrice">
  2395. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥200.9124</span>
  2396. </td>
  2397. </tr>
  2398. <tr>
  2399. <td class="PriceBreakQuantity">
  2400. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,100);">100:</a>
  2401. </td>
  2402. <td class="PriceBreakPrice">
  2403. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥167.4153</span>
  2404. </td>
  2405. </tr>
  2406. <tr>
  2407. <td><br /></td>
  2408. </tr>
  2409. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  2410. <td colspan="2" style="text-align: center;">
  2411. </td>
  2412. </tr>
  2413. </table>
  2414. </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;)">
  2415. <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 />
  2416. <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="购买 Z8523016VEG" class="buy-button" /><br />
  2417. <table cellspacing="0" border="0" style="width: 100%;">
  2418. <tr>
  2419. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2420. 最低:
  2421. </td>
  2422. <td style="padding-left: 2px; text-align: left;">
  2423. 1
  2424. </td>
  2425. </tr>
  2426. <tr>
  2427. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2428. 多个:
  2429. </td>
  2430. <td style="padding-left: 2px; text-align: left;">
  2431. 1
  2432. </td>
  2433. </tr>
  2434. </table>
  2435. </div>
  2436. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  2437. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2438. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=83Dnz8KfuU3QqhgHH2d4eQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=83Dnz8KfuU3QqhgHH2d4eQ%3d%3d" target="_blank">详细信息</a>
  2439. </div>
  2440. </td><td>Communication Controllers
  2441. </td><td>-
  2442. </td><td>5 V
  2443. </td><td>+ 100 C
  2444. </td><td>SMD/SMT
  2445. </td><td>PLCC-44
  2446. </td>
  2447. </tr><tr class="SearchResultsRowOdd" data-partnumber="886-LAN8710AI-EZK-TR" data-index="7">
  2448. <td class="td-select" align="center">
  2449. <div style="padding: 5px 5px 0 5px;">
  2450. <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>
  2451. </div>
  2452. </td><td><a href='/ProductDetail/Microchip-Technology/LAN8710AI-EZK-TR/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkaJU17lx5OX0%3d'><img title='Microchip Technology LAN8710AI-EZK-TR' alt='Microchip Technology LAN8710AI-EZK-TR' id=887493612 src='/images/mouserimages/sm/QFN_32_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/QFN_32_EP_t.jpg</div></a></td><td>
  2453. <div style="text-align:left;">
  2454. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology/LAN8710AI-EZK-TR/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkaJU17lx5OX0%3d">886-LAN8710AI-EZK-TR</a><br />
  2455. <br />
  2456. <br />
  2457. 要购买完整 卷轴,请订购 5000 的倍数:
  2458. </div></td><td>
  2459. <div class="mfrDiv">
  2460. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology/LAN8710AI-EZK-TR/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkaJU17lx5OX0%3d">LAN8710AI-EZK-TR</a><br />
  2461. <br />
  2462. <div style="width: 100%; text-align: center;">
  2463. </div>
  2464. <div style="width: 100%; text-align: center;">
  2465. </div>
  2466. </div>
  2467. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../microchip">Microchip Technology</a>
  2468. </td><td>以太网 IC 10/100 Ethernet XCVR w/HPAutoMDIX INDTEMP
  2469. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2470. </div>
  2471. </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;Microchip Technology&quot;,&quot;886-LAN8710AI-EZK-TR | LAN8710AI-EZK-TR&quot;]);" href="http://www.mouser.com/ds/2/268/8710a-320908.pdf" target="_blank">数据表</a>
  2472. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">14,885<br/>有库存</span>
  2473. <table>
  2474. <tr align="center">
  2475. <td style="padding-top: 5px">
  2476. </td>
  2477. </tr>
  2478. <tr align="center">
  2479. <td style="padding-top: 5px; padding-bottom: 5px">
  2480. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAlternativePackaging" title="备用包装 | 886-LAN8710AI-EZK-TR" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQtQrTQ6Y1BiNwS6rrkRrOly%252bV6P2F%252biK%252biDzCbAcI1nw5d7GW0VielpC18BMHWMgOQEp9xcpdKHwx2InDuEVaYAikSnm04%2f7k%2fnu7dh7%252bSwNVs0AkRyt0rA2jU4zNFMuhklLg02uHFRg%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2481. </td>
  2482. </tr>
  2483. </table></td><td>
  2484. <table class="PriceBreaks" cellspacing="0" border="0">
  2485. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2486. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2487. </td>
  2488. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2489. </td>
  2490. </tr>
  2491. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2492. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2493. 剪切带
  2494. </td>
  2495. </tr>
  2496. <tr>
  2497. <td class="PriceBreakQuantity">
  2498. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  2499. </td>
  2500. <td class="PriceBreakPrice">
  2501. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥12.168</span>
  2502. </td>
  2503. </tr>
  2504. <tr>
  2505. <td class="PriceBreakQuantity">
  2506. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  2507. </td>
  2508. <td class="PriceBreakPrice">
  2509. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.5534</span>
  2510. </td>
  2511. </tr>
  2512. <tr>
  2513. <td class="PriceBreakQuantity">
  2514. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
  2515. </td>
  2516. <td class="PriceBreakPrice">
  2517. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  2518. </td>
  2519. </tr>
  2520. <tr>
  2521. <td class="PriceBreakQuantity">
  2522. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,100);">100:</a>
  2523. </td>
  2524. <td class="PriceBreakPrice">
  2525. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥8.0145</span>
  2526. </td>
  2527. </tr>
  2528. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2529. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2530. 卷轴
  2531. </td>
  2532. </tr>
  2533. <tr>
  2534. <td class="PriceBreakQuantity">
  2535. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(5,5000);">5,000:</a>
  2536. </td>
  2537. <td class="PriceBreakPrice">
  2538. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥8.0145</span>
  2539. </td>
  2540. </tr>
  2541. <tr>
  2542. <td><br /></td>
  2543. </tr>
  2544. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2545. <td colspan="2" style="text-align: center;">
  2546. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Microchip-Technology/LAN8710AI-EZK-TR/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkaJU17lx5OX0%3d">MouseReel 提供服务支持</a>
  2547. </td>
  2548. </tr>
  2549. </table>
  2550. </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;)">
  2551. <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 />
  2552. <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="购买 LAN8710AI-EZK-TR" class="buy-button" /><br />
  2553. <table cellspacing="0" border="0" style="width: 100%;">
  2554. <tr>
  2555. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2556. 最低:
  2557. </td>
  2558. <td style="padding-left: 2px; text-align: left;">
  2559. 1
  2560. </td>
  2561. </tr>
  2562. <tr>
  2563. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2564. 多个:
  2565. </td>
  2566. <td style="padding-left: 2px; text-align: left;">
  2567. 1
  2568. </td>
  2569. </tr>
  2570. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_trReel">
  2571. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2572. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(5,5000);">卷轴</a>:
  2573. </td>
  2574. <td style="padding-left: 2px; text-align: left;">
  2575. <em class="SearchResultsReel">
  2576. 5,000
  2577. </em>
  2578. </td>
  2579. </tr>
  2580. </table>
  2581. </div>
  2582. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2583. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2584. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=IXGb3aE8r6MK3sNAhKw3SA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=IXGb3aE8r6MK3sNAhKw3SA%3d%3d" target="_blank">详细信息</a>
  2585. </div>
  2586. </td><td>Ethernet Transceivers
  2587. </td><td>10 Mb/s, 100 Mb/s
  2588. </td><td>3.3 V
  2589. </td><td>+ 85 C
  2590. </td><td>SMD/SMT
  2591. </td><td>QFN-32
  2592. </td>
  2593. </tr><tr class="SearchResultsRowEven" data-partnumber="998-KSZ8081MNXIATR" data-index="8">
  2594. <td class="td-select" align="center">
  2595. <div style="padding: 5px 5px 0 5px;">
  2596. <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>
  2597. </div>
  2598. </td><td><a href='/ProductDetail/Microchip-Technology-Micrel/KSZ8081MNXIA-TR/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPX3H10x6AtpS8SDtSW6YzUg%3d%3d'><img title='Microchip Technology / Micrel KSZ8081MNXIA-TR' alt='Microchip Technology / Micrel KSZ8081MNXIA-TR' id=1630050948 src='/images/mouserimages/sm/QFN_32_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/QFN_32_EP_t.jpg</div></a></td><td>
  2599. <div style="text-align:left;">
  2600. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ8081MNXIA-TR/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPX3H10x6AtpS8SDtSW6YzUg%3d%3d">998-KSZ8081MNXIATR</a><br />
  2601. <br />
  2602. <br />
  2603. 要购买完整 卷轴,请订购 1000 的倍数:
  2604. </div></td><td>
  2605. <div class="mfrDiv">
  2606. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ8081MNXIA-TR/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPX3H10x6AtpS8SDtSW6YzUg%3d%3d">KSZ8081MNXIA-TR</a><br />
  2607. <br />
  2608. <div style="width: 100%; text-align: center;">
  2609. </div>
  2610. <div style="width: 100%; text-align: center;">
  2611. </div>
  2612. </div>
  2613. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../Micrel-Semiconductor">Microchip Technology / Micrel</a>
  2614. </td><td>以太网 IC
  2615. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2616. </div>
  2617. </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;Microchip Technology / Micrel&quot;,&quot;998-KSZ8081MNXIATR | KSZ8081MNXIA-TR&quot;]);" href="http://www.mouser.com/ds/2/268/KSZ8081MNX-RNB-778068.pdf" target="_blank">数据表</a>
  2618. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">12,080<br/>有库存</span>
  2619. <table>
  2620. <tr align="center">
  2621. <td style="padding-top: 5px">
  2622. </td>
  2623. </tr>
  2624. <tr align="center">
  2625. <td style="padding-top: 5px; padding-bottom: 5px">
  2626. </td>
  2627. </tr>
  2628. </table></td><td>
  2629. <table class="PriceBreaks" cellspacing="0" border="0">
  2630. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2631. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2632. </td>
  2633. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2634. </td>
  2635. </tr>
  2636. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2637. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2638. 剪切带
  2639. </td>
  2640. </tr>
  2641. <tr>
  2642. <td class="PriceBreakQuantity">
  2643. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  2644. </td>
  2645. <td class="PriceBreakPrice">
  2646. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥12.7062</span>
  2647. </td>
  2648. </tr>
  2649. <tr>
  2650. <td class="PriceBreakQuantity">
  2651. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  2652. </td>
  2653. <td class="PriceBreakPrice">
  2654. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥10.5534</span>
  2655. </td>
  2656. </tr>
  2657. <tr>
  2658. <td class="PriceBreakQuantity">
  2659. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  2660. </td>
  2661. <td class="PriceBreakPrice">
  2662. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.775</span>
  2663. </td>
  2664. </tr>
  2665. <tr>
  2666. <td class="PriceBreakQuantity">
  2667. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  2668. </td>
  2669. <td class="PriceBreakPrice">
  2670. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥8.4708</span>
  2671. </td>
  2672. </tr>
  2673. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2674. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2675. 卷轴
  2676. </td>
  2677. </tr>
  2678. <tr>
  2679. <td class="PriceBreakQuantity">
  2680. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(6,1000);">1,000:</a>
  2681. </td>
  2682. <td class="PriceBreakPrice">
  2683. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥8.4708</span>
  2684. </td>
  2685. </tr>
  2686. <tr>
  2687. <td><br /></td>
  2688. </tr>
  2689. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2690. <td colspan="2" style="text-align: center;">
  2691. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ8081MNXIA-TR/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPX3H10x6AtpS8SDtSW6YzUg%3d%3d">MouseReel 提供服务支持</a>
  2692. </td>
  2693. </tr>
  2694. </table>
  2695. </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;)">
  2696. <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 />
  2697. <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="购买 KSZ8081MNXIA-TR" class="buy-button" /><br />
  2698. <table cellspacing="0" border="0" style="width: 100%;">
  2699. <tr>
  2700. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2701. 最低:
  2702. </td>
  2703. <td style="padding-left: 2px; text-align: left;">
  2704. 1
  2705. </td>
  2706. </tr>
  2707. <tr>
  2708. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2709. 多个:
  2710. </td>
  2711. <td style="padding-left: 2px; text-align: left;">
  2712. 1
  2713. </td>
  2714. </tr>
  2715. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_trReel">
  2716. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2717. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(6,1000);">卷轴</a>:
  2718. </td>
  2719. <td style="padding-left: 2px; text-align: left;">
  2720. <em class="SearchResultsReel">
  2721. 1,000
  2722. </em>
  2723. </td>
  2724. </tr>
  2725. </table>
  2726. </div>
  2727. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2728. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2729. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uy1ixzB9yOWg5daJUYOehA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=uy1ixzB9yOWg5daJUYOehA%3d%3d" target="_blank">详细信息</a>
  2730. </div>
  2731. </td><td>Ethernet Transceivers
  2732. </td><td>100 Mb/s
  2733. </td><td>1.2 V, 3.3 V
  2734. </td><td>+ 85 C
  2735. </td><td>SMD/SMT
  2736. </td><td>QFN-32
  2737. </td>
  2738. </tr><tr class="SearchResultsRowOdd" data-partnumber="926-DP83848IVV/NOPB" data-index="9">
  2739. <td class="td-select" align="center">
  2740. <div style="padding: 5px 5px 0 5px;">
  2741. <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>
  2742. </div>
  2743. </td><td><a href='/ProductDetail/Texas-Instruments/DP83848IVV-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbgfDxsgBTWW7s%3d'><img title='Texas Instruments DP83848IVV/NOPB' alt='Texas Instruments DP83848IVV/NOPB' id=584578613 src='/images/texasinstruments/sm/TI_LQFP_48.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_LQFP_48.jpg</div></a></td><td>
  2744. <div style="text-align:left;">
  2745. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/DP83848IVV-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbgfDxsgBTWW7s%3d">926-DP83848IVV/NOPB</a><br />
  2746. <br />
  2747. <br />
  2748. </div></td><td>
  2749. <div class="mfrDiv">
  2750. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DP83848IVV-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbgfDxsgBTWW7s%3d">DP83848IVV/NOPB</a><br />
  2751. <br />
  2752. <div style="width: 100%; text-align: center;">
  2753. </div>
  2754. <div style="width: 100%; text-align: center;">
  2755. </div>
  2756. </div>
  2757. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2758. </td><td>以太网 IC PHYTER Industrial Temp SGL Port
  2759. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2760. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../nationalphyter/">了解更多</a>
  2761. </div>
  2762. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2763. </div>
  2764. </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;Texas Instruments&quot;,&quot;926-DP83848IVV/NOPB | DP83848IVV/NOPB&quot;]);" href="http://www.mouser.com/ds/2/405/dp83848i-441505.pdf" target="_blank">数据表<br /><br /></a>
  2765. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-1011-12&#39;);return false;" rel="nofollow" href="../../../../../Cart/AdditionalProductInfo.aspx?part=5-1011-12" target="_blank">产品信息</a>
  2766. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">5,178<br/>有库存</span>
  2767. <table>
  2768. <tr align="center">
  2769. <td style="padding-top: 5px">
  2770. </td>
  2771. </tr>
  2772. <tr align="center">
  2773. <td style="padding-top: 5px; padding-bottom: 5px">
  2774. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAlternativePackaging" title="备用包装 | 926-DP83848IVV/NOPB" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQuq4LqNQttk%252b%2fS2bMDJ%252b%252bkIjFX%2fTBLYfQbIIDPwtStfPiGmMjZQGh2qhqNGlmHAPKuS4RaigTESzG2mvIEWlIlEemgkf6eVt3OlodmgHZBvOYBnbf2xsAGzA%2fIS3TiZf%2fzQqDPqukqsw%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2775. </td>
  2776. </tr>
  2777. </table></td><td>
  2778. <table class="PriceBreaks" cellspacing="0" border="0">
  2779. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2780. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2781. </td>
  2782. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2783. </td>
  2784. </tr>
  2785. <tr>
  2786. <td class="PriceBreakQuantity">
  2787. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  2788. </td>
  2789. <td class="PriceBreakPrice">
  2790. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥40.3533</span>
  2791. </td>
  2792. </tr>
  2793. <tr>
  2794. <td class="PriceBreakQuantity">
  2795. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  2796. </td>
  2797. <td class="PriceBreakPrice">
  2798. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥36.27</span>
  2799. </td>
  2800. </tr>
  2801. <tr>
  2802. <td class="PriceBreakQuantity">
  2803. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,25);">25:</a>
  2804. </td>
  2805. <td class="PriceBreakPrice">
  2806. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥33.8013</span>
  2807. </td>
  2808. </tr>
  2809. <tr>
  2810. <td class="PriceBreakQuantity">
  2811. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,50);">50:</a>
  2812. </td>
  2813. <td class="PriceBreakPrice">
  2814. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥31.9644</span>
  2815. </td>
  2816. </tr>
  2817. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2818. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2819. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  2820. </td>
  2821. <td class="PriceBreakPrice">
  2822. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/DP83848IVV-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbgfDxsgBTWW7s%3d">查看</a>
  2823. </td>
  2824. </tr>
  2825. <tr>
  2826. <td><br /></td>
  2827. </tr>
  2828. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2829. <td colspan="2" style="text-align: center;">
  2830. </td>
  2831. </tr>
  2832. </table>
  2833. </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;)">
  2834. <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 />
  2835. <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="购买 DP83848IVV/NOPB" class="buy-button" /><br />
  2836. <table cellspacing="0" border="0" style="width: 100%;">
  2837. <tr>
  2838. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2839. 最低:
  2840. </td>
  2841. <td style="padding-left: 2px; text-align: left;">
  2842. 1
  2843. </td>
  2844. </tr>
  2845. <tr>
  2846. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2847. 多个:
  2848. </td>
  2849. <td style="padding-left: 2px; text-align: left;">
  2850. 1
  2851. </td>
  2852. </tr>
  2853. </table>
  2854. </div>
  2855. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  2856. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2857. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=jGxFL1oUpM%2fXxNbpPeZNuw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=jGxFL1oUpM%2fXxNbpPeZNuw%3d%3d" target="_blank">详细信息</a>
  2858. </div>
  2859. </td><td>Ethernet Transceivers
  2860. </td><td>10 Mb/s, 100 Mb/s
  2861. </td><td>3.3 V
  2862. </td><td>+ 85 C
  2863. </td><td>SMD/SMT
  2864. </td><td>LQFP-48
  2865. </td>
  2866. </tr><tr class="SearchResultsRowEven" data-partnumber="886-LAN9500AI-ABZJ" data-index="10">
  2867. <td class="td-select" align="center">
  2868. <div style="padding: 5px 5px 0 5px;">
  2869. <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>
  2870. </div>
  2871. </td><td><a href='/ProductDetail/Microchip-Technology/LAN9500AI-ABZJ/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkLOw54Nqlgd0%3d'><img title='Microchip Technology LAN9500AI-ABZJ' alt='Microchip Technology LAN9500AI-ABZJ' id=887493718 src='/images/mouserimages/sm/QFN_56_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/QFN_56_EP_t.jpg</div></a></td><td>
  2872. <div style="text-align:left;">
  2873. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology/LAN9500AI-ABZJ/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkLOw54Nqlgd0%3d">886-LAN9500AI-ABZJ</a><br />
  2874. <br />
  2875. <br />
  2876. </div></td><td>
  2877. <div class="mfrDiv">
  2878. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology/LAN9500AI-ABZJ/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkLOw54Nqlgd0%3d">LAN9500AI-ABZJ</a><br />
  2879. <br />
  2880. <div style="width: 100%; text-align: center;">
  2881. </div>
  2882. <div style="width: 100%; text-align: center;">
  2883. </div>
  2884. </div>
  2885. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../microchip">Microchip Technology</a>
  2886. </td><td>以太网 IC Hi-Speed USB 2.0 10/100 Ethernet CTRL
  2887. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2888. </div>
  2889. </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;Microchip Technology&quot;,&quot;886-LAN9500AI-ABZJ | LAN9500AI-ABZJ&quot;]);" href="http://www.mouser.com/ds/2/268/9500-467962.pdf" target="_blank">数据表</a>
  2890. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">7,459<br/>有库存</span>
  2891. <table>
  2892. <tr align="center">
  2893. <td style="padding-top: 5px">
  2894. </td>
  2895. </tr>
  2896. <tr align="center">
  2897. <td style="padding-top: 5px; padding-bottom: 5px">
  2898. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAlternativePackaging" title="备用包装 | 886-LAN9500AI-ABZJ" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQtQrTQ6Y1BiJ9tpYs4L1iaygF64cglNBq8Y9AQ5e6V57NVd%252bBx0KK%252buovb2qjW%2fd3Ox2qaVyi09htG9OxnFIETLyQJL0KMnQXRcH7kSmxUwMU0xCzWBsfEqLR%2fTPXHvhK8WoHPPUiyMw%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2899. </td>
  2900. </tr>
  2901. </table></td><td>
  2902. <table class="PriceBreaks" cellspacing="0" border="0">
  2903. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2904. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2905. </td>
  2906. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2907. </td>
  2908. </tr>
  2909. <tr>
  2910. <td class="PriceBreakQuantity">
  2911. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  2912. </td>
  2913. <td class="PriceBreakPrice">
  2914. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥47.2797</span>
  2915. </td>
  2916. </tr>
  2917. <tr>
  2918. <td class="PriceBreakQuantity">
  2919. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,10);">10:</a>
  2920. </td>
  2921. <td class="PriceBreakPrice">
  2922. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥40.6575</span>
  2923. </td>
  2924. </tr>
  2925. <tr>
  2926. <td class="PriceBreakQuantity">
  2927. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,25);">25:</a>
  2928. </td>
  2929. <td class="PriceBreakPrice">
  2930. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥33.8832</span>
  2931. </td>
  2932. </tr>
  2933. <tr>
  2934. <td class="PriceBreakQuantity">
  2935. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,100);">100:</a>
  2936. </td>
  2937. <td class="PriceBreakPrice">
  2938. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥30.8061</span>
  2939. </td>
  2940. </tr>
  2941. <tr>
  2942. <td><br /></td>
  2943. </tr>
  2944. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2945. <td colspan="2" style="text-align: center;">
  2946. </td>
  2947. </tr>
  2948. </table>
  2949. </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;)">
  2950. <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 />
  2951. <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="购买 LAN9500AI-ABZJ" class="buy-button" /><br />
  2952. <table cellspacing="0" border="0" style="width: 100%;">
  2953. <tr>
  2954. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2955. 最低:
  2956. </td>
  2957. <td style="padding-left: 2px; text-align: left;">
  2958. 1
  2959. </td>
  2960. </tr>
  2961. <tr>
  2962. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2963. 多个:
  2964. </td>
  2965. <td style="padding-left: 2px; text-align: left;">
  2966. 1
  2967. </td>
  2968. </tr>
  2969. </table>
  2970. </div>
  2971. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  2972. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2973. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=IXGb3aE8r6OvgsXjj%2fO5mg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=IXGb3aE8r6OvgsXjj%2fO5mg%3d%3d" target="_blank">详细信息</a>
  2974. </div>
  2975. </td><td>Ethernet Controllers
  2976. </td><td>10 Mb/s, 100 Mb/s
  2977. </td><td>3.3 V
  2978. </td><td>+ 85 C
  2979. </td><td>SMD/SMT
  2980. </td><td>QFN-56
  2981. </td>
  2982. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-WGI210ITSLJXT" data-index="11">
  2983. <td class="td-select" align="center">
  2984. <div style="padding: 5px 5px 0 5px;">
  2985. <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>
  2986. </div>
  2987. </td><td><a href='/ProductDetail/Intel/WGI210IT-S-LJXT/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2gFehVhlImuGM%3d'><img title='Intel WGI210IT S LJXT' alt='Intel WGI210IT S LJXT' id=959860355 src='/images/mouserimages/sm/QFN_64_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/QFN_64_EP_t.jpg</div></a></td><td>
  2988. <div style="text-align:left;">
  2989. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Intel/WGI210IT-S-LJXT/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2gFehVhlImuGM%3d">607-WGI210ITSLJXT</a><br />
  2990. <br />
  2991. <br />
  2992. </div></td><td>
  2993. <div class="mfrDiv">
  2994. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Intel/WGI210IT-S-LJXT/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2gFehVhlImuGM%3d">WGI210IT S LJXT</a><br />
  2995. <br />
  2996. <div style="width: 100%; text-align: center;">
  2997. </div>
  2998. <div style="width: 100%; text-align: center;">
  2999. </div>
  3000. </div>
  3001. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../Intel">Intel</a>
  3002. </td><td>以太网 IC Controller IEEE 10/ 100/1000 Mbps QFN64
  3003. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3004. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/Intel/intel-wgi21x-controller/">了解更多</a>
  3005. </div>
  3006. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3007. </div>
  3008. </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;Intel&quot;,&quot;607-WGI210ITSLJXT | WGI210IT S LJXT&quot;]);" href="http://www.mouser.com/ds/2/612/i210-ethernet-controller-datasheet-257785.pdf" target="_blank">数据表<br /><br /></a>
  3009. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-0514-31&#39;);return false;" rel="nofollow" href="../../../../../Cart/AdditionalProductInfo.aspx?part=5-0514-31" target="_blank">产品信息</a>
  3010. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">4,657<br/>有库存</span>
  3011. <table>
  3012. <tr align="center">
  3013. <td style="padding-top: 5px">
  3014. </td>
  3015. </tr>
  3016. <tr align="center">
  3017. <td style="padding-top: 5px; padding-bottom: 5px">
  3018. </td>
  3019. </tr>
  3020. </table></td><td>
  3021. <table class="PriceBreaks" cellspacing="0" border="0">
  3022. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3023. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3024. </td>
  3025. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3026. </td>
  3027. </tr>
  3028. <tr>
  3029. <td class="PriceBreakQuantity">
  3030. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  3031. </td>
  3032. <td class="PriceBreakPrice">
  3033. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥49.5144</span>
  3034. </td>
  3035. </tr>
  3036. <tr>
  3037. <td class="PriceBreakQuantity">
  3038. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  3039. </td>
  3040. <td class="PriceBreakPrice">
  3041. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥47.2095</span>
  3042. </td>
  3043. </tr>
  3044. <tr>
  3045. <td class="PriceBreakQuantity">
  3046. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,50);">50:</a>
  3047. </td>
  3048. <td class="PriceBreakPrice">
  3049. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥45.1269</span>
  3050. </td>
  3051. </tr>
  3052. <tr>
  3053. <td class="PriceBreakQuantity">
  3054. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,100);">100:</a>
  3055. </td>
  3056. <td class="PriceBreakPrice">
  3057. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥43.2783</span>
  3058. </td>
  3059. </tr>
  3060. <tr>
  3061. <td class="PriceBreakQuantity">
  3062. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(9,200);">200:</a>
  3063. </td>
  3064. <td class="PriceBreakPrice">
  3065. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥41.5116</span>
  3066. </td>
  3067. </tr>
  3068. <tr>
  3069. <td><br /></td>
  3070. </tr>
  3071. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3072. <td colspan="2" style="text-align: center;">
  3073. </td>
  3074. </tr>
  3075. </table>
  3076. </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;)">
  3077. <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 />
  3078. <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="购买 WGI210IT S LJXT" class="buy-button" /><br />
  3079. <table cellspacing="0" border="0" style="width: 100%;">
  3080. <tr>
  3081. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3082. 最低:
  3083. </td>
  3084. <td style="padding-left: 2px; text-align: left;">
  3085. 1
  3086. </td>
  3087. </tr>
  3088. <tr>
  3089. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3090. 多个:
  3091. </td>
  3092. <td style="padding-left: 2px; text-align: left;">
  3093. 1
  3094. </td>
  3095. </tr>
  3096. </table>
  3097. </div>
  3098. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  3099. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3100. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=NHXthhWObd6gXAO1SJ5deQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=NHXthhWObd6gXAO1SJ5deQ%3d%3d" target="_blank">详细信息</a>
  3101. </div>
  3102. </td><td>Ethernet Controllers
  3103. </td><td>10 Mb/s, 100 Mb/s, 1000 Mb/s
  3104. </td><td>3.3 V
  3105. </td><td>+ 85 C
  3106. </td><td>SMD/SMT
  3107. </td><td>QFN-64 EP
  3108. </td>
  3109. </tr><tr class="SearchResultsRowEven" data-partnumber="886-LAN9218I-MT" data-index="12">
  3110. <td class="td-select" align="center">
  3111. <div style="padding: 5px 5px 0 5px;">
  3112. <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>
  3113. </div>
  3114. </td><td><a href='/ProductDetail/Microchip-Technology/LAN9218I-MT/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkaS93Y6lmsAw%3d'><img title='Microchip Technology LAN9218I-MT' alt='Microchip Technology LAN9218I-MT' id=887493674 src='/images/mouserimages/sm/TQFP_100_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/TQFP_100_t.jpg</div></a></td><td>
  3115. <div style="text-align:left;">
  3116. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology/LAN9218I-MT/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkaS93Y6lmsAw%3d">886-LAN9218I-MT</a><br />
  3117. <br />
  3118. <br />
  3119. </div></td><td>
  3120. <div class="mfrDiv">
  3121. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology/LAN9218I-MT/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkaS93Y6lmsAw%3d">LAN9218I-MT</a><br />
  3122. <br />
  3123. <div style="width: 100%; text-align: center;">
  3124. </div>
  3125. <div style="width: 100%; text-align: center;">
  3126. </div>
  3127. </div>
  3128. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../microchip">Microchip Technology</a>
  3129. </td><td>以太网 IC Indust Hi Perfrm Single-Chip
  3130. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3131. </div>
  3132. </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;Microchip Technology&quot;,&quot;886-LAN9218I-MT | LAN9218I-MT&quot;]);" href="http://www.mouser.com/ds/2/268/9218i-468034.pdf" target="_blank">数据表</a>
  3133. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">1,126<br/>有库存</span>
  3134. <table>
  3135. <tr align="center">
  3136. <td style="padding-top: 5px">
  3137. </td>
  3138. </tr>
  3139. <tr align="center">
  3140. <td style="padding-top: 5px; padding-bottom: 5px">
  3141. </td>
  3142. </tr>
  3143. </table></td><td>
  3144. <table class="PriceBreaks" cellspacing="0" border="0">
  3145. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3146. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3147. </td>
  3148. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3149. </td>
  3150. </tr>
  3151. <tr>
  3152. <td class="PriceBreakQuantity">
  3153. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  3154. </td>
  3155. <td class="PriceBreakPrice">
  3156. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥204.8436</span>
  3157. </td>
  3158. </tr>
  3159. <tr>
  3160. <td class="PriceBreakQuantity">
  3161. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  3162. </td>
  3163. <td class="PriceBreakPrice">
  3164. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥176.4243</span>
  3165. </td>
  3166. </tr>
  3167. <tr>
  3168. <td class="PriceBreakQuantity">
  3169. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  3170. </td>
  3171. <td class="PriceBreakPrice">
  3172. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥147.0105</span>
  3173. </td>
  3174. </tr>
  3175. <tr>
  3176. <td class="PriceBreakQuantity">
  3177. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,100);">100:</a>
  3178. </td>
  3179. <td class="PriceBreakPrice">
  3180. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥133.614</span>
  3181. </td>
  3182. </tr>
  3183. <tr>
  3184. <td><br /></td>
  3185. </tr>
  3186. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3187. <td colspan="2" style="text-align: center;">
  3188. </td>
  3189. </tr>
  3190. </table>
  3191. </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;)">
  3192. <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 />
  3193. <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="购买 LAN9218I-MT" class="buy-button" /><br />
  3194. <table cellspacing="0" border="0" style="width: 100%;">
  3195. <tr>
  3196. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3197. 最低:
  3198. </td>
  3199. <td style="padding-left: 2px; text-align: left;">
  3200. 1
  3201. </td>
  3202. </tr>
  3203. <tr>
  3204. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3205. 多个:
  3206. </td>
  3207. <td style="padding-left: 2px; text-align: left;">
  3208. 1
  3209. </td>
  3210. </tr>
  3211. </table>
  3212. </div>
  3213. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  3214. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3215. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=IXGb3aE8r6NeSV%252b%252bYVEcGw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=IXGb3aE8r6NeSV%252b%252bYVEcGw%3d%3d" target="_blank">详细信息</a>
  3216. </div>
  3217. </td><td>Ethernet Controllers
  3218. </td><td>10 Mb/s, 100 Mb/s
  3219. </td><td>3.3 V
  3220. </td><td>+ 85 C
  3221. </td><td>SMD/SMT
  3222. </td><td>TQFP-100
  3223. </td>
  3224. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-WGI210ITSLJXS" data-index="13">
  3225. <td class="td-select" align="center">
  3226. <div style="padding: 5px 5px 0 5px;">
  3227. <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>
  3228. </div>
  3229. </td><td><a href='/ProductDetail/Intel/WGI210IT-S-LJXS/?qs=sGAEpiMZZMsjXX4loUgemrr%252bSldTt7CpuQbMNR%252b11Tw%3d'><img title='Intel WGI210IT S LJXS' alt='Intel WGI210IT S LJXS' id=994403392 src='/images/mouserimages/sm/QFN_64_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/QFN_64_EP_t.jpg</div></a></td><td>
  3230. <div style="text-align:left;">
  3231. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Intel/WGI210IT-S-LJXS/?qs=sGAEpiMZZMsjXX4loUgemrr%252bSldTt7CpuQbMNR%252b11Tw%3d">607-WGI210ITSLJXS</a><br />
  3232. <br />
  3233. <br />
  3234. 要购买完整 卷轴,请订购 2000 的倍数:
  3235. </div></td><td>
  3236. <div class="mfrDiv">
  3237. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Intel/WGI210IT-S-LJXS/?qs=sGAEpiMZZMsjXX4loUgemrr%252bSldTt7CpuQbMNR%252b11Tw%3d">WGI210IT S LJXS</a><br />
  3238. <br />
  3239. <div style="width: 100%; text-align: center;">
  3240. </div>
  3241. <div style="width: 100%; text-align: center;">
  3242. </div>
  3243. </div>
  3244. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../Intel">Intel</a>
  3245. </td><td>以太网 IC I210IT PQFN64
  3246. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3247. </div>
  3248. </td><td>
  3249. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-0514-31&#39;);return false;" rel="nofollow" href="../../../../../Cart/AdditionalProductInfo.aspx?part=5-0514-31" target="_blank">产品信息</a>
  3250. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">2,709<br/>有库存</span>
  3251. <table>
  3252. <tr align="center">
  3253. <td style="padding-top: 5px">
  3254. </td>
  3255. </tr>
  3256. <tr align="center">
  3257. <td style="padding-top: 5px; padding-bottom: 5px">
  3258. </td>
  3259. </tr>
  3260. </table></td><td>
  3261. <table class="PriceBreaks" cellspacing="0" border="0">
  3262. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3263. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3264. </td>
  3265. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3266. </td>
  3267. </tr>
  3268. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3269. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3270. 剪切带
  3271. </td>
  3272. </tr>
  3273. <tr>
  3274. <td class="PriceBreakQuantity">
  3275. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  3276. </td>
  3277. <td class="PriceBreakPrice">
  3278. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥49.5144</span>
  3279. </td>
  3280. </tr>
  3281. <tr>
  3282. <td class="PriceBreakQuantity">
  3283. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  3284. </td>
  3285. <td class="PriceBreakPrice">
  3286. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥47.2095</span>
  3287. </td>
  3288. </tr>
  3289. <tr>
  3290. <td class="PriceBreakQuantity">
  3291. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,50);">50:</a>
  3292. </td>
  3293. <td class="PriceBreakPrice">
  3294. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥45.1269</span>
  3295. </td>
  3296. </tr>
  3297. <tr>
  3298. <td class="PriceBreakQuantity">
  3299. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,100);">100:</a>
  3300. </td>
  3301. <td class="PriceBreakPrice">
  3302. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥43.2783</span>
  3303. </td>
  3304. </tr>
  3305. <tr>
  3306. <td class="PriceBreakQuantity">
  3307. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(11,200);">200:</a>
  3308. </td>
  3309. <td class="PriceBreakPrice">
  3310. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥41.5116</span>
  3311. </td>
  3312. </tr>
  3313. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl06_trReelHeader">
  3314. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3315. 卷轴
  3316. </td>
  3317. </tr>
  3318. <tr>
  3319. <td class="PriceBreakQuantity">
  3320. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(11,2000);">2,000:</a>
  3321. </td>
  3322. <td class="PriceBreakPrice">
  3323. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap">¥41.5116</span>
  3324. </td>
  3325. </tr>
  3326. <tr>
  3327. <td><br /></td>
  3328. </tr>
  3329. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3330. <td colspan="2" style="text-align: center;">
  3331. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Intel/WGI210IT-S-LJXS/?qs=sGAEpiMZZMsjXX4loUgemrr%252bSldTt7CpuQbMNR%252b11Tw%3d">MouseReel 提供服务支持</a>
  3332. </td>
  3333. </tr>
  3334. </table>
  3335. </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;)">
  3336. <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 />
  3337. <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="购买 WGI210IT S LJXS" class="buy-button" /><br />
  3338. <table cellspacing="0" border="0" style="width: 100%;">
  3339. <tr>
  3340. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3341. 最低:
  3342. </td>
  3343. <td style="padding-left: 2px; text-align: left;">
  3344. 1
  3345. </td>
  3346. </tr>
  3347. <tr>
  3348. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3349. 多个:
  3350. </td>
  3351. <td style="padding-left: 2px; text-align: left;">
  3352. 1
  3353. </td>
  3354. </tr>
  3355. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_trReel">
  3356. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3357. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(11,2000);">卷轴</a>:
  3358. </td>
  3359. <td style="padding-left: 2px; text-align: left;">
  3360. <em class="SearchResultsReel">
  3361. 2,000
  3362. </em>
  3363. </td>
  3364. </tr>
  3365. </table>
  3366. </div>
  3367. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  3368. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3369. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=eW0nOKmBxAE1hEvC2IyKgA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=eW0nOKmBxAE1hEvC2IyKgA%3d%3d" target="_blank">详细信息</a>
  3370. </div>
  3371. </td><td>Ethernet Controllers
  3372. </td><td>1 Gb/s
  3373. </td><td>
  3374. </td><td>+ 85 C
  3375. </td><td>SMD/SMT
  3376. </td><td>PQFN-64
  3377. </td>
  3378. </tr><tr class="SearchResultsRowEven" data-partnumber="401-BCM5482HA2KFBG" data-index="14">
  3379. <td class="td-select" align="center">
  3380. <div style="padding: 5px 5px 0 5px;">
  3381. <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>
  3382. </div>
  3383. </td><td><a href='/ProductDetail/Broadcom/BCM5482HA2KFBG/?qs=sGAEpiMZZMsjXX4loUgemp%252ba44A0epCk6EfC56EIBeYc%252bvAZnmjLww%3d%3d'><img title='Broadcom BCM5482HA2KFBG' alt='Broadcom BCM5482HA2KFBG' id=1206495929 src='/images/mouserimages/sm/BGA_121_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/BGA_121_t.jpg</div></a></td><td>
  3384. <div style="text-align:left;">
  3385. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Broadcom/BCM5482HA2KFBG/?qs=sGAEpiMZZMsjXX4loUgemp%252ba44A0epCk6EfC56EIBeYc%252bvAZnmjLww%3d%3d">401-BCM5482HA2KFBG</a><br />
  3386. <br />
  3387. <br />
  3388. </div></td><td>
  3389. <div class="mfrDiv">
  3390. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Broadcom/BCM5482HA2KFBG/?qs=sGAEpiMZZMsjXX4loUgemp%252ba44A0epCk6EfC56EIBeYc%252bvAZnmjLww%3d%3d">BCM5482HA2KFBG</a><br />
  3391. <br />
  3392. <div style="width: 100%; text-align: center;">
  3393. <span><img src="/images/icon-lc-new-at-mouser-sm.png" alt="Mouser 的新产品" /><br/>Mouser 的新产品</span><br/><br/>
  3394. </div>
  3395. <div style="width: 100%; text-align: center;">
  3396. </div>
  3397. </div>
  3398. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../broadcom">Broadcom</a>
  3399. </td><td>以太网 IC Dual PORT 10/100/1000BASE-T PH
  3400. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3401. </div>
  3402. </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;Broadcom&quot;,&quot;401-BCM5482HA2KFBG | BCM5482HA2KFBG&quot;]);" href="http://www.mouser.com/ds/2/678/5482-PB00-R-693247.pdf" target="_blank">数据表</a>
  3403. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">2,617<br/>有库存</span>
  3404. <table>
  3405. <tr align="center">
  3406. <td style="padding-top: 5px">
  3407. </td>
  3408. </tr>
  3409. <tr align="center">
  3410. <td style="padding-top: 5px; padding-bottom: 5px">
  3411. </td>
  3412. </tr>
  3413. </table></td><td>
  3414. <table class="PriceBreaks" cellspacing="0" border="0">
  3415. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3416. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3417. </td>
  3418. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3419. </td>
  3420. </tr>
  3421. <tr>
  3422. <td class="PriceBreakQuantity">
  3423. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  3424. </td>
  3425. <td class="PriceBreakPrice">
  3426. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥89.7975</span>
  3427. </td>
  3428. </tr>
  3429. <tr>
  3430. <td class="PriceBreakQuantity">
  3431. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  3432. </td>
  3433. <td class="PriceBreakPrice">
  3434. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥85.0941</span>
  3435. </td>
  3436. </tr>
  3437. <tr>
  3438. <td class="PriceBreakQuantity">
  3439. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  3440. </td>
  3441. <td class="PriceBreakPrice">
  3442. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥80.8587</span>
  3443. </td>
  3444. </tr>
  3445. <tr>
  3446. <td class="PriceBreakQuantity">
  3447. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,500);">500:</a>
  3448. </td>
  3449. <td class="PriceBreakPrice">
  3450. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥74.6226</span>
  3451. </td>
  3452. </tr>
  3453. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3454. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3455. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,1000);">1,000:</a>
  3456. </td>
  3457. <td class="PriceBreakPrice">
  3458. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Broadcom/BCM5482HA2KFBG/?qs=sGAEpiMZZMsjXX4loUgemp%252ba44A0epCk6EfC56EIBeYc%252bvAZnmjLww%3d%3d">查看</a>
  3459. </td>
  3460. </tr>
  3461. <tr>
  3462. <td><br /></td>
  3463. </tr>
  3464. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3465. <td colspan="2" style="text-align: center;">
  3466. </td>
  3467. </tr>
  3468. </table>
  3469. </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;)">
  3470. <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 />
  3471. <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="购买 BCM5482HA2KFBG" class="buy-button" /><br />
  3472. <table cellspacing="0" border="0" style="width: 100%;">
  3473. <tr>
  3474. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3475. 最低:
  3476. </td>
  3477. <td style="padding-left: 2px; text-align: left;">
  3478. 1
  3479. </td>
  3480. </tr>
  3481. <tr>
  3482. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3483. 多个:
  3484. </td>
  3485. <td style="padding-left: 2px; text-align: left;">
  3486. 1
  3487. </td>
  3488. </tr>
  3489. </table>
  3490. </div>
  3491. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  3492. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3493. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=VWtcwyxQWV%252bw6k4xWNRhcQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=VWtcwyxQWV%252bw6k4xWNRhcQ%3d%3d" target="_blank">详细信息</a>
  3494. </div>
  3495. </td><td>Ethernet Transceivers
  3496. </td><td>10 Mb/s, 100 Mb/s, 1000 Mb/s
  3497. </td><td>1.14 V to 3.63 V
  3498. </td><td>+ 70 C
  3499. </td><td>SMD/SMT
  3500. </td><td>FBGA-121
  3501. </td>
  3502. </tr><tr class="SearchResultsRowOdd" data-partnumber="998-KSZ8081RNACATR" data-index="15">
  3503. <td class="td-select" align="center">
  3504. <div style="padding: 5px 5px 0 5px;">
  3505. <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>
  3506. </div>
  3507. </td><td><a href='/ProductDetail/Microchip-Technology-Micrel/KSZ8081RNACA-TR/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPXYpTg8OeMJ3SJnzybSy3bA%3d%3d'><img title='Microchip Technology / Micrel KSZ8081RNACA-TR' alt='Microchip Technology / Micrel KSZ8081RNACA-TR' id=1630050952 src='/images/mouserimages/sm/QFN_24_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/QFN_24_EP_t.jpg</div></a></td><td>
  3508. <div style="text-align:left;">
  3509. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ8081RNACA-TR/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPXYpTg8OeMJ3SJnzybSy3bA%3d%3d">998-KSZ8081RNACATR</a><br />
  3510. <br />
  3511. <br />
  3512. 要购买完整 卷轴,请订购 1000 的倍数:
  3513. </div></td><td>
  3514. <div class="mfrDiv">
  3515. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ8081RNACA-TR/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPXYpTg8OeMJ3SJnzybSy3bA%3d%3d">KSZ8081RNACA-TR</a><br />
  3516. <br />
  3517. <div style="width: 100%; text-align: center;">
  3518. </div>
  3519. <div style="width: 100%; text-align: center;">
  3520. </div>
  3521. </div>
  3522. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../Micrel-Semiconductor">Microchip Technology / Micrel</a>
  3523. </td><td>以太网 IC
  3524. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3525. </div>
  3526. </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;Microchip Technology / Micrel&quot;,&quot;998-KSZ8081RNACATR | KSZ8081RNACA-TR&quot;]);" href="http://www.mouser.com/ds/2/268/KSZ8081RNDCA-778522.pdf" target="_blank">数据表</a>
  3527. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">8,325<br/>有库存</span>
  3528. <table>
  3529. <tr align="center">
  3530. <td style="padding-top: 5px">
  3531. </td>
  3532. </tr>
  3533. <tr align="center">
  3534. <td style="padding-top: 5px; padding-bottom: 5px">
  3535. </td>
  3536. </tr>
  3537. </table></td><td>
  3538. <table class="PriceBreaks" cellspacing="0" border="0">
  3539. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3540. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3541. </td>
  3542. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3543. </td>
  3544. </tr>
  3545. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3546. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3547. 剪切带
  3548. </td>
  3549. </tr>
  3550. <tr>
  3551. <td class="PriceBreakQuantity">
  3552. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  3553. </td>
  3554. <td class="PriceBreakPrice">
  3555. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥9.3951</span>
  3556. </td>
  3557. </tr>
  3558. <tr>
  3559. <td class="PriceBreakQuantity">
  3560. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  3561. </td>
  3562. <td class="PriceBreakPrice">
  3563. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥7.7805</span>
  3564. </td>
  3565. </tr>
  3566. <tr>
  3567. <td class="PriceBreakQuantity">
  3568. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,25);">25:</a>
  3569. </td>
  3570. <td class="PriceBreakPrice">
  3571. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥6.4701</span>
  3572. </td>
  3573. </tr>
  3574. <tr>
  3575. <td class="PriceBreakQuantity">
  3576. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  3577. </td>
  3578. <td class="PriceBreakPrice">
  3579. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥6.318</span>
  3580. </td>
  3581. </tr>
  3582. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3583. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3584. 卷轴
  3585. </td>
  3586. </tr>
  3587. <tr>
  3588. <td class="PriceBreakQuantity">
  3589. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(13,1000);">1,000:</a>
  3590. </td>
  3591. <td class="PriceBreakPrice">
  3592. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥6.318</span>
  3593. </td>
  3594. </tr>
  3595. <tr>
  3596. <td><br /></td>
  3597. </tr>
  3598. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3599. <td colspan="2" style="text-align: center;">
  3600. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ8081RNACA-TR/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPXYpTg8OeMJ3SJnzybSy3bA%3d%3d">MouseReel 提供服务支持</a>
  3601. </td>
  3602. </tr>
  3603. </table>
  3604. </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;)">
  3605. <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 />
  3606. <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="购买 KSZ8081RNACA-TR" class="buy-button" /><br />
  3607. <table cellspacing="0" border="0" style="width: 100%;">
  3608. <tr>
  3609. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3610. 最低:
  3611. </td>
  3612. <td style="padding-left: 2px; text-align: left;">
  3613. 1
  3614. </td>
  3615. </tr>
  3616. <tr>
  3617. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3618. 多个:
  3619. </td>
  3620. <td style="padding-left: 2px; text-align: left;">
  3621. 1
  3622. </td>
  3623. </tr>
  3624. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_trReel">
  3625. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3626. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(13,1000);">卷轴</a>:
  3627. </td>
  3628. <td style="padding-left: 2px; text-align: left;">
  3629. <em class="SearchResultsReel">
  3630. 1,000
  3631. </em>
  3632. </td>
  3633. </tr>
  3634. </table>
  3635. </div>
  3636. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  3637. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3638. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uy1ixzB9yOX3s72j4mkb8A%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=uy1ixzB9yOX3s72j4mkb8A%3d%3d" target="_blank">详细信息</a>
  3639. </div>
  3640. </td><td>Ethernet Transceivers
  3641. </td><td>10 Mb/s, 100 Mb/s
  3642. </td><td>1.8 V, 2.5 V, 3.3 V
  3643. </td><td>+ 70 C
  3644. </td><td>SMD/SMT
  3645. </td><td>QFN-24
  3646. </td>
  3647. </tr><tr class="SearchResultsRowEven" data-partnumber="886-LAN8710A-EZC-TR" data-index="16">
  3648. <td class="td-select" align="center">
  3649. <div style="padding: 5px 5px 0 5px;">
  3650. <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>
  3651. </div>
  3652. </td><td><a href='/ProductDetail/Microchip-Technology/LAN8710A-EZC-TR/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkdufXvxwEsHs%3d'><img title='Microchip Technology LAN8710A-EZC-TR' alt='Microchip Technology LAN8710A-EZC-TR' id=887493604 src='/images/mouserimages/sm/QFN_32_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/QFN_32_EP_t.jpg</div></a></td><td>
  3653. <div style="text-align:left;">
  3654. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology/LAN8710A-EZC-TR/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkdufXvxwEsHs%3d">886-LAN8710A-EZC-TR</a><br />
  3655. <br />
  3656. <br />
  3657. 要购买完整 卷轴,请订购 5000 的倍数:
  3658. </div></td><td>
  3659. <div class="mfrDiv">
  3660. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology/LAN8710A-EZC-TR/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkdufXvxwEsHs%3d">LAN8710A-EZC-TR</a><br />
  3661. <br />
  3662. <div style="width: 100%; text-align: center;">
  3663. </div>
  3664. <div style="width: 100%; text-align: center;">
  3665. </div>
  3666. </div>
  3667. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../microchip">Microchip Technology</a>
  3668. </td><td>以太网 IC 10/100 Ethernet XCVR HP AutoMDIX FlexPwr
  3669. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3670. </div>
  3671. </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;Microchip Technology&quot;,&quot;886-LAN8710A-EZC-TR | LAN8710A-EZC-TR&quot;]);" href="http://www.mouser.com/ds/2/268/8710a-320908.pdf" target="_blank">数据表</a>
  3672. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">9,381<br/>有库存</span>
  3673. <table>
  3674. <tr align="center">
  3675. <td style="padding-top: 5px">
  3676. </td>
  3677. </tr>
  3678. <tr align="center">
  3679. <td style="padding-top: 5px; padding-bottom: 5px">
  3680. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAlternativePackaging" title="备用包装 | 886-LAN8710A-EZC-TR" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQtQrTQ6Y1BiORzePoEbM5oA%252bxAcl1MR7eAyL76gm0Gv%2f7rTCKVnISjDZcdjo5u9hFgI%2fhRQVztkCG2hteZS8%252bHNOYSiSj3O34hLeXjg35DEZSrsjqg0Fs3OoGgmsz9PzSJ8GxaDV2QHw%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3681. </td>
  3682. </tr>
  3683. </table></td><td>
  3684. <table class="PriceBreaks" cellspacing="0" border="0">
  3685. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3686. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3687. </td>
  3688. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3689. </td>
  3690. </tr>
  3691. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3692. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3693. 剪切带
  3694. </td>
  3695. </tr>
  3696. <tr>
  3697. <td class="PriceBreakQuantity">
  3698. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  3699. </td>
  3700. <td class="PriceBreakPrice">
  3701. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥9.6993</span>
  3702. </td>
  3703. </tr>
  3704. <tr>
  3705. <td class="PriceBreakQuantity">
  3706. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,10);">10:</a>
  3707. </td>
  3708. <td class="PriceBreakPrice">
  3709. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥8.3889</span>
  3710. </td>
  3711. </tr>
  3712. <tr>
  3713. <td class="PriceBreakQuantity">
  3714. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,25);">25:</a>
  3715. </td>
  3716. <td class="PriceBreakPrice">
  3717. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥7.0083</span>
  3718. </td>
  3719. </tr>
  3720. <tr>
  3721. <td class="PriceBreakQuantity">
  3722. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
  3723. </td>
  3724. <td class="PriceBreakPrice">
  3725. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥6.318</span>
  3726. </td>
  3727. </tr>
  3728. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3729. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3730. 卷轴
  3731. </td>
  3732. </tr>
  3733. <tr>
  3734. <td class="PriceBreakQuantity">
  3735. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(14,5000);">5,000:</a>
  3736. </td>
  3737. <td class="PriceBreakPrice">
  3738. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥6.318</span>
  3739. </td>
  3740. </tr>
  3741. <tr>
  3742. <td><br /></td>
  3743. </tr>
  3744. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3745. <td colspan="2" style="text-align: center;">
  3746. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Microchip-Technology/LAN8710A-EZC-TR/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkdufXvxwEsHs%3d">MouseReel 提供服务支持</a>
  3747. </td>
  3748. </tr>
  3749. </table>
  3750. </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;)">
  3751. <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 />
  3752. <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="购买 LAN8710A-EZC-TR" class="buy-button" /><br />
  3753. <table cellspacing="0" border="0" style="width: 100%;">
  3754. <tr>
  3755. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3756. 最低:
  3757. </td>
  3758. <td style="padding-left: 2px; text-align: left;">
  3759. 1
  3760. </td>
  3761. </tr>
  3762. <tr>
  3763. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3764. 多个:
  3765. </td>
  3766. <td style="padding-left: 2px; text-align: left;">
  3767. 1
  3768. </td>
  3769. </tr>
  3770. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_trReel">
  3771. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3772. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(14,5000);">卷轴</a>:
  3773. </td>
  3774. <td style="padding-left: 2px; text-align: left;">
  3775. <em class="SearchResultsReel">
  3776. 5,000
  3777. </em>
  3778. </td>
  3779. </tr>
  3780. </table>
  3781. </div>
  3782. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  3783. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3784. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=IXGb3aE8r6MxpXrh6qn9Mg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=IXGb3aE8r6MxpXrh6qn9Mg%3d%3d" target="_blank">详细信息</a>
  3785. </div>
  3786. </td><td>Ethernet Transceivers
  3787. </td><td>10 Mb/s, 100 Mb/s
  3788. </td><td>3.3 V
  3789. </td><td>+ 85 C
  3790. </td><td>SMD/SMT
  3791. </td><td>QFN-32
  3792. </td>
  3793. </tr><tr class="SearchResultsRowOdd" data-partnumber="886-LAN8720AI-CP-TR" data-index="17">
  3794. <td class="td-select" align="center">
  3795. <div style="padding: 5px 5px 0 5px;">
  3796. <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>
  3797. </div>
  3798. </td><td><a href='/ProductDetail/Microchip-Technology/LAN8720AI-CP-TR/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkrFN%252b5fb1uzk%3d'><img title='Microchip Technology LAN8720AI-CP-TR' alt='Microchip Technology LAN8720AI-CP-TR' id=887493620 src='/images/mouserimages/sm/QFN_24_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/QFN_24_EP_t.jpg</div></a></td><td>
  3799. <div style="text-align:left;">
  3800. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology/LAN8720AI-CP-TR/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkrFN%252b5fb1uzk%3d">886-LAN8720AI-CP-TR</a><br />
  3801. <br />
  3802. <br />
  3803. 要购买完整 卷轴,请订购 5000 的倍数:
  3804. </div></td><td>
  3805. <div class="mfrDiv">
  3806. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology/LAN8720AI-CP-TR/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkrFN%252b5fb1uzk%3d">LAN8720AI-CP-TR</a><br />
  3807. <br />
  3808. <div style="width: 100%; text-align: center;">
  3809. </div>
  3810. <div style="width: 100%; text-align: center;">
  3811. </div>
  3812. </div>
  3813. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../microchip">Microchip Technology</a>
  3814. </td><td>以太网 IC 10/100 Ethernet XCVR w/HP AutoMDIXSupport
  3815. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3816. </div>
  3817. </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;Microchip Technology&quot;,&quot;886-LAN8720AI-CP-TR | LAN8720AI-CP-TR&quot;]);" href="http://www.mouser.com/ds/2/268/8720a-320902.pdf" target="_blank">数据表</a>
  3818. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">7,582<br/>有库存</span>
  3819. <table>
  3820. <tr align="center">
  3821. <td style="padding-top: 5px">
  3822. </td>
  3823. </tr>
  3824. <tr align="center">
  3825. <td style="padding-top: 5px; padding-bottom: 5px">
  3826. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAlternativePackaging" title="备用包装 | 886-LAN8720AI-CP-TR" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQtQrTQ6Y1BiGg4avN%252bVmGFkzRUdnUOzEgslk7zUnQWGMLJ31SprmXAKbXqguT4Ho6VrrT5usQ1Vp5%252bAcI7u4EdNgAJTe0XOjiEYC5cLClH0Hck%2fI3FyEEeDDeUslV3VT5lXSsTBAC%252beg%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3827. </td>
  3828. </tr>
  3829. </table></td><td>
  3830. <table class="PriceBreaks" cellspacing="0" border="0">
  3831. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3832. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3833. </td>
  3834. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3835. </td>
  3836. </tr>
  3837. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3838. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3839. 剪切带
  3840. </td>
  3841. </tr>
  3842. <tr>
  3843. <td class="PriceBreakQuantity">
  3844. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  3845. </td>
  3846. <td class="PriceBreakPrice">
  3847. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥11.2437</span>
  3848. </td>
  3849. </tr>
  3850. <tr>
  3851. <td class="PriceBreakQuantity">
  3852. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,10);">10:</a>
  3853. </td>
  3854. <td class="PriceBreakPrice">
  3855. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥9.6993</span>
  3856. </td>
  3857. </tr>
  3858. <tr>
  3859. <td class="PriceBreakQuantity">
  3860. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,25);">25:</a>
  3861. </td>
  3862. <td class="PriceBreakPrice">
  3863. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.0847</span>
  3864. </td>
  3865. </tr>
  3866. <tr>
  3867. <td class="PriceBreakQuantity">
  3868. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,100);">100:</a>
  3869. </td>
  3870. <td class="PriceBreakPrice">
  3871. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.3125</span>
  3872. </td>
  3873. </tr>
  3874. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3875. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3876. 卷轴
  3877. </td>
  3878. </tr>
  3879. <tr>
  3880. <td class="PriceBreakQuantity">
  3881. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(15,5000);">5,000:</a>
  3882. </td>
  3883. <td class="PriceBreakPrice">
  3884. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥7.3125</span>
  3885. </td>
  3886. </tr>
  3887. <tr>
  3888. <td><br /></td>
  3889. </tr>
  3890. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3891. <td colspan="2" style="text-align: center;">
  3892. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Microchip-Technology/LAN8720AI-CP-TR/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33GzvkrFN%252b5fb1uzk%3d">MouseReel 提供服务支持</a>
  3893. </td>
  3894. </tr>
  3895. </table>
  3896. </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;)">
  3897. <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 />
  3898. <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="购买 LAN8720AI-CP-TR" class="buy-button" /><br />
  3899. <table cellspacing="0" border="0" style="width: 100%;">
  3900. <tr>
  3901. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3902. 最低:
  3903. </td>
  3904. <td style="padding-left: 2px; text-align: left;">
  3905. 1
  3906. </td>
  3907. </tr>
  3908. <tr>
  3909. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3910. 多个:
  3911. </td>
  3912. <td style="padding-left: 2px; text-align: left;">
  3913. 1
  3914. </td>
  3915. </tr>
  3916. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_trReel">
  3917. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3918. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(15,5000);">卷轴</a>:
  3919. </td>
  3920. <td style="padding-left: 2px; text-align: left;">
  3921. <em class="SearchResultsReel">
  3922. 5,000
  3923. </em>
  3924. </td>
  3925. </tr>
  3926. </table>
  3927. </div>
  3928. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  3929. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3930. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=IXGb3aE8r6M6R6CNl4MNiw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=IXGb3aE8r6M6R6CNl4MNiw%3d%3d" target="_blank">详细信息</a>
  3931. </div>
  3932. </td><td>Ethernet Transceivers
  3933. </td><td>10 Mb/s, 100 Mb/s
  3934. </td><td>3.3 V
  3935. </td><td>+ 85 C
  3936. </td><td>SMD/SMT
  3937. </td><td>QFN-24 EP
  3938. </td>
  3939. </tr><tr class="SearchResultsRowEven" data-partnumber="998-KSZ8081RNAIATR" data-index="18">
  3940. <td class="td-select" align="center">
  3941. <div style="padding: 5px 5px 0 5px;">
  3942. <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>
  3943. </div>
  3944. </td><td><a href='/ProductDetail/Microchip-Technology-Micrel/KSZ8081RNAIA-TR/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPIEILfhs7VoK4FIqGQOxL7g%3d%3d'><img title='Microchip Technology / Micrel KSZ8081RNAIA-TR' alt='Microchip Technology / Micrel KSZ8081RNAIA-TR' id=1630050956 src='/images/mouserimages/sm/QFN_24_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/QFN_24_EP_t.jpg</div></a></td><td>
  3945. <div style="text-align:left;">
  3946. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ8081RNAIA-TR/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPIEILfhs7VoK4FIqGQOxL7g%3d%3d">998-KSZ8081RNAIATR</a><br />
  3947. <br />
  3948. <br />
  3949. 要购买完整 卷轴,请订购 1000 的倍数:
  3950. </div></td><td>
  3951. <div class="mfrDiv">
  3952. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ8081RNAIA-TR/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPIEILfhs7VoK4FIqGQOxL7g%3d%3d">KSZ8081RNAIA-TR</a><br />
  3953. <br />
  3954. <div style="width: 100%; text-align: center;">
  3955. </div>
  3956. <div style="width: 100%; text-align: center;">
  3957. </div>
  3958. </div>
  3959. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../Micrel-Semiconductor">Microchip Technology / Micrel</a>
  3960. </td><td>以太网 IC
  3961. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3962. </div>
  3963. </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 / Micrel&quot;,&quot;998-KSZ8081RNAIATR | KSZ8081RNAIA-TR&quot;]);" href="http://www.mouser.com/ds/2/268/KSZ8081RNDCA-778522.pdf" target="_blank">数据表</a>
  3964. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">7,353<br/>有库存</span>
  3965. <table>
  3966. <tr align="center">
  3967. <td style="padding-top: 5px">
  3968. </td>
  3969. </tr>
  3970. <tr align="center">
  3971. <td style="padding-top: 5px; padding-bottom: 5px">
  3972. </td>
  3973. </tr>
  3974. </table></td><td>
  3975. <table class="PriceBreaks" cellspacing="0" border="0">
  3976. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3977. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3978. </td>
  3979. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3980. </td>
  3981. </tr>
  3982. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3983. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3984. 剪切带
  3985. </td>
  3986. </tr>
  3987. <tr>
  3988. <td class="PriceBreakQuantity">
  3989. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  3990. </td>
  3991. <td class="PriceBreakPrice">
  3992. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥11.70</span>
  3993. </td>
  3994. </tr>
  3995. <tr>
  3996. <td class="PriceBreakQuantity">
  3997. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  3998. </td>
  3999. <td class="PriceBreakPrice">
  4000. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥9.6993</span>
  4001. </td>
  4002. </tr>
  4003. <tr>
  4004. <td class="PriceBreakQuantity">
  4005. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,25);">25:</a>
  4006. </td>
  4007. <td class="PriceBreakPrice">
  4008. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥8.0847</span>
  4009. </td>
  4010. </tr>
  4011. <tr>
  4012. <td class="PriceBreakQuantity">
  4013. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,100);">100:</a>
  4014. </td>
  4015. <td class="PriceBreakPrice">
  4016. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥7.8507</span>
  4017. </td>
  4018. </tr>
  4019. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4020. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4021. 卷轴
  4022. </td>
  4023. </tr>
  4024. <tr>
  4025. <td class="PriceBreakQuantity">
  4026. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(16,1000);">1,000:</a>
  4027. </td>
  4028. <td class="PriceBreakPrice">
  4029. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥7.8507</span>
  4030. </td>
  4031. </tr>
  4032. <tr>
  4033. <td><br /></td>
  4034. </tr>
  4035. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  4036. <td colspan="2" style="text-align: center;">
  4037. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl06_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ8081RNAIA-TR/?qs=sGAEpiMZZMsjXX4loUgemqnEtWYTaFXPIEILfhs7VoK4FIqGQOxL7g%3d%3d">MouseReel 提供服务支持</a>
  4038. </td>
  4039. </tr>
  4040. </table>
  4041. </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;)">
  4042. <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 />
  4043. <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="购买 KSZ8081RNAIA-TR" class="buy-button" /><br />
  4044. <table cellspacing="0" border="0" style="width: 100%;">
  4045. <tr>
  4046. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4047. 最低:
  4048. </td>
  4049. <td style="padding-left: 2px; text-align: left;">
  4050. 1
  4051. </td>
  4052. </tr>
  4053. <tr>
  4054. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4055. 多个:
  4056. </td>
  4057. <td style="padding-left: 2px; text-align: left;">
  4058. 1
  4059. </td>
  4060. </tr>
  4061. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_trReel">
  4062. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4063. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(16,1000);">卷轴</a>:
  4064. </td>
  4065. <td style="padding-left: 2px; text-align: left;">
  4066. <em class="SearchResultsReel">
  4067. 1,000
  4068. </em>
  4069. </td>
  4070. </tr>
  4071. </table>
  4072. </div>
  4073. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  4074. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4075. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uy1ixzB9yOUgy5nW2u0FPg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=uy1ixzB9yOUgy5nW2u0FPg%3d%3d" target="_blank">详细信息</a>
  4076. </div>
  4077. </td><td>Ethernet Transceivers
  4078. </td><td>10 Mb/s, 100 Mb/s
  4079. </td><td>1.2 V, 3.3 V
  4080. </td><td>+ 85 C
  4081. </td><td>SMD/SMT
  4082. </td><td>QFN-24
  4083. </td>
  4084. </tr><tr class="SearchResultsRowOdd" data-partnumber="579-ENC424J600-I/PT" data-index="19">
  4085. <td class="td-select" align="center">
  4086. <div style="padding: 5px 5px 0 5px;">
  4087. <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>
  4088. </div>
  4089. </td><td><a href='/ProductDetail/Microchip-Technology/ENC424J600-I-PT/?qs=sGAEpiMZZMsjXX4loUgemnjDaTR64ZPJumLQINjCP6E%3d'><img title='Microchip Technology ENC424J600-I/PT' alt='Microchip Technology ENC424J600-I/PT' id=265058450 src='/images/mouserimages/sm/TQFP_44_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/TQFP_44_t.jpg</div></a></td><td>
  4090. <div style="text-align:left;">
  4091. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology/ENC424J600-I-PT/?qs=sGAEpiMZZMsjXX4loUgemnjDaTR64ZPJumLQINjCP6E%3d">579-ENC424J600-I/PT</a><br />
  4092. <br />
  4093. <br />
  4094. </div></td><td>
  4095. <div class="mfrDiv">
  4096. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology/ENC424J600-I-PT/?qs=sGAEpiMZZMsjXX4loUgemnjDaTR64ZPJumLQINjCP6E%3d">ENC424J600-I/PT</a><br />
  4097. <br />
  4098. <div style="width: 100%; text-align: center;">
  4099. </div>
  4100. <div style="width: 100%; text-align: center;">
  4101. </div>
  4102. </div>
  4103. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../microchip">Microchip Technology</a>
  4104. </td><td>以太网 IC 10/100 Base-T Stand alone Ethernet Ctrlr
  4105. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4106. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../microchipenc624j600/">了解更多</a>
  4107. </div>
  4108. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4109. </div>
  4110. </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;Microchip Technology&quot;,&quot;579-ENC424J600-I/PT | ENC424J600-I/PT&quot;]);" href="http://www.mouser.com/ds/2/268/39935b-29829.pdf" target="_blank">数据表</a>
  4111. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">4,199<br/>有库存</span>
  4112. <table>
  4113. <tr align="center">
  4114. <td style="padding-top: 5px">
  4115. </td>
  4116. </tr>
  4117. <tr align="center">
  4118. <td style="padding-top: 5px; padding-bottom: 5px">
  4119. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAlternativePackaging" title="备用包装 | 579-ENC424J600-I/PT" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRAqzf5aIxg4K5B9WkXqbzcHXI3AbPC%252bYDK9hZew9BgXjK95XOVbN3jNwN4efrHEyW92MLHsPDEz5sr2zRfL10Kb8dJ8fdrKT%2f1Wd7DCqm1ZSlR%2fp56Ttr%2fAM6ifAp6lV57oQAq0lJXtw%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4120. </td>
  4121. </tr>
  4122. </table></td><td>
  4123. <table class="PriceBreaks" cellspacing="0" border="0">
  4124. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4125. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4126. </td>
  4127. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4128. </td>
  4129. </tr>
  4130. <tr>
  4131. <td class="PriceBreakQuantity">
  4132. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  4133. </td>
  4134. <td class="PriceBreakPrice">
  4135. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥33.111</span>
  4136. </td>
  4137. </tr>
  4138. <tr>
  4139. <td class="PriceBreakQuantity">
  4140. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,10);">10:</a>
  4141. </td>
  4142. <td class="PriceBreakPrice">
  4143. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥27.5652</span>
  4144. </td>
  4145. </tr>
  4146. <tr>
  4147. <td class="PriceBreakQuantity">
  4148. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,25);">25:</a>
  4149. </td>
  4150. <td class="PriceBreakPrice">
  4151. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥25.3305</span>
  4152. </td>
  4153. </tr>
  4154. <tr>
  4155. <td class="PriceBreakQuantity">
  4156. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,100);">100:</a>
  4157. </td>
  4158. <td class="PriceBreakPrice">
  4159. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥22.9437</span>
  4160. </td>
  4161. </tr>
  4162. <tr>
  4163. <td><br /></td>
  4164. </tr>
  4165. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4166. <td colspan="2" style="text-align: center;">
  4167. </td>
  4168. </tr>
  4169. </table>
  4170. </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;)">
  4171. <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 />
  4172. <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="购买 ENC424J600-I/PT" class="buy-button" /><br />
  4173. <table cellspacing="0" border="0" style="width: 100%;">
  4174. <tr>
  4175. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4176. 最低:
  4177. </td>
  4178. <td style="padding-left: 2px; text-align: left;">
  4179. 1
  4180. </td>
  4181. </tr>
  4182. <tr>
  4183. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4184. 多个:
  4185. </td>
  4186. <td style="padding-left: 2px; text-align: left;">
  4187. 1
  4188. </td>
  4189. </tr>
  4190. </table>
  4191. </div>
  4192. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  4193. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4194. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=DVZPL%252bst7ea5WHMSiYSOvw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=DVZPL%252bst7ea5WHMSiYSOvw%3d%3d" target="_blank">详细信息</a>
  4195. </div>
  4196. </td><td>Ethernet Controllers
  4197. </td><td>10 Mb/s, 100 Mb/s
  4198. </td><td>3 V to 3.6 V
  4199. </td><td>+ 85 C
  4200. </td><td>SMD/SMT
  4201. </td><td>TQFP-44
  4202. </td>
  4203. </tr><tr class="SearchResultsRowEven" data-partnumber="926-DP83848CVV/NOPB" data-index="20">
  4204. <td class="td-select" align="center">
  4205. <div style="padding: 5px 5px 0 5px;">
  4206. <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>
  4207. </div>
  4208. </td><td><a href='/ProductDetail/Texas-Instruments/DP83848CVV-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbgxlU4FnyLx%2fE%3d'><img title='Texas Instruments DP83848CVV/NOPB' alt='Texas Instruments DP83848CVV/NOPB' id=584578593 src='/images/texasinstruments/sm/TI_LQFP_48.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_LQFP_48.jpg</div></a></td><td>
  4209. <div style="text-align:left;">
  4210. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/DP83848CVV-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbgxlU4FnyLx%2fE%3d">926-DP83848CVV/NOPB</a><br />
  4211. <br />
  4212. <br />
  4213. </div></td><td>
  4214. <div class="mfrDiv">
  4215. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DP83848CVV-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbgxlU4FnyLx%2fE%3d">DP83848CVV/NOPB</a><br />
  4216. <br />
  4217. <div style="width: 100%; text-align: center;">
  4218. </div>
  4219. <div style="width: 100%; text-align: center;">
  4220. </div>
  4221. </div>
  4222. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  4223. </td><td>以太网 IC PHYTER COMMERCIAL TEMP SGL PORT
  4224. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4225. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../nationalphyter/">了解更多</a>
  4226. </div>
  4227. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4228. </div>
  4229. </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;Texas Instruments&quot;,&quot;926-DP83848CVV/NOPB | DP83848CVV/NOPB&quot;]);" href="http://www.mouser.com/ds/2/405/dp83848c-452813.pdf" target="_blank">数据表<br /><br /></a>
  4230. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-1011-12&#39;);return false;" rel="nofollow" href="../../../../../Cart/AdditionalProductInfo.aspx?part=5-1011-12" target="_blank">产品信息</a>
  4231. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">4,148<br/>有库存</span>
  4232. <table>
  4233. <tr align="center">
  4234. <td style="padding-top: 5px">
  4235. </td>
  4236. </tr>
  4237. <tr align="center">
  4238. <td style="padding-top: 5px; padding-bottom: 5px">
  4239. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAlternativePackaging" title="备用包装 | 926-DP83848CVV/NOPB" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQuq4LqNQttk0NU8LZKgX0T4XaRv0BzY7NI%252bzIXEelUfFgx6hnVuyrOsj3REJeIgirIgF7yTkowWypsCPDSOx2bJSuFVTK146K6gJ0kSBDNPKCVEGCRgwtfPuZuoCSNiAgckNMjRgwFeA%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4240. </td>
  4241. </tr>
  4242. </table></td><td>
  4243. <table class="PriceBreaks" cellspacing="0" border="0">
  4244. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4245. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4246. </td>
  4247. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4248. </td>
  4249. </tr>
  4250. <tr>
  4251. <td class="PriceBreakQuantity">
  4252. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  4253. </td>
  4254. <td class="PriceBreakPrice">
  4255. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥39.429</span>
  4256. </td>
  4257. </tr>
  4258. <tr>
  4259. <td class="PriceBreakQuantity">
  4260. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,10);">10:</a>
  4261. </td>
  4262. <td class="PriceBreakPrice">
  4263. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥35.4276</span>
  4264. </td>
  4265. </tr>
  4266. <tr>
  4267. <td class="PriceBreakQuantity">
  4268. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,25);">25:</a>
  4269. </td>
  4270. <td class="PriceBreakPrice">
  4271. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥33.0408</span>
  4272. </td>
  4273. </tr>
  4274. <tr>
  4275. <td class="PriceBreakQuantity">
  4276. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,50);">50:</a>
  4277. </td>
  4278. <td class="PriceBreakPrice">
  4279. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥31.2624</span>
  4280. </td>
  4281. </tr>
  4282. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4283. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4284. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  4285. </td>
  4286. <td class="PriceBreakPrice">
  4287. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/DP83848CVV-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbgxlU4FnyLx%2fE%3d">查看</a>
  4288. </td>
  4289. </tr>
  4290. <tr>
  4291. <td><br /></td>
  4292. </tr>
  4293. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4294. <td colspan="2" style="text-align: center;">
  4295. </td>
  4296. </tr>
  4297. </table>
  4298. </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;)">
  4299. <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 />
  4300. <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="购买 DP83848CVV/NOPB" class="buy-button" /><br />
  4301. <table cellspacing="0" border="0" style="width: 100%;">
  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>
  4311. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4312. 多个:
  4313. </td>
  4314. <td style="padding-left: 2px; text-align: left;">
  4315. 1
  4316. </td>
  4317. </tr>
  4318. </table>
  4319. </div>
  4320. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  4321. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4322. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=jGxFL1oUpM9unDclK9pFag%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=jGxFL1oUpM9unDclK9pFag%3d%3d" target="_blank">详细信息</a>
  4323. </div>
  4324. </td><td>Ethernet Transceivers
  4325. </td><td>10 Mb/s, 100 Mb/s
  4326. </td><td>3.3 V
  4327. </td><td>+ 70 C
  4328. </td><td>SMD/SMT
  4329. </td><td>LQFP-48
  4330. </td>
  4331. </tr><tr class="SearchResultsRowOdd" data-partnumber="926-DP83848CVVX/NOPB" data-index="21">
  4332. <td class="td-select" align="center">
  4333. <div style="padding: 5px 5px 0 5px;">
  4334. <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>
  4335. </div>
  4336. </td><td><a href='/ProductDetail/Texas-Instruments/DP83848CVVX-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbguIuxuHwBOhg%3d'><img title='Texas Instruments DP83848CVVX/NOPB' alt='Texas Instruments DP83848CVVX/NOPB' id=584578595 src='/images/texasinstruments/sm/TI_LQFP_48.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_LQFP_48.jpg</div></a></td><td>
  4337. <div style="text-align:left;">
  4338. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/DP83848CVVX-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbguIuxuHwBOhg%3d">926-DP83848CVVX/NOPB</a><br />
  4339. <br />
  4340. <br />
  4341. 要购买完整 卷轴,请订购 1000 的倍数:
  4342. </div></td><td>
  4343. <div class="mfrDiv">
  4344. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/DP83848CVVX-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbguIuxuHwBOhg%3d">DP83848CVVX/NOPB</a><br />
  4345. <br />
  4346. <div style="width: 100%; text-align: center;">
  4347. </div>
  4348. <div style="width: 100%; text-align: center;">
  4349. </div>
  4350. </div>
  4351. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  4352. </td><td>以太网 IC PHYTER COMMERCIAL TEMP SGL PORT
  4353. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4354. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../nationalphyter/">了解更多</a>
  4355. </div>
  4356. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4357. </div>
  4358. </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;Texas Instruments&quot;,&quot;926-DP83848CVVX/NOPB | DP83848CVVX/NOPB&quot;]);" href="http://www.mouser.com/ds/2/405/dp83848c-452813.pdf" target="_blank">数据表<br /><br /></a>
  4359. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-1011-12&#39;);return false;" rel="nofollow" href="../../../../../Cart/AdditionalProductInfo.aspx?part=5-1011-12" target="_blank">产品信息</a>
  4360. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">3,105<br/>有库存</span>
  4361. <table>
  4362. <tr align="center">
  4363. <td style="padding-top: 5px">
  4364. </td>
  4365. </tr>
  4366. <tr align="center">
  4367. <td style="padding-top: 5px; padding-bottom: 5px">
  4368. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAlternativePackaging" title="备用包装 | 926-DP83848CVVX/NOPB" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQuq4LqNQttk1MhRTwJYgFhTmSjb8h78GS00QVmW9h%252bzU9GVbybCe5FJXui472yImvVmktLdEdfBCruc0BYFUiIHM6TSzBBKZGh7VNCFErNVDydZp9rJ7i%2f7M3f7Kgn%252bj%2fdkM3%252bdDvpp1ABsHczie8m&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4369. </td>
  4370. </tr>
  4371. </table></td><td>
  4372. <table class="PriceBreaks" cellspacing="0" border="0">
  4373. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4374. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4375. </td>
  4376. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4377. </td>
  4378. </tr>
  4379. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4380. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4381. 剪切带
  4382. </td>
  4383. </tr>
  4384. <tr>
  4385. <td class="PriceBreakQuantity">
  4386. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  4387. </td>
  4388. <td class="PriceBreakPrice">
  4389. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥39.429</span>
  4390. </td>
  4391. </tr>
  4392. <tr>
  4393. <td class="PriceBreakQuantity">
  4394. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,10);">10:</a>
  4395. </td>
  4396. <td class="PriceBreakPrice">
  4397. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥35.4276</span>
  4398. </td>
  4399. </tr>
  4400. <tr>
  4401. <td class="PriceBreakQuantity">
  4402. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,25);">25:</a>
  4403. </td>
  4404. <td class="PriceBreakPrice">
  4405. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥33.0408</span>
  4406. </td>
  4407. </tr>
  4408. <tr>
  4409. <td class="PriceBreakQuantity">
  4410. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,50);">50:</a>
  4411. </td>
  4412. <td class="PriceBreakPrice">
  4413. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥31.2624</span>
  4414. </td>
  4415. </tr>
  4416. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4417. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4418. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  4419. </td>
  4420. <td class="PriceBreakPrice">
  4421. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/DP83848CVVX-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbguIuxuHwBOhg%3d">查看</a>
  4422. </td>
  4423. </tr>
  4424. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4425. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4426. </td>
  4427. </tr>
  4428. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trReel">
  4429. <td class="PriceBreakQuantity">
  4430. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(19,1000);" style="white-space: nowrap">1,000:</a>
  4431. </td>
  4432. <td class="PriceBreakPrice">
  4433. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥18.5562</span>
  4434. </td>
  4435. </tr>
  4436. <tr>
  4437. <td><br /></td>
  4438. </tr>
  4439. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4440. <td colspan="2" style="text-align: center;">
  4441. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/DP83848CVVX-NOPB/?qs=sGAEpiMZZMsjXX4loUgemra%252brcNaCRbguIuxuHwBOhg%3d">MouseReel 提供服务支持</a>
  4442. </td>
  4443. </tr>
  4444. </table>
  4445. </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;)">
  4446. <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 />
  4447. <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="购买 DP83848CVVX/NOPB" class="buy-button" /><br />
  4448. <table cellspacing="0" border="0" style="width: 100%;">
  4449. <tr>
  4450. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4451. 最低:
  4452. </td>
  4453. <td style="padding-left: 2px; text-align: left;">
  4454. 1
  4455. </td>
  4456. </tr>
  4457. <tr>
  4458. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4459. 多个:
  4460. </td>
  4461. <td style="padding-left: 2px; text-align: left;">
  4462. 1
  4463. </td>
  4464. </tr>
  4465. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_trReel">
  4466. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4467. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(19,1000);">卷轴</a>:
  4468. </td>
  4469. <td style="padding-left: 2px; text-align: left;">
  4470. <em class="SearchResultsReel">
  4471. 1,000
  4472. </em>
  4473. </td>
  4474. </tr>
  4475. </table>
  4476. </div>
  4477. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  4478. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4479. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=jGxFL1oUpM%2fHd7u%252bXKP2fQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=jGxFL1oUpM%2fHd7u%252bXKP2fQ%3d%3d" target="_blank">详细信息</a>
  4480. </div>
  4481. </td><td>Ethernet Transceivers
  4482. </td><td>10 Mb/s, 100 Mb/s
  4483. </td><td>3.3 V
  4484. </td><td>+ 70 C
  4485. </td><td>SMD/SMT
  4486. </td><td>LQFP-48
  4487. </td>
  4488. </tr><tr class="SearchResultsRowEven" data-partnumber="607-WG82574LSLBA8" data-index="22">
  4489. <td class="td-select" align="center">
  4490. <div style="padding: 5px 5px 0 5px;">
  4491. <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>
  4492. </div>
  4493. </td><td><a href='/ProductDetail/Intel/WG82574L-S-LBA8/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2gganU%2fntzPGo%3d'><img title='Intel WG82574L S LBA8' alt='Intel WG82574L S LBA8' id=959860327 src='/images/mouserimages/sm/QFN_64_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/QFN_64_EP_t.jpg</div></a></td><td>
  4494. <div style="text-align:left;">
  4495. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Intel/WG82574L-S-LBA8/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2gganU%2fntzPGo%3d">607-WG82574LSLBA8</a><br />
  4496. <br />
  4497. <br />
  4498. 要购买完整 卷轴,请订购 2000 的倍数:
  4499. </div></td><td>
  4500. <div class="mfrDiv">
  4501. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Intel/WG82574L-S-LBA8/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2gganU%2fntzPGo%3d">WG82574L S LBA8</a><br />
  4502. <br />
  4503. <div style="width: 100%; text-align: center;">
  4504. </div>
  4505. <div style="width: 100%; text-align: center;">
  4506. </div>
  4507. </div>
  4508. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../Intel">Intel</a>
  4509. </td><td>以太网 IC Controller IEEE 10/ 100/1000 Mbps QFN64
  4510. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4511. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/Intel/intel-wg82574-phy/">了解更多</a>
  4512. </div>
  4513. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4514. </div>
  4515. </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;Intel&quot;,&quot;607-WG82574LSLBA8 | WG82574L S LBA8&quot;]);" href="http://www.mouser.com/ds/2/612/82574l-gbe-controller-datasheet-257697.pdf" target="_blank">数据表<br /><br /></a>
  4516. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-0914-13&#39;);return false;" rel="nofollow" href="../../../../../Cart/AdditionalProductInfo.aspx?part=5-0914-13" target="_blank">产品信息</a>
  4517. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">2,098<br/>有库存</span>
  4518. <table>
  4519. <tr align="center">
  4520. <td style="padding-top: 5px">
  4521. </td>
  4522. </tr>
  4523. <tr align="center">
  4524. <td style="padding-top: 5px; padding-bottom: 5px">
  4525. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAlternativePackaging" title="备用包装 | 607-WG82574LSLBA8" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQheapcLG6JASW4n5kyP1G9mWJwJ0XLb3UAWbmFZTSG7%2fhAgxPKmF96%252b8VgaA%2f5BqCGAxHu%252bDjrJDE08pnW9O%252bSuO3ayOrMGvijOR7EYLE2hX33V2K9gml%2fHYftYcBrbpYZnh3u7pMllg%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4526. </td>
  4527. </tr>
  4528. </table></td><td>
  4529. <table class="PriceBreaks" cellspacing="0" border="0">
  4530. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4531. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4532. </td>
  4533. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4534. </td>
  4535. </tr>
  4536. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4537. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4538. 剪切带
  4539. </td>
  4540. </tr>
  4541. <tr>
  4542. <td class="PriceBreakQuantity">
  4543. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  4544. </td>
  4545. <td class="PriceBreakPrice">
  4546. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥49.5144</span>
  4547. </td>
  4548. </tr>
  4549. <tr>
  4550. <td class="PriceBreakQuantity">
  4551. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,25);">25:</a>
  4552. </td>
  4553. <td class="PriceBreakPrice">
  4554. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥47.2095</span>
  4555. </td>
  4556. </tr>
  4557. <tr>
  4558. <td class="PriceBreakQuantity">
  4559. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,50);">50:</a>
  4560. </td>
  4561. <td class="PriceBreakPrice">
  4562. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥45.1269</span>
  4563. </td>
  4564. </tr>
  4565. <tr>
  4566. <td class="PriceBreakQuantity">
  4567. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,100);">100:</a>
  4568. </td>
  4569. <td class="PriceBreakPrice">
  4570. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥43.2783</span>
  4571. </td>
  4572. </tr>
  4573. <tr>
  4574. <td class="PriceBreakQuantity">
  4575. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(20,200);">200:</a>
  4576. </td>
  4577. <td class="PriceBreakPrice">
  4578. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥41.5116</span>
  4579. </td>
  4580. </tr>
  4581. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl06_trReelHeader">
  4582. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4583. 卷轴
  4584. </td>
  4585. </tr>
  4586. <tr>
  4587. <td class="PriceBreakQuantity">
  4588. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(20,2000);">2,000:</a>
  4589. </td>
  4590. <td class="PriceBreakPrice">
  4591. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap">¥41.5116</span>
  4592. </td>
  4593. </tr>
  4594. <tr>
  4595. <td><br /></td>
  4596. </tr>
  4597. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4598. <td colspan="2" style="text-align: center;">
  4599. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Intel/WG82574L-S-LBA8/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2gganU%2fntzPGo%3d">MouseReel 提供服务支持</a>
  4600. </td>
  4601. </tr>
  4602. </table>
  4603. </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;)">
  4604. <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 />
  4605. <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="购买 WG82574L S LBA8" class="buy-button" /><br />
  4606. <table cellspacing="0" border="0" style="width: 100%;">
  4607. <tr>
  4608. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4609. 最低:
  4610. </td>
  4611. <td style="padding-left: 2px; text-align: left;">
  4612. 1
  4613. </td>
  4614. </tr>
  4615. <tr>
  4616. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4617. 多个:
  4618. </td>
  4619. <td style="padding-left: 2px; text-align: left;">
  4620. 1
  4621. </td>
  4622. </tr>
  4623. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_trReel">
  4624. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4625. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(20,2000);">卷轴</a>:
  4626. </td>
  4627. <td style="padding-left: 2px; text-align: left;">
  4628. <em class="SearchResultsReel">
  4629. 2,000
  4630. </em>
  4631. </td>
  4632. </tr>
  4633. </table>
  4634. </div>
  4635. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  4636. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4637. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=NHXthhWObd4AZqsSL0KvOQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=NHXthhWObd4AZqsSL0KvOQ%3d%3d" target="_blank">详细信息</a>
  4638. </div>
  4639. </td><td>Ethernet Controllers
  4640. </td><td>10 Mb/s, 100 Mb/s, 1000 Mb/s
  4641. </td><td>3.3 V
  4642. </td><td>+ 85 C
  4643. </td><td>SMD/SMT
  4644. </td><td>QFN-64 EP
  4645. </td>
  4646. </tr><tr class="SearchResultsRowOdd" data-partnumber="998-KSZ9021RNI" data-index="23">
  4647. <td class="td-select" align="center">
  4648. <div style="padding: 5px 5px 0 5px;">
  4649. <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>
  4650. </div>
  4651. </td><td><a href='/ProductDetail/Microchip-Technology-Micrel/KSZ9021RNI/?qs=sGAEpiMZZMsjXX4loUgemtdKI1KDP1g%252bO8o4gAbzNkw%3d'><img title='Microchip Technology / Micrel KSZ9021RNI' alt='Microchip Technology / Micrel KSZ9021RNI' id=917331375 src='/images/mouserimages/sm/QFN_48_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/QFN_48_t.jpg</div></a></td><td>
  4652. <div style="text-align:left;">
  4653. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ9021RNI/?qs=sGAEpiMZZMsjXX4loUgemtdKI1KDP1g%252bO8o4gAbzNkw%3d">998-KSZ9021RNI</a><br />
  4654. <br />
  4655. <br />
  4656. </div></td><td>
  4657. <div class="mfrDiv">
  4658. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology-Micrel/KSZ9021RNI/?qs=sGAEpiMZZMsjXX4loUgemtdKI1KDP1g%252bO8o4gAbzNkw%3d">KSZ9021RNI</a><br />
  4659. <br />
  4660. <div style="width: 100%; text-align: center;">
  4661. </div>
  4662. <div style="width: 100%; text-align: center;">
  4663. </div>
  4664. </div>
  4665. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../Micrel-Semiconductor">Microchip Technology / Micrel</a>
  4666. </td><td>以太网 IC Gigabit Ethernet Transceiver with RGMII, I-Temp
  4667. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4668. </div>
  4669. </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;Microchip Technology / Micrel&quot;,&quot;998-KSZ9021RNI | KSZ9021RNI&quot;]);" href="http://www.mouser.com/ds/2/268/ksz9021rl-rn_ds-778083.pdf" target="_blank">数据表</a>
  4670. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">1,657<br/>有库存</span>
  4671. <table>
  4672. <tr align="center">
  4673. <td style="padding-top: 5px">
  4674. </td>
  4675. </tr>
  4676. <tr align="center">
  4677. <td style="padding-top: 5px; padding-bottom: 5px">
  4678. </td>
  4679. </tr>
  4680. </table></td><td>
  4681. <table class="PriceBreaks" cellspacing="0" border="0">
  4682. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4683. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4684. </td>
  4685. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4686. </td>
  4687. </tr>
  4688. <tr>
  4689. <td class="PriceBreakQuantity">
  4690. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  4691. </td>
  4692. <td class="PriceBreakPrice">
  4693. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥49.8303</span>
  4694. </td>
  4695. </tr>
  4696. <tr>
  4697. <td class="PriceBreakQuantity">
  4698. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  4699. </td>
  4700. <td class="PriceBreakPrice">
  4701. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥41.5116</span>
  4702. </td>
  4703. </tr>
  4704. <tr>
  4705. <td class="PriceBreakQuantity">
  4706. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,25);">25:</a>
  4707. </td>
  4708. <td class="PriceBreakPrice">
  4709. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥34.5735</span>
  4710. </td>
  4711. </tr>
  4712. <tr>
  4713. <td class="PriceBreakQuantity">
  4714. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,100);">100:</a>
  4715. </td>
  4716. <td class="PriceBreakPrice">
  4717. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥33.4269</span>
  4718. </td>
  4719. </tr>
  4720. <tr>
  4721. <td><br /></td>
  4722. </tr>
  4723. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4724. <td colspan="2" style="text-align: center;">
  4725. </td>
  4726. </tr>
  4727. </table>
  4728. </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;)">
  4729. <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 />
  4730. <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="购买 KSZ9021RNI" class="buy-button" /><br />
  4731. <table cellspacing="0" border="0" style="width: 100%;">
  4732. <tr>
  4733. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4734. 最低:
  4735. </td>
  4736. <td style="padding-left: 2px; text-align: left;">
  4737. 1
  4738. </td>
  4739. </tr>
  4740. <tr>
  4741. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4742. 多个:
  4743. </td>
  4744. <td style="padding-left: 2px; text-align: left;">
  4745. 1
  4746. </td>
  4747. </tr>
  4748. </table>
  4749. </div>
  4750. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  4751. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4752. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=llBhM3wt3tmfzfZStnJhCQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=llBhM3wt3tmfzfZStnJhCQ%3d%3d" target="_blank">详细信息</a>
  4753. </div>
  4754. </td><td>Ethernet Transceivers
  4755. </td><td>10 Mb/s, 100 Mb/s, 1000 Mb/s
  4756. </td><td>1.14 V to 3.465 V
  4757. </td><td>+ 85 C
  4758. </td><td>SMD/SMT
  4759. </td><td>QFN-48
  4760. </td>
  4761. </tr><tr class="SearchResultsRowEven" data-partnumber="886-LAN9303I-ABZJ" data-index="24">
  4762. <td class="td-select" align="center">
  4763. <div style="padding: 5px 5px 0 5px;">
  4764. <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>
  4765. </div>
  4766. </td><td><a href='/ProductDetail/Microchip-Technology/LAN9303I-ABZJ/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33Gzvk6rKhPA9PeGw%3d'><img title='Microchip Technology LAN9303I-ABZJ' alt='Microchip Technology LAN9303I-ABZJ' id=887493686 src='/images/mouserimages/sm/QFN_56_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/QFN_56_EP_t.jpg</div></a></td><td>
  4767. <div style="text-align:left;">
  4768. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Microchip-Technology/LAN9303I-ABZJ/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33Gzvk6rKhPA9PeGw%3d">886-LAN9303I-ABZJ</a><br />
  4769. <br />
  4770. <br />
  4771. </div></td><td>
  4772. <div class="mfrDiv">
  4773. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Microchip-Technology/LAN9303I-ABZJ/?qs=sGAEpiMZZMsjXX4loUgemgoYJv33Gzvk6rKhPA9PeGw%3d">LAN9303I-ABZJ</a><br />
  4774. <br />
  4775. <div style="width: 100%; text-align: center;">
  4776. </div>
  4777. <div style="width: 100%; text-align: center;">
  4778. </div>
  4779. </div>
  4780. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../microchip">Microchip Technology</a>
  4781. </td><td>以太网 IC 3 Port 0/100 Ether Switch MII/RMII/Turb
  4782. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4783. </div>
  4784. </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;Microchip Technology&quot;,&quot;886-LAN9303I-ABZJ | LAN9303I-ABZJ&quot;]);" href="http://www.mouser.com/ds/2/268/9303-320903.pdf" target="_blank">数据表</a>
  4785. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">1,477<br/>有库存</span>
  4786. <table>
  4787. <tr align="center">
  4788. <td style="padding-top: 5px">
  4789. </td>
  4790. </tr>
  4791. <tr align="center">
  4792. <td style="padding-top: 5px; padding-bottom: 5px">
  4793. </td>
  4794. </tr>
  4795. </table></td><td>
  4796. <table class="PriceBreaks" cellspacing="0" border="0">
  4797. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4798. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4799. </td>
  4800. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4801. </td>
  4802. </tr>
  4803. <tr>
  4804. <td class="PriceBreakQuantity">
  4805. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  4806. </td>
  4807. <td class="PriceBreakPrice">
  4808. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥60.84</span>
  4809. </td>
  4810. </tr>
  4811. <tr>
  4812. <td class="PriceBreakQuantity">
  4813. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  4814. </td>
  4815. <td class="PriceBreakPrice">
  4816. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥52.3692</span>
  4817. </td>
  4818. </tr>
  4819. <tr>
  4820. <td class="PriceBreakQuantity">
  4821. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,25);">25:</a>
  4822. </td>
  4823. <td class="PriceBreakPrice">
  4824. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥43.6644</span>
  4825. </td>
  4826. </tr>
  4827. <tr>
  4828. <td class="PriceBreakQuantity">
  4829. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  4830. </td>
  4831. <td class="PriceBreakPrice">
  4832. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥39.663</span>
  4833. </td>
  4834. </tr>
  4835. <tr>
  4836. <td><br /></td>
  4837. </tr>
  4838. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4839. <td colspan="2" style="text-align: center;">
  4840. </td>
  4841. </tr>
  4842. </table>
  4843. </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;)">
  4844. <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 />
  4845. <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="购买 LAN9303I-ABZJ" class="buy-button" /><br />
  4846. <table cellspacing="0" border="0" style="width: 100%;">
  4847. <tr>
  4848. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4849. 最低:
  4850. </td>
  4851. <td style="padding-left: 2px; text-align: left;">
  4852. 1
  4853. </td>
  4854. </tr>
  4855. <tr>
  4856. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4857. 多个:
  4858. </td>
  4859. <td style="padding-left: 2px; text-align: left;">
  4860. 1
  4861. </td>
  4862. </tr>
  4863. </table>
  4864. </div>
  4865. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  4866. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4867. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=IXGb3aE8r6MARjzNaNOMLw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=IXGb3aE8r6MARjzNaNOMLw%3d%3d" target="_blank">详细信息</a>
  4868. </div>
  4869. </td><td>Ethernet Switches
  4870. </td><td>10 Mb/s, 100 Mb/s
  4871. </td><td>3.3 V
  4872. </td><td>+ 85 C
  4873. </td><td>SMD/SMT
  4874. </td><td>QFN-56
  4875. </td>
  4876. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-WG82574ITSLBAB" data-index="25">
  4877. <td class="td-select" align="center">
  4878. <div style="padding: 5px 5px 0 5px;">
  4879. <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>
  4880. </div>
  4881. </td><td><a href='/ProductDetail/Intel/WG82574IT-S-LBAB/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2g701M5EW7H1k%3d'><img title='Intel WG82574IT S LBAB' alt='Intel WG82574IT S LBAB' id=959860323 src='/images/mouserimages/sm/QFN_64_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/QFN_64_EP_t.jpg</div></a></td><td>
  4882. <div style="text-align:left;">
  4883. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Intel/WG82574IT-S-LBAB/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2g701M5EW7H1k%3d">607-WG82574ITSLBAB</a><br />
  4884. <br />
  4885. <br />
  4886. 要购买完整 卷轴,请订购 2000 的倍数:
  4887. </div></td><td>
  4888. <div class="mfrDiv">
  4889. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Intel/WG82574IT-S-LBAB/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2g701M5EW7H1k%3d">WG82574IT S LBAB</a><br />
  4890. <br />
  4891. <div style="width: 100%; text-align: center;">
  4892. </div>
  4893. <div style="width: 100%; text-align: center;">
  4894. </div>
  4895. </div>
  4896. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../Intel">Intel</a>
  4897. </td><td>以太网 IC Controller IEEE 10/ 100/1000 Mbps QFN64
  4898. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4899. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/Intel/intel-wg82574-phy/">了解更多</a>
  4900. </div>
  4901. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4902. </div>
  4903. </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;Intel&quot;,&quot;607-WG82574ITSLBAB | WG82574IT S LBAB&quot;]);" href="http://www.mouser.com/ds/2/612/82574l-gbe-controller-datasheet-257697.pdf" target="_blank">数据表<br /><br /></a>
  4904. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-0914-13&#39;);return false;" rel="nofollow" href="../../../../../Cart/AdditionalProductInfo.aspx?part=5-0914-13" target="_blank">产品信息</a>
  4905. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">1,231<br/>有库存</span>
  4906. <table>
  4907. <tr align="center">
  4908. <td style="padding-top: 5px">
  4909. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Intel/WG82574IT-S-LBAB/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2g701M5EW7H1k%3d">更多信息可用 </a>
  4910. </td>
  4911. </tr>
  4912. <tr align="center">
  4913. <td style="padding-top: 5px; padding-bottom: 5px">
  4914. </td>
  4915. </tr>
  4916. </table></td><td>
  4917. <table class="PriceBreaks" cellspacing="0" border="0">
  4918. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4919. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4920. </td>
  4921. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4922. </td>
  4923. </tr>
  4924. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4925. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4926. 剪切带
  4927. </td>
  4928. </tr>
  4929. <tr>
  4930. <td class="PriceBreakQuantity">
  4931. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  4932. </td>
  4933. <td class="PriceBreakPrice">
  4934. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥61.9164</span>
  4935. </td>
  4936. </tr>
  4937. <tr>
  4938. <td class="PriceBreakQuantity">
  4939. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,25);">25:</a>
  4940. </td>
  4941. <td class="PriceBreakPrice">
  4942. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥59.0616</span>
  4943. </td>
  4944. </tr>
  4945. <tr>
  4946. <td class="PriceBreakQuantity">
  4947. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,50);">50:</a>
  4948. </td>
  4949. <td class="PriceBreakPrice">
  4950. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥56.4525</span>
  4951. </td>
  4952. </tr>
  4953. <tr>
  4954. <td class="PriceBreakQuantity">
  4955. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
  4956. </td>
  4957. <td class="PriceBreakPrice">
  4958. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥54.0657</span>
  4959. </td>
  4960. </tr>
  4961. <tr>
  4962. <td class="PriceBreakQuantity">
  4963. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(23,200);">200:</a>
  4964. </td>
  4965. <td class="PriceBreakPrice">
  4966. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥51.9012</span>
  4967. </td>
  4968. </tr>
  4969. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl06_trReelHeader">
  4970. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4971. 卷轴
  4972. </td>
  4973. </tr>
  4974. <tr>
  4975. <td class="PriceBreakQuantity">
  4976. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(23,2000);">2,000:</a>
  4977. </td>
  4978. <td class="PriceBreakPrice">
  4979. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap">¥51.9012</span>
  4980. </td>
  4981. </tr>
  4982. <tr>
  4983. <td><br /></td>
  4984. </tr>
  4985. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4986. <td colspan="2" style="text-align: center;">
  4987. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Intel/WG82574IT-S-LBAB/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2g701M5EW7H1k%3d">MouseReel 提供服务支持</a>
  4988. </td>
  4989. </tr>
  4990. </table>
  4991. </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;)">
  4992. <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 />
  4993. <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="购买 WG82574IT S LBAB" class="buy-button" /><br />
  4994. <table cellspacing="0" border="0" style="width: 100%;">
  4995. <tr>
  4996. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4997. 最低:
  4998. </td>
  4999. <td style="padding-left: 2px; text-align: left;">
  5000. 1
  5001. </td>
  5002. </tr>
  5003. <tr>
  5004. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5005. 多个:
  5006. </td>
  5007. <td style="padding-left: 2px; text-align: left;">
  5008. 1
  5009. </td>
  5010. </tr>
  5011. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_trReel">
  5012. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5013. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(23,2000);">卷轴</a>:
  5014. </td>
  5015. <td style="padding-left: 2px; text-align: left;">
  5016. <em class="SearchResultsReel">
  5017. 2,000
  5018. </em>
  5019. </td>
  5020. </tr>
  5021. </table>
  5022. </div>
  5023. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  5024. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5025. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=NHXthhWObd5g%252bahTxFBJbw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=NHXthhWObd5g%252bahTxFBJbw%3d%3d" target="_blank">详细信息</a>
  5026. </div>
  5027. </td><td>Ethernet Controllers
  5028. </td><td>10 Mb/s, 100 Mb/s, 1000 Mb/s
  5029. </td><td>3.3 V
  5030. </td><td>+ 85 C
  5031. </td><td>SMD/SMT
  5032. </td><td>QFN-64 EP
  5033. </td>
  5034. </tr><tr class="SearchResultsRowEven" data-partnumber="607-WG82574ITSLBAC" data-index="26">
  5035. <td class="td-select" align="center">
  5036. <div style="padding: 5px 5px 0 5px;">
  5037. <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>
  5038. </div>
  5039. </td><td><a href='/ProductDetail/Intel/WG82574IT-S-LBAC/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2gPpk01Rl9mhE%3d'><img title='Intel WG82574IT S LBAC' alt='Intel WG82574IT S LBAC' id=959860325 src='/images/mouserimages/sm/QFN_64_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/QFN_64_EP_t.jpg</div></a></td><td>
  5040. <div style="text-align:left;">
  5041. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Intel/WG82574IT-S-LBAC/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2gPpk01Rl9mhE%3d">607-WG82574ITSLBAC</a><br />
  5042. <br />
  5043. <br />
  5044. </div></td><td>
  5045. <div class="mfrDiv">
  5046. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Intel/WG82574IT-S-LBAC/?qs=sGAEpiMZZMsjXX4loUgemkUsXJz%252bFe2gPpk01Rl9mhE%3d">WG82574IT S LBAC</a><br />
  5047. <br />
  5048. <div style="width: 100%; text-align: center;">
  5049. </div>
  5050. <div style="width: 100%; text-align: center;">
  5051. </div>
  5052. </div>
  5053. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../Intel">Intel</a>
  5054. </td><td>以太网 IC Controller IEEE 10/ 100/1000 Mbps QFN64
  5055. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5056. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/Intel/intel-wg82574-phy/">了解更多</a>
  5057. </div>
  5058. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5059. </div>
  5060. </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;Intel&quot;,&quot;607-WG82574ITSLBAC | WG82574IT S LBAC&quot;]);" href="http://www.mouser.com/ds/2/612/82574l-gbe-controller-datasheet-257697.pdf" target="_blank">数据表<br /><br /></a>
  5061. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-0914-13&#39;);return false;" rel="nofollow" href="../../../../../Cart/AdditionalProductInfo.aspx?part=5-0914-13" target="_blank">产品信息</a>
  5062. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">1,283<br/>有库存</span>
  5063. <table>
  5064. <tr align="center">
  5065. <td style="padding-top: 5px">
  5066. </td>
  5067. </tr>
  5068. <tr align="center">
  5069. <td style="padding-top: 5px; padding-bottom: 5px">
  5070. </td>
  5071. </tr>
  5072. </table></td><td>
  5073. <table class="PriceBreaks" cellspacing="0" border="0">
  5074. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5075. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5076. </td>
  5077. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5078. </td>
  5079. </tr>
  5080. <tr>
  5081. <td class="PriceBreakQuantity">
  5082. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  5083. </td>
  5084. <td class="PriceBreakPrice">
  5085. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥61.9164</span>
  5086. </td>
  5087. </tr>
  5088. <tr>
  5089. <td class="PriceBreakQuantity">
  5090. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,25);">25:</a>
  5091. </td>
  5092. <td class="PriceBreakPrice">
  5093. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥59.0616</span>
  5094. </td>
  5095. </tr>
  5096. <tr>
  5097. <td class="PriceBreakQuantity">
  5098. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,50);">50:</a>
  5099. </td>
  5100. <td class="PriceBreakPrice">
  5101. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥56.4525</span>
  5102. </td>
  5103. </tr>
  5104. <tr>
  5105. <td class="PriceBreakQuantity">
  5106. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,100);">100:</a>
  5107. </td>
  5108. <td class="PriceBreakPrice">
  5109. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥54.0657</span>
  5110. </td>
  5111. </tr>
  5112. <tr>
  5113. <td class="PriceBreakQuantity">
  5114. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(24,200);">200:</a>
  5115. </td>
  5116. <td class="PriceBreakPrice">
  5117. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥51.9012</span>
  5118. </td>
  5119. </tr>
  5120. <tr>
  5121. <td><br /></td>
  5122. </tr>
  5123. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  5124. <td colspan="2" style="text-align: center;">
  5125. </td>
  5126. </tr>
  5127. </table>
  5128. </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;)">
  5129. <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 />
  5130. <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="购买 WG82574IT S LBAC" class="buy-button" /><br />
  5131. <table cellspacing="0" border="0" style="width: 100%;">
  5132. <tr>
  5133. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5134. 最低:
  5135. </td>
  5136. <td style="padding-left: 2px; text-align: left;">
  5137. 1
  5138. </td>
  5139. </tr>
  5140. <tr>
  5141. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5142. 多个:
  5143. </td>
  5144. <td style="padding-left: 2px; text-align: left;">
  5145. 1
  5146. </td>
  5147. </tr>
  5148. </table>
  5149. </div>
  5150. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  5151. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5152. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=NHXthhWObd467Moerywj%252bg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=NHXthhWObd467Moerywj%252bg%3d%3d" target="_blank">详细信息</a>
  5153. </div>
  5154. </td><td>Ethernet Controllers
  5155. </td><td>10 Mb/s, 100 Mb/s, 1000 Mb/s
  5156. </td><td>3.3 V
  5157. </td><td>+ 85 C
  5158. </td><td>SMD/SMT
  5159. </td><td>QFN-64 EP
  5160. </td>
  5161. </tr><tr class="SearchResultsRowOdd" data-partnumber="511-ST7580" data-index="27">
  5162. <td class="td-select" align="center">
  5163. <div style="padding: 5px 5px 0 5px;">
  5164. <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>
  5165. </div>
  5166. </td><td><a href='/ProductDetail/STMicroelectronics/ST7580/?qs=sGAEpiMZZMsjXX4loUgemk4Hl8xqkPbirGo5mxuwSVI%3d'><img title='STMicroelectronics ST7580' alt='STMicroelectronics ST7580' id=604029511 src='/images/stmicroelectronics/sm/vfqfpn-48.jpg'/></a></td><td>
  5167. <div style="text-align:left;">
  5168. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/STMicroelectronics/ST7580/?qs=sGAEpiMZZMsjXX4loUgemk4Hl8xqkPbirGo5mxuwSVI%3d">511-ST7580</a><br />
  5169. <br />
  5170. <br />
  5171. </div></td><td>
  5172. <div class="mfrDiv">
  5173. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/STMicroelectronics/ST7580/?qs=sGAEpiMZZMsjXX4loUgemk4Hl8xqkPbirGo5mxuwSVI%3d">ST7580</a><br />
  5174. <br />
  5175. <div style="width: 100%; text-align: center;">
  5176. </div>
  5177. <div style="width: 100%; text-align: center;">
  5178. </div>
  5179. </div>
  5180. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../stmicroelectronics">STMicroelectronics</a>
  5181. </td><td>网络控制器与处理器 IC FSK, PSK Multi-Mode PWR LN SOC 9.6 kbps
  5182. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5183. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/stmicroelectronics/stmicro-stargrid/">了解更多</a>
  5184. </div>
  5185. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5186. </div>
  5187. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;STMicroelectronics&quot;,&quot;511-ST7580 | ST7580&quot;]);" href="http://www.mouser.com/ds/2/389/DM00045903-252261.pdf" target="_blank">数据表</a>
  5188. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">1,385<br/>有库存</span>
  5189. <table>
  5190. <tr align="center">
  5191. <td style="padding-top: 5px">
  5192. </td>
  5193. </tr>
  5194. <tr align="center">
  5195. <td style="padding-top: 5px; padding-bottom: 5px">
  5196. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAlternativePackaging" title="备用包装 | 511-ST7580" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YQjEPZpy9AcIkgGmPTAczcVpETXG1OuO21Zjyx%2fqdC6rlIGIU8gC%252bCudzkyG%252bkhxwSQ71xOrQa2N%2f50qg1gGSQVKWNzGE%2ftgAt0m3MnBWwalg%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  5197. </td>
  5198. </tr>
  5199. </table></td><td>
  5200. <table class="PriceBreaks" cellspacing="0" border="0">
  5201. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5202. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5203. </td>
  5204. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5205. </td>
  5206. </tr>
  5207. <tr>
  5208. <td class="PriceBreakQuantity">
  5209. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  5210. </td>
  5211. <td class="PriceBreakPrice">
  5212. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥87.867</span>
  5213. </td>
  5214. </tr>
  5215. <tr>
  5216. <td class="PriceBreakQuantity">
  5217. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  5218. </td>
  5219. <td class="PriceBreakPrice">
  5220. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥79.4781</span>
  5221. </td>
  5222. </tr>
  5223. <tr>
  5224. <td class="PriceBreakQuantity">
  5225. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
  5226. </td>
  5227. <td class="PriceBreakPrice">
  5228. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥75.7809</span>
  5229. </td>
  5230. </tr>
  5231. <tr>
  5232. <td class="PriceBreakQuantity">
  5233. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,50);">50:</a>
  5234. </td>
  5235. <td class="PriceBreakPrice">
  5236. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥70.5393</span>
  5237. </td>
  5238. </tr>
  5239. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5240. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5241. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  5242. </td>
  5243. <td class="PriceBreakPrice">
  5244. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/STMicroelectronics/ST7580/?qs=sGAEpiMZZMsjXX4loUgemk4Hl8xqkPbirGo5mxuwSVI%3d">查看</a>
  5245. </td>
  5246. </tr>
  5247. <tr>
  5248. <td><br /></td>
  5249. </tr>
  5250. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5251. <td colspan="2" style="text-align: center;">
  5252. </td>
  5253. </tr>
  5254. </table>
  5255. </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;)">
  5256. <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 />
  5257. <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="购买 ST7580" class="buy-button" /><br />
  5258. <table cellspacing="0" border="0" style="width: 100%;">
  5259. <tr>
  5260. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5261. 最低:
  5262. </td>
  5263. <td style="padding-left: 2px; text-align: left;">
  5264. 1
  5265. </td>
  5266. </tr>
  5267. <tr>
  5268. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5269. 多个:
  5270. </td>
  5271. <td style="padding-left: 2px; text-align: left;">
  5272. 1
  5273. </td>
  5274. </tr>
  5275. </table>
  5276. </div>
  5277. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  5278. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5279. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=8PcpU%2fjsRCXqPY%2fviU9vvg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=8PcpU%2fjsRCXqPY%2fviU9vvg%3d%3d" target="_blank">详细信息</a>
  5280. </div>
  5281. </td><td>Power Line Communications
  5282. </td><td>57.6 kb/s
  5283. </td><td>1.8 V
  5284. </td><td>+ 85 C
  5285. </td><td>SMD/SMT
  5286. </td><td>VFQFPN-48
  5287. </td>
  5288. </tr>
  5289. </table>
  5290. </div>
  5291. </td>
  5292. </tr>
  5293. <tr>
  5294. <td class="tdSearchResultsPagingBottom">
  5295. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  5296. <tr>
  5297. <td>
  5298. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  5299. </td>
  5300. <td>
  5301. <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" />
  5302. </td>
  5303. <td>
  5304. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  5305. </td>
  5306. <td style="padding-left: 40px;">
  5307. <div class="floatrightpager">
  5308. <span class="bold">
  5309. 页面:
  5310. </span>
  5311. <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/Communication-Networking-ICs/_/N-6j74f/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_60" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=1500">61</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/_/N-6j74f/?No=25">下一页</a></span>
  5312. </div>
  5313. </td>
  5314. </tr>
  5315. </table>
  5316. </td>
  5317. </tr>
  5318. <tr>
  5319. <td>
  5320. <!--- Search Tips --->
  5321. </td>
  5322. </tr>
  5323. <tr>
  5324. <td>
  5325. <!-- SOP Section 2 -->
  5326. </td>
  5327. </tr>
  5328. </table>
  5329. </div>
  5330. </div><!-- #liProducts-->
  5331. <!-- Datasheets tab -->
  5332. <!-- #liDatasheets-->
  5333. <!-- Images tab -->
  5334. <!-- #liImages-->
  5335. <!-- Newest Products tab -->
  5336. <!-- #liProducts-->
  5337. </div>
  5338. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  5339. <div>
  5340. <span class="popular-searches-label">热门搜索:</span>
  5341. <span class="popular-searches-links"><a href='/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/Ethernet-ICs/_/N-6j74i?P=1yz9zytZ1z0spvfZ1yvpaqp&pop=q332' onclick="ga('send','event','Popular Search Refine Click','Communication & Networking ICs','10 Mb/s, 100 Mb/s, 1000 Mb/s Ethernet Transceivers 1 Transceiver Ethernet ICs')">10 Mb/s, 100 Mb/s, 1000 Mb/s Ethernet Transceivers 1 Transceiver 以太网 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/Ethernet-ICs/_/N-6j74i?P=1yzajqfZ1yvp9l5&pop=6g2d' onclick="ga('send','event','Popular Search Refine Click','Communication & Networking ICs','10 Mb/s, 100 Mb/s 5 Transceiver Ethernet ICs')">10 Mb/s, 100 Mb/s 5 Transceiver 以太网 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/Network-Controller-Processor-ICs/_/N-6j74n?P=1yomnyo&pop=1jqm' onclick="ga('send','event','Popular Search Refine Click','Communication & Networking ICs','Power Line Communications Network Controller & Processor ICs')">Power Line Communications 网络控制器与处理器 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/Ethernet-ICs/_/N-6j74i?P=1yzajqfZ1z0spvfZ1yvp9l5&pop=rjfs' onclick="ga('send','event','Popular Search Refine Click','Communication & Networking ICs','10 Mb/s, 100 Mb/s Ethernet Transceivers 5 Transceiver Ethernet ICs')">10 Mb/s, 100 Mb/s Ethernet Transceivers 5 Transceiver 以太网 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/Ethernet-ICs/_/N-6j74i?P=1yvp9l4&pop=1fhg' onclick="ga('send','event','Popular Search Refine Click','Communication & Networking ICs','3 Transceiver Ethernet ICs')">3 Transceiver 以太网 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs/Ethernet-ICs/_/N-6j74i?P=1z0spvfZ1yvpaqpZ1yzajqf&pop=c9gs' onclick="ga('send','event','Popular Search Refine Click','Communication & Networking ICs','10 Mb/s, 100 Mb/s Ethernet Transceivers 1 Transceiver Ethernet ICs')">10 Mb/s, 100 Mb/s Ethernet Transceivers 1 Transceiver 以太网 IC</a></span>
  5342. </div>
  5343. </div>
  5344. <div style="visibility: hidden;">
  5345. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  5346. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  5347. <span id="SearchResultCount">1517</span>
  5348. <div id="disclaimer">
  5349. 图像仅供参考<br/>请参阅产品规格</div>
  5350. </div>
  5351. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Integrated-Circuits-ICs/Communication-Networking-ICs" />
  5352. <script type="text/javascript" src='../../../../../javascript/ProductImage.js'></script>
  5353. <script type="text/javascript" src='../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  5354. <script type="text/javascript" src='../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  5355. <!--[if gte IE 9]><!-->
  5356. <script type="text/javascript" src='../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  5357. <!--<![endif]-->
  5358. <!--[if lt IE 9]>
  5359. <script type="text/javascript" src='../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  5360. <![endif]-->
  5361. <script type="text/javascript" src='../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  5362. <script type="text/javascript">
  5363. var subdomain = 'cn2';
  5364. </script>
  5365. </div>
  5366. <div class="aspNetHidden">
  5367. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  5368. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  5369. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  5370. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  5371. </div>
  5372. <script type="text/javascript">
  5373. //<![CDATA[
  5374. var mfrIDsArray = new Array;
  5375. //]]>
  5376. </script>
  5377. <script src='../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  5378. <script type="text/javascript">
  5379. //<![CDATA[
  5380. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  5381. </script>
  5382. <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>
  5383. <script type="text/javascript">
  5384. //<![CDATA[
  5385. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  5386. <!-- Google Code for Conversion Page Remarketing List -->
  5387. <!--
  5388. var google_conversion_id = 1046090287;
  5389. var google_conversion_language = "en";
  5390. var google_conversion_format = "3";
  5391. var google_conversion_color = "666666";
  5392. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  5393. var google_conversion_value = 0;
  5394. //-->
  5395. </script>
  5396. <div class="ga-remarketing">
  5397. <script type="text/javascript"
  5398. src="http://www.googleadservices.com/pagead/conversion.js">
  5399. </script>
  5400. </div>
  5401. <noscript>
  5402. <div style="display:inline;">
  5403. <img height="1" width="1" style="border-style:none;" alt=""
  5404. src="http://www.googleadservices.com/pagead/conversion/1046090287/?label=9WmrCMOVxQEQr6To8gM&amp;guid=ON&amp;script=0"/>
  5405. </div>
  5406. </noscript>
  5407. <script type="text/javascript">
  5408. //]]>
  5409. </script>
  5410. <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>
  5411. <script type="text/javascript">
  5412. //<![CDATA[
  5413. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688375^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000393^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000314^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1323044^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$688606';
  5414. theForm.oldSubmit = theForm.submit;
  5415. theForm.submit = WebForm_SaveScrollPositionSubmit;
  5416. theForm.oldOnSubmit = theForm.onsubmit;
  5417. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  5418. //]]>
  5419. </script>
  5420. </form>
  5421. <div id="content-container2" class="hidden">
  5422. <div id="content-fixed-width2" class="content-fixed-width">
  5423. </div>
  5424. </div>
  5425. <div id="wideFooter" class="wideFooter">
  5426. <div id="footer" class="container">
  5427. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB11|20160304.2" />
  5428. <div id="ft_table1">
  5429. <div class="row">
  5430. <div class="col-xs-12">
  5431. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  5432. <div class="floatleft padding5right">
  5433. <strong class="h3">
  5434. 快速电子邮件注册</strong>&nbsp;&nbsp;
  5435. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  5436. </div>
  5437. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  5438. 提交
  5439. </a>
  5440. </div>
  5441. <div id="ft_icons" class="ft_icons">
  5442. <div id="ft_social">
  5443. <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>
  5444. <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>
  5445. <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>
  5446. <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">
  5447. <div class="ico-social fb"></div>
  5448. </a>
  5449. <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">
  5450. <div class="ico-social tw"></div>
  5451. </a>
  5452. <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">
  5453. <div class="ico-social rss"></div>
  5454. </a>
  5455. <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">
  5456. <div class="ico-social yt"></div>
  5457. </a>
  5458. <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">
  5459. <div class="ico-social gp"></div>
  5460. </a>
  5461. <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">
  5462. <div class="ico-social ln"></div>
  5463. </a>
  5464. <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">
  5465. <div class="ico-social sb"></div>
  5466. </a>
  5467. <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">
  5468. <div class="ico-social blog"></div>
  5469. </a>
  5470. </div>
  5471. </div>
  5472. </div>
  5473. </div>
  5474. </div>
  5475. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  5476. <div class="ft_wrapper">
  5477. <div id="ft_links" class="row">
  5478. <div class="col-xs-3 paddingBtm10 hidden-xs">
  5479. <strong class="paddingTopBtm10 inline-block">
  5480. 公司</strong>
  5481. <ul>
  5482. <li>
  5483. <a id="ctl00_Footer1_lnk26" href="../../../../../aboutus/">关于我们</a></li>
  5484. <li>
  5485. <a id="ctl00_Footer1_lnk28" href="../../../../../educationalsales/">教育销售</a></li>
  5486. <li>
  5487. <a id="ctl00_Footer1_lnk31" href="../../../../../pressroom/">新闻中心</a></li>
  5488. <li>
  5489. <a id="ctl00_Footer1_lnk32" href="../../../../../careers/">Mouser 工作机会</a></li>
  5490. <li>
  5491. <a id="ctl00_Footer1_lnk29" href="../../../../../quality/">品质保证</a></li>
  5492. <li>
  5493. <a id="ctl00_Footer1_lnk30" href="../../../../../environmental/">环境保护</a></li>
  5494. </ul>
  5495. </div>
  5496. <div class="col-xs-3 hidden-xs">
  5497. <strong class="paddingTopBtm10 inline-block">
  5498. 快速链接</strong>
  5499. <ul>
  5500. <li><a id="A7" href="/blog">
  5501. Mouser博客</a></li>
  5502. <li>
  5503. <a id="ctl00_Footer1_hlnk1" href="../../../../../new/">最新产品</a></li>
  5504. <li>
  5505. <a id="ctl00_Footer1_hlnk2" href="../../../../../new/products/">新产品</a></li>
  5506. <li>
  5507. <a id="ctl00_Footer1_hlnk3" href="../../../../../applications/">新技术</a></li>
  5508. </ul>
  5509. </div>
  5510. <div class="col-xs-12 col-sm-3">
  5511. <strong class="paddingTopBtm10 inline-block">
  5512. 支持</strong>
  5513. <ul>
  5514. <li><a id="A3" href="/feedback.aspx">
  5515. 反馈</a></li>
  5516. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  5517. 帮助</a></li>
  5518. <li>
  5519. <a id="ctl00_Footer1_lnk27" href="../../../../../contact/">联系我们</a></li>
  5520. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  5521. 浏览器支持</a></li>
  5522. <li><a id="A6" href="/cookie-policy/">
  5523. Cookie政策</a></li>
  5524. </ul>
  5525. </div>
  5526. <div class="col-xs-12 col-sm-3">
  5527. <strong class="paddingTopBtm10 inline-block">
  5528. 昴氏(上海)电子贸易有限公司</strong>
  5529. <ul>
  5530. <li>
  5531. <h4>
  5532. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  5533. </li>
  5534. </ul>
  5535. </div>
  5536. </div>
  5537. </div>
  5538. </div>
  5539. <div class="row">
  5540. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  5541. <div id="ft_copy">
  5542. <span class="ft_terms">
  5543. <a id="A1" href="/privacypolicy/">
  5544. 隐私政策</a>
  5545. &nbsp;&nbsp;|&nbsp;&nbsp;
  5546. <a id="href3" href="/saleterms/">
  5547. 销售条款</a>
  5548. <br />
  5549. </span>
  5550. <span class="ft_copyright">
  5551. 版权所有©2016 Mouser Electronics, Inc
  5552. |
  5553. 沪ICP备15042575号-1
  5554. <br />
  5555. </span>
  5556. <span class="ft_trade">
  5557. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  5558. </span>
  5559. <span class="ft_hq">
  5560. Corporate headquarters and logistics center in Mansfield, Texas USA.
  5561. </span>
  5562. <br />
  5563. <span class="ft_ClassicMobile">
  5564. <strong>
  5565. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  5566. </span>
  5567. </div>
  5568. </div>
  5569. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  5570. <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>
  5571. <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>
  5572. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  5573. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  5574. </a>
  5575. <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>
  5576. <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;
  5577. </a>
  5578. </div>
  5579. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  5580. <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>
  5581. <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>
  5582. <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>
  5583. <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>
  5584. </div>
  5585. </div>
  5586. <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>
  5587. <script type="text/javascript">
  5588. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  5589. </script>
  5590. </div>
  5591. </div>
  5592. <script src="../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  5593. <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>
  5594. </body>
  5595. </html>