13.html 382 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294
  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_13ef7217-dcaa-4a81-8a47-b0cec2347d64-14216-263082';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. 微处理器 - MPU | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应微处理器 - MPU 。Mouser提供微处理器 - MPU 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="微处理器 - MPU" /><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","Jf2DFcU8cg/LR9DcurerrImL85YjzPc/DDezAYH6vGo=",2]);_gaq.push(["_setCustomVar",31,"Cart","8e5e5f97-3be9-426e-8b00-3d82220ab62f",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA126AA195",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '595-AM4376BZDN100',
  65. 'name': 'Microprocessors - MPU Sitara Processor 100 Mhz, 0 to 90',
  66. 'category': 'Microprocessors - MPU',
  67. 'brand': 'Texas Instruments',
  68. 'variant': 'AM4376BZDN100',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '595-AM4379BZDNA80',
  74. 'name': 'Microprocessors - MPU Sitara Processor 800Mhz, -40 to 105',
  75. 'category': 'Microprocessors - MPU',
  76. 'brand': 'Texas Instruments',
  77. 'variant': 'AM4379BZDNA80',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '595-AM4377BZDND80',
  83. 'name': 'Microprocessors - MPU Sitara Processor 491-NFBGA -40 to 90',
  84. 'category': 'Microprocessors - MPU',
  85. 'brand': 'Texas Instruments',
  86. 'variant': 'AM4377BZDND80',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '595-AM4377BZDNA80',
  92. 'name': 'Microprocessors - MPU Sitara Processor 491-NFBGA -40 to 105',
  93. 'category': 'Microprocessors - MPU',
  94. 'brand': 'Texas Instruments',
  95. 'variant': 'AM4377BZDNA80',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '595-AM4376BZDNA100',
  101. 'name': 'Microprocessors - MPU Sitara Processor 100Mhz, -40 to 105',
  102. 'category': 'Microprocessors - MPU',
  103. 'brand': 'Texas Instruments',
  104. 'variant': 'AM4376BZDNA100',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '595-AM4378BZDN80',
  110. 'name': 'Microprocessors - MPU Sitara Processor 80Mhz, 0 to 90',
  111. 'category': 'Microprocessors - MPU',
  112. 'brand': 'Texas Instruments',
  113. 'variant': 'AM4378BZDN80',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '595-AM4376BZDND30',
  119. 'name': 'Microprocessors - MPU Sitara Processor 30Mhz, -40 to 90',
  120. 'category': 'Microprocessors - MPU',
  121. 'brand': 'Texas Instruments',
  122. 'variant': 'AM4376BZDND30',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '595-AM4376BZDN80',
  128. 'name': 'Microprocessors - MPU Sitara Processor 80Mhz, 0 to 90',
  129. 'category': 'Microprocessors - MPU',
  130. 'brand': 'Texas Instruments',
  131. 'variant': 'AM4376BZDN80',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '595-AM4378BZDND100',
  137. 'name': 'Microprocessors - MPU Sitara Processor 491-NFBGA -40 to 90',
  138. 'category': 'Microprocessors - MPU',
  139. 'brand': 'Texas Instruments',
  140. 'variant': 'AM4378BZDND100',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '595-AM4379BZDNA100',
  146. 'name': 'Microprocessors - MPU Sitara Processor 491-NFBGA -40 to 105',
  147. 'category': 'Microprocessors - MPU',
  148. 'brand': 'Texas Instruments',
  149. 'variant': 'AM4379BZDNA100',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '595-AM4378BZDN100',
  155. 'name': 'Microprocessors - MPU Sitara Processor 100Mhz, 0 to 90',
  156. 'category': 'Microprocessors - MPU',
  157. 'brand': 'Texas Instruments',
  158. 'variant': 'AM4378BZDN100',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '595-AM4376BZDND100',
  164. 'name': 'Microprocessors - MPU Sitara Processor 491-NFBGA -40 to 90',
  165. 'category': 'Microprocessors - MPU',
  166. 'brand': 'Texas Instruments',
  167. 'variant': 'AM4376BZDND100',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '595-AM4376BZDND80',
  173. 'name': 'Microprocessors - MPU Sitara Processor 491-NFBGA -40 to 90',
  174. 'category': 'Microprocessors - MPU',
  175. 'brand': 'Texas Instruments',
  176. 'variant': 'AM4376BZDND80',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '595-AM4377BZDND100',
  182. 'name': 'Microprocessors - MPU Sitara Processor 491-NFBGA -40 to 90',
  183. 'category': 'Microprocessors - MPU',
  184. 'brand': 'Texas Instruments',
  185. 'variant': 'AM4377BZDND100',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '595-AM4378BZDND80',
  191. 'name': 'Microprocessors - MPU Sitara Processor 491-NFBGA -40 to 90',
  192. 'category': 'Microprocessors - MPU',
  193. 'brand': 'Texas Instruments',
  194. 'variant': 'AM4378BZDND80',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '595-AM4378BZDNA80',
  200. 'name': 'Microprocessors - MPU Sitara Processor 491-NFBGA -40 to 105',
  201. 'category': 'Microprocessors - MPU',
  202. 'brand': 'Texas Instruments',
  203. 'variant': 'AM4378BZDNA80',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '958-ALF2X-SC-512',
  209. 'name': 'Microprocessors - MPU FILE SYSTEM SoC with DUAL USB HOST \u0026 SD',
  210. 'category': 'Microprocessors - MPU',
  211. 'brand': 'GHI Electronics',
  212. 'variant': 'ALF2X-SC-512',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '694-20-668-0003',
  218. 'name': 'Microprocessors - MPU Rabbit 2000 Chipset 30MHz',
  219. 'category': 'Microprocessors - MPU',
  220. 'brand': 'Rabbit Semiconductor',
  221. 'variant': '20-668-0003',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '841-P2020NSN2MHC',
  227. 'name': 'Microprocessors - MPU P2020 ST 1200/800 R2.1',
  228. 'category': 'Microprocessors - MPU',
  229. 'brand': 'NXP / Freescale',
  230. 'variant': 'P2020NSN2MHC',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '595-AM3358BZCZ100',
  236. 'name': 'Microprocessors - MPU ARM Cortex-A8 MPU',
  237. 'category': 'Microprocessors - MPU',
  238. 'brand': 'Texas Instruments',
  239. 'variant': 'AM3358BZCZ100',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '595-AM3352BZCZA100',
  245. 'name': 'Microprocessors - MPU ARM Cortex-A8 MPU',
  246. 'category': 'Microprocessors - MPU',
  247. 'brand': 'Texas Instruments',
  248. 'variant': 'AM3352BZCZA100',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '595-AM3358BZCZA100',
  254. 'name': 'Microprocessors - MPU ARM Cortex-A8 MPU',
  255. 'category': 'Microprocessors - MPU',
  256. 'brand': 'Texas Instruments',
  257. 'variant': 'AM3358BZCZA100',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '841-MCF5272VM66',
  263. 'name': 'Microprocessors - MPU 66MHz 63MIPS',
  264. 'category': 'Microprocessors - MPU',
  265. 'brand': 'NXP / Freescale',
  266. 'variant': 'MCF5272VM66',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '595-AM3359BZCZA80',
  272. 'name': 'Microprocessors - MPU Sitara ARM Cortex-A8 MPU',
  273. 'category': 'Microprocessors - MPU',
  274. 'brand': 'Texas Instruments',
  275. 'variant': 'AM3359BZCZA80',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '694-20-668-0011',
  281. 'name': 'Microprocessors - MPU Rabbit 3000A LQFP Microprocessor',
  282. 'category': 'Microprocessors - MPU',
  283. 'brand': 'Rabbit Semiconductor',
  284. 'variant': '20-668-0011',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','Jf2DFcU8cg/LR9DcurerrImL85YjzPc/DDezAYH6vGo=');
  290. ga('set','dimension31','8e5e5f97-3be9-426e-8b00-3d82220ab62f');
  291. ga('set','dimension13','163AA125AA126AA195');
  292. ga('set','metric2',2072);
  293. ga('set','dimension5','Microprocessors - MPU');
  294. ga('set','dimension48','a86qz');
  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/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz" rel="canonical" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz" /><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/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" /><script type="text/javascript" src="/msrzffrfcsqardbearry.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/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/" 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='17178155';
  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='17178155';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
  343. var left = (screen.width / 2) - (800 / 2);var top = (screen.height / 2) - (505 / 2); var msgWindow = window.open(url,'MsgWindow','height=505,width=800,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0');
  344. }
  345. function GenerateClientID(prefix, i, suffix) {
  346. if (i < 10) { return prefix + '0' + String(i) + suffix; }
  347. else { return prefix + String(i) + suffix; }
  348. }
  349. var checked = false;
  350. function SelectAll() {
  351. checked = !checked;
  352. var i = 3;
  353. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  354. while (i < 29) {
  355. if (chkSelect != null) chkSelect.checked = checked;
  356. i = i + 1;
  357. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  358. }
  359. }
  360. function IsAllChecked(checked) {
  361. var i = 3;
  362. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  363. while (i < 29) {
  364. if (chkSelect != null && chkSelect.checked != checked) return false;
  365. i = i + 1;
  366. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  367. }
  368. return true;
  369. }
  370. function IsAnyChecked(checked) {
  371. return !IsAllChecked(!checked);
  372. }
  373. function SelectRow(row, checked) {
  374. document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
  375. }
  376. function RowSelected(index, checked) { }
  377. function GetQuantityTextboxByRow(row) {
  378. return GetQuantityTextboxByIndex(row + 2);
  379. }
  380. function GetQuantityTextboxByIndex(index) {
  381. return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
  382. }
  383. function SelectQuantity(row, quantity) {
  384. txtQuantity = GetQuantityTextboxByRow(row);
  385. if (txtQuantity == null) { return; }
  386. txtQuantity.value = quantity;
  387. SelectRow(row, true);
  388. }
  389. var qtyRegEx = /^([0]|\s)*$/;
  390. function IsQuantityEmptyOrZero(quantity) {
  391. return qtyRegEx.test(quantity);
  392. }
  393. function QuantityChanged(row, quantity) {
  394. SelectRow(row, !IsQuantityEmptyOrZero(quantity));
  395. }
  396. var QuantityRowSelectedBase = RowSelected;
  397. function QuantityRowSelected(index, checked) {
  398. QuantityRowSelectedBase(index, checked);
  399. txtQuantity = GetQuantityTextboxByIndex(index);
  400. if (txtQuantity == null) { return; }
  401. if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
  402. else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
  403. }
  404. RowSelected = QuantityRowSelected;
  405. //]]>
  406. </script>
  407. <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&amp;t=5f9d5645" type="text/javascript"></script>
  408. <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&amp;t=5f9d5645" type="text/javascript"></script>
  409. <div id="cookie-notification-bar">
  410. </div>
  411. <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
  412. <div id="wideGab" class="wideGab">
  413. <div id="ctl00_globalActionBar" class="global-action-bar">
  414. <div id="gab-container" class="container">
  415. <div id="contact" class="row">
  416. <div class="topPadding col-xs-6">
  417. <div class="inline-block">
  418. <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
  419. <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>&nbsp;
  420. 400-821-6111</a><div style="display: none;"><a href="xxrrtbuu.html" id="yxezcaswaauztuaqaww" rel="file">ubqtbausacydzezvysubqtb</a></div>
  421. &nbsp;&nbsp;&nbsp;&nbsp;<span class="pipe">|</span>&nbsp;&nbsp;&nbsp;&nbsp;
  422. <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
  423. 反馈</a>
  424. </div>
  425. <span class="qqIcon inline-block">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
  426. </span>&nbsp;&nbsp;
  427. </div>
  428. <div class="col-xs-6 align-right">
  429. <div id="tdImg" class="inline-block topPadding9px">
  430. <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" class="smallgrey">
  431. <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
  432. <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
  433. </div>
  434. <div class="topPadding inline-block">
  435. <span class="pipe">|</span>&nbsp;&nbsp;&nbsp;
  436. <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphLQFTK5dtgxot0nXUSp%2fGZ%2fecGMiUf%2fF30u5xAl2ZBgg01xrfO%252bhWq5">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphLQFTK5dtgxot0nXUSp%2fGZ%2fecGMiUf%2fF30u5xAl2ZBgg01xrfO%252bhWq5"><img id="ctl00_gab1_img7" class="visualAttributeImage" src="../../../../../../images/international/flags/cn2.gif" alt="更改位置" style="border-width: 1px;" /></a>
  438. <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
  439. <span id="ctl00_gab1_lbl1">RMB</span>
  440. </div>
  441. </div>
  442. </div>
  443. </div>
  444. <div style="clear: both;"></div>
  445. <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
  446. class="thickbox"></a>
  447. <div id="divCurrencyPopup" class="currency-popup">
  448. <div class="currency-close">
  449. <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();">&nbsp;</a>
  450. </div>
  451. <div>
  452. <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../../../images/international/flags/cn2.gif" alt="中国" />&nbsp;<span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
  453. <br/>
  454. <div style="padding: 0 20px 0 20px">
  455. <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
  456. <br />
  457. <table width="95%">
  458. <tr>
  459. <td width="20%">
  460. <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
  461. </td>
  462. <td>
  463. <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
  464. <br/>
  465. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
  466. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
  467. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
  468. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
  469. </td>
  470. </tr>
  471. </table>
  472. </div>
  473. </div>
  474. </div>
  475. <div id="cartDialog" class="CartDialog" style="display: none;">
  476. <table id="miniCartOnly">
  477. <tr id="divall">
  478. <td id="tdCart">
  479. <table style="width: 100%; padding: 0px; border: 0px">
  480. <tr>
  481. <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
  482. <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
  483. </td>
  484. <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
  485. <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
  486. </td>
  487. </tr>
  488. </table>
  489. <table id="tableMiniCartItms">
  490. <tr id="trCart">
  491. <td>
  492. <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  493. <table id="tblMiniCart">
  494. <thead>
  495. <tr>
  496. <th class="miniCartColumn">制造商</th>
  497. <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
  498. <th class="miniCartColumn MiniCartHdBg">数量</th>
  499. <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
  500. </tr>
  501. </thead>
  502. </table>
  503. <script type="text/javascript">
  504. var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
  505. var currentGuid = '8e5e5f97-3be9-426e-8b00-3d82220ab62f';
  506. var currentCountryCode = 'CN';
  507. var currentCurrencyCode= 'RMB';
  508. var currencyCulture = 'zh-CN';
  509. var cultureCode = 'zh-CN';
  510. var customerID = '';
  511. </script>
  512. <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  513. </td>
  514. </tr>
  515. </table>
  516. <div style="display: none; padding-top: 10px" id="divSingleItem">
  517. <table id="tblSingeItem">
  518. <tr>
  519. <!-- Here goes the single item -->
  520. <td style="padding-right: 15px">
  521. <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
  522. <td style="align: right; padding-right: 2px" id="tdSingleItms">
  523. <div id="divAll">
  524. <div id="wrapper">
  525. <div id="divLbl">
  526. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
  527. </div>
  528. <div id="divHyp">
  529. </div>
  530. </div>
  531. <div id="divRest">
  532. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
  533. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
  534. <br />
  535. <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
  536. </div>
  537. </div>
  538. </td>
  539. </tr>
  540. </table>
  541. </div>
  542. <div id="divForCart" class="divMsgLnkTotal" style="display: none">
  543. <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
  544. <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
  545. <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
  546. <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
  547. <a onclick="javascript:return MiniCart.SendToCartPage(&#39;Cart Hover&#39;,&#39;View Cart Button&#39;);" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$linkToCartAtMiniCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  548. </div>
  549. </div>
  550. </td>
  551. <td style="display: none" id="trCartSubTotal">
  552. <table class="tblMiniCartSub">
  553. <tr>
  554. <td align="right" style="padding-bottom: 5px; padding-top: 2px">
  555. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
  556. <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
  557. </td>
  558. </tr>
  559. <tr>
  560. <td align="right" style="padding-bottom: 5px">
  561. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
  562. </td>
  563. </tr>
  564. <tr>
  565. <td align="left" style="padding-bottom: 5px">
  566. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
  567. </td>
  568. </tr>
  569. <tr>
  570. <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
  571. <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack(&#39;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune&#39;,&#39;&#39;)" style="color:White;text-decoration:none;">继续购物</a>
  572. <a onclick="return MiniCart.SendToCartPage(&#39;Add to Cart Modal&#39;,&#39;View Cart&#39;);" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  573. </td>
  574. </tr>
  575. </table>
  576. <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
  577. </td>
  578. </tr>
  579. <tr id="trHideModalCheckBox" style="display: none">
  580. <td colspan="2">
  581. <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
  582. </td>
  583. </tr>
  584. </table>
  585. <script type="text/javascript">
  586. $(document).ready(function () {
  587. MiniCart.source = 'refine';
  588. });
  589. </script>
  590. </div>
  591. <script type="text/javascript">
  592. function OpenCurrencyPopup() {
  593. $("#tblink").trigger('click');
  594. }
  595. function CloseCurrencyPopup() {
  596. var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
  597. var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
  598. if (ddlCurrency != null && hidCurrencyValue != null) {
  599. ddlCurrency.selectedIndex = hidCurrencyValue.value;
  600. }
  601. window.location.reload();
  602. }
  603. </script>
  604. </div>
  605. </div>
  606. <div id="wideHeader" class="wideHeader">
  607. <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
  608. <div id="search" class="row">
  609. <div id="logo" class='col-xs-4'>
  610. <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
  611. </div>
  612. <div id="search-block" class="col-xs-4">
  613. <div id="search-title">
  614. 物料编号/关键字
  615. </div>
  616. <div id="search-bar">
  617. <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_NavHeader_btn1&#39;)">
  618. <div id="searchPartNumberBox" class="search-box inline-block">
  619. <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
  620. <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
  621. </div>
  622. <div class="inline-block">
  623. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
  624. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
  625. </div>
  626. </div>
  627. </div>
  628. </div>
  629. <div id="account" class="col-xs-4 align-right">
  630. <ul>
  631. <li>
  632. </li>
  633. <li>
  634. <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphLQFTK5dtgxot0nXUSp%2fGZ%2fecGMiUf%2fF30u5xAl2ZBgg01xrfO%252bhWq5">登录</a>
  635. </li>
  636. <li>
  637. </li>
  638. <li>
  639. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  643. </li>
  644. <li>
  645. <!-- Mush:TBC -->
  646. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  647. </li>
  648. </ul>
  649. </div>
  650. </div>
  651. <div id="navArea" class="row">
  652. <div class="col-xs-12">
  653. <div id="navMain" class="inline-block">
  654. <div class="navbar">
  655. <ul class="topnav">
  656. <li>
  657. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  658. <ul class="subnav" id="subnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  661. </li>
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  670. </li>
  671. </ul>
  672. </li>
  673. <li>
  674. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  675. <ul class="subnav" id="subnav">
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  678. </li>
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  687. </li>
  688. </ul>
  689. </li>
  690. <li>
  691. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  692. <ul class="subnav" id="subnav">
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  695. </li>
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  725. </li>
  726. </ul>
  727. </li>
  728. <li>
  729. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  730. <ul class="subnav" id="subnav">
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  733. </li>
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  760. </li>
  761. </ul>
  762. </li>
  763. <li>
  764. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  765. <ul class="subnav" id="subnav">
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  768. </li>
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  777. </li>
  778. </ul>
  779. </li>
  780. <li>
  781. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  782. <ul class="subnav" id="subnav">
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  785. </li>
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  797. </li>
  798. </ul>
  799. </li>
  800. </ul>
  801. </div>
  802. </div>
  803. <div class="onlineCatalog inline-block">
  804. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  805. </div>
  806. </div>
  807. </div>
  808. </div>
  809. <div style="visibility: hidden; height: 0px;">
  810. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  811. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  812. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  813. </div>
  814. <script type="text/javascript">
  815. $(document).ready(function () {
  816. //* change to html5 catalog if javascript is enabled *
  817. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  818. });
  819. </script>
  820. <script type="text/javascript" src='../../../../../../javascript/genLib.js'></script>
  821. </div>
  822. <div id="ctl00_divWide" class="divWide">
  823. <link rel="stylesheet" type="text/css" href='../../../../../../css/fontawesome/css/font-awesome.min.css' />
  824. <br />
  825. <strong></strong>
  826. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  827. <strong>></strong>
  828. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" href="../../../../../_/N-5gcb/" style="font-size: 9pt; font-weight: bold;">半导体</a>
  829. <strong>></strong>
  830. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" href="../../../../_/N-6j73k/" style="font-size: 9pt; font-weight: bold;">集成电路 - IC</a>
  831. <strong>></strong>
  832. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-a86bc/" style="font-size: 9pt; font-weight: bold;">嵌入式处理器和控制器</a>
  833. <strong>></strong>
  834. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl04_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">微处理器 - MPU</a>
  835. <hr />
  836. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  837. <div class="categorySearchLimits">
  838. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  839. </div>
  840. </div>
  841. </div>
  842. <table border="0" width="100%">
  843. <tr>
  844. <td>
  845. <div id="ctl00_ContentMain_pnl3">
  846. <div id="category-top" class="category-content">
  847. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> 微处理器 - MPU</h1></a>
  848. <!--Marketing Content-->
  849. <div id="ctl00_ContentMain_refinemfglogo">
  850. </div>
  851. </div><!--.category-content-->
  852. </div>
  853. </td>
  854. </tr>
  855. <tr>
  856. <td>
  857. </td>
  858. </tr>
  859. <tr>
  860. <td>
  861. <div id="refine-page2">
  862. </div>
  863. </td>
  864. </tr>
  865. </table>
  866. <div id="ctl00_ContentMain_divTabs" class="row">
  867. <div class="col-xs-12">
  868. <div id="tabsNavigation" >
  869. <ul>
  870. <li id="ctl00_ContentMain_liProductsTab" class="active">
  871. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(2,072)</span></a>
  872. </li>
  873. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  874. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Microprocessors - MPU&#39;);" href="../../Datasheets/_/N-a86qz">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(197)</span></a>
  875. </li>
  876. <li id="ctl00_ContentMain_liImagesTab" class="">
  877. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Microprocessors - MPU&#39;);" href="../../Images/_/N-a86qz">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(138)</span></a>
  878. </li>
  879. <li id="ctl00_ContentMain_liNewestTab" class="">
  880. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Microprocessors - MPU&#39;);" href="../../Newest-Products/_/N-a86qz">最新产品</a>
  881. </li>
  882. </ul>
  883. </div>
  884. </div>
  885. </div>
  886. <div id="tabDivs" class="tab-divs">
  887. <script type="text/javascript">
  888. //<![CDATA[
  889. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  890. //]]>
  891. </script>
  892. <div id="ctl00_ContentMain_liProducts">
  893. <div id="refineSearchDiv">
  894. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  895. <div id="refine-keyword-search-2">
  896. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  897. <div id="boxPartSearch2">
  898. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  899. <tr>
  900. <td rowspan="3" style="vertical-align: middle">
  901. <div id="searchPartNumberBox" class="search-box" >
  902. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  903. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  904. </div>
  905. </td>
  906. </tr>
  907. <tr>
  908. <td class="chk-Search">
  909. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  910. </td>
  911. </tr>
  912. <tr>
  913. <td class="chk-Search">
  914. <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>
  915. </td>
  916. </tr>
  917. </table>
  918. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  919. </div>
  920. <script type="text/javascript" src='../../../../../../flash/js/Placeholders.min.js'></script>
  921. <script type="text/javascript" src='../../../../../../flash/js/watermark.js'></script>
  922. </div>
  923. </div>
  924. <div id="refine-mfg-select-2">
  925. </div>
  926. <div class="clear">
  927. </div>
  928. <table class="SearchParametricTable2">
  929. <tr>
  930. <td>
  931. <div id="AttributesDiv2">
  932. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  933. <div class="categorySearchLimits">
  934. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  935. <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_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17178155|Microprocessors - MPU&#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_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17178155|Microprocessors - MPU&#39;).checked = false;" /></span>&nbsp;<b>集成电路 - IC</b>&nbsp;&#62;&nbsp;<span title="嵌入式处理器和控制器"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors & Controllers" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx17177592|Embedded Processors & Controllers" 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;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17178155|Microprocessors - MPU&#39;).checked = false;" /></span>&nbsp;<b>嵌入式处理器和控制器</b>&nbsp;&#62;&nbsp;<span title="微处理器 - MPU"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17178155|Microprocessors - MPU" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx17178155|Microprocessors - MPU" 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;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = true;" /></span>&nbsp;<b>微处理器 - MPU</b>
  936. </div>
  937. </div>
  938. <hr/>
  939. </div>
  940. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  941. <p class="applied-filter-lbl">
  942. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  943. <span id="ctl00_ContentMain_uc5_lblreccount">2,072 匹配</span>
  944. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  945. </p>
  946. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  947. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  948. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  949. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../../../images/icon_tooltip.png" />
  950. <br />
  951. </div>
  952. </div>
  953. <table id="tb1" style="width: 100%;">
  954. <tr>
  955. <td>
  956. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  957. <tr>
  958. <td>
  959. <table cellpadding="0" cellspacing="0">
  960. <tr>
  961. <td>
  962. <table>
  963. <tr>
  964. <td>
  965. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  966. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  967. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  968. of parametric ids sent on the query string after the seo url is generated and redirected to.
  969. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  970. sorted parametric attributes from an endeca attribute group --->
  971. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  972. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  973. &nbsp;
  974. </div>
  975. </td>
  976. </tr>
  977. <tr>
  978. <td>
  979. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  980. <option value="4294759229">Atmel</option>
  981. <option value="4294449078">Cirrus Logic</option>
  982. <option value="4294759230">Digi International</option>
  983. <option value="4292700835">GHI Electronics</option>
  984. <option value="4292499325">Intersil</option>
  985. <option value="4291596096">Maxim Integrated</option>
  986. <option value="4294758971">NXP</option>
  987. <option value="4294763909">Rabbit Semiconductor</option>
  988. <option value="4294764375">STMicroelectronics</option>
  989. <option value="4294759686">Texas Instruments</option>
  990. <option value="4294758568">Toshiba</option>
  991. <option value="4292713940">Western Design Center (WDC)</option>
  992. <option value="4294759235">ZiLOG</option>
  993. </select>
  994. </td>
  995. </tr>
  996. <tr>
  997. <td>
  998. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  999. </td>
  1000. </tr>
  1001. </table>
  1002. </td>
  1003. <td valign="bottom" style="width: 15px;">
  1004. &nbsp;
  1005. </td>
  1006. </tr>
  1007. </table>
  1008. </td><td>
  1009. <table cellpadding="0" cellspacing="0">
  1010. <tr>
  1011. <td>
  1012. <table>
  1013. <tr>
  1014. <td>
  1015. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">系列</span>
  1016. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1017. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1018. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1019. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1020. sorted parametric attributes from an endeca attribute group --->
  1021. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1022. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688693" />
  1023. &nbsp;
  1024. </div>
  1025. </td>
  1026. </tr>
  1027. <tr>
  1028. <td>
  1029. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688693" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688693">
  1030. <option value="4286380940">80C88</option>
  1031. <option value="4286380939">80C89</option>
  1032. <option value="4285158785">ALFAT</option>
  1033. <option value="4290494990">AM1705</option>
  1034. <option value="4290494989">AM1707</option>
  1035. <option value="4290494739">AM1802</option>
  1036. <option value="4290494905">AM1806</option>
  1037. <option value="4290494904">AM1808</option>
  1038. <option value="4290494738">AM1810</option>
  1039. <option value="4266753464">AM3351</option>
  1040. <option value="4290494332">AM3352</option>
  1041. <option value="4290494331">AM3354</option>
  1042. <option value="4290494218">AM3356</option>
  1043. <option value="4290494330">AM3357</option>
  1044. <option value="4290494310">AM3358</option>
  1045. <option value="4272827865">AM3358-EP</option>
  1046. <option value="4290494328">AM3359</option>
  1047. <option value="4290494915">AM3505</option>
  1048. <option value="4290494914">AM3517</option>
  1049. <option value="4290494820">AM3703</option>
  1050. <option value="4290494819">AM3715</option>
  1051. <option value="4285142166">AM3871</option>
  1052. <option value="4290494422">AM3874</option>
  1053. <option value="4290494563">AM3892</option>
  1054. <option value="4290494569">AM3894</option>
  1055. <option value="4277292882">AM4376</option>
  1056. <option value="4276826009">AM4377</option>
  1057. <option value="4277292879">AM4378</option>
  1058. <option value="4279933360">AM4379</option>
  1059. <option value="4273003829">AM5718</option>
  1060. <option value="4273003830">AM5728</option>
  1061. <option value="4272900915">AM5K2E02</option>
  1062. <option value="4272900914">AM5K2E04</option>
  1063. <option value="4289437982">AT91SAM9263</option>
  1064. <option value="4290474622">AT91SAM9G15</option>
  1065. <option value="4290474623">AT91SAM9M10</option>
  1066. <option value="4290474624">AT91SAM9X</option>
  1067. <option value="4271584279">ATSAMA5D21</option>
  1068. <option value="4273122987">ATSAMA5D22</option>
  1069. <option value="4273122985">ATSAMA5D23</option>
  1070. <option value="4273122989">ATSAMA5D24</option>
  1071. <option value="4271584269">ATSAMA5D26</option>
  1072. <option value="4273122988">ATSAMA5D27</option>
  1073. <option value="4273122986">ATSAMA5D28</option>
  1074. <option value="4289799588">BSC9131</option>
  1075. <option value="4274671483">CDP1802A</option>
  1076. <option value="4286550397">CP80C86</option>
  1077. <option value="4286549801">CP80C88</option>
  1078. <option value="4286380969">CS80C286</option>
  1079. <option value="4290495235">DS5001FP</option>
  1080. <option value="4289902020">DS5002</option>
  1081. <option value="4289902886">DS5002FP</option>
  1082. <option value="4290495182">DS5003</option>
  1083. <option value="4287002195">EP9301</option>
  1084. <option value="4287002193">EP9302</option>
  1085. <option value="4287002191">EP9307</option>
  1086. <option value="4287002189">EP9312</option>
  1087. <option value="4287002187">EP9315</option>
  1088. <option value="4288425258">EZ80190AZ050</option>
  1089. <option value="4286555742">IS80C28</option>
  1090. <option value="4289801556">M68LC302</option>
  1091. <option value="4289801548">MC68000</option>
  1092. <option value="4289801561">MC68302</option>
  1093. <option value="4289801630">MC68340</option>
  1094. <option value="4289801562">MC68360</option>
  1095. <option value="4292980448">MCF5206</option>
  1096. <option value="4289800957">MCF520X</option>
  1097. <option value="4289801239">MCF5227X</option>
  1098. <option value="4289801611">MCF523X</option>
  1099. <option value="4289801603">MCF524X</option>
  1100. <option value="4289801545">MCF525X</option>
  1101. <option value="4289801761">MCF527X</option>
  1102. <option value="4292980375">MCF52xx</option>
  1103. <option value="4289800936">MCF5301x</option>
  1104. <option value="4289801624">MCF530X</option>
  1105. <option value="4289801450">MCF532X</option>
  1106. <option value="4289801449">MCF537X</option>
  1107. <option value="4289801620">MCF540X</option>
  1108. <option value="4289800428">MCF5441X</option>
  1109. <option value="4292980356">MCF5445X</option>
  1110. <option value="4289801625">MCF547X</option>
  1111. <option value="4289801602">MCF548X</option>
  1112. <option value="4289801074">MPC5121e</option>
  1113. <option value="4289800605">MPC5125</option>
  1114. <option value="4292980441">MPC5200</option>
  1115. <option value="4292980383">MPC7410</option>
  1116. <option value="4292980393">MPC7447A</option>
  1117. <option value="4292980392">MPC7448</option>
  1118. <option value="4289801534">MPC745</option>
  1119. <option value="4289801547">MPC7457</option>
  1120. <option value="4289801533">MPC755</option>
  1121. <option value="4292980443">MPC8241</option>
  1122. <option value="4292980444">MPC8245</option>
  1123. <option value="4289801699">MPC8247</option>
  1124. <option value="4289801697">MPC8248</option>
  1125. <option value="4292980402">MPC8250</option>
  1126. <option value="4292980401">MPC8255</option>
  1127. <option value="4292980400">MPC8260</option>
  1128. <option value="4289801532">MPC8264</option>
  1129. <option value="4289801531">MPC8265</option>
  1130. <option value="4289801530">MPC8266</option>
  1131. <option value="4292980433">MPC8270</option>
  1132. <option value="4289801698">MPC8271</option>
  1133. <option value="4292980434">MPC8272</option>
  1134. <option value="4292980431">MPC8275</option>
  1135. <option value="4292980428">MPC8280</option>
  1136. <option value="4289800384">MPC8306</option>
  1137. <option value="4289800663">MPC8308</option>
  1138. <option value="4289800382">MPC8309</option>
  1139. <option value="4289800541">MPC8313E</option>
  1140. <option value="4289801073">MPC8314E</option>
  1141. <option value="4289801072">MPC8315E</option>
  1142. <option value="4286706138">MPC8321</option>
  1143. <option value="4289801446">MPC8323</option>
  1144. <option value="4289801445">MPC8343E</option>
  1145. <option value="4289801444">MPC8347E</option>
  1146. <option value="4292980366">MPC8349E</option>
  1147. <option value="4289801245">MPC8358E</option>
  1148. <option value="4289801244">MPC8360E</option>
  1149. <option value="4289800004">MPC8377E</option>
  1150. <option value="4289800003">MPC8378E</option>
  1151. <option value="4289800002">MPC8379E</option>
  1152. <option value="4290495477">MPC837x</option>
  1153. <option value="4292980379">MPC850</option>
  1154. <option value="4292980429">MPC852T</option>
  1155. <option value="4289800497">MPC8533E</option>
  1156. <option value="4289800496">MPC8536E</option>
  1157. <option value="4289801529">MPC853T</option>
  1158. <option value="4292980398">MPC8540</option>
  1159. <option value="4292980397">MPC8541E</option>
  1160. <option value="4289799894">MPC8543E</option>
  1161. <option value="4289800381">MPC8544E</option>
  1162. <option value="4289799893">MPC8545E</option>
  1163. <option value="4289799892">MPC8547E</option>
  1164. <option value="4289799891">MPC8548E</option>
  1165. <option value="4292980396">MPC8555E</option>
  1166. <option value="4289801528">MPC855T</option>
  1167. <option value="4292980395">MPC8560</option>
  1168. <option value="4289801045">MPC8568E</option>
  1169. <option value="4286706033">MPC8569</option>
  1170. <option value="4289800746">MPC8572E</option>
  1171. <option value="4289801527">MPC857DSL</option>
  1172. <option value="4289801526">MPC857T</option>
  1173. <option value="4289801696">MPC859DSL</option>
  1174. <option value="4292980394">MPC860</option>
  1175. <option value="4289801161">MPC8610</option>
  1176. <option value="4289801525">MPC862</option>
  1177. <option value="4289800678">MPC8640</option>
  1178. <option value="4289800677">MPC8641D</option>
  1179. <option value="4292980439">MPC866</option>
  1180. <option value="4292980436">MPC870</option>
  1181. <option value="4292980437">MPC875</option>
  1182. <option value="4292980427">MPC880</option>
  1183. <option value="4292980430">MPC885</option>
  1184. <option value="4289799934">P1010</option>
  1185. <option value="4289800375">P1020</option>
  1186. <option value="4289800374">P1021</option>
  1187. <option value="4289800025">P1022</option>
  1188. <option value="4289800373">P1024</option>
  1189. <option value="4289800372">P1025</option>
  1190. <option value="4290382562">P2020</option>
  1191. <option value="4289799796">P2040</option>
  1192. <option value="4289799795">P3041</option>
  1193. <option value="4289800371">P4080</option>
  1194. <option value="4289799761">P5020</option>
  1195. <option value="4290496220">Rabbit 2000</option>
  1196. <option value="4290495956">Rabbit 3000</option>
  1197. <option value="4290495576">Rabbit 4000</option>
  1198. <option value="4289437905">SAM9G</option>
  1199. <option value="4289437779">SAM9N/CN</option>
  1200. <option value="4289437716">SAM9X</option>
  1201. <option value="4288516572">SAMA5D3</option>
  1202. <option value="4284932667">SAMA5D4</option>
  1203. <option value="4288049401">SPEAR300</option>
  1204. <option value="4288049404">SPEAR320</option>
  1205. <option value="4288049399">SPEAR600</option>
  1206. <option value="4292980354">TX49</option>
  1207. <option value="4288425229">Z8018006</option>
  1208. <option value="4288425244">Z8018008</option>
  1209. <option value="4288425393">Z8018010</option>
  1210. <option value="4288425312">Z8018110</option>
  1211. <option value="4288425416">Z8018216</option>
  1212. <option value="4288425254">Z8018220</option>
  1213. <option value="4288425325">Z8018233</option>
  1214. <option value="4288425093">Z8019520</option>
  1215. <option value="4288425092">Z8019533</option>
  1216. <option value="4288425283">Z8038018</option>
  1217. <option value="4288425262">Z8038220</option>
  1218. <option value="4288425316">Z84C0006</option>
  1219. <option value="4288425214">Z84C0008</option>
  1220. <option value="4288425278">Z84C0010</option>
  1221. <option value="4288425264">Z84C0020</option>
  1222. <option value="4288425216">Z84C1008</option>
  1223. <option value="4288425315">Z84C2006</option>
  1224. <option value="4288425215">Z84C2008</option>
  1225. <option value="4288425387">Z84C2010</option>
  1226. <option value="4288425360">Z8L18020</option>
  1227. <option value="4288425390">Z8L18220</option>
  1228. <option value="4288424973">Z8L38210</option>
  1229. <option value="4288425261">Z8S18010</option>
  1230. <option value="4288425320">Z8S18020</option>
  1231. <option value="4288425285">Z8S18033</option>
  1232. </select>
  1233. </td>
  1234. </tr>
  1235. <tr>
  1236. <td>
  1237. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1238. </td>
  1239. </tr>
  1240. </table>
  1241. </td>
  1242. <td valign="bottom" style="width: 15px;">
  1243. &nbsp;
  1244. </td>
  1245. </tr>
  1246. </table>
  1247. </td><td>
  1248. <table cellpadding="0" cellspacing="0">
  1249. <tr>
  1250. <td>
  1251. <table>
  1252. <tr>
  1253. <td>
  1254. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">核心</span>
  1255. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1256. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1257. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1258. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1259. sorted parametric attributes from an endeca attribute group --->
  1260. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1261. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="1000000656" />
  1262. &nbsp;
  1263. </div>
  1264. </td>
  1265. </tr>
  1266. <tr>
  1267. <td>
  1268. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000656" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_1000000656">
  1269. <option value="4292836097">603e</option>
  1270. <option value="4292836099">8051</option>
  1271. <option value="4269000982">68000</option>
  1272. <option value="4288725211">-</option>
  1273. <option value="4265884938">80C286</option>
  1274. <option value="4265884942">80C86</option>
  1275. <option value="4265884940">80C88</option>
  1276. <option value="4272094282">ARM Cortex A15, ARM Cortex M4, C66x DSP</option>
  1277. <option value="4261517855">ARM Cortex A15, ARM Cortex M4, C66x, DSP</option>
  1278. <option value="4290908396">ARM Cortex A5</option>
  1279. <option value="4289524331">ARM Cortex A7</option>
  1280. <option value="4292835478">ARM Cortex A8</option>
  1281. <option value="4291929581">ARM Cortex A9</option>
  1282. <option value="4292835724">ARM Cortex M3</option>
  1283. <option value="4292575963">ARM1136</option>
  1284. <option value="4292852777">ARM920T</option>
  1285. <option value="4292835772">ARM926EJ-S</option>
  1286. <option value="4265862734">CDP1802</option>
  1287. <option value="4292836095">ColdFire V2</option>
  1288. <option value="4292835926">ColdFire V3</option>
  1289. <option value="4292835930">ColdFire V4</option>
  1290. <option value="4292512015">ColdFire V4e</option>
  1291. <option value="4268905089">CPU32+</option>
  1292. <option value="4292836093">e300</option>
  1293. <option value="4267385679">e300c2</option>
  1294. <option value="4292720274">e300c3</option>
  1295. <option value="4292586030">e300c4s</option>
  1296. <option value="4292835843">e500</option>
  1297. <option value="4268944841">e500, SC3850</option>
  1298. <option value="4286882631">e500-v2</option>
  1299. <option value="4292835514">e500mc</option>
  1300. <option value="4292574314">e5500</option>
  1301. <option value="4292835845">e600</option>
  1302. <option value="4287103091">e603e</option>
  1303. <option value="4266695095">e6500</option>
  1304. <option value="4268943802">e6500, SC3900FP</option>
  1305. <option value="4292836146">eZ80</option>
  1306. <option value="4292715416">M68000</option>
  1307. <option value="4292835928">PowerPC</option>
  1308. <option value="4292686813">Rabbit 2000</option>
  1309. <option value="4292686816">Rabbit 3000</option>
  1310. <option value="4292686795">Rabbit 4000</option>
  1311. <option value="4268946235">Rabbit 6000</option>
  1312. <option value="4265577555">TX49/H3</option>
  1313. <option value="4292574445">Z180</option>
  1314. <option value="4292836017">Z380</option>
  1315. <option value="4292836144">Z80</option>
  1316. </select>
  1317. </td>
  1318. </tr>
  1319. <tr>
  1320. <td>
  1321. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1322. </td>
  1323. </tr>
  1324. </table>
  1325. </td>
  1326. <td valign="bottom" style="width: 15px;">
  1327. &nbsp;
  1328. </td>
  1329. </tr>
  1330. </table>
  1331. </td><td>
  1332. <table cellpadding="0" cellspacing="0">
  1333. <tr>
  1334. <td>
  1335. <table>
  1336. <tr>
  1337. <td>
  1338. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">内核数量</span>
  1339. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1340. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1341. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1342. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1343. sorted parametric attributes from an endeca attribute group --->
  1344. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1345. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="1000000877" />
  1346. &nbsp;
  1347. </div>
  1348. </td>
  1349. </tr>
  1350. <tr>
  1351. <td>
  1352. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000877" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_1000000877">
  1353. <option value="4273581943">1 Core</option>
  1354. <option value="4282222145">2 Core</option>
  1355. <option value="4274213416">4 Core</option>
  1356. <option value="4273203221">8 Core</option>
  1357. <option value="4273203205">12 Core</option>
  1358. </select>
  1359. </td>
  1360. </tr>
  1361. <tr>
  1362. <td>
  1363. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1364. </td>
  1365. </tr>
  1366. </table>
  1367. </td>
  1368. <td valign="bottom" style="width: 15px;">
  1369. &nbsp;
  1370. </td>
  1371. </tr>
  1372. </table>
  1373. </td><td>
  1374. <table cellpadding="0" cellspacing="0">
  1375. <tr>
  1376. <td>
  1377. <table>
  1378. <tr>
  1379. <td>
  1380. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">数据总线宽度</span>
  1381. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1382. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1383. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1384. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1385. sorted parametric attributes from an endeca attribute group --->
  1386. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1387. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000000426" />
  1388. &nbsp;
  1389. </div>
  1390. </td>
  1391. </tr>
  1392. <tr>
  1393. <td>
  1394. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000426" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000000426">
  1395. <option value="4294604919">8 bit</option>
  1396. <option value="4293996873">8 bit/16 bit</option>
  1397. <option value="4294604602">16 bit</option>
  1398. <option value="4294602379">32 bit</option>
  1399. <option value="4266193181">32 bit/16 bit</option>
  1400. <option value="4294590068">64 bit</option>
  1401. </select>
  1402. </td>
  1403. </tr>
  1404. <tr>
  1405. <td>
  1406. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1407. </td>
  1408. </tr>
  1409. </table>
  1410. </td>
  1411. <td valign="bottom" style="width: 15px;">
  1412. &nbsp;
  1413. </td>
  1414. </tr>
  1415. </table>
  1416. </td><td>
  1417. <table cellpadding="0" cellspacing="0">
  1418. <tr>
  1419. <td>
  1420. <table>
  1421. <tr>
  1422. <td>
  1423. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">最大时钟频率</span>
  1424. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1425. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1426. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1427. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1428. sorted parametric attributes from an endeca attribute group --->
  1429. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1430. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="1000000389" />
  1431. &nbsp;
  1432. </div>
  1433. </td>
  1434. </tr>
  1435. <tr>
  1436. <td>
  1437. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000000389" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_1000000389">
  1438. <option value="4292978174">3.2 MHz</option>
  1439. <option value="4294604164">5 MHz</option>
  1440. <option value="4294604139">6 MHz</option>
  1441. <option value="4294604649">8 MHz</option>
  1442. <option value="4294604150">10 MHz</option>
  1443. <option value="4294593784">12.5 MHz</option>
  1444. <option value="4292713939">14 MHz</option>
  1445. <option value="4294604165">16 MHz</option>
  1446. <option value="4294591282">16.67 MHz</option>
  1447. <option value="4294398408">16.78 MHz</option>
  1448. <option value="4294604131">18 MHz</option>
  1449. <option value="4294604783">20 MHz</option>
  1450. <option value="4294602434">24 MHz</option>
  1451. <option value="4294604819">25 MHz</option>
  1452. <option value="4266031445">25.16 MHz</option>
  1453. <option value="4294604721">30 MHz</option>
  1454. <option value="4294604686">33 MHz</option>
  1455. <option value="4294604597">40 MHz</option>
  1456. <option value="4294604169">50 MHz</option>
  1457. <option value="4294594427">54 MHz</option>
  1458. <option value="4294591310">55 MHz</option>
  1459. <option value="4294602402">60 MHz</option>
  1460. <option value="4294601659">66 MHz</option>
  1461. <option value="4294601046">75 MHz</option>
  1462. <option value="4294601678">80 MHz</option>
  1463. <option value="4294594439">90 MHz</option>
  1464. <option value="4294601742">100 MHz</option>
  1465. <option value="4294604810">120 MHz</option>
  1466. <option value="4294600464">133 MHz</option>
  1467. <option value="4294601671">140 MHz</option>
  1468. <option value="4294601681">150 MHz</option>
  1469. <option value="4294594450">162 MHz</option>
  1470. <option value="4294601718">166 MHz</option>
  1471. <option value="4294594426">166.67 MHz</option>
  1472. <option value="4294593077">180 MHz</option>
  1473. <option value="4294601703">200 MHz</option>
  1474. <option value="4294601665">220 MHz</option>
  1475. <option value="4294601663">240 MHz</option>
  1476. <option value="4294596905">250 MHz</option>
  1477. <option value="4294601693">266 MHz</option>
  1478. <option value="4294601698">300 MHz</option>
  1479. <option value="4294601690">333 MHz</option>
  1480. <option value="4294601704">350 MHz</option>
  1481. <option value="4294436804">375 MHz</option>
  1482. <option value="4294601664">400 MHz</option>
  1483. <option value="4292720271">417 MHz</option>
  1484. <option value="4294595572">450 MHz</option>
  1485. <option value="4292753117">456 MHz</option>
  1486. <option value="4294594380">500 MHz</option>
  1487. <option value="4284917608">528 MHz</option>
  1488. <option value="4294593015">533 MHz</option>
  1489. <option value="4290908394">536 MHz</option>
  1490. <option value="4294594355">600 MHz</option>
  1491. <option value="4267151392">650 MHz</option>
  1492. <option value="4294594177">667 MHz</option>
  1493. <option value="4294594295">720 MHz</option>
  1494. <option value="4294593041">733 MHz</option>
  1495. <option value="4294406333">800 MHz</option>
  1496. <option value="4277647399">800 MHz, 800 MHz</option>
  1497. <option value="4294593072">833 MHz</option>
  1498. <option value="4294593040">867 MHz</option>
  1499. <option value="4294590736">900 MHz</option>
  1500. <option value="4294588405">1 GHz</option>
  1501. <option value="4268944838">1 GHz, 1 GHz</option>
  1502. <option value="4282009729">1.066 GHz</option>
  1503. <option value="4292511994">1.067 GHz</option>
  1504. <option value="4292476639">1.1 GHz</option>
  1505. <option value="4268999821">1.167 GHz</option>
  1506. <option value="4292856852">1.2 GHz</option>
  1507. <option value="4292566792">1.25 GHz</option>
  1508. <option value="4268854763">1.267 GHz</option>
  1509. <option value="4292476632">1.3 GHz</option>
  1510. <option value="4292512000">1.333 GHz</option>
  1511. <option value="4290998033">1.4 GHz</option>
  1512. <option value="4268854767">1.42 GHz</option>
  1513. <option value="4292797232">1.5 GHz</option>
  1514. <option value="4265852091">1.5 GHz, 212.8 MHz, 750 MHz</option>
  1515. <option value="4266373715">1.533 GHz</option>
  1516. <option value="4292476642">1.6 GHz</option>
  1517. <option value="4268943799">1.6 GHz, 1.2 GHz</option>
  1518. <option value="4266695092">1.667 GHz</option>
  1519. <option value="4292512012">1.7 GHz</option>
  1520. <option value="4292476627">1.8 GHz</option>
  1521. <option value="4292476620">2 GHz</option>
  1522. <option value="4290038425">2.2 GHz</option>
  1523. </select>
  1524. </td>
  1525. </tr>
  1526. <tr>
  1527. <td>
  1528. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1529. </td>
  1530. </tr>
  1531. </table>
  1532. </td>
  1533. <td valign="bottom" style="width: 15px;">
  1534. &nbsp;
  1535. </td>
  1536. </tr>
  1537. </table>
  1538. </td><td>
  1539. <table cellpadding="0" cellspacing="0">
  1540. <tr>
  1541. <td>
  1542. <table>
  1543. <tr>
  1544. <td>
  1545. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">L1缓存指令存储器</span>
  1546. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  1547. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1548. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1549. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1550. sorted parametric attributes from an endeca attribute group --->
  1551. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  1552. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="1000001066" />
  1553. &nbsp;
  1554. </div>
  1555. </td>
  1556. </tr>
  1557. <tr>
  1558. <td>
  1559. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000001066" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_1000001066">
  1560. <option value="4276869817">512 B</option>
  1561. <option value="4276869819">1 kB</option>
  1562. <option value="4276868938">2 kB</option>
  1563. <option value="4276869477">4 kB</option>
  1564. <option value="4276869821">8 kB</option>
  1565. <option value="4276869825">16 kB</option>
  1566. <option value="4276869088">32 kB</option>
  1567. <option value="4276864345">32 kB, 32 kB</option>
  1568. <option value="4276869052">64 kB</option>
  1569. <option value="4276869908">-</option>
  1570. </select>
  1571. </td>
  1572. </tr>
  1573. <tr>
  1574. <td>
  1575. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1576. </td>
  1577. </tr>
  1578. </table>
  1579. </td>
  1580. <td valign="bottom" style="width: 15px;">
  1581. &nbsp;
  1582. </td>
  1583. </tr>
  1584. </table>
  1585. </td><td>
  1586. <table cellpadding="0" cellspacing="0">
  1587. <tr>
  1588. <td>
  1589. <table>
  1590. <tr>
  1591. <td>
  1592. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lblheader" style="font-weight:bold;white-space:normal;">L1缓存数据存储器</span>
  1593. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_RangePnl">
  1594. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1595. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1596. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1597. sorted parametric attributes from an endeca attribute group --->
  1598. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnRange" />
  1599. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnDimId" value="1000001067" />
  1600. &nbsp;
  1601. </div>
  1602. </td>
  1603. </tr>
  1604. <tr>
  1605. <td>
  1606. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1000001067" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_1000001067">
  1607. <option value="4276869820">1 kB</option>
  1608. <option value="4276869478">4 kB</option>
  1609. <option value="4276869822">8 kB</option>
  1610. <option value="4276869826">16 kB</option>
  1611. <option value="4276869089">32 kB</option>
  1612. <option value="4276855182">32 kB, 32 kB</option>
  1613. <option value="4276854279">64 kB</option>
  1614. <option value="4276869909">-</option>
  1615. </select>
  1616. </td>
  1617. </tr>
  1618. <tr>
  1619. <td>
  1620. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1621. </td>
  1622. </tr>
  1623. </table>
  1624. </td>
  1625. <td valign="bottom" style="width: 15px;">
  1626. &nbsp;
  1627. </td>
  1628. </tr>
  1629. </table>
  1630. </td><td>
  1631. <table cellpadding="0" cellspacing="0">
  1632. <tr>
  1633. <td>
  1634. <table>
  1635. <tr>
  1636. <td>
  1637. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lblheader" style="font-weight:bold;white-space:normal;">工作电源电压</span>
  1638. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_RangePnl">
  1639. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1640. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1641. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1642. sorted parametric attributes from an endeca attribute group --->
  1643. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnRange" />
  1644. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnDimId" value="1000000393" />
  1645. &nbsp;
  1646. </div>
  1647. </td>
  1648. </tr>
  1649. <tr>
  1650. <td>
  1651. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$1000000393" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_1000000393">
  1652. <option value="4269092724">850 mV to 1.1 V</option>
  1653. <option value="4271867829">900 mV to 1.2 V</option>
  1654. <option value="4277588774">950 mV</option>
  1655. <option value="4268852711">950 mV, 1.05 V</option>
  1656. <option value="4294595635">1 V</option>
  1657. <option value="4268852918">1.025 V</option>
  1658. <option value="4294593038">1.05 V</option>
  1659. <option value="4273091337">1.08 V to 1.32 V</option>
  1660. <option value="4294593073">1.1 V</option>
  1661. <option value="4268894788">1.13 V</option>
  1662. <option value="4294593045">1.15 V</option>
  1663. <option value="4294604096">1.2 V</option>
  1664. <option value="4294594379">1.25 V</option>
  1665. <option value="4294594374">1.26 V</option>
  1666. <option value="4268991056">1.26 V, 1.8 V</option>
  1667. <option value="4294629310">1.3 V</option>
  1668. <option value="4266000599">1.325 V</option>
  1669. <option value="4294594233">1.35 V to 1.65 V</option>
  1670. <option value="4294594354">1.4 V</option>
  1671. <option value="4294595576">1.4 V to 1.6 V</option>
  1672. <option value="4268423125">1.42 V to 1.58 V</option>
  1673. <option value="4287103093">1.425 V to 2.25 V</option>
  1674. <option value="4268202479">1.45 V to 1.6 V</option>
  1675. <option value="4294629384">1.5 V</option>
  1676. <option value="4294629903">1.7 V to 1.9 V</option>
  1677. <option value="4287103578">1.7 V to 2.1 V</option>
  1678. <option value="4294604809">1.8 V</option>
  1679. <option value="4294604103">1.8 V to 3.6 V</option>
  1680. <option value="4294595633">1.8 V to 5 V</option>
  1681. <option value="4287167490">1.9 V to 2.2 V</option>
  1682. <option value="4294630327">2 V</option>
  1683. <option value="4294627904">2.5 V</option>
  1684. <option value="4294629721">2.7 V to 5.5 V</option>
  1685. <option value="4294629911">3 V to 3.6 V</option>
  1686. <option value="4294629989">3.3 V</option>
  1687. <option value="4294630355">4.5 V to 5.5 V</option>
  1688. <option value="4294630592">5 V</option>
  1689. </select>
  1690. </td>
  1691. </tr>
  1692. <tr>
  1693. <td>
  1694. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1695. </td>
  1696. </tr>
  1697. </table>
  1698. </td>
  1699. <td valign="bottom" style="width: 15px;">
  1700. &nbsp;
  1701. </td>
  1702. </tr>
  1703. </table>
  1704. </td><td>
  1705. <table cellpadding="0" cellspacing="0">
  1706. <tr>
  1707. <td>
  1708. <table>
  1709. <tr>
  1710. <td>
  1711. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lblheader" style="font-weight:bold;white-space:normal;">最大工作温度</span>
  1712. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_RangePnl">
  1713. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1714. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1715. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1716. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1717. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1718. sorted parametric attributes from an endeca attribute group --->
  1719. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnRange" />
  1720. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnDimId" value="1000000314" />
  1721. </div>
  1722. </td>
  1723. </tr>
  1724. <tr>
  1725. <td>
  1726. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$1000000314" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_1000000314">
  1727. <option value="4294629996">+ 70 C</option>
  1728. <option value="4294630005">+ 85 C</option>
  1729. <option value="4294575688">+ 90 C</option>
  1730. <option value="4294031282">+ 95 C</option>
  1731. <option value="4294629968">+ 100 C</option>
  1732. <option value="4294568129">+ 105 C</option>
  1733. <option value="4294441852">+ 115 C</option>
  1734. <option value="4294631245">+ 125 C</option>
  1735. </select>
  1736. </td>
  1737. </tr>
  1738. <tr>
  1739. <td>
  1740. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1741. </td>
  1742. </tr>
  1743. </table>
  1744. </td>
  1745. <td valign="bottom" style="width: 15px;">
  1746. &nbsp;
  1747. </td>
  1748. </tr>
  1749. </table>
  1750. </td><td>
  1751. <table cellpadding="0" cellspacing="0">
  1752. <tr>
  1753. <td>
  1754. <table>
  1755. <tr>
  1756. <td>
  1757. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lblheader" style="font-weight:bold;white-space:normal;">安装风格</span>
  1758. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_RangePnl">
  1759. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1760. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1761. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1762. sorted parametric attributes from an endeca attribute group --->
  1763. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_hdnRange" />
  1764. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_hdnDimId" value="1323044" />
  1765. &nbsp;
  1766. </div>
  1767. </td>
  1768. </tr>
  1769. <tr>
  1770. <td>
  1771. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$1323044" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_1323044">
  1772. <option value="4294741457">SMD/SMT</option>
  1773. <option value="4294739373">Through Hole</option>
  1774. </select>
  1775. </td>
  1776. </tr>
  1777. <tr>
  1778. <td>
  1779. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1780. </td>
  1781. </tr>
  1782. </table>
  1783. </td>
  1784. <td valign="bottom" style="width: 15px;">
  1785. &nbsp;
  1786. </td>
  1787. </tr>
  1788. </table>
  1789. </td><td>
  1790. <table cellpadding="0" cellspacing="0">
  1791. <tr>
  1792. <td>
  1793. <table>
  1794. <tr>
  1795. <td>
  1796. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  1797. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_RangePnl">
  1798. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1799. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1800. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1801. sorted parametric attributes from an endeca attribute group --->
  1802. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_hdnRange" />
  1803. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_hdnDimId" value="688606" />
  1804. &nbsp;
  1805. </div>
  1806. </td>
  1807. </tr>
  1808. <tr>
  1809. <td>
  1810. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_688606">
  1811. <option value="4268950021">BGA-177</option>
  1812. <option value="4294025296">BGA-217</option>
  1813. <option value="4292839379">BGA-247</option>
  1814. <option value="4294680905">BGA-256</option>
  1815. <option value="4268950019">BGA-265</option>
  1816. <option value="4294675883">BGA-272</option>
  1817. <option value="4268905088">BGA-357</option>
  1818. <option value="4290037096">BGA-360</option>
  1819. <option value="4294672634">BGA-361</option>
  1820. <option value="4294675857">BGA-484</option>
  1821. <option value="4292881004">BGA-491</option>
  1822. <option value="4294671683">CBGA-360</option>
  1823. <option value="4268903589">CQFP-144</option>
  1824. <option value="4294688811">DIP-40</option>
  1825. <option value="4294677652">DIP-60</option>
  1826. <option value="4294688769">DIP-64</option>
  1827. <option value="4267079866">FC-BGA-525</option>
  1828. <option value="4265852089">FC-BGA-760</option>
  1829. <option value="4268854040">FC-CBGA-1023</option>
  1830. <option value="4266374240">FC-PBGA -780</option>
  1831. <option value="4268943797">FC-PBGA-1020</option>
  1832. <option value="4267165858">FC-PBGA-1023</option>
  1833. <option value="4285878274">FC-PBGA-1295</option>
  1834. <option value="4266695091">FC-PBGA-1932</option>
  1835. <option value="4268944840">FC-PBGA-520</option>
  1836. <option value="4268894410">FC-PBGA-525</option>
  1837. <option value="4268894790">FC-PBGA-625</option>
  1838. <option value="4268944409">FC-PBGA-780</option>
  1839. <option value="4292832951">FC-PBGA-783</option>
  1840. <option value="4266373714">FC-PBGA-896</option>
  1841. <option value="4292907838">FCPBGA-783</option>
  1842. <option value="4268854769">HCTE-BGA-360</option>
  1843. <option value="4268854752">HCTE-CBGA-360</option>
  1844. <option value="4268854771">HCTE-LGA-360</option>
  1845. <option value="4294025912">LFBGA-217</option>
  1846. <option value="4292797927">LFBGA-289</option>
  1847. <option value="4292884145">LFBGA-324</option>
  1848. <option value="4265702515">LFBGA2-89</option>
  1849. <option value="4268854766">LGA-360</option>
  1850. <option value="4294688832">LQFP-100</option>
  1851. <option value="4294685151">LQFP-128</option>
  1852. <option value="4294688778">LQFP-144</option>
  1853. <option value="4294683494">LQFP-176</option>
  1854. <option value="4294677148">LQFP-208</option>
  1855. <option value="4294688791">LQFP-64</option>
  1856. <option value="4292864185">MAPBGA-144</option>
  1857. <option value="4292758483">MAPBGA-160</option>
  1858. <option value="4292795320">MAPBGA-196</option>
  1859. <option value="4292524490">MAPBGA-225</option>
  1860. <option value="4292823353">MAPBGA-256</option>
  1861. <option value="4292562751">MAPBGA-369</option>
  1862. <option value="4292789707">MAPBGA-473</option>
  1863. <option value="4268894793">MAPBGA-484</option>
  1864. <option value="4267377675">MAPBGA-489</option>
  1865. <option value="4294682642">MQFP-80</option>
  1866. <option value="4266013812">PBGA-1031</option>
  1867. <option value="4265997033">PBGA-1089</option>
  1868. <option value="4268412582">PBGA-255</option>
  1869. <option value="4294718156">PBGA-256</option>
  1870. <option value="4266167617">PBGA-298</option>
  1871. <option value="4293981256">PBGA-324</option>
  1872. <option value="4294688635">PBGA-352</option>
  1873. <option value="4294671662">PBGA-357</option>
  1874. <option value="4292759214">PBGA-361</option>
  1875. <option value="4294012864">PBGA-420</option>
  1876. <option value="4271725989">PBGA-423</option>
  1877. <option value="4292759210">PBGA-484</option>
  1878. <option value="4292511992">PBGA-491</option>
  1879. <option value="4289875636">PBGA-515</option>
  1880. <option value="4293983047">PBGA-516</option>
  1881. <option value="4292796605">PBGA-561</option>
  1882. <option value="4293983046">PBGA-620</option>
  1883. <option value="4266011550">PBGA-684</option>
  1884. <option value="4293988668">PBGA-689</option>
  1885. <option value="4294720783">PDIP-40</option>
  1886. <option value="4293990239">PDIP-64</option>
  1887. <option value="4268705503">PGBA-196</option>
  1888. <option value="4266430634">PGBA-256</option>
  1889. <option value="4294720779">PLCC-44</option>
  1890. <option value="4294688798">PLCC-68</option>
  1891. <option value="4294684795">PQFP-100</option>
  1892. <option value="4292833505">PQFP-132</option>
  1893. <option value="4294649469">PQFP-144</option>
  1894. <option value="4294688805">PQFP-80</option>
  1895. <option value="4294720937">QFP-100</option>
  1896. <option value="4294677310">QFP-120</option>
  1897. <option value="4294685157">QFP-144</option>
  1898. <option value="4294677664">QFP-160</option>
  1899. <option value="4294677143">QFP-208</option>
  1900. <option value="4291430746">QFP-240</option>
  1901. <option value="4294718071">QFP-44</option>
  1902. <option value="4294685171">QFP-64</option>
  1903. <option value="4294720941">QFP-80</option>
  1904. <option value="4269000990">TBGA-352</option>
  1905. <option value="4292843232">TBGA-480</option>
  1906. <option value="4267386428">TBGA-672</option>
  1907. <option value="4267385678">TBGA-740</option>
  1908. <option value="4292758448">TEPBGA-272</option>
  1909. <option value="4292799389">TEPBGA-360</option>
  1910. <option value="4287968631">TEPBGA-388</option>
  1911. <option value="4273123908">TEPBGA-425</option>
  1912. <option value="4267979761">TEPBGA-457</option>
  1913. <option value="4290998001">TEPBGA-516</option>
  1914. <option value="4292586019">TEPBGA-561</option>
  1915. <option value="4292758380">TEPBGA-689</option>
  1916. <option value="4272094235">TFBGA-196</option>
  1917. <option value="4268995454">TFBGA-247</option>
  1918. <option value="4272094238">TFBGA-256</option>
  1919. <option value="4290955871">TFBGA-272</option>
  1920. <option value="4294025911">TFBGA-324</option>
  1921. <option value="4268991054">TFBGA-361</option>
  1922. <option value="4294718154">TQFP-100</option>
  1923. <option value="4294649474">TQFP-176</option>
  1924. <option value="4268993744">VFBGA2-47</option>
  1925. <option value="4292761056">VQFP-144</option>
  1926. </select>
  1927. </td>
  1928. </tr>
  1929. <tr>
  1930. <td>
  1931. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1932. </td>
  1933. </tr>
  1934. </table>
  1935. </td>
  1936. <td valign="bottom" style="width: 15px;">
  1937. &nbsp;
  1938. </td>
  1939. </tr>
  1940. </table>
  1941. </td>
  1942. </tr>
  1943. </table>
  1944. <table class="ApplyFilter">
  1945. <tr>
  1946. <td class="ApplyFilterColumn1">
  1947. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1948. </td>
  1949. <td class="ApplyFilterColumn2">
  1950. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  1951. </td>
  1952. <td class="ApplyFilterColumn2_5">
  1953. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  1954. </td>
  1955. <td class="ApplyFilterColumn3">
  1956. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1957. </td>
  1958. </tr>
  1959. </table>
  1960. </td>
  1961. </tr>
  1962. </table>
  1963. </div>
  1964. </td>
  1965. </tr>
  1966. </table>
  1967. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  1968. height: 70px; display: none; background: white; border: 1px solid #000;'>
  1969. <br />
  1970. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  1971. <br />
  1972. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  1973. <!--Close Window-->
  1974. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  1975. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  1976. </a>&nbsp;&nbsp;</div>
  1977. </div>
  1978. <div id ="VisualAttributePopup" class="hidden" >
  1979. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  1980. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  1981. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  1982. </div>
  1983. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id= "loadingimgspinner" src="/Images/spinner2.gif" /></div>
  1984. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  1985. <table id="tblAttributes" >
  1986. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  1987. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  1988. <td class="visualAttributeImage">
  1989. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  1990. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  1991. </td>
  1992. <td>
  1993. <table class="visualAttValueDesc">
  1994. <tr>
  1995. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  1996. </tr>
  1997. <tr>
  1998. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  1999. </tr>
  2000. <tr data-bind="if: ImagePath1 ">
  2001. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs"/></div></td>
  2002. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  2003. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  2004. </tr>
  2005. </table>
  2006. </td>
  2007. </tr>
  2008. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  2009. </tbody>
  2010. </table>
  2011. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id= "Img1" src="/Images/spinner2.gif" />
  2012. <div data-bind="if: hasMoreOptions" align="center">
  2013. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  2014. </div>
  2015. </div>
  2016. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  2017. <div class="visualAttributesBtnDiv">
  2018. <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" />
  2019. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  2020. <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" />
  2021. </div>
  2022. </div>
  2023. <style type="text/css">
  2024. /* These styles are to customize "Visual Parametrics" modal window */
  2025. .ui-dialog { position: absolute; padding: 0px !important; width: 300px; overflow: hidden;}
  2026. .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .6em !important; background: none; overflow: auto; zoom: 1; max-height: 450px;}
  2027. .ui-dialog .ui-dialog-titlebar { padding: .4em .5em !important; position: relative; background: none repeat scroll 0 0 #E0E4E9; font-size:15px; }
  2028. .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border-bottom-right-radius: 0; }
  2029. .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-bottom-left-radius: 0; }
  2030. </style>
  2031. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2032. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  2033. </div>
  2034. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  2035. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  2036. <script src='../../../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  2037. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2038. <script type="text/javascript">
  2039. $().ready(function () {
  2040. ko.applyBindings(new DisplayAttributesModel());
  2041. ko.bindingHandlers.hoverToggle = {
  2042. update: function (element, valueAccessor) {
  2043. var css = valueAccessor();
  2044. var isSelected = $(element).hasClass("selectedAttribute");
  2045. if (!isSelected) {
  2046. ko.utils.registerEventHandler(element, "mouseenter", function () {
  2047. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  2048. });
  2049. ko.utils.registerEventHandler(element, "mouseleave", function () {
  2050. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  2051. });
  2052. }
  2053. }
  2054. };
  2055. });
  2056. </script>
  2057. </div>
  2058. <div id="refine-mfg-logo2">
  2059. </div>
  2060. </div>
  2061. <br />
  2062. <table border="0" width="100%">
  2063. <tr>
  2064. <td>
  2065. </td>
  2066. </tr>
  2067. <tr>
  2068. <td>
  2069. <!--- Search Features --->
  2070. </td>
  2071. </tr>
  2072. <tr>
  2073. <td>
  2074. <div id="refine-page">
  2075. </div>
  2076. </td>
  2077. </tr>
  2078. <tr>
  2079. <td class="refine-show-products">
  2080. <span class="redtextb">
  2081. </span> <span class="redtextb">
  2082. </span> <span class="redtextb">
  2083. </span> <span class="redtextb">
  2084. </span>
  2085. <span class="redtextb">
  2086. </span>
  2087. </td>
  2088. </tr>
  2089. <tr>
  2090. <td>
  2091. </td>
  2092. </tr>
  2093. <tr>
  2094. <td>
  2095. <!--- Special Order Parts New --->
  2096. <!-- SOP Section 1 -->
  2097. </td>
  2098. </tr>
  2099. </table>
  2100. <div id="searchResultsTbl">
  2101. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  2102. <tr>
  2103. <td class="tdSearchResultsPagingTop">
  2104. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  2105. <tr>
  2106. <td>
  2107. <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" />
  2108. </td>
  2109. <td>
  2110. <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" />
  2111. </td>
  2112. <td>
  2113. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  2114. </td>
  2115. <td style="padding-left: 40px;">
  2116. <div class="floatrightpager">
  2117. <span class="bold">
  2118. 页面:
  2119. </span>
  2120. <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/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_82" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=2050">83</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=25">下一页</a></span>
  2121. </div>
  2122. </td>
  2123. </tr>
  2124. </table>
  2125. </td>
  2126. </tr>
  2127. <tr>
  2128. <td>
  2129. <div>
  2130. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  2131. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  2132. <th class="td-select" scope="col" style="width:35px;">
  2133. 选择
  2134. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  2135. </th><th scope="col">制造商 零件编号
  2136. </th><th scope="col">制造商
  2137. </th><th scope="col">描述
  2138. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../../Images/Search/pdf.gif" alt="文件" />
  2139. </th><th scope="col">供货情况
  2140. </th><th scope="col">单价(含17%增值税)
  2141. <br />
  2142. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  2143. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  2144. </th><th class="SearchResultParametricColumnHeading" scope="col">系列
  2145. </th><th class="SearchResultParametricColumnHeading" scope="col">核心
  2146. </th><th class="SearchResultParametricColumnHeading" scope="col">内核数量
  2147. </th><th class="SearchResultParametricColumnHeading" scope="col">数据总线宽度
  2148. </th><th class="SearchResultParametricColumnHeading" scope="col">最大时钟频率
  2149. </th><th class="SearchResultParametricColumnHeading" scope="col">L1缓存指令存储器
  2150. </th><th class="SearchResultParametricColumnHeading" scope="col">L1缓存数据存储器
  2151. </th><th class="SearchResultParametricColumnHeading" scope="col">工作电源电压
  2152. </th><th class="SearchResultParametricColumnHeading" scope="col">最大工作温度
  2153. </th><th class="SearchResultParametricColumnHeading" scope="col">安装风格
  2154. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  2155. </th>
  2156. </tr><tr class="SearchResultsSortCell">
  2157. <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$ctl22&#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$ctl24&#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_ctl26" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl26&#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$ctl28&#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$ctl30&#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$ctl32&#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$ctl34&#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$ctl36&#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$ctl38&#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$Series>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl40&#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$Series>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl42&#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$Core>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl44&#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$Core>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl46&#39;,&#39;&#39;)"><img title="按 核心 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 核心 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of Cores>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl48&#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$Number of Cores>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl50&#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 Bus Width>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl52&#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 Bus Width>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl54&#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 Clock Frequency>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl56&#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 Clock Frequency>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl58&#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$L1 Cache Instruction Memory>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl60&#39;,&#39;&#39;)"><img title="按 L1缓存指令存储器 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 L1缓存指令存储器 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$L1 Cache Instruction Memory>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl62&#39;,&#39;&#39;)"><img title="按 L1缓存指令存储器 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 L1缓存指令存储器 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$L1 Cache Data Memory>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl64&#39;,&#39;&#39;)"><img title="按 L1缓存数据存储器 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 L1缓存数据存储器 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$L1 Cache Data Memory>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl66&#39;,&#39;&#39;)"><img title="按 L1缓存数据存储器 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 L1缓存数据存储器 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$ctl68&#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$ctl70&#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$ctl72&#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$ctl74&#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$ctl76&#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$ctl78&#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$ctl80&#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$ctl82&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 / 箱体 Descending 排序" /></a></td>
  2158. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-AM4376BZDN100" data-index="3">
  2159. <td class="td-select" align="center">
  2160. <div style="padding: 5px 5px 0 5px;">
  2161. <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>
  2162. </div>
  2163. </td><td><a href='/ProductDetail/Texas-Instruments/AM4376BZDN100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xigouuh7i%2fTOc0uBWk6rmnA%3d%3d'><img title='Texas Instruments AM4376BZDN100' alt='Texas Instruments AM4376BZDN100' id=1458467681 src='/images/texasinstruments/sm/AM4376_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4376_SPL.jpg</div></a></td><td>
  2164. <div style="text-align:left;">
  2165. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDN100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xigouuh7i%2fTOc0uBWk6rmnA%3d%3d">595-AM4376BZDN100</a><br />
  2166. <br />
  2167. <br />
  2168. </div></td><td>
  2169. <div class="mfrDiv">
  2170. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDN100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xigouuh7i%2fTOc0uBWk6rmnA%3d%3d">AM4376BZDN100</a><br />
  2171. <br />
  2172. <div style="width: 100%; text-align: center;">
  2173. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2174. </div>
  2175. <div style="width: 100%; text-align: center;">
  2176. </div>
  2177. </div>
  2178. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  2179. </td><td>微处理器 - MPU Sitara Processor 100 Mhz, 0 to 90
  2180. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2181. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  2182. </div>
  2183. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2184. </div>
  2185. </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-AM4376BZDN100 | AM4376BZDN100&quot;]);" href="http://www.mouser.com/ds/2/405/am4376-558653.pdf" target="_blank">数据表</a>
  2186. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">100<br/>有库存</span>
  2187. <table>
  2188. <tr align="center">
  2189. <td style="padding-top: 5px">
  2190. </td>
  2191. </tr>
  2192. <tr align="center">
  2193. <td style="padding-top: 5px; padding-bottom: 5px">
  2194. </td>
  2195. </tr>
  2196. </table></td><td>
  2197. <table class="PriceBreaks" cellspacing="0" border="0">
  2198. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2199. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2200. </td>
  2201. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2202. </td>
  2203. </tr>
  2204. <tr>
  2205. <td class="PriceBreakQuantity">
  2206. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  2207. </td>
  2208. <td class="PriceBreakPrice">
  2209. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥153.6327</span>
  2210. </td>
  2211. </tr>
  2212. <tr>
  2213. <td class="PriceBreakQuantity">
  2214. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,5);">5:</a>
  2215. </td>
  2216. <td class="PriceBreakPrice">
  2217. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥147.3147</span>
  2218. </td>
  2219. </tr>
  2220. <tr>
  2221. <td class="PriceBreakQuantity">
  2222. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  2223. </td>
  2224. <td class="PriceBreakPrice">
  2225. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥141.6987</span>
  2226. </td>
  2227. </tr>
  2228. <tr>
  2229. <td class="PriceBreakQuantity">
  2230. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  2231. </td>
  2232. <td class="PriceBreakPrice">
  2233. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥135.3105</span>
  2234. </td>
  2235. </tr>
  2236. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2237. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2238. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(1,50);">50:</a>
  2239. </td>
  2240. <td class="PriceBreakPrice">
  2241. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDN100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xigouuh7i%2fTOc0uBWk6rmnA%3d%3d">查看</a>
  2242. </td>
  2243. </tr>
  2244. <tr>
  2245. <td><br /></td>
  2246. </tr>
  2247. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2248. <td colspan="2" style="text-align: center;">
  2249. </td>
  2250. </tr>
  2251. </table>
  2252. </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;)">
  2253. <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 />
  2254. <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="购买 AM4376BZDN100" class="buy-button" /><br />
  2255. <table cellspacing="0" border="0" style="width: 100%;">
  2256. <tr>
  2257. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2258. 最低:
  2259. </td>
  2260. <td style="padding-left: 2px; text-align: left;">
  2261. 1
  2262. </td>
  2263. </tr>
  2264. <tr>
  2265. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2266. 多个:
  2267. </td>
  2268. <td style="padding-left: 2px; text-align: left;">
  2269. 1
  2270. </td>
  2271. </tr>
  2272. </table>
  2273. </div>
  2274. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  2275. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2276. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcK3JFCtlsmtdA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcK3JFCtlsmtdA%3d%3d" target="_blank">详细信息</a>
  2277. </div>
  2278. </td><td>AM4376
  2279. </td><td>ARM Cortex A9
  2280. </td><td>1 Core
  2281. </td><td>32 bit
  2282. </td><td>1 GHz
  2283. </td><td>32 kB
  2284. </td><td>32 kB
  2285. </td><td>1.325 V
  2286. </td><td>+ 90 C
  2287. </td><td>SMD/SMT
  2288. </td><td>BGA-491
  2289. </td>
  2290. </tr><tr class="SearchResultsRowEven" data-partnumber="595-AM4379BZDNA80" data-index="4">
  2291. <td class="td-select" align="center">
  2292. <div style="padding: 5px 5px 0 5px;">
  2293. <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>
  2294. </div>
  2295. </td><td><a href='/ProductDetail/Texas-Instruments/AM4379BZDNA80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xAJQq0anvpyUr2AEQfz9qeA%3d%3d'><img title='Texas Instruments AM4379BZDNA80' alt='Texas Instruments AM4379BZDNA80' id=1458467717 src='/images/texasinstruments/sm/AM4379_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4379_SPL.jpg</div></a></td><td>
  2296. <div style="text-align:left;">
  2297. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4379BZDNA80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xAJQq0anvpyUr2AEQfz9qeA%3d%3d">595-AM4379BZDNA80</a><br />
  2298. <br />
  2299. <br />
  2300. </div></td><td>
  2301. <div class="mfrDiv">
  2302. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4379BZDNA80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xAJQq0anvpyUr2AEQfz9qeA%3d%3d">AM4379BZDNA80</a><br />
  2303. <br />
  2304. <div style="width: 100%; text-align: center;">
  2305. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2306. </div>
  2307. <div style="width: 100%; text-align: center;">
  2308. </div>
  2309. </div>
  2310. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  2311. </td><td>微处理器 - MPU Sitara Processor 800Mhz, -40 to 105
  2312. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2313. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  2314. </div>
  2315. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2316. </div>
  2317. </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-AM4379BZDNA80 | AM4379BZDNA80&quot;]);" href="http://www.mouser.com/ds/2/405/am4379-452472.pdf" target="_blank">数据表</a>
  2318. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">87<br/>有库存</span>
  2319. <table>
  2320. <tr align="center">
  2321. <td style="padding-top: 5px">
  2322. </td>
  2323. </tr>
  2324. <tr align="center">
  2325. <td style="padding-top: 5px; padding-bottom: 5px">
  2326. </td>
  2327. </tr>
  2328. </table></td><td>
  2329. <table class="PriceBreaks" cellspacing="0" border="0">
  2330. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2331. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2332. </td>
  2333. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2334. </td>
  2335. </tr>
  2336. <tr>
  2337. <td class="PriceBreakQuantity">
  2338. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  2339. </td>
  2340. <td class="PriceBreakPrice">
  2341. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥241.4295</span>
  2342. </td>
  2343. </tr>
  2344. <tr>
  2345. <td class="PriceBreakQuantity">
  2346. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,5);">5:</a>
  2347. </td>
  2348. <td class="PriceBreakPrice">
  2349. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥231.4143</span>
  2350. </td>
  2351. </tr>
  2352. <tr>
  2353. <td class="PriceBreakQuantity">
  2354. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  2355. </td>
  2356. <td class="PriceBreakPrice">
  2357. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥222.6393</span>
  2358. </td>
  2359. </tr>
  2360. <tr>
  2361. <td class="PriceBreakQuantity">
  2362. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,25);">25:</a>
  2363. </td>
  2364. <td class="PriceBreakPrice">
  2365. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥212.6241</span>
  2366. </td>
  2367. </tr>
  2368. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2369. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2370. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(2,50);">50:</a>
  2371. </td>
  2372. <td class="PriceBreakPrice">
  2373. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4379BZDNA80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xAJQq0anvpyUr2AEQfz9qeA%3d%3d">查看</a>
  2374. </td>
  2375. </tr>
  2376. <tr>
  2377. <td><br /></td>
  2378. </tr>
  2379. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2380. <td colspan="2" style="text-align: center;">
  2381. </td>
  2382. </tr>
  2383. </table>
  2384. </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;)">
  2385. <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 />
  2386. <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="购买 AM4379BZDNA80" class="buy-button" /><br />
  2387. <table cellspacing="0" border="0" style="width: 100%;">
  2388. <tr>
  2389. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2390. 最低:
  2391. </td>
  2392. <td style="padding-left: 2px; text-align: left;">
  2393. 1
  2394. </td>
  2395. </tr>
  2396. <tr>
  2397. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2398. 多个:
  2399. </td>
  2400. <td style="padding-left: 2px; text-align: left;">
  2401. 1
  2402. </td>
  2403. </tr>
  2404. </table>
  2405. </div>
  2406. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  2407. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2408. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcK0wj9fHJPUYQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcK0wj9fHJPUYQ%3d%3d" target="_blank">详细信息</a>
  2409. </div>
  2410. </td><td>AM4379
  2411. </td><td>ARM Cortex A9
  2412. </td><td>1 Core
  2413. </td><td>32 bit
  2414. </td><td>800 MHz
  2415. </td><td>32 kB
  2416. </td><td>32 kB
  2417. </td><td>1.26 V
  2418. </td><td>+ 105 C
  2419. </td><td>SMD/SMT
  2420. </td><td>BGA-491
  2421. </td>
  2422. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-AM4377BZDND80" data-index="5">
  2423. <td class="td-select" align="center">
  2424. <div style="padding: 5px 5px 0 5px;">
  2425. <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>
  2426. </div>
  2427. </td><td><a href='/ProductDetail/Texas-Instruments/AM4377BZDND80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xB0NCTlMH0CtBwPjKMCM64g%3d%3d'><img title='Texas Instruments AM4377BZDND80' alt='Texas Instruments AM4377BZDND80' id=1458467701 src='/images/texasinstruments/sm/nfbga-491_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/nfbga-491_SPL.jpg</div></a></td><td>
  2428. <div style="text-align:left;">
  2429. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4377BZDND80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xB0NCTlMH0CtBwPjKMCM64g%3d%3d">595-AM4377BZDND80</a><br />
  2430. <br />
  2431. <br />
  2432. </div></td><td>
  2433. <div class="mfrDiv">
  2434. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4377BZDND80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xB0NCTlMH0CtBwPjKMCM64g%3d%3d">AM4377BZDND80</a><br />
  2435. <br />
  2436. <div style="width: 100%; text-align: center;">
  2437. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2438. </div>
  2439. <div style="width: 100%; text-align: center;">
  2440. </div>
  2441. </div>
  2442. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  2443. </td><td>微处理器 - MPU Sitara Processor 491-NFBGA -40 to 90
  2444. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2445. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  2446. </div>
  2447. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2448. </div>
  2449. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-AM4377BZDND80 | AM4377BZDND80&quot;]);" href="http://www.mouser.com/ds/2/405/am4377-558610.pdf" target="_blank">数据表</a>
  2450. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">90<br/>有库存</span>
  2451. <table>
  2452. <tr align="center">
  2453. <td style="padding-top: 5px">
  2454. </td>
  2455. </tr>
  2456. <tr align="center">
  2457. <td style="padding-top: 5px; padding-bottom: 5px">
  2458. </td>
  2459. </tr>
  2460. </table></td><td>
  2461. <table class="PriceBreaks" cellspacing="0" border="0">
  2462. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2463. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2464. </td>
  2465. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2466. </td>
  2467. </tr>
  2468. <tr>
  2469. <td class="PriceBreakQuantity">
  2470. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  2471. </td>
  2472. <td class="PriceBreakPrice">
  2473. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥211.3137</span>
  2474. </td>
  2475. </tr>
  2476. <tr>
  2477. <td class="PriceBreakQuantity">
  2478. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,5);">5:</a>
  2479. </td>
  2480. <td class="PriceBreakPrice">
  2481. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥202.5387</span>
  2482. </td>
  2483. </tr>
  2484. <tr>
  2485. <td class="PriceBreakQuantity">
  2486. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  2487. </td>
  2488. <td class="PriceBreakPrice">
  2489. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥194.9103</span>
  2490. </td>
  2491. </tr>
  2492. <tr>
  2493. <td class="PriceBreakQuantity">
  2494. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  2495. </td>
  2496. <td class="PriceBreakPrice">
  2497. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥186.1353</span>
  2498. </td>
  2499. </tr>
  2500. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2501. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2502. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(3,50);">50:</a>
  2503. </td>
  2504. <td class="PriceBreakPrice">
  2505. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4377BZDND80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xB0NCTlMH0CtBwPjKMCM64g%3d%3d">查看</a>
  2506. </td>
  2507. </tr>
  2508. <tr>
  2509. <td><br /></td>
  2510. </tr>
  2511. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2512. <td colspan="2" style="text-align: center;">
  2513. </td>
  2514. </tr>
  2515. </table>
  2516. </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;)">
  2517. <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 />
  2518. <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="购买 AM4377BZDND80" class="buy-button" /><br />
  2519. <table cellspacing="0" border="0" style="width: 100%;">
  2520. <tr>
  2521. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2522. 最低:
  2523. </td>
  2524. <td style="padding-left: 2px; text-align: left;">
  2525. 1
  2526. </td>
  2527. </tr>
  2528. <tr>
  2529. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2530. 多个:
  2531. </td>
  2532. <td style="padding-left: 2px; text-align: left;">
  2533. 1
  2534. </td>
  2535. </tr>
  2536. </table>
  2537. </div>
  2538. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2539. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2540. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcLdKU6oRYWX5A%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcLdKU6oRYWX5A%3d%3d" target="_blank">详细信息</a>
  2541. </div>
  2542. </td><td>AM4377
  2543. </td><td>ARM Cortex A9
  2544. </td><td>1 Core
  2545. </td><td>32 bit
  2546. </td><td>800 MHz
  2547. </td><td>32 kB
  2548. </td><td>32 kB
  2549. </td><td>1.26 V
  2550. </td><td>+ 90 C
  2551. </td><td>SMD/SMT
  2552. </td><td>BGA-491
  2553. </td>
  2554. </tr><tr class="SearchResultsRowEven" data-partnumber="595-AM4377BZDNA80" data-index="6">
  2555. <td class="td-select" align="center">
  2556. <div style="padding: 5px 5px 0 5px;">
  2557. <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>
  2558. </div>
  2559. </td><td><a href='/ProductDetail/Texas-Instruments/AM4377BZDNA80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xG7T6K6%252bPiNOfItzF5qWGYA%3d%3d'><img title='Texas Instruments AM4377BZDNA80' alt='Texas Instruments AM4377BZDNA80' id=1458467697 src='/images/texasinstruments/sm/nfbga-491_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/nfbga-491_SPL.jpg</div></a></td><td>
  2560. <div style="text-align:left;">
  2561. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4377BZDNA80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xG7T6K6%252bPiNOfItzF5qWGYA%3d%3d">595-AM4377BZDNA80</a><br />
  2562. <br />
  2563. <br />
  2564. </div></td><td>
  2565. <div class="mfrDiv">
  2566. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4377BZDNA80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xG7T6K6%252bPiNOfItzF5qWGYA%3d%3d">AM4377BZDNA80</a><br />
  2567. <br />
  2568. <div style="width: 100%; text-align: center;">
  2569. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2570. </div>
  2571. <div style="width: 100%; text-align: center;">
  2572. </div>
  2573. </div>
  2574. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  2575. </td><td>微处理器 - MPU Sitara Processor 491-NFBGA -40 to 105
  2576. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2577. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  2578. </div>
  2579. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2580. </div>
  2581. </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;Texas Instruments&quot;,&quot;595-AM4377BZDNA80 | AM4377BZDNA80&quot;]);" href="http://www.mouser.com/ds/2/405/am4377-558610.pdf" target="_blank">数据表</a>
  2582. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">90<br/>有库存</span>
  2583. <table>
  2584. <tr align="center">
  2585. <td style="padding-top: 5px">
  2586. </td>
  2587. </tr>
  2588. <tr align="center">
  2589. <td style="padding-top: 5px; padding-bottom: 5px">
  2590. </td>
  2591. </tr>
  2592. </table></td><td>
  2593. <table class="PriceBreaks" cellspacing="0" border="0">
  2594. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2595. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2596. </td>
  2597. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2598. </td>
  2599. </tr>
  2600. <tr>
  2601. <td class="PriceBreakQuantity">
  2602. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  2603. </td>
  2604. <td class="PriceBreakPrice">
  2605. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥233.181</span>
  2606. </td>
  2607. </tr>
  2608. <tr>
  2609. <td class="PriceBreakQuantity">
  2610. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,5);">5:</a>
  2611. </td>
  2612. <td class="PriceBreakPrice">
  2613. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥223.5636</span>
  2614. </td>
  2615. </tr>
  2616. <tr>
  2617. <td class="PriceBreakQuantity">
  2618. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,10);">10:</a>
  2619. </td>
  2620. <td class="PriceBreakPrice">
  2621. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥215.0928</span>
  2622. </td>
  2623. </tr>
  2624. <tr>
  2625. <td class="PriceBreakQuantity">
  2626. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,25);">25:</a>
  2627. </td>
  2628. <td class="PriceBreakPrice">
  2629. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥205.4637</span>
  2630. </td>
  2631. </tr>
  2632. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2633. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2634. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(4,50);">50:</a>
  2635. </td>
  2636. <td class="PriceBreakPrice">
  2637. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4377BZDNA80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xG7T6K6%252bPiNOfItzF5qWGYA%3d%3d">查看</a>
  2638. </td>
  2639. </tr>
  2640. <tr>
  2641. <td><br /></td>
  2642. </tr>
  2643. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2644. <td colspan="2" style="text-align: center;">
  2645. </td>
  2646. </tr>
  2647. </table>
  2648. </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;)">
  2649. <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 />
  2650. <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="购买 AM4377BZDNA80" class="buy-button" /><br />
  2651. <table cellspacing="0" border="0" style="width: 100%;">
  2652. <tr>
  2653. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2654. 最低:
  2655. </td>
  2656. <td style="padding-left: 2px; text-align: left;">
  2657. 1
  2658. </td>
  2659. </tr>
  2660. <tr>
  2661. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2662. 多个:
  2663. </td>
  2664. <td style="padding-left: 2px; text-align: left;">
  2665. 1
  2666. </td>
  2667. </tr>
  2668. </table>
  2669. </div>
  2670. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  2671. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2672. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcKMLUsFUMehMA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcKMLUsFUMehMA%3d%3d" target="_blank">详细信息</a>
  2673. </div>
  2674. </td><td>AM4377
  2675. </td><td>ARM Cortex A9
  2676. </td><td>1 Core
  2677. </td><td>32 bit
  2678. </td><td>800 MHz
  2679. </td><td>32 kB
  2680. </td><td>32 kB
  2681. </td><td>1.26 V
  2682. </td><td>+ 105 C
  2683. </td><td>SMD/SMT
  2684. </td><td>BGA-491
  2685. </td>
  2686. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-AM4376BZDNA100" data-index="7">
  2687. <td class="td-select" align="center">
  2688. <div style="padding: 5px 5px 0 5px;">
  2689. <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>
  2690. </div>
  2691. </td><td><a href='/ProductDetail/Texas-Instruments/AM4376BZDNA100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x9IRDxAuKPoxNvI1nCrfzgg%3d%3d'><img title='Texas Instruments AM4376BZDNA100' alt='Texas Instruments AM4376BZDNA100' id=1458467685 src='/images/texasinstruments/sm/AM4376_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4376_SPL.jpg</div></a></td><td>
  2692. <div style="text-align:left;">
  2693. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDNA100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x9IRDxAuKPoxNvI1nCrfzgg%3d%3d">595-AM4376BZDNA100</a><br />
  2694. <br />
  2695. <br />
  2696. </div></td><td>
  2697. <div class="mfrDiv">
  2698. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDNA100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x9IRDxAuKPoxNvI1nCrfzgg%3d%3d">AM4376BZDNA100</a><br />
  2699. <br />
  2700. <div style="width: 100%; text-align: center;">
  2701. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2702. </div>
  2703. <div style="width: 100%; text-align: center;">
  2704. </div>
  2705. </div>
  2706. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  2707. </td><td>微处理器 - MPU Sitara Processor 100Mhz, -40 to 105
  2708. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2709. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  2710. </div>
  2711. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2712. </div>
  2713. </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;Texas Instruments&quot;,&quot;595-AM4376BZDNA100 | AM4376BZDNA100&quot;]);" href="http://www.mouser.com/ds/2/405/am4376-558653.pdf" target="_blank">数据表</a>
  2714. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">48<br/>有库存</span>
  2715. <table>
  2716. <tr align="center">
  2717. <td style="padding-top: 5px">
  2718. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDNA100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x9IRDxAuKPoxNvI1nCrfzgg%3d%3d">更多信息可用 </a>
  2719. </td>
  2720. </tr>
  2721. <tr align="center">
  2722. <td style="padding-top: 5px; padding-bottom: 5px">
  2723. </td>
  2724. </tr>
  2725. </table></td><td>
  2726. <table class="PriceBreaks" cellspacing="0" border="0">
  2727. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2728. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2729. </td>
  2730. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2731. </td>
  2732. </tr>
  2733. <tr>
  2734. <td class="PriceBreakQuantity">
  2735. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  2736. </td>
  2737. <td class="PriceBreakPrice">
  2738. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥194.2902</span>
  2739. </td>
  2740. </tr>
  2741. <tr>
  2742. <td class="PriceBreakQuantity">
  2743. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,5);">5:</a>
  2744. </td>
  2745. <td class="PriceBreakPrice">
  2746. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥186.2874</span>
  2747. </td>
  2748. </tr>
  2749. <tr>
  2750. <td class="PriceBreakQuantity">
  2751. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  2752. </td>
  2753. <td class="PriceBreakPrice">
  2754. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥179.1972</span>
  2755. </td>
  2756. </tr>
  2757. <tr>
  2758. <td class="PriceBreakQuantity">
  2759. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
  2760. </td>
  2761. <td class="PriceBreakPrice">
  2762. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥171.1125</span>
  2763. </td>
  2764. </tr>
  2765. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2766. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2767. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(5,50);">50:</a>
  2768. </td>
  2769. <td class="PriceBreakPrice">
  2770. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDNA100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x9IRDxAuKPoxNvI1nCrfzgg%3d%3d">查看</a>
  2771. </td>
  2772. </tr>
  2773. <tr>
  2774. <td><br /></td>
  2775. </tr>
  2776. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2777. <td colspan="2" style="text-align: center;">
  2778. </td>
  2779. </tr>
  2780. </table>
  2781. </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;)">
  2782. <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 />
  2783. <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="购买 AM4376BZDNA100" class="buy-button" /><br />
  2784. <table cellspacing="0" border="0" style="width: 100%;">
  2785. <tr>
  2786. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2787. 最低:
  2788. </td>
  2789. <td style="padding-left: 2px; text-align: left;">
  2790. 1
  2791. </td>
  2792. </tr>
  2793. <tr>
  2794. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2795. 多个:
  2796. </td>
  2797. <td style="padding-left: 2px; text-align: left;">
  2798. 1
  2799. </td>
  2800. </tr>
  2801. </table>
  2802. </div>
  2803. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2804. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2805. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcKjyL%252b3w1A2jg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcKjyL%252b3w1A2jg%3d%3d" target="_blank">详细信息</a>
  2806. </div>
  2807. </td><td>AM4376
  2808. </td><td>ARM Cortex A9
  2809. </td><td>1 Core
  2810. </td><td>32 bit
  2811. </td><td>1 GHz
  2812. </td><td>32 kB
  2813. </td><td>32 kB
  2814. </td><td>1.325 V
  2815. </td><td>+ 105 C
  2816. </td><td>SMD/SMT
  2817. </td><td>BGA-491
  2818. </td>
  2819. </tr><tr class="SearchResultsRowEven" data-partnumber="595-AM4378BZDN80" data-index="8">
  2820. <td class="td-select" align="center">
  2821. <div style="padding: 5px 5px 0 5px;">
  2822. <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>
  2823. </div>
  2824. </td><td><a href='/ProductDetail/Texas-Instruments/AM4378BZDN80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x8%252bDKO%252bytguIYIn7%252bCfBL0A%3d%3d'><img title='Texas Instruments AM4378BZDN80' alt='Texas Instruments AM4378BZDN80' id=1458467705 src='/images/texasinstruments/sm/AM4378_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4378_SPL.jpg</div></a></td><td>
  2825. <div style="text-align:left;">
  2826. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDN80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x8%252bDKO%252bytguIYIn7%252bCfBL0A%3d%3d">595-AM4378BZDN80</a><br />
  2827. <br />
  2828. <br />
  2829. </div></td><td>
  2830. <div class="mfrDiv">
  2831. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDN80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x8%252bDKO%252bytguIYIn7%252bCfBL0A%3d%3d">AM4378BZDN80</a><br />
  2832. <br />
  2833. <div style="width: 100%; text-align: center;">
  2834. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2835. </div>
  2836. <div style="width: 100%; text-align: center;">
  2837. </div>
  2838. </div>
  2839. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  2840. </td><td>微处理器 - MPU Sitara Processor 80Mhz, 0 to 90
  2841. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2842. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  2843. </div>
  2844. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2845. </div>
  2846. </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;Texas Instruments&quot;,&quot;595-AM4378BZDN80 | AM4378BZDN80&quot;]);" href="http://www.mouser.com/ds/2/405/am4378-558640.pdf" target="_blank">数据表</a>
  2847. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">80<br/>有库存</span>
  2848. <table>
  2849. <tr align="center">
  2850. <td style="padding-top: 5px">
  2851. </td>
  2852. </tr>
  2853. <tr align="center">
  2854. <td style="padding-top: 5px; padding-bottom: 5px">
  2855. </td>
  2856. </tr>
  2857. </table></td><td>
  2858. <table class="PriceBreaks" cellspacing="0" border="0">
  2859. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2860. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2861. </td>
  2862. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2863. </td>
  2864. </tr>
  2865. <tr>
  2866. <td class="PriceBreakQuantity">
  2867. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  2868. </td>
  2869. <td class="PriceBreakPrice">
  2870. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥152.3223</span>
  2871. </td>
  2872. </tr>
  2873. <tr>
  2874. <td class="PriceBreakQuantity">
  2875. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  2876. </td>
  2877. <td class="PriceBreakPrice">
  2878. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥140.0841</span>
  2879. </td>
  2880. </tr>
  2881. <tr>
  2882. <td class="PriceBreakQuantity">
  2883. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  2884. </td>
  2885. <td class="PriceBreakPrice">
  2886. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥132.7599</span>
  2887. </td>
  2888. </tr>
  2889. <tr>
  2890. <td class="PriceBreakQuantity">
  2891. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,50);">50:</a>
  2892. </td>
  2893. <td class="PriceBreakPrice">
  2894. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥129.1446</span>
  2895. </td>
  2896. </tr>
  2897. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2898. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2899. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  2900. </td>
  2901. <td class="PriceBreakPrice">
  2902. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDN80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x8%252bDKO%252bytguIYIn7%252bCfBL0A%3d%3d">查看</a>
  2903. </td>
  2904. </tr>
  2905. <tr>
  2906. <td><br /></td>
  2907. </tr>
  2908. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2909. <td colspan="2" style="text-align: center;">
  2910. </td>
  2911. </tr>
  2912. </table>
  2913. </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;)">
  2914. <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 />
  2915. <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="购买 AM4378BZDN80" class="buy-button" /><br />
  2916. <table cellspacing="0" border="0" style="width: 100%;">
  2917. <tr>
  2918. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2919. 最低:
  2920. </td>
  2921. <td style="padding-left: 2px; text-align: left;">
  2922. 1
  2923. </td>
  2924. </tr>
  2925. <tr>
  2926. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2927. 多个:
  2928. </td>
  2929. <td style="padding-left: 2px; text-align: left;">
  2930. 1
  2931. </td>
  2932. </tr>
  2933. </table>
  2934. </div>
  2935. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2936. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2937. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcIccpVdsZFVCw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcIccpVdsZFVCw%3d%3d" target="_blank">详细信息</a>
  2938. </div>
  2939. </td><td>AM4378
  2940. </td><td>ARM Cortex A9
  2941. </td><td>1 Core
  2942. </td><td>32 bit
  2943. </td><td>800 MHz
  2944. </td><td>32 kB
  2945. </td><td>32 kB
  2946. </td><td>1.26 V
  2947. </td><td>+ 90 C
  2948. </td><td>SMD/SMT
  2949. </td><td>BGA-491
  2950. </td>
  2951. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-AM4376BZDND30" data-index="9">
  2952. <td class="td-select" align="center">
  2953. <div style="padding: 5px 5px 0 5px;">
  2954. <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>
  2955. </div>
  2956. </td><td><a href='/ProductDetail/Texas-Instruments/AM4376BZDND30/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xO28B3r4dSY%2fp8YarRs8UaQ%3d%3d'><img title='Texas Instruments AM4376BZDND30' alt='Texas Instruments AM4376BZDND30' id=1458467691 src='/images/texasinstruments/sm/AM4376_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4376_SPL.jpg</div></a></td><td>
  2957. <div style="text-align:left;">
  2958. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDND30/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xO28B3r4dSY%2fp8YarRs8UaQ%3d%3d">595-AM4376BZDND30</a><br />
  2959. <br />
  2960. <br />
  2961. </div></td><td>
  2962. <div class="mfrDiv">
  2963. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDND30/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xO28B3r4dSY%2fp8YarRs8UaQ%3d%3d">AM4376BZDND30</a><br />
  2964. <br />
  2965. <div style="width: 100%; text-align: center;">
  2966. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2967. </div>
  2968. <div style="width: 100%; text-align: center;">
  2969. </div>
  2970. </div>
  2971. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  2972. </td><td>微处理器 - MPU Sitara Processor 30Mhz, -40 to 90
  2973. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2974. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  2975. </div>
  2976. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2977. </div>
  2978. </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;595-AM4376BZDND30 | AM4376BZDND30&quot;]);" href="http://www.mouser.com/ds/2/405/am4376-558653.pdf" target="_blank">数据表</a>
  2979. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">89<br/>有库存</span>
  2980. <table>
  2981. <tr align="center">
  2982. <td style="padding-top: 5px">
  2983. </td>
  2984. </tr>
  2985. <tr align="center">
  2986. <td style="padding-top: 5px; padding-bottom: 5px">
  2987. </td>
  2988. </tr>
  2989. </table></td><td>
  2990. <table class="PriceBreaks" cellspacing="0" border="0">
  2991. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2992. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2993. </td>
  2994. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2995. </td>
  2996. </tr>
  2997. <tr>
  2998. <td class="PriceBreakQuantity">
  2999. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  3000. </td>
  3001. <td class="PriceBreakPrice">
  3002. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥145.4661</span>
  3003. </td>
  3004. </tr>
  3005. <tr>
  3006. <td class="PriceBreakQuantity">
  3007. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  3008. </td>
  3009. <td class="PriceBreakPrice">
  3010. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥133.7661</span>
  3011. </td>
  3012. </tr>
  3013. <tr>
  3014. <td class="PriceBreakQuantity">
  3015. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,25);">25:</a>
  3016. </td>
  3017. <td class="PriceBreakPrice">
  3018. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥126.7578</span>
  3019. </td>
  3020. </tr>
  3021. <tr>
  3022. <td class="PriceBreakQuantity">
  3023. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,50);">50:</a>
  3024. </td>
  3025. <td class="PriceBreakPrice">
  3026. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥123.3648</span>
  3027. </td>
  3028. </tr>
  3029. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3030. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3031. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  3032. </td>
  3033. <td class="PriceBreakPrice">
  3034. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDND30/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xO28B3r4dSY%2fp8YarRs8UaQ%3d%3d">查看</a>
  3035. </td>
  3036. </tr>
  3037. <tr>
  3038. <td><br /></td>
  3039. </tr>
  3040. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3041. <td colspan="2" style="text-align: center;">
  3042. </td>
  3043. </tr>
  3044. </table>
  3045. </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;)">
  3046. <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 />
  3047. <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="购买 AM4376BZDND30" class="buy-button" /><br />
  3048. <table cellspacing="0" border="0" style="width: 100%;">
  3049. <tr>
  3050. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3051. 最低:
  3052. </td>
  3053. <td style="padding-left: 2px; text-align: left;">
  3054. 1
  3055. </td>
  3056. </tr>
  3057. <tr>
  3058. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3059. 多个:
  3060. </td>
  3061. <td style="padding-left: 2px; text-align: left;">
  3062. 1
  3063. </td>
  3064. </tr>
  3065. </table>
  3066. </div>
  3067. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  3068. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3069. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcJxmJ%2fhJct%252bmg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcJxmJ%2fhJct%252bmg%3d%3d" target="_blank">详细信息</a>
  3070. </div>
  3071. </td><td>AM4376
  3072. </td><td>ARM Cortex A9
  3073. </td><td>1 Core
  3074. </td><td>32 bit
  3075. </td><td>300 MHz
  3076. </td><td>32 kB
  3077. </td><td>32 kB
  3078. </td><td>950 mV
  3079. </td><td>+ 90 C
  3080. </td><td>SMD/SMT
  3081. </td><td>BGA-491
  3082. </td>
  3083. </tr><tr class="SearchResultsRowEven" data-partnumber="595-AM4376BZDN80" data-index="10">
  3084. <td class="td-select" align="center">
  3085. <div style="padding: 5px 5px 0 5px;">
  3086. <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>
  3087. </div>
  3088. </td><td><a href='/ProductDetail/Texas-Instruments/AM4376BZDN80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x7sl9IFWbeBlrogQPslaMpQ%3d%3d'><img title='Texas Instruments AM4376BZDN80' alt='Texas Instruments AM4376BZDN80' id=1458467683 src='/images/texasinstruments/sm/AM4376_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4376_SPL.jpg</div></a></td><td>
  3089. <div style="text-align:left;">
  3090. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDN80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x7sl9IFWbeBlrogQPslaMpQ%3d%3d">595-AM4376BZDN80</a><br />
  3091. <br />
  3092. <br />
  3093. </div></td><td>
  3094. <div class="mfrDiv">
  3095. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDN80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x7sl9IFWbeBlrogQPslaMpQ%3d%3d">AM4376BZDN80</a><br />
  3096. <br />
  3097. <div style="width: 100%; text-align: center;">
  3098. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3099. </div>
  3100. <div style="width: 100%; text-align: center;">
  3101. </div>
  3102. </div>
  3103. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  3104. </td><td>微处理器 - MPU Sitara Processor 80Mhz, 0 to 90
  3105. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3106. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  3107. </div>
  3108. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3109. </div>
  3110. </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;Texas Instruments&quot;,&quot;595-AM4376BZDN80 | AM4376BZDN80&quot;]);" href="http://www.mouser.com/ds/2/405/am4376-558653.pdf" target="_blank">数据表</a>
  3111. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">65<br/>有库存</span>
  3112. <table>
  3113. <tr align="center">
  3114. <td style="padding-top: 5px">
  3115. </td>
  3116. </tr>
  3117. <tr align="center">
  3118. <td style="padding-top: 5px; padding-bottom: 5px">
  3119. </td>
  3120. </tr>
  3121. </table></td><td>
  3122. <table class="PriceBreaks" cellspacing="0" border="0">
  3123. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3124. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3125. </td>
  3126. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3127. </td>
  3128. </tr>
  3129. <tr>
  3130. <td class="PriceBreakQuantity">
  3131. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  3132. </td>
  3133. <td class="PriceBreakPrice">
  3134. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥147.8529</span>
  3135. </td>
  3136. </tr>
  3137. <tr>
  3138. <td class="PriceBreakQuantity">
  3139. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,10);">10:</a>
  3140. </td>
  3141. <td class="PriceBreakPrice">
  3142. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥136.0008</span>
  3143. </td>
  3144. </tr>
  3145. <tr>
  3146. <td class="PriceBreakQuantity">
  3147. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,25);">25:</a>
  3148. </td>
  3149. <td class="PriceBreakPrice">
  3150. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥128.9106</span>
  3151. </td>
  3152. </tr>
  3153. <tr>
  3154. <td class="PriceBreakQuantity">
  3155. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,50);">50:</a>
  3156. </td>
  3157. <td class="PriceBreakPrice">
  3158. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥125.3655</span>
  3159. </td>
  3160. </tr>
  3161. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3162. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3163. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(8,100);">100:</a>
  3164. </td>
  3165. <td class="PriceBreakPrice">
  3166. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDN80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x7sl9IFWbeBlrogQPslaMpQ%3d%3d">查看</a>
  3167. </td>
  3168. </tr>
  3169. <tr>
  3170. <td><br /></td>
  3171. </tr>
  3172. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3173. <td colspan="2" style="text-align: center;">
  3174. </td>
  3175. </tr>
  3176. </table>
  3177. </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;)">
  3178. <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 />
  3179. <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="购买 AM4376BZDN80" class="buy-button" /><br />
  3180. <table cellspacing="0" border="0" style="width: 100%;">
  3181. <tr>
  3182. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3183. 最低:
  3184. </td>
  3185. <td style="padding-left: 2px; text-align: left;">
  3186. 1
  3187. </td>
  3188. </tr>
  3189. <tr>
  3190. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3191. 多个:
  3192. </td>
  3193. <td style="padding-left: 2px; text-align: left;">
  3194. 1
  3195. </td>
  3196. </tr>
  3197. </table>
  3198. </div>
  3199. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  3200. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3201. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcKWxmL756%2flQA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcKWxmL756%2flQA%3d%3d" target="_blank">详细信息</a>
  3202. </div>
  3203. </td><td>AM4376
  3204. </td><td>ARM Cortex A9
  3205. </td><td>1 Core
  3206. </td><td>32 bit
  3207. </td><td>800 MHz
  3208. </td><td>32 kB
  3209. </td><td>32 kB
  3210. </td><td>1.26 V
  3211. </td><td>+ 90 C
  3212. </td><td>SMD/SMT
  3213. </td><td>BGA-491
  3214. </td>
  3215. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-AM4378BZDND100" data-index="11">
  3216. <td class="td-select" align="center">
  3217. <div style="padding: 5px 5px 0 5px;">
  3218. <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>
  3219. </div>
  3220. </td><td><a href='/ProductDetail/Texas-Instruments/AM4378BZDND100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xGWuV48gBPR8HfXh%2faM4i7Q%3d%3d'><img title='Texas Instruments AM4378BZDND100' alt='Texas Instruments AM4378BZDND100' id=1458467711 src='/images/texasinstruments/sm/AM4378_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4378_SPL.jpg</div></a></td><td>
  3221. <div style="text-align:left;">
  3222. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDND100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xGWuV48gBPR8HfXh%2faM4i7Q%3d%3d">595-AM4378BZDND100</a><br />
  3223. <br />
  3224. <br />
  3225. </div></td><td>
  3226. <div class="mfrDiv">
  3227. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDND100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xGWuV48gBPR8HfXh%2faM4i7Q%3d%3d">AM4378BZDND100</a><br />
  3228. <br />
  3229. <div style="width: 100%; text-align: center;">
  3230. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3231. </div>
  3232. <div style="width: 100%; text-align: center;">
  3233. </div>
  3234. </div>
  3235. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  3236. </td><td>微处理器 - MPU Sitara Processor 491-NFBGA -40 to 90
  3237. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3238. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  3239. </div>
  3240. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3241. </div>
  3242. </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;Texas Instruments&quot;,&quot;595-AM4378BZDND100 | AM4378BZDND100&quot;]);" href="http://www.mouser.com/ds/2/405/am4378-558640.pdf" target="_blank">数据表</a>
  3243. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">79<br/>有库存</span>
  3244. <table>
  3245. <tr align="center">
  3246. <td style="padding-top: 5px">
  3247. </td>
  3248. </tr>
  3249. <tr align="center">
  3250. <td style="padding-top: 5px; padding-bottom: 5px">
  3251. </td>
  3252. </tr>
  3253. </table></td><td>
  3254. <table class="PriceBreaks" cellspacing="0" border="0">
  3255. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3256. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3257. </td>
  3258. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3259. </td>
  3260. </tr>
  3261. <tr>
  3262. <td class="PriceBreakQuantity">
  3263. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  3264. </td>
  3265. <td class="PriceBreakPrice">
  3266. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥172.5048</span>
  3267. </td>
  3268. </tr>
  3269. <tr>
  3270. <td class="PriceBreakQuantity">
  3271. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,5);">5:</a>
  3272. </td>
  3273. <td class="PriceBreakPrice">
  3274. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥165.4146</span>
  3275. </td>
  3276. </tr>
  3277. <tr>
  3278. <td class="PriceBreakQuantity">
  3279. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
  3280. </td>
  3281. <td class="PriceBreakPrice">
  3282. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥159.0966</span>
  3283. </td>
  3284. </tr>
  3285. <tr>
  3286. <td class="PriceBreakQuantity">
  3287. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  3288. </td>
  3289. <td class="PriceBreakPrice">
  3290. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥151.9362</span>
  3291. </td>
  3292. </tr>
  3293. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3294. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3295. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(9,50);">50:</a>
  3296. </td>
  3297. <td class="PriceBreakPrice">
  3298. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDND100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xGWuV48gBPR8HfXh%2faM4i7Q%3d%3d">查看</a>
  3299. </td>
  3300. </tr>
  3301. <tr>
  3302. <td><br /></td>
  3303. </tr>
  3304. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3305. <td colspan="2" style="text-align: center;">
  3306. </td>
  3307. </tr>
  3308. </table>
  3309. </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;)">
  3310. <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 />
  3311. <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="购买 AM4378BZDND100" class="buy-button" /><br />
  3312. <table cellspacing="0" border="0" style="width: 100%;">
  3313. <tr>
  3314. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3315. 最低:
  3316. </td>
  3317. <td style="padding-left: 2px; text-align: left;">
  3318. 1
  3319. </td>
  3320. </tr>
  3321. <tr>
  3322. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3323. 多个:
  3324. </td>
  3325. <td style="padding-left: 2px; text-align: left;">
  3326. 1
  3327. </td>
  3328. </tr>
  3329. </table>
  3330. </div>
  3331. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  3332. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3333. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcJNAT5aNc3WOw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcJNAT5aNc3WOw%3d%3d" target="_blank">详细信息</a>
  3334. </div>
  3335. </td><td>AM4378
  3336. </td><td>ARM Cortex A9
  3337. </td><td>1 Core
  3338. </td><td>32 bit
  3339. </td><td>1 GHz
  3340. </td><td>32 kB
  3341. </td><td>32 kB
  3342. </td><td>1.325 V
  3343. </td><td>+ 90 C
  3344. </td><td>SMD/SMT
  3345. </td><td>BGA-491
  3346. </td>
  3347. </tr><tr class="SearchResultsRowEven" data-partnumber="595-AM4379BZDNA100" data-index="12">
  3348. <td class="td-select" align="center">
  3349. <div style="padding: 5px 5px 0 5px;">
  3350. <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>
  3351. </div>
  3352. </td><td><a href='/ProductDetail/Texas-Instruments/AM4379BZDNA100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xjEmqIVAedkfuggidt20Myw%3d%3d'><img title='Texas Instruments AM4379BZDNA100' alt='Texas Instruments AM4379BZDNA100' id=1458467715 src='/images/texasinstruments/sm/AM4379_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4379_SPL.jpg</div></a></td><td>
  3353. <div style="text-align:left;">
  3354. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4379BZDNA100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xjEmqIVAedkfuggidt20Myw%3d%3d">595-AM4379BZDNA100</a><br />
  3355. <br />
  3356. <br />
  3357. </div></td><td>
  3358. <div class="mfrDiv">
  3359. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4379BZDNA100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xjEmqIVAedkfuggidt20Myw%3d%3d">AM4379BZDNA100</a><br />
  3360. <br />
  3361. <div style="width: 100%; text-align: center;">
  3362. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3363. </div>
  3364. <div style="width: 100%; text-align: center;">
  3365. </div>
  3366. </div>
  3367. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  3368. </td><td>微处理器 - MPU Sitara Processor 491-NFBGA -40 to 105
  3369. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3370. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  3371. </div>
  3372. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3373. </div>
  3374. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-AM4379BZDNA100 | AM4379BZDNA100&quot;]);" href="http://www.mouser.com/ds/2/405/am4379-452472.pdf" target="_blank">数据表</a>
  3375. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">20<br/>有库存</span>
  3376. <table>
  3377. <tr align="center">
  3378. <td style="padding-top: 5px">
  3379. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../../ProductDetail/Texas-Instruments/AM4379BZDNA100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xjEmqIVAedkfuggidt20Myw%3d%3d">更多信息可用 </a>
  3380. </td>
  3381. </tr>
  3382. <tr align="center">
  3383. <td style="padding-top: 5px; padding-bottom: 5px">
  3384. </td>
  3385. </tr>
  3386. </table></td><td>
  3387. <table class="PriceBreaks" cellspacing="0" border="0">
  3388. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3389. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3390. </td>
  3391. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3392. </td>
  3393. </tr>
  3394. <tr>
  3395. <td class="PriceBreakQuantity">
  3396. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  3397. </td>
  3398. <td class="PriceBreakPrice">
  3399. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥278.0856</span>
  3400. </td>
  3401. </tr>
  3402. <tr>
  3403. <td class="PriceBreakQuantity">
  3404. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,5);">5:</a>
  3405. </td>
  3406. <td class="PriceBreakPrice">
  3407. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥266.6079</span>
  3408. </td>
  3409. </tr>
  3410. <tr>
  3411. <td class="PriceBreakQuantity">
  3412. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  3413. </td>
  3414. <td class="PriceBreakPrice">
  3415. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥256.5225</span>
  3416. </td>
  3417. </tr>
  3418. <tr>
  3419. <td class="PriceBreakQuantity">
  3420. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  3421. </td>
  3422. <td class="PriceBreakPrice">
  3423. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥244.9629</span>
  3424. </td>
  3425. </tr>
  3426. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3427. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3428. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(10,50);">50:</a>
  3429. </td>
  3430. <td class="PriceBreakPrice">
  3431. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4379BZDNA100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xjEmqIVAedkfuggidt20Myw%3d%3d">查看</a>
  3432. </td>
  3433. </tr>
  3434. <tr>
  3435. <td><br /></td>
  3436. </tr>
  3437. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3438. <td colspan="2" style="text-align: center;">
  3439. </td>
  3440. </tr>
  3441. </table>
  3442. </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;)">
  3443. <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 />
  3444. <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="购买 AM4379BZDNA100" class="buy-button" /><br />
  3445. <table cellspacing="0" border="0" style="width: 100%;">
  3446. <tr>
  3447. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3448. 最低:
  3449. </td>
  3450. <td style="padding-left: 2px; text-align: left;">
  3451. 1
  3452. </td>
  3453. </tr>
  3454. <tr>
  3455. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3456. 多个:
  3457. </td>
  3458. <td style="padding-left: 2px; text-align: left;">
  3459. 1
  3460. </td>
  3461. </tr>
  3462. </table>
  3463. </div>
  3464. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  3465. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3466. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcJhAASvdImZfA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcJhAASvdImZfA%3d%3d" target="_blank">详细信息</a>
  3467. </div>
  3468. </td><td>AM4379
  3469. </td><td>ARM Cortex A9
  3470. </td><td>1 Core
  3471. </td><td>32 bit
  3472. </td><td>1 GHz
  3473. </td><td>32 kB
  3474. </td><td>32 kB
  3475. </td><td>1.325 V
  3476. </td><td>+ 105 C
  3477. </td><td>SMD/SMT
  3478. </td><td>BGA-491
  3479. </td>
  3480. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-AM4378BZDN100" data-index="13">
  3481. <td class="td-select" align="center">
  3482. <div style="padding: 5px 5px 0 5px;">
  3483. <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>
  3484. </div>
  3485. </td><td><a href='/ProductDetail/Texas-Instruments/AM4378BZDN100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xGNJwSLCcapv4aPFm8EifUg%3d%3d'><img title='Texas Instruments AM4378BZDN100' alt='Texas Instruments AM4378BZDN100' id=1458467703 src='/images/texasinstruments/sm/AM4378_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4378_SPL.jpg</div></a></td><td>
  3486. <div style="text-align:left;">
  3487. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDN100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xGNJwSLCcapv4aPFm8EifUg%3d%3d">595-AM4378BZDN100</a><br />
  3488. <br />
  3489. <br />
  3490. </div></td><td>
  3491. <div class="mfrDiv">
  3492. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDN100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xGNJwSLCcapv4aPFm8EifUg%3d%3d">AM4378BZDN100</a><br />
  3493. <br />
  3494. <div style="width: 100%; text-align: center;">
  3495. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3496. </div>
  3497. <div style="width: 100%; text-align: center;">
  3498. </div>
  3499. </div>
  3500. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  3501. </td><td>微处理器 - MPU Sitara Processor 100Mhz, 0 to 90
  3502. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3503. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  3504. </div>
  3505. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3506. </div>
  3507. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-AM4378BZDN100 | AM4378BZDN100&quot;]);" href="http://www.mouser.com/ds/2/405/am4378-558640.pdf" target="_blank">数据表</a>
  3508. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">43<br/>有库存</span>
  3509. <table>
  3510. <tr align="center">
  3511. <td style="padding-top: 5px">
  3512. </td>
  3513. </tr>
  3514. <tr align="center">
  3515. <td style="padding-top: 5px; padding-bottom: 5px">
  3516. </td>
  3517. </tr>
  3518. </table></td><td>
  3519. <table class="PriceBreaks" cellspacing="0" border="0">
  3520. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3521. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3522. </td>
  3523. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3524. </td>
  3525. </tr>
  3526. <tr>
  3527. <td class="PriceBreakQuantity">
  3528. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  3529. </td>
  3530. <td class="PriceBreakPrice">
  3531. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥157.716</span>
  3532. </td>
  3533. </tr>
  3534. <tr>
  3535. <td class="PriceBreakQuantity">
  3536. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,5);">5:</a>
  3537. </td>
  3538. <td class="PriceBreakPrice">
  3539. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥151.164</span>
  3540. </td>
  3541. </tr>
  3542. <tr>
  3543. <td class="PriceBreakQuantity">
  3544. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
  3545. </td>
  3546. <td class="PriceBreakPrice">
  3547. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥145.4661</span>
  3548. </td>
  3549. </tr>
  3550. <tr>
  3551. <td class="PriceBreakQuantity">
  3552. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  3553. </td>
  3554. <td class="PriceBreakPrice">
  3555. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥138.9258</span>
  3556. </td>
  3557. </tr>
  3558. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3559. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3560. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(11,50);">50:</a>
  3561. </td>
  3562. <td class="PriceBreakPrice">
  3563. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDN100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xGNJwSLCcapv4aPFm8EifUg%3d%3d">查看</a>
  3564. </td>
  3565. </tr>
  3566. <tr>
  3567. <td><br /></td>
  3568. </tr>
  3569. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3570. <td colspan="2" style="text-align: center;">
  3571. </td>
  3572. </tr>
  3573. </table>
  3574. </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;)">
  3575. <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 />
  3576. <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="购买 AM4378BZDN100" class="buy-button" /><br />
  3577. <table cellspacing="0" border="0" style="width: 100%;">
  3578. <tr>
  3579. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3580. 最低:
  3581. </td>
  3582. <td style="padding-left: 2px; text-align: left;">
  3583. 1
  3584. </td>
  3585. </tr>
  3586. <tr>
  3587. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3588. 多个:
  3589. </td>
  3590. <td style="padding-left: 2px; text-align: left;">
  3591. 1
  3592. </td>
  3593. </tr>
  3594. </table>
  3595. </div>
  3596. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  3597. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3598. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcL0yfor3CghXw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcL0yfor3CghXw%3d%3d" target="_blank">详细信息</a>
  3599. </div>
  3600. </td><td>AM4378
  3601. </td><td>ARM Cortex A9
  3602. </td><td>1 Core
  3603. </td><td>32 bit
  3604. </td><td>1 GHz
  3605. </td><td>32 kB
  3606. </td><td>32 kB
  3607. </td><td>1.325 V
  3608. </td><td>+ 90 C
  3609. </td><td>SMD/SMT
  3610. </td><td>BGA-491
  3611. </td>
  3612. </tr><tr class="SearchResultsRowEven" data-partnumber="595-AM4376BZDND100" data-index="14">
  3613. <td class="td-select" align="center">
  3614. <div style="padding: 5px 5px 0 5px;">
  3615. <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>
  3616. </div>
  3617. </td><td><a href='/ProductDetail/Texas-Instruments/AM4376BZDND100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xfbcxS8P6rUXkNdxUdiBNMg%3d%3d'><img title='Texas Instruments AM4376BZDND100' alt='Texas Instruments AM4376BZDND100' id=1458467689 src='/images/texasinstruments/sm/AM4376_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4376_SPL.jpg</div></a></td><td>
  3618. <div style="text-align:left;">
  3619. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDND100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xfbcxS8P6rUXkNdxUdiBNMg%3d%3d">595-AM4376BZDND100</a><br />
  3620. <br />
  3621. <br />
  3622. </div></td><td>
  3623. <div class="mfrDiv">
  3624. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDND100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xfbcxS8P6rUXkNdxUdiBNMg%3d%3d">AM4376BZDND100</a><br />
  3625. <br />
  3626. <div style="width: 100%; text-align: center;">
  3627. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3628. </div>
  3629. <div style="width: 100%; text-align: center;">
  3630. </div>
  3631. </div>
  3632. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  3633. </td><td>微处理器 - MPU Sitara Processor 491-NFBGA -40 to 90
  3634. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3635. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  3636. </div>
  3637. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3638. </div>
  3639. </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;Texas Instruments&quot;,&quot;595-AM4376BZDND100 | AM4376BZDND100&quot;]);" href="http://www.mouser.com/ds/2/405/am4376-558653.pdf" target="_blank">数据表</a>
  3640. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">23<br/>有库存</span>
  3641. <table>
  3642. <tr align="center">
  3643. <td style="padding-top: 5px">
  3644. </td>
  3645. </tr>
  3646. <tr align="center">
  3647. <td style="padding-top: 5px; padding-bottom: 5px">
  3648. </td>
  3649. </tr>
  3650. </table></td><td>
  3651. <table class="PriceBreaks" cellspacing="0" border="0">
  3652. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3653. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3654. </td>
  3655. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3656. </td>
  3657. </tr>
  3658. <tr>
  3659. <td class="PriceBreakQuantity">
  3660. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  3661. </td>
  3662. <td class="PriceBreakPrice">
  3663. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥168.4917</span>
  3664. </td>
  3665. </tr>
  3666. <tr>
  3667. <td class="PriceBreakQuantity">
  3668. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,5);">5:</a>
  3669. </td>
  3670. <td class="PriceBreakPrice">
  3671. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥161.5653</span>
  3672. </td>
  3673. </tr>
  3674. <tr>
  3675. <td class="PriceBreakQuantity">
  3676. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,10);">10:</a>
  3677. </td>
  3678. <td class="PriceBreakPrice">
  3679. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥155.3994</span>
  3680. </td>
  3681. </tr>
  3682. <tr>
  3683. <td class="PriceBreakQuantity">
  3684. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  3685. </td>
  3686. <td class="PriceBreakPrice">
  3687. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥148.4028</span>
  3688. </td>
  3689. </tr>
  3690. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3691. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3692. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,50);">50:</a>
  3693. </td>
  3694. <td class="PriceBreakPrice">
  3695. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDND100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xfbcxS8P6rUXkNdxUdiBNMg%3d%3d">查看</a>
  3696. </td>
  3697. </tr>
  3698. <tr>
  3699. <td><br /></td>
  3700. </tr>
  3701. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3702. <td colspan="2" style="text-align: center;">
  3703. </td>
  3704. </tr>
  3705. </table>
  3706. </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;)">
  3707. <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 />
  3708. <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="购买 AM4376BZDND100" class="buy-button" /><br />
  3709. <table cellspacing="0" border="0" style="width: 100%;">
  3710. <tr>
  3711. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3712. 最低:
  3713. </td>
  3714. <td style="padding-left: 2px; text-align: left;">
  3715. 1
  3716. </td>
  3717. </tr>
  3718. <tr>
  3719. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3720. 多个:
  3721. </td>
  3722. <td style="padding-left: 2px; text-align: left;">
  3723. 1
  3724. </td>
  3725. </tr>
  3726. </table>
  3727. </div>
  3728. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  3729. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3730. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcJtM3iVsQ05PA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcJtM3iVsQ05PA%3d%3d" target="_blank">详细信息</a>
  3731. </div>
  3732. </td><td>AM4376
  3733. </td><td>ARM Cortex A9
  3734. </td><td>1 Core
  3735. </td><td>32 bit
  3736. </td><td>1 GHz
  3737. </td><td>32 kB
  3738. </td><td>32 kB
  3739. </td><td>1.325 V
  3740. </td><td>+ 90 C
  3741. </td><td>SMD/SMT
  3742. </td><td>BGA-491
  3743. </td>
  3744. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-AM4376BZDND80" data-index="15">
  3745. <td class="td-select" align="center">
  3746. <div style="padding: 5px 5px 0 5px;">
  3747. <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>
  3748. </div>
  3749. </td><td><a href='/ProductDetail/Texas-Instruments/AM4376BZDND80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xqUQ9PQBxW%2fm1b4GOuoeWng%3d%3d'><img title='Texas Instruments AM4376BZDND80' alt='Texas Instruments AM4376BZDND80' id=1458467693 src='/images/texasinstruments/sm/AM4376_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4376_SPL.jpg</div></a></td><td>
  3750. <div style="text-align:left;">
  3751. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDND80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xqUQ9PQBxW%2fm1b4GOuoeWng%3d%3d">595-AM4376BZDND80</a><br />
  3752. <br />
  3753. <br />
  3754. </div></td><td>
  3755. <div class="mfrDiv">
  3756. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDND80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xqUQ9PQBxW%2fm1b4GOuoeWng%3d%3d">AM4376BZDND80</a><br />
  3757. <br />
  3758. <div style="width: 100%; text-align: center;">
  3759. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3760. </div>
  3761. <div style="width: 100%; text-align: center;">
  3762. </div>
  3763. </div>
  3764. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  3765. </td><td>微处理器 - MPU Sitara Processor 491-NFBGA -40 to 90
  3766. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3767. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  3768. </div>
  3769. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3770. </div>
  3771. </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;Texas Instruments&quot;,&quot;595-AM4376BZDND80 | AM4376BZDND80&quot;]);" href="http://www.mouser.com/ds/2/405/am4376-558653.pdf" target="_blank">数据表</a>
  3772. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">27<br/>有库存</span>
  3773. <table>
  3774. <tr align="center">
  3775. <td style="padding-top: 5px">
  3776. </td>
  3777. </tr>
  3778. <tr align="center">
  3779. <td style="padding-top: 5px; padding-bottom: 5px">
  3780. </td>
  3781. </tr>
  3782. </table></td><td>
  3783. <table class="PriceBreaks" cellspacing="0" border="0">
  3784. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3785. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3786. </td>
  3787. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3788. </td>
  3789. </tr>
  3790. <tr>
  3791. <td class="PriceBreakQuantity">
  3792. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  3793. </td>
  3794. <td class="PriceBreakPrice">
  3795. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥149.7834</span>
  3796. </td>
  3797. </tr>
  3798. <tr>
  3799. <td class="PriceBreakQuantity">
  3800. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,5);">5:</a>
  3801. </td>
  3802. <td class="PriceBreakPrice">
  3803. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥143.5473</span>
  3804. </td>
  3805. </tr>
  3806. <tr>
  3807. <td class="PriceBreakQuantity">
  3808. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  3809. </td>
  3810. <td class="PriceBreakPrice">
  3811. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥138.1536</span>
  3812. </td>
  3813. </tr>
  3814. <tr>
  3815. <td class="PriceBreakQuantity">
  3816. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,25);">25:</a>
  3817. </td>
  3818. <td class="PriceBreakPrice">
  3819. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥131.9175</span>
  3820. </td>
  3821. </tr>
  3822. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3823. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3824. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(13,50);">50:</a>
  3825. </td>
  3826. <td class="PriceBreakPrice">
  3827. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4376BZDND80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xqUQ9PQBxW%2fm1b4GOuoeWng%3d%3d">查看</a>
  3828. </td>
  3829. </tr>
  3830. <tr>
  3831. <td><br /></td>
  3832. </tr>
  3833. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3834. <td colspan="2" style="text-align: center;">
  3835. </td>
  3836. </tr>
  3837. </table>
  3838. </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;)">
  3839. <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 />
  3840. <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="购买 AM4376BZDND80" class="buy-button" /><br />
  3841. <table cellspacing="0" border="0" style="width: 100%;">
  3842. <tr>
  3843. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3844. 最低:
  3845. </td>
  3846. <td style="padding-left: 2px; text-align: left;">
  3847. 1
  3848. </td>
  3849. </tr>
  3850. <tr>
  3851. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3852. 多个:
  3853. </td>
  3854. <td style="padding-left: 2px; text-align: left;">
  3855. 1
  3856. </td>
  3857. </tr>
  3858. </table>
  3859. </div>
  3860. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  3861. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3862. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcLlvGXREUpbQA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcLlvGXREUpbQA%3d%3d" target="_blank">详细信息</a>
  3863. </div>
  3864. </td><td>AM4376
  3865. </td><td>ARM Cortex A9
  3866. </td><td>1 Core
  3867. </td><td>32 bit
  3868. </td><td>800 MHz
  3869. </td><td>32 kB
  3870. </td><td>32 kB
  3871. </td><td>1.26 V
  3872. </td><td>+ 90 C
  3873. </td><td>SMD/SMT
  3874. </td><td>BGA-491
  3875. </td>
  3876. </tr><tr class="SearchResultsRowEven" data-partnumber="595-AM4377BZDND100" data-index="16">
  3877. <td class="td-select" align="center">
  3878. <div style="padding: 5px 5px 0 5px;">
  3879. <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>
  3880. </div>
  3881. </td><td><a href='/ProductDetail/Texas-Instruments/AM4377BZDND100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x%2fRrgYb6K%2f15QasOis5gmtg%3d%3d'><img title='Texas Instruments AM4377BZDND100' alt='Texas Instruments AM4377BZDND100' id=1458467699 src='/images/texasinstruments/sm/nfbga-491_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/nfbga-491_SPL.jpg</div></a></td><td>
  3882. <div style="text-align:left;">
  3883. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4377BZDND100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x%2fRrgYb6K%2f15QasOis5gmtg%3d%3d">595-AM4377BZDND100</a><br />
  3884. <br />
  3885. <br />
  3886. </div></td><td>
  3887. <div class="mfrDiv">
  3888. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4377BZDND100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x%2fRrgYb6K%2f15QasOis5gmtg%3d%3d">AM4377BZDND100</a><br />
  3889. <br />
  3890. <div style="width: 100%; text-align: center;">
  3891. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3892. </div>
  3893. <div style="width: 100%; text-align: center;">
  3894. </div>
  3895. </div>
  3896. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  3897. </td><td>微处理器 - MPU Sitara Processor 491-NFBGA -40 to 90
  3898. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3899. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  3900. </div>
  3901. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3902. </div>
  3903. </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;Texas Instruments&quot;,&quot;595-AM4377BZDND100 | AM4377BZDND100&quot;]);" href="http://www.mouser.com/ds/2/405/am4377-558610.pdf" target="_blank">数据表</a>
  3904. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">17<br/>有库存</span>
  3905. <table>
  3906. <tr align="center">
  3907. <td style="padding-top: 5px">
  3908. </td>
  3909. </tr>
  3910. <tr align="center">
  3911. <td style="padding-top: 5px; padding-bottom: 5px">
  3912. </td>
  3913. </tr>
  3914. </table></td><td>
  3915. <table class="PriceBreaks" cellspacing="0" border="0">
  3916. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3917. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3918. </td>
  3919. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3920. </td>
  3921. </tr>
  3922. <tr>
  3923. <td class="PriceBreakQuantity">
  3924. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  3925. </td>
  3926. <td class="PriceBreakPrice">
  3927. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥230.022</span>
  3928. </td>
  3929. </tr>
  3930. <tr>
  3931. <td class="PriceBreakQuantity">
  3932. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,5);">5:</a>
  3933. </td>
  3934. <td class="PriceBreakPrice">
  3935. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥220.5567</span>
  3936. </td>
  3937. </tr>
  3938. <tr>
  3939. <td class="PriceBreakQuantity">
  3940. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,10);">10:</a>
  3941. </td>
  3942. <td class="PriceBreakPrice">
  3943. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥212.1561</span>
  3944. </td>
  3945. </tr>
  3946. <tr>
  3947. <td class="PriceBreakQuantity">
  3948. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,25);">25:</a>
  3949. </td>
  3950. <td class="PriceBreakPrice">
  3951. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥202.6089</span>
  3952. </td>
  3953. </tr>
  3954. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3955. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3956. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(14,50);">50:</a>
  3957. </td>
  3958. <td class="PriceBreakPrice">
  3959. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4377BZDND100/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1x%2fRrgYb6K%2f15QasOis5gmtg%3d%3d">查看</a>
  3960. </td>
  3961. </tr>
  3962. <tr>
  3963. <td><br /></td>
  3964. </tr>
  3965. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3966. <td colspan="2" style="text-align: center;">
  3967. </td>
  3968. </tr>
  3969. </table>
  3970. </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;)">
  3971. <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 />
  3972. <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="购买 AM4377BZDND100" class="buy-button" /><br />
  3973. <table cellspacing="0" border="0" style="width: 100%;">
  3974. <tr>
  3975. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3976. 最低:
  3977. </td>
  3978. <td style="padding-left: 2px; text-align: left;">
  3979. 1
  3980. </td>
  3981. </tr>
  3982. <tr>
  3983. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3984. 多个:
  3985. </td>
  3986. <td style="padding-left: 2px; text-align: left;">
  3987. 1
  3988. </td>
  3989. </tr>
  3990. </table>
  3991. </div>
  3992. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  3993. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3994. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcLsmH0YdrmDtQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcLsmH0YdrmDtQ%3d%3d" target="_blank">详细信息</a>
  3995. </div>
  3996. </td><td>AM4377
  3997. </td><td>ARM Cortex A9
  3998. </td><td>1 Core
  3999. </td><td>32 bit
  4000. </td><td>1 GHz
  4001. </td><td>32 kB
  4002. </td><td>32 kB
  4003. </td><td>1.325 V
  4004. </td><td>+ 90 C
  4005. </td><td>SMD/SMT
  4006. </td><td>BGA-491
  4007. </td>
  4008. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-AM4378BZDND80" data-index="17">
  4009. <td class="td-select" align="center">
  4010. <div style="padding: 5px 5px 0 5px;">
  4011. <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>
  4012. </div>
  4013. </td><td><a href='/ProductDetail/Texas-Instruments/AM4378BZDND80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xTQdKRd5fkPsLgAPrB1h%252bug%3d%3d'><img title='Texas Instruments AM4378BZDND80' alt='Texas Instruments AM4378BZDND80' id=1458467713 src='/images/texasinstruments/sm/AM4378_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4378_SPL.jpg</div></a></td><td>
  4014. <div style="text-align:left;">
  4015. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDND80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xTQdKRd5fkPsLgAPrB1h%252bug%3d%3d">595-AM4378BZDND80</a><br />
  4016. <br />
  4017. <br />
  4018. </div></td><td>
  4019. <div class="mfrDiv">
  4020. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDND80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xTQdKRd5fkPsLgAPrB1h%252bug%3d%3d">AM4378BZDND80</a><br />
  4021. <br />
  4022. <div style="width: 100%; text-align: center;">
  4023. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4024. </div>
  4025. <div style="width: 100%; text-align: center;">
  4026. </div>
  4027. </div>
  4028. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  4029. </td><td>微处理器 - MPU Sitara Processor 491-NFBGA -40 to 90
  4030. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4031. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  4032. </div>
  4033. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4034. </div>
  4035. </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;Texas Instruments&quot;,&quot;595-AM4378BZDND80 | AM4378BZDND80&quot;]);" href="http://www.mouser.com/ds/2/405/am4378-558640.pdf" target="_blank">数据表</a>
  4036. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">25<br/>有库存</span>
  4037. <table>
  4038. <tr align="center">
  4039. <td style="padding-top: 5px">
  4040. </td>
  4041. </tr>
  4042. <tr align="center">
  4043. <td style="padding-top: 5px; padding-bottom: 5px">
  4044. </td>
  4045. </tr>
  4046. </table></td><td>
  4047. <table class="PriceBreaks" cellspacing="0" border="0">
  4048. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4049. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4050. </td>
  4051. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4052. </td>
  4053. </tr>
  4054. <tr>
  4055. <td class="PriceBreakQuantity">
  4056. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  4057. </td>
  4058. <td class="PriceBreakPrice">
  4059. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥153.7848</span>
  4060. </td>
  4061. </tr>
  4062. <tr>
  4063. <td class="PriceBreakQuantity">
  4064. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,5);">5:</a>
  4065. </td>
  4066. <td class="PriceBreakPrice">
  4067. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥147.3966</span>
  4068. </td>
  4069. </tr>
  4070. <tr>
  4071. <td class="PriceBreakQuantity">
  4072. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,10);">10:</a>
  4073. </td>
  4074. <td class="PriceBreakPrice">
  4075. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥141.8508</span>
  4076. </td>
  4077. </tr>
  4078. <tr>
  4079. <td class="PriceBreakQuantity">
  4080. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,25);">25:</a>
  4081. </td>
  4082. <td class="PriceBreakPrice">
  4083. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥135.4626</span>
  4084. </td>
  4085. </tr>
  4086. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4087. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4088. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(15,50);">50:</a>
  4089. </td>
  4090. <td class="PriceBreakPrice">
  4091. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDND80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xTQdKRd5fkPsLgAPrB1h%252bug%3d%3d">查看</a>
  4092. </td>
  4093. </tr>
  4094. <tr>
  4095. <td><br /></td>
  4096. </tr>
  4097. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4098. <td colspan="2" style="text-align: center;">
  4099. </td>
  4100. </tr>
  4101. </table>
  4102. </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;)">
  4103. <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 />
  4104. <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="购买 AM4378BZDND80" class="buy-button" /><br />
  4105. <table cellspacing="0" border="0" style="width: 100%;">
  4106. <tr>
  4107. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4108. 最低:
  4109. </td>
  4110. <td style="padding-left: 2px; text-align: left;">
  4111. 1
  4112. </td>
  4113. </tr>
  4114. <tr>
  4115. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4116. 多个:
  4117. </td>
  4118. <td style="padding-left: 2px; text-align: left;">
  4119. 1
  4120. </td>
  4121. </tr>
  4122. </table>
  4123. </div>
  4124. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  4125. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4126. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcIqWkC89r4oUA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcIqWkC89r4oUA%3d%3d" target="_blank">详细信息</a>
  4127. </div>
  4128. </td><td>AM4378
  4129. </td><td>ARM Cortex A9
  4130. </td><td>1 Core
  4131. </td><td>32 bit
  4132. </td><td>800 MHz
  4133. </td><td>32 kB
  4134. </td><td>32 kB
  4135. </td><td>1.26 V
  4136. </td><td>+ 90 C
  4137. </td><td>SMD/SMT
  4138. </td><td>BGA-491
  4139. </td>
  4140. </tr><tr class="SearchResultsRowEven" data-partnumber="595-AM4378BZDNA80" data-index="18">
  4141. <td class="td-select" align="center">
  4142. <div style="padding: 5px 5px 0 5px;">
  4143. <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>
  4144. </div>
  4145. </td><td><a href='/ProductDetail/Texas-Instruments/AM4378BZDNA80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xqc78v2%2f9j%2f39x7kzr4Z0%2fw%3d%3d'><img title='Texas Instruments AM4378BZDNA80' alt='Texas Instruments AM4378BZDNA80' id=1458467709 src='/images/texasinstruments/sm/AM4378_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/AM4378_SPL.jpg</div></a></td><td>
  4146. <div style="text-align:left;">
  4147. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDNA80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xqc78v2%2f9j%2f39x7kzr4Z0%2fw%3d%3d">595-AM4378BZDNA80</a><br />
  4148. <br />
  4149. <br />
  4150. </div></td><td>
  4151. <div class="mfrDiv">
  4152. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDNA80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xqc78v2%2f9j%2f39x7kzr4Z0%2fw%3d%3d">AM4378BZDNA80</a><br />
  4153. <br />
  4154. <div style="width: 100%; text-align: center;">
  4155. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4156. </div>
  4157. <div style="width: 100%; text-align: center;">
  4158. </div>
  4159. </div>
  4160. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  4161. </td><td>微处理器 - MPU Sitara Processor 491-NFBGA -40 to 105
  4162. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4163. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am437x-processor/">了解更多</a>
  4164. </div>
  4165. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4166. </div>
  4167. </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;Texas Instruments&quot;,&quot;595-AM4378BZDNA80 | AM4378BZDNA80&quot;]);" href="http://www.mouser.com/ds/2/405/am4378-558640.pdf" target="_blank">数据表</a>
  4168. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">22<br/>有库存</span>
  4169. <table>
  4170. <tr align="center">
  4171. <td style="padding-top: 5px">
  4172. </td>
  4173. </tr>
  4174. <tr align="center">
  4175. <td style="padding-top: 5px; padding-bottom: 5px">
  4176. </td>
  4177. </tr>
  4178. </table></td><td>
  4179. <table class="PriceBreaks" cellspacing="0" border="0">
  4180. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4181. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4182. </td>
  4183. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4184. </td>
  4185. </tr>
  4186. <tr>
  4187. <td class="PriceBreakQuantity">
  4188. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  4189. </td>
  4190. <td class="PriceBreakPrice">
  4191. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥168.8778</span>
  4192. </td>
  4193. </tr>
  4194. <tr>
  4195. <td class="PriceBreakQuantity">
  4196. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,5);">5:</a>
  4197. </td>
  4198. <td class="PriceBreakPrice">
  4199. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥161.9514</span>
  4200. </td>
  4201. </tr>
  4202. <tr>
  4203. <td class="PriceBreakQuantity">
  4204. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  4205. </td>
  4206. <td class="PriceBreakPrice">
  4207. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥155.7855</span>
  4208. </td>
  4209. </tr>
  4210. <tr>
  4211. <td class="PriceBreakQuantity">
  4212. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,25);">25:</a>
  4213. </td>
  4214. <td class="PriceBreakPrice">
  4215. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥148.7772</span>
  4216. </td>
  4217. </tr>
  4218. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4219. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4220. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(16,50);">50:</a>
  4221. </td>
  4222. <td class="PriceBreakPrice">
  4223. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM4378BZDNA80/?qs=sGAEpiMZZMsk5yEqv3Bk8QLrZLVtsb1xqc78v2%2f9j%2f39x7kzr4Z0%2fw%3d%3d">查看</a>
  4224. </td>
  4225. </tr>
  4226. <tr>
  4227. <td><br /></td>
  4228. </tr>
  4229. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4230. <td colspan="2" style="text-align: center;">
  4231. </td>
  4232. </tr>
  4233. </table>
  4234. </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;)">
  4235. <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 />
  4236. <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="购买 AM4378BZDNA80" class="buy-button" /><br />
  4237. <table cellspacing="0" border="0" style="width: 100%;">
  4238. <tr>
  4239. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4240. 最低:
  4241. </td>
  4242. <td style="padding-left: 2px; text-align: left;">
  4243. 1
  4244. </td>
  4245. </tr>
  4246. <tr>
  4247. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4248. 多个:
  4249. </td>
  4250. <td style="padding-left: 2px; text-align: left;">
  4251. 1
  4252. </td>
  4253. </tr>
  4254. </table>
  4255. </div>
  4256. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  4257. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4258. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcLwoZaFAuiDeA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=nndjCLC5dcLwoZaFAuiDeA%3d%3d" target="_blank">详细信息</a>
  4259. </div>
  4260. </td><td>AM4378
  4261. </td><td>ARM Cortex A9
  4262. </td><td>1 Core
  4263. </td><td>32 bit
  4264. </td><td>800 MHz
  4265. </td><td>32 kB
  4266. </td><td>32 kB
  4267. </td><td>1.26 V
  4268. </td><td>+ 105 C
  4269. </td><td>SMD/SMT
  4270. </td><td>BGA-491
  4271. </td>
  4272. </tr><tr class="SearchResultsRowOdd" data-partnumber="958-ALF2X-SC-512" data-index="19">
  4273. <td class="td-select" align="center">
  4274. <div style="padding: 5px 5px 0 5px;">
  4275. <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>
  4276. </div>
  4277. </td><td><a href='/ProductDetail/GHI-Electronics/ALF2X-SC-512/?qs=sGAEpiMZZMsk5yEqv3Bk8Rks%252bPNyAq16mSopDQSuMXwAZjOYN4TqnQ%3d%3d'><img title='GHI Electronics ALF2X-SC-512' alt='GHI Electronics ALF2X-SC-512' id=1221576945 src='/images/mouserimages/sm/LQFP_64_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/LQFP_64_t.jpg</div></a></td><td>
  4278. <div style="text-align:left;">
  4279. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/GHI-Electronics/ALF2X-SC-512/?qs=sGAEpiMZZMsk5yEqv3Bk8Rks%252bPNyAq16mSopDQSuMXwAZjOYN4TqnQ%3d%3d">958-ALF2X-SC-512</a><br />
  4280. <br />
  4281. <br />
  4282. </div></td><td>
  4283. <div class="mfrDiv">
  4284. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/GHI-Electronics/ALF2X-SC-512/?qs=sGAEpiMZZMsk5yEqv3Bk8Rks%252bPNyAq16mSopDQSuMXwAZjOYN4TqnQ%3d%3d">ALF2X-SC-512</a><br />
  4285. <br />
  4286. <div style="width: 100%; text-align: center;">
  4287. <span><img src="/images/icon-lc-new-at-mouser-sm.png" alt="Mouser 的新产品" /><br/>Mouser 的新产品</span><br/><br/>
  4288. </div>
  4289. <div style="width: 100%; text-align: center;">
  4290. </div>
  4291. </div>
  4292. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../../ghielectronics">GHI Electronics</a>
  4293. </td><td>微处理器 - MPU FILE SYSTEM SoC with DUAL USB HOST & SD
  4294. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4295. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ghielectronicsALFAT">了解更多</a>
  4296. </div>
  4297. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4298. </div>
  4299. </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;GHI Electronics&quot;,&quot;958-ALF2X-SC-512 | ALF2X-SC-512&quot;]);" href="http://www.mouser.com/ds/2/170/ALFAT_SoC_Processor_User_Manual-371227.pdf" target="_blank">数据表</a>
  4300. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">4,572<br/>有库存</span>
  4301. <table>
  4302. <tr align="center">
  4303. <td style="padding-top: 5px">
  4304. </td>
  4305. </tr>
  4306. <tr align="center">
  4307. <td style="padding-top: 5px; padding-bottom: 5px">
  4308. </td>
  4309. </tr>
  4310. </table></td><td>
  4311. <table class="PriceBreaks" cellspacing="0" border="0">
  4312. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4313. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4314. </td>
  4315. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4316. </td>
  4317. </tr>
  4318. <tr>
  4319. <td class="PriceBreakQuantity">
  4320. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  4321. </td>
  4322. <td class="PriceBreakPrice">
  4323. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥107.4294</span>
  4324. </td>
  4325. </tr>
  4326. <tr>
  4327. <td class="PriceBreakQuantity">
  4328. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,10);">10:</a>
  4329. </td>
  4330. <td class="PriceBreakPrice">
  4331. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥105.1128</span>
  4332. </td>
  4333. </tr>
  4334. <tr>
  4335. <td class="PriceBreakQuantity">
  4336. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,25);">25:</a>
  4337. </td>
  4338. <td class="PriceBreakPrice">
  4339. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥102.8079</span>
  4340. </td>
  4341. </tr>
  4342. <tr>
  4343. <td class="PriceBreakQuantity">
  4344. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,50);">50:</a>
  4345. </td>
  4346. <td class="PriceBreakPrice">
  4347. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥99.7308</span>
  4348. </td>
  4349. </tr>
  4350. <tr>
  4351. <td class="PriceBreakQuantity">
  4352. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(17,100);">100:</a>
  4353. </td>
  4354. <td class="PriceBreakPrice">
  4355. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥84.8601</span>
  4356. </td>
  4357. </tr>
  4358. <tr>
  4359. <td><br /></td>
  4360. </tr>
  4361. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  4362. <td colspan="2" style="text-align: center;">
  4363. </td>
  4364. </tr>
  4365. </table>
  4366. </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;)">
  4367. <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 />
  4368. <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="购买 ALF2X-SC-512" class="buy-button" /><br />
  4369. <table cellspacing="0" border="0" style="width: 100%;">
  4370. <tr>
  4371. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4372. 最低:
  4373. </td>
  4374. <td style="padding-left: 2px; text-align: left;">
  4375. 1
  4376. </td>
  4377. </tr>
  4378. <tr>
  4379. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4380. 多个:
  4381. </td>
  4382. <td style="padding-left: 2px; text-align: left;">
  4383. 1
  4384. </td>
  4385. </tr>
  4386. </table>
  4387. </div>
  4388. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  4389. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4390. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=kneawBKehWzBtCflw%252bTXYA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=kneawBKehWzBtCflw%252bTXYA%3d%3d" target="_blank">详细信息</a>
  4391. </div>
  4392. </td><td>ALFAT
  4393. </td><td>ARM Cortex M3
  4394. </td><td>1 Core
  4395. </td><td>32 bit
  4396. </td><td>24 MHz
  4397. </td><td>-
  4398. </td><td>-
  4399. </td><td>3.3 V
  4400. </td><td>+ 85 C
  4401. </td><td>SMD/SMT
  4402. </td><td>LQFP-64
  4403. </td>
  4404. </tr><tr class="SearchResultsRowEven" data-partnumber="694-20-668-0003" data-index="20">
  4405. <td class="td-select" align="center">
  4406. <div style="padding: 5px 5px 0 5px;">
  4407. <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>
  4408. </div>
  4409. </td><td><a href='/ProductDetail/Rabbit-Semiconductor/20-668-0003/?qs=sGAEpiMZZMsk5yEqv3Bk8Qo5R4DVrhEbzD%2fBxfPQX8E%3d'><img title='Rabbit Semiconductor 20-668-0003' alt='Rabbit Semiconductor 20-668-0003' id=8495481 src='/images/rabbitsemiconductor/sm/rab2000_rgb.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/rabbitsemiconductor/images/rab2000_rgb.jpg</div></a></td><td>
  4410. <div style="text-align:left;">
  4411. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Rabbit-Semiconductor/20-668-0003/?qs=sGAEpiMZZMsk5yEqv3Bk8Qo5R4DVrhEbzD%2fBxfPQX8E%3d">694-20-668-0003</a><br />
  4412. <br />
  4413. <br />
  4414. </div></td><td>
  4415. <div class="mfrDiv">
  4416. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Rabbit-Semiconductor/20-668-0003/?qs=sGAEpiMZZMsk5yEqv3Bk8Qo5R4DVrhEbzD%2fBxfPQX8E%3d">20-668-0003</a><br />
  4417. <br />
  4418. <div style="width: 100%; text-align: center;">
  4419. </div>
  4420. <div style="width: 100%; text-align: center;">
  4421. </div>
  4422. </div>
  4423. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../../Rabbit-Semiconductor">Rabbit Semiconductor</a>
  4424. </td><td>微处理器 - MPU Rabbit 2000 Chipset 30MHz
  4425. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4426. </div>
  4427. </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;Rabbit Semiconductor&quot;,&quot;694-20-668-0003 | 20-668-0003&quot;]);" href="http://www.mouser.com/ds/2/111/0190069_p-471326.pdf" target="_blank">数据表</a>
  4428. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">1,431<br/>有库存</span>
  4429. <table>
  4430. <tr align="center">
  4431. <td style="padding-top: 5px">
  4432. </td>
  4433. </tr>
  4434. <tr align="center">
  4435. <td style="padding-top: 5px; padding-bottom: 5px">
  4436. </td>
  4437. </tr>
  4438. </table></td><td>
  4439. <table class="PriceBreaks" cellspacing="0" border="0">
  4440. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4441. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4442. </td>
  4443. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4444. </td>
  4445. </tr>
  4446. <tr>
  4447. <td class="PriceBreakQuantity">
  4448. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  4449. </td>
  4450. <td class="PriceBreakPrice">
  4451. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥98.1864</span>
  4452. </td>
  4453. </tr>
  4454. <tr>
  4455. <td class="PriceBreakQuantity">
  4456. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,25);">25:</a>
  4457. </td>
  4458. <td class="PriceBreakPrice">
  4459. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥88.5573</span>
  4460. </td>
  4461. </tr>
  4462. <tr>
  4463. <td class="PriceBreakQuantity">
  4464. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  4465. </td>
  4466. <td class="PriceBreakPrice">
  4467. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥80.4726</span>
  4468. </td>
  4469. </tr>
  4470. <tr>
  4471. <td class="PriceBreakQuantity">
  4472. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,250);">250:</a>
  4473. </td>
  4474. <td class="PriceBreakPrice">
  4475. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥75.8511</span>
  4476. </td>
  4477. </tr>
  4478. <tr>
  4479. <td><br /></td>
  4480. </tr>
  4481. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4482. <td colspan="2" style="text-align: center;">
  4483. </td>
  4484. </tr>
  4485. </table>
  4486. </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;)">
  4487. <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 />
  4488. <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="购买 20-668-0003" class="buy-button" /><br />
  4489. <table cellspacing="0" border="0" style="width: 100%;">
  4490. <tr>
  4491. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4492. 最低:
  4493. </td>
  4494. <td style="padding-left: 2px; text-align: left;">
  4495. 1
  4496. </td>
  4497. </tr>
  4498. <tr>
  4499. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4500. 多个:
  4501. </td>
  4502. <td style="padding-left: 2px; text-align: left;">
  4503. 1
  4504. </td>
  4505. </tr>
  4506. </table>
  4507. </div>
  4508. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  4509. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4510. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=ZuoOQCzl11qhBH9%2fQMf38w%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=ZuoOQCzl11qhBH9%2fQMf38w%3d%3d" target="_blank">详细信息</a>
  4511. </div>
  4512. </td><td>Rabbit 2000
  4513. </td><td>Rabbit 2000
  4514. </td><td>1 Core
  4515. </td><td>8 bit
  4516. </td><td>30 MHz
  4517. </td><td>-
  4518. </td><td>-
  4519. </td><td>2.7 V to 5.5 V
  4520. </td><td>+ 85 C
  4521. </td><td>SMD/SMT
  4522. </td><td>PQFP-100
  4523. </td>
  4524. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-P2020NSN2MHC" data-index="21">
  4525. <td class="td-select" align="center">
  4526. <div style="padding: 5px 5px 0 5px;">
  4527. <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>
  4528. </div>
  4529. </td><td></td><td>
  4530. <div style="text-align:left;">
  4531. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/P2020NSN2MHC/?qs=sGAEpiMZZMsk5yEqv3Bk8ZpYUZ5XP0lNrIaw8yLPG4k%3d">841-P2020NSN2MHC</a><br />
  4532. <br />
  4533. <br />
  4534. </div></td><td>
  4535. <div class="mfrDiv">
  4536. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/P2020NSN2MHC/?qs=sGAEpiMZZMsk5yEqv3Bk8ZpYUZ5XP0lNrIaw8yLPG4k%3d">P2020NSN2MHC</a><br />
  4537. <br />
  4538. <div style="width: 100%; text-align: center;">
  4539. </div>
  4540. <div style="width: 100%; text-align: center;">
  4541. </div>
  4542. </div>
  4543. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  4544. </td><td>微处理器 - MPU P2020 ST 1200/800 R2.1
  4545. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4546. </div>
  4547. </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;NXP / Freescale&quot;,&quot;841-P2020NSN2MHC | P2020NSN2MHC&quot;]);" href="http://cache.freescale.com/webapp/sps/site/prod_summary.jsp?code=P2020" target="_blank">数据表</a>
  4548. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">174<br/>有库存</span>
  4549. <table>
  4550. <tr align="center">
  4551. <td style="padding-top: 5px">
  4552. </td>
  4553. </tr>
  4554. <tr align="center">
  4555. <td style="padding-top: 5px; padding-bottom: 5px">
  4556. </td>
  4557. </tr>
  4558. </table></td><td>
  4559. <table class="PriceBreaks" cellspacing="0" border="0">
  4560. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4561. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4562. </td>
  4563. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4564. </td>
  4565. </tr>
  4566. <tr>
  4567. <td class="PriceBreakQuantity">
  4568. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  4569. </td>
  4570. <td class="PriceBreakPrice">
  4571. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,246.401</span>
  4572. </td>
  4573. </tr>
  4574. <tr>
  4575. <td class="PriceBreakQuantity">
  4576. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,10);">10:</a>
  4577. </td>
  4578. <td class="PriceBreakPrice">
  4579. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1,177.1604</span>
  4580. </td>
  4581. </tr>
  4582. <tr>
  4583. <td class="PriceBreakQuantity">
  4584. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,25);">25:</a>
  4585. </td>
  4586. <td class="PriceBreakPrice">
  4587. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,107.9315</span>
  4588. </td>
  4589. </tr>
  4590. <tr>
  4591. <td class="PriceBreakQuantity">
  4592. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  4593. </td>
  4594. <td class="PriceBreakPrice">
  4595. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥830.934</span>
  4596. </td>
  4597. </tr>
  4598. <tr>
  4599. <td><br /></td>
  4600. </tr>
  4601. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4602. <td colspan="2" style="text-align: center;">
  4603. </td>
  4604. </tr>
  4605. </table>
  4606. </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;)">
  4607. <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 />
  4608. <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="购买 P2020NSN2MHC" class="buy-button" /><br />
  4609. <table cellspacing="0" border="0" style="width: 100%;">
  4610. <tr>
  4611. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4612. 最低:
  4613. </td>
  4614. <td style="padding-left: 2px; text-align: left;">
  4615. 1
  4616. </td>
  4617. </tr>
  4618. <tr>
  4619. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4620. 多个:
  4621. </td>
  4622. <td style="padding-left: 2px; text-align: left;">
  4623. 1
  4624. </td>
  4625. </tr>
  4626. </table>
  4627. </div>
  4628. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  4629. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4630. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=HYQI%252bgBLgy7c2jK45EkeqQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=HYQI%252bgBLgy7c2jK45EkeqQ%3d%3d" target="_blank">详细信息</a>
  4631. </div>
  4632. </td><td>P2020
  4633. </td><td>e500-v2
  4634. </td><td>2 Core
  4635. </td><td>32 bit
  4636. </td><td>1.2 GHz
  4637. </td><td>32 kB
  4638. </td><td>32 kB
  4639. </td><td>1.05 V
  4640. </td><td>+ 125 C
  4641. </td><td>SMD/SMT
  4642. </td><td>PBGA-689
  4643. </td>
  4644. </tr><tr class="SearchResultsRowEven" data-partnumber="595-AM3358BZCZ100" data-index="22">
  4645. <td class="td-select" align="center">
  4646. <div style="padding: 5px 5px 0 5px;">
  4647. <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>
  4648. </div>
  4649. </td><td><a href='/ProductDetail/Texas-Instruments/AM3358BZCZ100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOLTDG7YpDktpg%3d'><img title='Texas Instruments AM3358BZCZ100' alt='Texas Instruments AM3358BZCZ100' id=945068958 src='/images/texasinstruments/sm/TI_NFBGA_324.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_NFBGA_324.jpg</div></a></td><td>
  4650. <div style="text-align:left;">
  4651. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM3358BZCZ100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOLTDG7YpDktpg%3d">595-AM3358BZCZ100</a><br />
  4652. <br />
  4653. <br />
  4654. </div></td><td>
  4655. <div class="mfrDiv">
  4656. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM3358BZCZ100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOLTDG7YpDktpg%3d">AM3358BZCZ100</a><br />
  4657. <br />
  4658. <div style="width: 100%; text-align: center;">
  4659. </div>
  4660. <div style="width: 100%; text-align: center;">
  4661. </div>
  4662. </div>
  4663. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  4664. </td><td>微处理器 - MPU ARM Cortex-A8 MPU
  4665. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4666. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am3358-microprocessors/">了解更多</a>
  4667. </div>
  4668. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4669. </div>
  4670. </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;Texas Instruments&quot;,&quot;595-AM3358BZCZ100 | AM3358BZCZ100&quot;]);" href="http://www.mouser.com/ds/2/405/am3358-439371.pdf" target="_blank">数据表</a>
  4671. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">839<br/>有库存</span>
  4672. <table>
  4673. <tr align="center">
  4674. <td style="padding-top: 5px">
  4675. </td>
  4676. </tr>
  4677. <tr align="center">
  4678. <td style="padding-top: 5px; padding-bottom: 5px">
  4679. </td>
  4680. </tr>
  4681. </table></td><td>
  4682. <table class="PriceBreaks" cellspacing="0" border="0">
  4683. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4684. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4685. </td>
  4686. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4687. </td>
  4688. </tr>
  4689. <tr>
  4690. <td class="PriceBreakQuantity">
  4691. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  4692. </td>
  4693. <td class="PriceBreakPrice">
  4694. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥150.5556</span>
  4695. </td>
  4696. </tr>
  4697. <tr>
  4698. <td class="PriceBreakQuantity">
  4699. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,10);">10:</a>
  4700. </td>
  4701. <td class="PriceBreakPrice">
  4702. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥138.3876</span>
  4703. </td>
  4704. </tr>
  4705. <tr>
  4706. <td class="PriceBreakQuantity">
  4707. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,25);">25:</a>
  4708. </td>
  4709. <td class="PriceBreakPrice">
  4710. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥131.2272</span>
  4711. </td>
  4712. </tr>
  4713. <tr>
  4714. <td class="PriceBreakQuantity">
  4715. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,50);">50:</a>
  4716. </td>
  4717. <td class="PriceBreakPrice">
  4718. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥127.6821</span>
  4719. </td>
  4720. </tr>
  4721. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4722. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4723. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(20,100);">100:</a>
  4724. </td>
  4725. <td class="PriceBreakPrice">
  4726. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM3358BZCZ100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOLTDG7YpDktpg%3d">查看</a>
  4727. </td>
  4728. </tr>
  4729. <tr>
  4730. <td><br /></td>
  4731. </tr>
  4732. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4733. <td colspan="2" style="text-align: center;">
  4734. </td>
  4735. </tr>
  4736. </table>
  4737. </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;)">
  4738. <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 />
  4739. <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="购买 AM3358BZCZ100" class="buy-button" /><br />
  4740. <table cellspacing="0" border="0" style="width: 100%;">
  4741. <tr>
  4742. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4743. 最低:
  4744. </td>
  4745. <td style="padding-left: 2px; text-align: left;">
  4746. 1
  4747. </td>
  4748. </tr>
  4749. <tr>
  4750. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4751. 多个:
  4752. </td>
  4753. <td style="padding-left: 2px; text-align: left;">
  4754. 1
  4755. </td>
  4756. </tr>
  4757. </table>
  4758. </div>
  4759. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  4760. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4761. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=BjUtsGOQ39okGmGt1GCPjA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=BjUtsGOQ39okGmGt1GCPjA%3d%3d" target="_blank">详细信息</a>
  4762. </div>
  4763. </td><td>AM3358
  4764. </td><td>ARM Cortex A8
  4765. </td><td>1 Core
  4766. </td><td>32 bit
  4767. </td><td>1 GHz
  4768. </td><td>32 kB
  4769. </td><td>32 kB
  4770. </td><td>1.325 V
  4771. </td><td>+ 90 C
  4772. </td><td>SMD/SMT
  4773. </td><td>PBGA-324
  4774. </td>
  4775. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-AM3352BZCZA100" data-index="23">
  4776. <td class="td-select" align="center">
  4777. <div style="padding: 5px 5px 0 5px;">
  4778. <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>
  4779. </div>
  4780. </td><td><a href='/ProductDetail/Texas-Instruments/AM3352BZCZA100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOLXbrZ3h1yO0g%3d'><img title='Texas Instruments AM3352BZCZA100' alt='Texas Instruments AM3352BZCZA100' id=945068892 src='/images/texasinstruments/sm/TI_NFBGA_324.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_NFBGA_324.jpg</div></a></td><td>
  4781. <div style="text-align:left;">
  4782. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM3352BZCZA100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOLXbrZ3h1yO0g%3d">595-AM3352BZCZA100</a><br />
  4783. <br />
  4784. <br />
  4785. </div></td><td>
  4786. <div class="mfrDiv">
  4787. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM3352BZCZA100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOLXbrZ3h1yO0g%3d">AM3352BZCZA100</a><br />
  4788. <br />
  4789. <div style="width: 100%; text-align: center;">
  4790. </div>
  4791. <div style="width: 100%; text-align: center;">
  4792. </div>
  4793. </div>
  4794. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  4795. </td><td>微处理器 - MPU ARM Cortex-A8 MPU
  4796. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4797. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am335x">了解更多</a>
  4798. </div>
  4799. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4800. </div>
  4801. </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;Texas Instruments&quot;,&quot;595-AM3352BZCZA100 | AM3352BZCZA100&quot;]);" href="http://www.mouser.com/ds/2/405/am3352-404331.pdf" target="_blank">数据表</a>
  4802. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">893<br/>有库存</span>
  4803. <table>
  4804. <tr align="center">
  4805. <td style="padding-top: 5px">
  4806. </td>
  4807. </tr>
  4808. <tr align="center">
  4809. <td style="padding-top: 5px; padding-bottom: 5px">
  4810. </td>
  4811. </tr>
  4812. </table></td><td>
  4813. <table class="PriceBreaks" cellspacing="0" border="0">
  4814. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4815. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4816. </td>
  4817. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4818. </td>
  4819. </tr>
  4820. <tr>
  4821. <td class="PriceBreakQuantity">
  4822. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  4823. </td>
  4824. <td class="PriceBreakPrice">
  4825. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥160.0209</span>
  4826. </td>
  4827. </tr>
  4828. <tr>
  4829. <td class="PriceBreakQuantity">
  4830. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,5);">5:</a>
  4831. </td>
  4832. <td class="PriceBreakPrice">
  4833. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥153.4806</span>
  4834. </td>
  4835. </tr>
  4836. <tr>
  4837. <td class="PriceBreakQuantity">
  4838. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  4839. </td>
  4840. <td class="PriceBreakPrice">
  4841. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥147.6306</span>
  4842. </td>
  4843. </tr>
  4844. <tr>
  4845. <td class="PriceBreakQuantity">
  4846. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,25);">25:</a>
  4847. </td>
  4848. <td class="PriceBreakPrice">
  4849. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥141.0084</span>
  4850. </td>
  4851. </tr>
  4852. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4853. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4854. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(21,50);">50:</a>
  4855. </td>
  4856. <td class="PriceBreakPrice">
  4857. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM3352BZCZA100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOLXbrZ3h1yO0g%3d">查看</a>
  4858. </td>
  4859. </tr>
  4860. <tr>
  4861. <td><br /></td>
  4862. </tr>
  4863. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4864. <td colspan="2" style="text-align: center;">
  4865. </td>
  4866. </tr>
  4867. </table>
  4868. </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;)">
  4869. <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 />
  4870. <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="购买 AM3352BZCZA100" class="buy-button" /><br />
  4871. <table cellspacing="0" border="0" style="width: 100%;">
  4872. <tr>
  4873. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4874. 最低:
  4875. </td>
  4876. <td style="padding-left: 2px; text-align: left;">
  4877. 1
  4878. </td>
  4879. </tr>
  4880. <tr>
  4881. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4882. 多个:
  4883. </td>
  4884. <td style="padding-left: 2px; text-align: left;">
  4885. 1
  4886. </td>
  4887. </tr>
  4888. </table>
  4889. </div>
  4890. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  4891. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4892. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=BjUtsGOQ39pRPM0t2g%252bifA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=BjUtsGOQ39pRPM0t2g%252bifA%3d%3d" target="_blank">详细信息</a>
  4893. </div>
  4894. </td><td>AM3352
  4895. </td><td>ARM Cortex A8
  4896. </td><td>1 Core
  4897. </td><td>32 bit
  4898. </td><td>1 GHz
  4899. </td><td>32 kB
  4900. </td><td>32 kB
  4901. </td><td>1.325 V
  4902. </td><td>+ 105 C
  4903. </td><td>SMD/SMT
  4904. </td><td>PBGA-324
  4905. </td>
  4906. </tr><tr class="SearchResultsRowEven" data-partnumber="595-AM3358BZCZA100" data-index="24">
  4907. <td class="td-select" align="center">
  4908. <div style="padding: 5px 5px 0 5px;">
  4909. <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>
  4910. </div>
  4911. </td><td><a href='/ProductDetail/Texas-Instruments/AM3358BZCZA100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOL5VvqAiock1E%3d'><img title='Texas Instruments AM3358BZCZA100' alt='Texas Instruments AM3358BZCZA100' id=945068966 src='/images/texasinstruments/sm/TI_NFBGA_324.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_NFBGA_324.jpg</div></a></td><td>
  4912. <div style="text-align:left;">
  4913. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM3358BZCZA100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOL5VvqAiock1E%3d">595-AM3358BZCZA100</a><br />
  4914. <br />
  4915. <br />
  4916. </div></td><td>
  4917. <div class="mfrDiv">
  4918. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM3358BZCZA100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOL5VvqAiock1E%3d">AM3358BZCZA100</a><br />
  4919. <br />
  4920. <div style="width: 100%; text-align: center;">
  4921. </div>
  4922. <div style="width: 100%; text-align: center;">
  4923. </div>
  4924. </div>
  4925. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  4926. </td><td>微处理器 - MPU ARM Cortex-A8 MPU
  4927. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4928. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am3358-microprocessors/">了解更多</a>
  4929. </div>
  4930. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4931. </div>
  4932. </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;Texas Instruments&quot;,&quot;595-AM3358BZCZA100 | AM3358BZCZA100&quot;]);" href="http://www.mouser.com/ds/2/405/am3358-439371.pdf" target="_blank">数据表</a>
  4933. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">691<br/>有库存</span>
  4934. <table>
  4935. <tr align="center">
  4936. <td style="padding-top: 5px">
  4937. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../../ProductDetail/Texas-Instruments/AM3358BZCZA100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOL5VvqAiock1E%3d">更多信息可用 </a>
  4938. </td>
  4939. </tr>
  4940. <tr align="center">
  4941. <td style="padding-top: 5px; padding-bottom: 5px">
  4942. </td>
  4943. </tr>
  4944. </table></td><td>
  4945. <table class="PriceBreaks" cellspacing="0" border="0">
  4946. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4947. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4948. </td>
  4949. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4950. </td>
  4951. </tr>
  4952. <tr>
  4953. <td class="PriceBreakQuantity">
  4954. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  4955. </td>
  4956. <td class="PriceBreakPrice">
  4957. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥174.9618</span>
  4958. </td>
  4959. </tr>
  4960. <tr>
  4961. <td class="PriceBreakQuantity">
  4962. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,5);">5:</a>
  4963. </td>
  4964. <td class="PriceBreakPrice">
  4965. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥167.7312</span>
  4966. </td>
  4967. </tr>
  4968. <tr>
  4969. <td class="PriceBreakQuantity">
  4970. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  4971. </td>
  4972. <td class="PriceBreakPrice">
  4973. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥161.3313</span>
  4974. </td>
  4975. </tr>
  4976. <tr>
  4977. <td class="PriceBreakQuantity">
  4978. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,25);">25:</a>
  4979. </td>
  4980. <td class="PriceBreakPrice">
  4981. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥154.1007</span>
  4982. </td>
  4983. </tr>
  4984. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4985. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4986. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(22,50);">50:</a>
  4987. </td>
  4988. <td class="PriceBreakPrice">
  4989. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM3358BZCZA100/?qs=sGAEpiMZZMsk5yEqv3Bk8U5c0L3gzEOL5VvqAiock1E%3d">查看</a>
  4990. </td>
  4991. </tr>
  4992. <tr>
  4993. <td><br /></td>
  4994. </tr>
  4995. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4996. <td colspan="2" style="text-align: center;">
  4997. </td>
  4998. </tr>
  4999. </table>
  5000. </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;)">
  5001. <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 />
  5002. <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="购买 AM3358BZCZA100" class="buy-button" /><br />
  5003. <table cellspacing="0" border="0" style="width: 100%;">
  5004. <tr>
  5005. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5006. 最低:
  5007. </td>
  5008. <td style="padding-left: 2px; text-align: left;">
  5009. 1
  5010. </td>
  5011. </tr>
  5012. <tr>
  5013. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5014. 多个:
  5015. </td>
  5016. <td style="padding-left: 2px; text-align: left;">
  5017. 1
  5018. </td>
  5019. </tr>
  5020. </table>
  5021. </div>
  5022. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  5023. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5024. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=BjUtsGOQ39rOCgCP40zr8Q%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=BjUtsGOQ39rOCgCP40zr8Q%3d%3d" target="_blank">详细信息</a>
  5025. </div>
  5026. </td><td>AM3358
  5027. </td><td>ARM Cortex A8
  5028. </td><td>1 Core
  5029. </td><td>32 bit
  5030. </td><td>1 GHz
  5031. </td><td>32 kB
  5032. </td><td>32 kB
  5033. </td><td>1.325 V
  5034. </td><td>+ 105 C
  5035. </td><td>SMD/SMT
  5036. </td><td>PBGA-324
  5037. </td>
  5038. </tr><tr class="SearchResultsRowOdd" data-partnumber="841-MCF5272VM66" data-index="25">
  5039. <td class="td-select" align="center">
  5040. <div style="padding: 5px 5px 0 5px;">
  5041. <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>
  5042. </div>
  5043. </td><td><a href='/ProductDetail/NXP-Freescale/MCF5272VM66/?qs=sGAEpiMZZMsk5yEqv3Bk8fGvDkRNaDSkayBRV%2fvKowQ%3d'><img title='NXP / Freescale MCF5272VM66' alt='NXP / Freescale MCF5272VM66' id=22206728 src='/images/freescale/sm/bga196.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/freescale/images/bga196.jpg</div></a></td><td>
  5044. <div style="text-align:left;">
  5045. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/NXP-Freescale/MCF5272VM66/?qs=sGAEpiMZZMsk5yEqv3Bk8fGvDkRNaDSkayBRV%2fvKowQ%3d">841-MCF5272VM66</a><br />
  5046. <br />
  5047. <br />
  5048. </div></td><td>
  5049. <div class="mfrDiv">
  5050. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/NXP-Freescale/MCF5272VM66/?qs=sGAEpiMZZMsk5yEqv3Bk8fGvDkRNaDSkayBRV%2fvKowQ%3d">MCF5272VM66</a><br />
  5051. <br />
  5052. <div style="width: 100%; text-align: center;">
  5053. </div>
  5054. <div style="width: 100%; text-align: center;">
  5055. </div>
  5056. </div>
  5057. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../../Freescale-Semiconductor">NXP / Freescale</a>
  5058. </td><td>微处理器 - MPU 66MHz 63MIPS
  5059. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5060. </div>
  5061. </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;NXP / Freescale&quot;,&quot;841-MCF5272VM66 | MCF5272VM66&quot;]);" href="http://www.mouser.com/ds/2/302/MCF5272UM-783006.pdf" target="_blank">数据表</a>
  5062. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">661<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. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAlternativePackaging" title="备用包装 | 841-MCF5272VM66" class="thickbox" href="../../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRHXWkv9AHWk%252bZFOU3MyA5bKtwnKxmxabWGWz%252bYysPiOtCBxQm%2fsaV1QsZ17AlASrbjwADaxt3dDCy38QZ8ngcRMfs1SeY5ejNesexqlelZOkJ7jwUti3H5k0nysfbeXU0%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  5071. </td>
  5072. </tr>
  5073. </table></td><td>
  5074. <table class="PriceBreaks" cellspacing="0" border="0">
  5075. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5076. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5077. </td>
  5078. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5079. </td>
  5080. </tr>
  5081. <tr>
  5082. <td class="PriceBreakQuantity">
  5083. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  5084. </td>
  5085. <td class="PriceBreakPrice">
  5086. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥184.509</span>
  5087. </td>
  5088. </tr>
  5089. <tr>
  5090. <td class="PriceBreakQuantity">
  5091. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,5);">5:</a>
  5092. </td>
  5093. <td class="PriceBreakPrice">
  5094. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥176.2722</span>
  5095. </td>
  5096. </tr>
  5097. <tr>
  5098. <td class="PriceBreakQuantity">
  5099. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  5100. </td>
  5101. <td class="PriceBreakPrice">
  5102. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥170.7264</span>
  5103. </td>
  5104. </tr>
  5105. <tr>
  5106. <td class="PriceBreakQuantity">
  5107. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,25);">25:</a>
  5108. </td>
  5109. <td class="PriceBreakPrice">
  5110. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥156.8736</span>
  5111. </td>
  5112. </tr>
  5113. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5114. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5115. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,50);">50:</a>
  5116. </td>
  5117. <td class="PriceBreakPrice">
  5118. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/NXP-Freescale/MCF5272VM66/?qs=sGAEpiMZZMsk5yEqv3Bk8fGvDkRNaDSkayBRV%2fvKowQ%3d">查看</a>
  5119. </td>
  5120. </tr>
  5121. <tr>
  5122. <td><br /></td>
  5123. </tr>
  5124. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5125. <td colspan="2" style="text-align: center;">
  5126. </td>
  5127. </tr>
  5128. </table>
  5129. </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;)">
  5130. <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 />
  5131. <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="购买 MCF5272VM66" class="buy-button" /><br />
  5132. <table cellspacing="0" border="0" style="width: 100%;">
  5133. <tr>
  5134. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5135. 最低:
  5136. </td>
  5137. <td style="padding-left: 2px; text-align: left;">
  5138. 1
  5139. </td>
  5140. </tr>
  5141. <tr>
  5142. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5143. 多个:
  5144. </td>
  5145. <td style="padding-left: 2px; text-align: left;">
  5146. 1
  5147. </td>
  5148. </tr>
  5149. </table>
  5150. </div>
  5151. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  5152. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5153. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=eb8O2oswidvMqFESs7ZDNg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=eb8O2oswidvMqFESs7ZDNg%3d%3d" target="_blank">详细信息</a>
  5154. </div>
  5155. </td><td>MCF527X
  5156. </td><td>ColdFire V2
  5157. </td><td>1 Core
  5158. </td><td>32 bit
  5159. </td><td>66 MHz
  5160. </td><td>1 kB
  5161. </td><td>-
  5162. </td><td>3.3 V
  5163. </td><td>+ 70 C
  5164. </td><td>SMD/SMT
  5165. </td><td>PGBA-196
  5166. </td>
  5167. </tr><tr class="SearchResultsRowEven" data-partnumber="595-AM3359BZCZA80" data-index="26">
  5168. <td class="td-select" align="center">
  5169. <div style="padding: 5px 5px 0 5px;">
  5170. <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>
  5171. </div>
  5172. </td><td><a href='/ProductDetail/Texas-Instruments/AM3359BZCZA80/?qs=sGAEpiMZZMsk5yEqv3Bk8a1VdInQx15jzmBHckC3PIQ%3d'><img title='Texas Instruments AM3359BZCZA80' alt='Texas Instruments AM3359BZCZA80' id=956887779 src='/images/texasinstruments/sm/TI_NFBGA_324.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_NFBGA_324.jpg</div></a></td><td>
  5173. <div style="text-align:left;">
  5174. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Texas-Instruments/AM3359BZCZA80/?qs=sGAEpiMZZMsk5yEqv3Bk8a1VdInQx15jzmBHckC3PIQ%3d">595-AM3359BZCZA80</a><br />
  5175. <br />
  5176. <br />
  5177. </div></td><td>
  5178. <div class="mfrDiv">
  5179. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Texas-Instruments/AM3359BZCZA80/?qs=sGAEpiMZZMsk5yEqv3Bk8a1VdInQx15jzmBHckC3PIQ%3d">AM3359BZCZA80</a><br />
  5180. <br />
  5181. <div style="width: 100%; text-align: center;">
  5182. </div>
  5183. <div style="width: 100%; text-align: center;">
  5184. </div>
  5185. </div>
  5186. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../../Texas-Instruments">Texas Instruments</a>
  5187. </td><td>微处理器 - MPU Sitara ARM Cortex-A8 MPU
  5188. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5189. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../ti-am335x">了解更多</a>
  5190. </div>
  5191. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5192. </div>
  5193. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-AM3359BZCZA80 | AM3359BZCZA80&quot;]);" href="http://www.mouser.com/ds/2/405/am3359-440731.pdf" target="_blank">数据表</a>
  5194. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">487<br/>有库存</span>
  5195. <table>
  5196. <tr align="center">
  5197. <td style="padding-top: 5px">
  5198. </td>
  5199. </tr>
  5200. <tr align="center">
  5201. <td style="padding-top: 5px; padding-bottom: 5px">
  5202. </td>
  5203. </tr>
  5204. </table></td><td>
  5205. <table class="PriceBreaks" cellspacing="0" border="0">
  5206. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5207. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5208. </td>
  5209. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5210. </td>
  5211. </tr>
  5212. <tr>
  5213. <td class="PriceBreakQuantity">
  5214. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  5215. </td>
  5216. <td class="PriceBreakPrice">
  5217. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥218.322</span>
  5218. </td>
  5219. </tr>
  5220. <tr>
  5221. <td class="PriceBreakQuantity">
  5222. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,5);">5:</a>
  5223. </td>
  5224. <td class="PriceBreakPrice">
  5225. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥209.313</span>
  5226. </td>
  5227. </tr>
  5228. <tr>
  5229. <td class="PriceBreakQuantity">
  5230. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  5231. </td>
  5232. <td class="PriceBreakPrice">
  5233. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥201.3804</span>
  5234. </td>
  5235. </tr>
  5236. <tr>
  5237. <td class="PriceBreakQuantity">
  5238. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,25);">25:</a>
  5239. </td>
  5240. <td class="PriceBreakPrice">
  5241. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥192.3714</span>
  5242. </td>
  5243. </tr>
  5244. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5245. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5246. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(24,50);">50:</a>
  5247. </td>
  5248. <td class="PriceBreakPrice">
  5249. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Texas-Instruments/AM3359BZCZA80/?qs=sGAEpiMZZMsk5yEqv3Bk8a1VdInQx15jzmBHckC3PIQ%3d">查看</a>
  5250. </td>
  5251. </tr>
  5252. <tr>
  5253. <td><br /></td>
  5254. </tr>
  5255. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5256. <td colspan="2" style="text-align: center;">
  5257. </td>
  5258. </tr>
  5259. </table>
  5260. </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;)">
  5261. <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 />
  5262. <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="购买 AM3359BZCZA80" class="buy-button" /><br />
  5263. <table cellspacing="0" border="0" style="width: 100%;">
  5264. <tr>
  5265. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5266. 最低:
  5267. </td>
  5268. <td style="padding-left: 2px; text-align: left;">
  5269. 1
  5270. </td>
  5271. </tr>
  5272. <tr>
  5273. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5274. 多个:
  5275. </td>
  5276. <td style="padding-left: 2px; text-align: left;">
  5277. 1
  5278. </td>
  5279. </tr>
  5280. </table>
  5281. </div>
  5282. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  5283. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5284. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=k16y9%252bG0ze1yoJoeY3YqgQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=k16y9%252bG0ze1yoJoeY3YqgQ%3d%3d" target="_blank">详细信息</a>
  5285. </div>
  5286. </td><td>AM3359
  5287. </td><td>ARM Cortex A8
  5288. </td><td>1 Core
  5289. </td><td>32 bit
  5290. </td><td>800 MHz
  5291. </td><td>32 kB
  5292. </td><td>32 kB
  5293. </td><td>1.26 V
  5294. </td><td>+ 105 C
  5295. </td><td>SMD/SMT
  5296. </td><td>PBGA-324
  5297. </td>
  5298. </tr><tr class="SearchResultsRowOdd" data-partnumber="694-20-668-0011" data-index="27">
  5299. <td class="td-select" align="center">
  5300. <div style="padding: 5px 5px 0 5px;">
  5301. <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>
  5302. </div>
  5303. </td><td><a href='/ProductDetail/Rabbit-Semiconductor/20-668-0011/?qs=sGAEpiMZZMsk5yEqv3Bk8QkFASNm%2fchQ%2f%252bKduaUsBA8%3d'><img title='Rabbit Semiconductor 20-668-0011' alt='Rabbit Semiconductor 20-668-0011' id=14697874 src='/images/rabbitsemiconductor/sm/inhouse_206680011_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/rabbitsemiconductor/images/inhouse_206680011_t.jpg</div></a></td><td>
  5304. <div style="text-align:left;">
  5305. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Rabbit-Semiconductor/20-668-0011/?qs=sGAEpiMZZMsk5yEqv3Bk8QkFASNm%2fchQ%2f%252bKduaUsBA8%3d">694-20-668-0011</a><br />
  5306. <br />
  5307. <br />
  5308. </div></td><td>
  5309. <div class="mfrDiv">
  5310. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Rabbit-Semiconductor/20-668-0011/?qs=sGAEpiMZZMsk5yEqv3Bk8QkFASNm%2fchQ%2f%252bKduaUsBA8%3d">20-668-0011</a><br />
  5311. <br />
  5312. <div style="width: 100%; text-align: center;">
  5313. </div>
  5314. <div style="width: 100%; text-align: center;">
  5315. </div>
  5316. </div>
  5317. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../../Rabbit-Semiconductor">Rabbit Semiconductor</a>
  5318. </td><td>微处理器 - MPU Rabbit 3000A LQFP Microprocessor
  5319. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5320. </div>
  5321. </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;Rabbit Semiconductor&quot;,&quot;694-20-668-0011 | 20-668-0011&quot;]);" href="http://www.mouser.com/ds/2/111/ds_rabbit3000-474399.pdf" target="_blank">数据表</a>
  5322. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">655<br/>有库存</span>
  5323. <table>
  5324. <tr align="center">
  5325. <td style="padding-top: 5px">
  5326. </td>
  5327. </tr>
  5328. <tr align="center">
  5329. <td style="padding-top: 5px; padding-bottom: 5px">
  5330. </td>
  5331. </tr>
  5332. </table></td><td>
  5333. <table class="PriceBreaks" cellspacing="0" border="0">
  5334. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5335. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5336. </td>
  5337. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5338. </td>
  5339. </tr>
  5340. <tr>
  5341. <td class="PriceBreakQuantity">
  5342. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  5343. </td>
  5344. <td class="PriceBreakPrice">
  5345. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥96.2676</span>
  5346. </td>
  5347. </tr>
  5348. <tr>
  5349. <td><br /></td>
  5350. </tr>
  5351. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_trMouserReel">
  5352. <td colspan="2" style="text-align: center;">
  5353. </td>
  5354. </tr>
  5355. </table>
  5356. </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;)">
  5357. <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 />
  5358. <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="购买 20-668-0011" class="buy-button" /><br />
  5359. <table cellspacing="0" border="0" style="width: 100%;">
  5360. <tr>
  5361. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5362. 最低:
  5363. </td>
  5364. <td style="padding-left: 2px; text-align: left;">
  5365. 1
  5366. </td>
  5367. </tr>
  5368. <tr>
  5369. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5370. 多个:
  5371. </td>
  5372. <td style="padding-left: 2px; text-align: left;">
  5373. 1
  5374. </td>
  5375. </tr>
  5376. </table>
  5377. </div>
  5378. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  5379. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5380. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fxn2wKwtTcFBS2bLihf44w%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=%2fxn2wKwtTcFBS2bLihf44w%3d%3d" target="_blank">详细信息</a>
  5381. </div>
  5382. </td><td>Rabbit 3000
  5383. </td><td>Rabbit 3000
  5384. </td><td>1 Core
  5385. </td><td>8 bit
  5386. </td><td>55 MHz
  5387. </td><td>-
  5388. </td><td>-
  5389. </td><td>1.8 V to 3.6 V
  5390. </td><td>+ 85 C
  5391. </td><td>SMD/SMT
  5392. </td><td>LQFP-208
  5393. </td>
  5394. </tr>
  5395. </table>
  5396. </div>
  5397. </td>
  5398. </tr>
  5399. <tr>
  5400. <td class="tdSearchResultsPagingBottom">
  5401. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  5402. <tr>
  5403. <td>
  5404. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  5405. </td>
  5406. <td>
  5407. <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" />
  5408. </td>
  5409. <td>
  5410. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  5411. </td>
  5412. <td style="padding-left: 40px;">
  5413. <div class="floatrightpager">
  5414. <span class="bold">
  5415. 页面:
  5416. </span>
  5417. <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/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_82" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=2050">83</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz/?No=25">下一页</a></span>
  5418. </div>
  5419. </td>
  5420. </tr>
  5421. </table>
  5422. </td>
  5423. </tr>
  5424. <tr>
  5425. <td>
  5426. <!--- Search Tips --->
  5427. </td>
  5428. </tr>
  5429. <tr>
  5430. <td>
  5431. <!-- SOP Section 2 -->
  5432. </td>
  5433. </tr>
  5434. </table>
  5435. </div>
  5436. </div><!-- #liProducts-->
  5437. <!-- Datasheets tab -->
  5438. <!-- #liDatasheets-->
  5439. <!-- Images tab -->
  5440. <!-- #liImages-->
  5441. <!-- Newest Products tab -->
  5442. <!-- #liProducts-->
  5443. </div>
  5444. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  5445. <div>
  5446. <span class="popular-searches-label">热门搜索:</span>
  5447. <span class="popular-searches-links"><a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz?P=1z0wad3&pop=10z6' onclick="ga('send','event','Popular Search Refine Click','Microprocessors - MPU','8 bit Microprocessors - MPU')">8 bit 微处理器 - MPU</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/ARM-Cortex-A5-Core/_/N-a86qz?P=1yyp23w&pop=50vm' onclick="ga('send','event','Popular Search Refine Click','Microprocessors - MPU','ARM Cortex A5 Microprocessors - MPU')">ARM Cortex A5 微处理器 - MPU</a> , <a href='/半導体/集積回路-IC/組み込みプロセッサ&コントローラ/マイクロプロセッサ-MPU/_/N-a86qz/?P=1yzay25Z1yll8au&pop=pobd' onclick="ga('send','event','Popular Search Refine Click','Microprocessors - MPU','FC-PBGA-625 ARM Cortex A9 Microprocessors - MPU')">FC-PBGA-625 ARM Cortex A9 微处理器 - MPU</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/Z80-Core/_/N-a86qz?P=1yzudkg&pop=j1w' onclick="ga('send','event','Popular Search Refine Click','Microprocessors - MPU','Z80 Microprocessors - MPU')">Z80 微处理器 - MPU</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/ColdFire-V4-Core/_/N-a86qz?P=1yzudei&pop=cjpr' onclick="ga('send','event','Popular Search Refine Click','Microprocessors - MPU','ColdFire V4 Microprocessors - MPU')">ColdFire V4 微处理器 - MPU</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU/_/N-a86qz?P=1z0w8ejZ1yqc5vlZ1z0w7uo&pop=nome' onclick="ga('send','event','Popular Search Refine Click','Microprocessors - MPU','32 bit 16 kB 400 MHz Microprocessors - MPU')">32 bit 16 kB 400 MHz 微处理器 - MPU</a></span>
  5448. </div>
  5449. </div>
  5450. <div style="visibility: hidden;">
  5451. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  5452. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  5453. <span id="SearchResultCount">2072</span>
  5454. <div id="disclaimer">
  5455. 图像仅供参考<br/>请参阅产品规格</div>
  5456. </div>
  5457. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/Microprocessors-MPU" />
  5458. <script type="text/javascript" src='../../../../../../javascript/ProductImage.js'></script>
  5459. <script type="text/javascript" src='../../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  5460. <script type="text/javascript" src='../../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  5461. <!--[if gte IE 9]><!-->
  5462. <script type="text/javascript" src='../../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  5463. <!--<![endif]-->
  5464. <!--[if lt IE 9]>
  5465. <script type="text/javascript" src='../../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  5466. <![endif]-->
  5467. <script type="text/javascript" src='../../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  5468. <script type="text/javascript">
  5469. var subdomain = 'cn2';
  5470. </script>
  5471. </div>
  5472. <div class="aspNetHidden">
  5473. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  5474. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  5475. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  5476. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  5477. </div>
  5478. <script type="text/javascript">
  5479. //<![CDATA[
  5480. var mfrIDsArray = new Array;
  5481. //]]>
  5482. </script>
  5483. <script src='../../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  5484. <script type="text/javascript">
  5485. //<![CDATA[
  5486. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  5487. </script>
  5488. <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>
  5489. <script type="text/javascript">
  5490. //<![CDATA[
  5491. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  5492. <!-- Google Code for Conversion Page Remarketing List -->
  5493. <!--
  5494. var google_conversion_id = 1046090287;
  5495. var google_conversion_language = "en";
  5496. var google_conversion_format = "3";
  5497. var google_conversion_color = "666666";
  5498. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  5499. var google_conversion_value = 0;
  5500. //-->
  5501. </script>
  5502. <div class="ga-remarketing">
  5503. <script type="text/javascript"
  5504. src="http://www.googleadservices.com/pagead/conversion.js">
  5505. </script>
  5506. </div>
  5507. <noscript>
  5508. <div style="display:inline;">
  5509. <img height="1" width="1" style="border-style:none;" alt=""
  5510. src="http://www.googleadservices.com/pagead/conversion/1046090287/?label=9WmrCMOVxQEQr6To8gM&amp;guid=ON&amp;script=0"/>
  5511. </div>
  5512. </noscript>
  5513. <script type="text/javascript">
  5514. //]]>
  5515. </script>
  5516. <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>
  5517. <script type="text/javascript">
  5518. //<![CDATA[
  5519. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688693^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000656^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000877^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000426^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000000389^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000001066^ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1000001067^ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$1000000393^ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$1000000314^ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$1323044^ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$688606';
  5520. theForm.oldSubmit = theForm.submit;
  5521. theForm.submit = WebForm_SaveScrollPositionSubmit;
  5522. theForm.oldOnSubmit = theForm.onsubmit;
  5523. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  5524. //]]>
  5525. </script>
  5526. </form>
  5527. <div id="content-container2" class="hidden">
  5528. <div id="content-fixed-width2" class="content-fixed-width">
  5529. </div>
  5530. </div>
  5531. <div id="wideFooter" class="wideFooter">
  5532. <div id="footer" class="container">
  5533. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB10|20160304.2" />
  5534. <div id="ft_table1">
  5535. <div class="row">
  5536. <div class="col-xs-12">
  5537. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  5538. <div class="floatleft padding5right">
  5539. <strong class="h3">
  5540. 快速电子邮件注册</strong>&nbsp;&nbsp;
  5541. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  5542. </div>
  5543. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  5544. 提交
  5545. </a>
  5546. </div>
  5547. <div id="ft_icons" class="ft_icons">
  5548. <div id="ft_social">
  5549. <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>
  5550. <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>
  5551. <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>
  5552. <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">
  5553. <div class="ico-social fb"></div>
  5554. </a>
  5555. <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">
  5556. <div class="ico-social tw"></div>
  5557. </a>
  5558. <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">
  5559. <div class="ico-social rss"></div>
  5560. </a>
  5561. <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">
  5562. <div class="ico-social yt"></div>
  5563. </a>
  5564. <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">
  5565. <div class="ico-social gp"></div>
  5566. </a>
  5567. <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">
  5568. <div class="ico-social ln"></div>
  5569. </a>
  5570. <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">
  5571. <div class="ico-social sb"></div>
  5572. </a>
  5573. <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">
  5574. <div class="ico-social blog"></div>
  5575. </a>
  5576. </div>
  5577. </div>
  5578. </div>
  5579. </div>
  5580. </div>
  5581. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  5582. <div class="ft_wrapper">
  5583. <div id="ft_links" class="row">
  5584. <div class="col-xs-3 paddingBtm10 hidden-xs">
  5585. <strong class="paddingTopBtm10 inline-block">
  5586. 公司</strong>
  5587. <ul>
  5588. <li>
  5589. <a id="ctl00_Footer1_lnk26" href="../../../../../../aboutus/">关于我们</a></li>
  5590. <li>
  5591. <a id="ctl00_Footer1_lnk28" href="../../../../../../educationalsales/">教育销售</a></li>
  5592. <li>
  5593. <a id="ctl00_Footer1_lnk31" href="../../../../../../pressroom/">新闻中心</a></li>
  5594. <li>
  5595. <a id="ctl00_Footer1_lnk32" href="../../../../../../careers/">Mouser 工作机会</a></li>
  5596. <li>
  5597. <a id="ctl00_Footer1_lnk29" href="../../../../../../quality/">品质保证</a></li>
  5598. <li>
  5599. <a id="ctl00_Footer1_lnk30" href="../../../../../../environmental/">环境保护</a></li>
  5600. </ul>
  5601. </div>
  5602. <div class="col-xs-3 hidden-xs">
  5603. <strong class="paddingTopBtm10 inline-block">
  5604. 快速链接</strong>
  5605. <ul>
  5606. <li><a id="A7" href="/blog">
  5607. Mouser博客</a></li>
  5608. <li>
  5609. <a id="ctl00_Footer1_hlnk1" href="../../../../../../new/">最新产品</a></li>
  5610. <li>
  5611. <a id="ctl00_Footer1_hlnk2" href="../../../../../../new/products/">新产品</a></li>
  5612. <li>
  5613. <a id="ctl00_Footer1_hlnk3" href="../../../../../../applications/">新技术</a></li>
  5614. </ul>
  5615. </div>
  5616. <div class="col-xs-12 col-sm-3">
  5617. <strong class="paddingTopBtm10 inline-block">
  5618. 支持</strong>
  5619. <ul>
  5620. <li><a id="A3" href="/feedback.aspx">
  5621. 反馈</a></li>
  5622. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  5623. 帮助</a></li>
  5624. <li>
  5625. <a id="ctl00_Footer1_lnk27" href="../../../../../../contact/">联系我们</a></li>
  5626. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  5627. 浏览器支持</a></li>
  5628. <li><a id="A6" href="/cookie-policy/">
  5629. Cookie政策</a></li>
  5630. </ul>
  5631. </div>
  5632. <div class="col-xs-12 col-sm-3">
  5633. <strong class="paddingTopBtm10 inline-block">
  5634. 昴氏(上海)电子贸易有限公司</strong>
  5635. <ul>
  5636. <li>
  5637. <h4>
  5638. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  5639. </li>
  5640. </ul>
  5641. </div>
  5642. </div>
  5643. </div>
  5644. </div>
  5645. <div class="row">
  5646. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  5647. <div id="ft_copy">
  5648. <span class="ft_terms">
  5649. <a id="A1" href="/privacypolicy/">
  5650. 隐私政策</a>
  5651. &nbsp;&nbsp;|&nbsp;&nbsp;
  5652. <a id="href3" href="/saleterms/">
  5653. 销售条款</a>
  5654. <br />
  5655. </span>
  5656. <span class="ft_copyright">
  5657. 版权所有©2016 Mouser Electronics, Inc
  5658. |
  5659. 沪ICP备15042575号-1
  5660. <br />
  5661. </span>
  5662. <span class="ft_trade">
  5663. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  5664. </span>
  5665. <span class="ft_hq">
  5666. Corporate headquarters and logistics center in Mansfield, Texas USA.
  5667. </span>
  5668. <br />
  5669. <span class="ft_ClassicMobile">
  5670. <strong>
  5671. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  5672. </span>
  5673. </div>
  5674. </div>
  5675. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  5676. <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>
  5677. <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>
  5678. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  5679. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  5680. </a>
  5681. <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>
  5682. <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;
  5683. </a>
  5684. </div>
  5685. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  5686. <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>
  5687. <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>
  5688. <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>
  5689. <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>
  5690. </div>
  5691. </div>
  5692. <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>
  5693. <script type="text/javascript">
  5694. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  5695. </script>
  5696. </div>
  5697. </div>
  5698. <script src="../../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  5699. <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>
  5700. </body>
  5701. </html>