17.html 411 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474
  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_91242ccf-7212-4a4e-a5b9-dd31594d7bf1-15308-336123';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. FPGA - 现场可编程门阵列 | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应FPGA - 现场可编程门阵列 。Mouser提供FPGA - 现场可编程门阵列 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="FPGA - 现场可编程门阵列" /><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","12oX/hOVhLeVAePNheYJJrhNLHV7Kvn22oUh12suPto=",2]);_gaq.push(["_setCustomVar",31,"Cart","7d6f7d1b-defc-4c77-845c-9ea030d0c16e",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': '989-10M02DCV36C8G',
  65. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 27 I/O, 36WLCSP',
  66. 'category': 'FPGA - Field Programmable Gate Array',
  67. 'brand': 'Altera Corporation',
  68. 'variant': '10M02DCV36C8G',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '989-10M08SCE144I7G',
  74. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 101 I/O, 144EQFP',
  75. 'category': 'FPGA - Field Programmable Gate Array',
  76. 'brand': 'Altera Corporation',
  77. 'variant': '10M08SCE144I7G',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '989-10M02SCM153I7G',
  83. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 112 I/O, 153MBGA',
  84. 'category': 'FPGA - Field Programmable Gate Array',
  85. 'brand': 'Altera Corporation',
  86. 'variant': '10M02SCM153I7G',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '989-10M08SCU169I7G',
  92. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 130 I/O, 169UBGA',
  93. 'category': 'FPGA - Field Programmable Gate Array',
  94. 'brand': 'Altera Corporation',
  95. 'variant': '10M08SCU169I7G',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '989-10M50SAE144C8G',
  101. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 101 I/O, 144EQFP',
  102. 'category': 'FPGA - Field Programmable Gate Array',
  103. 'brand': 'Altera Corporation',
  104. 'variant': '10M50SAE144C8G',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '989-10M16SAU169C8G',
  110. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 130 I/O, 169UBGA',
  111. 'category': 'FPGA - Field Programmable Gate Array',
  112. 'brand': 'Altera Corporation',
  113. 'variant': '10M16SAU169C8G',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '989-10M08DCF484C8G',
  119. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 250 I/O, 484FBGA',
  120. 'category': 'FPGA - Field Programmable Gate Array',
  121. 'brand': 'Altera Corporation',
  122. 'variant': '10M08DCF484C8G',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '989-10M16SCE144I7G',
  128. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 101 I/O, 144EQFP',
  129. 'category': 'FPGA - Field Programmable Gate Array',
  130. 'brand': 'Altera Corporation',
  131. 'variant': '10M16SCE144I7G',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '989-10M04SCU169I7G',
  137. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 130 I/O, 169UBGA',
  138. 'category': 'FPGA - Field Programmable Gate Array',
  139. 'brand': 'Altera Corporation',
  140. 'variant': '10M04SCU169I7G',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '989-10M04SCE144I7G',
  146. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 101 I/O, 144EQFP',
  147. 'category': 'FPGA - Field Programmable Gate Array',
  148. 'brand': 'Altera Corporation',
  149. 'variant': '10M04SCE144I7G',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '989-10M08SCM153I7G',
  155. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 112 I/O, 153MBGA',
  156. 'category': 'FPGA - Field Programmable Gate Array',
  157. 'brand': 'Altera Corporation',
  158. 'variant': '10M08SCM153I7G',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '989-10M02DCV36I7G',
  164. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 27 I/O, 36WLCSP',
  165. 'category': 'FPGA - Field Programmable Gate Array',
  166. 'brand': 'Altera Corporation',
  167. 'variant': '10M02DCV36I7G',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '989-10M04DCF256C8G',
  173. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 178 I/O, 256FBGA',
  174. 'category': 'FPGA - Field Programmable Gate Array',
  175. 'brand': 'Altera Corporation',
  176. 'variant': '10M04DCF256C8G',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '989-10M16SCE144C8G',
  182. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 101 I/O, 144EQFP',
  183. 'category': 'FPGA - Field Programmable Gate Array',
  184. 'brand': 'Altera Corporation',
  185. 'variant': '10M16SCE144C8G',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '989-10M25SAE144C8G',
  191. 'name': 'FPGA - Field Programmable Gate Array',
  192. 'category': 'FPGA - Field Programmable Gate Array',
  193. 'brand': 'Altera Corporation',
  194. 'variant': '10M25SAE144C8G',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '989-10M16DCF256C8G',
  200. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 178 I/O, 256FBGA',
  201. 'category': 'FPGA - Field Programmable Gate Array',
  202. 'brand': 'Altera Corporation',
  203. 'variant': '10M16DCF256C8G',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '989-10M04DAF256C8G',
  209. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 178 I/O, 256FBGA',
  210. 'category': 'FPGA - Field Programmable Gate Array',
  211. 'brand': 'Altera Corporation',
  212. 'variant': '10M04DAF256C8G',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '989-10M16DAF484C8G',
  218. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 320 I/O, 484FBGA',
  219. 'category': 'FPGA - Field Programmable Gate Array',
  220. 'brand': 'Altera Corporation',
  221. 'variant': '10M16DAF484C8G',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '989-10M02DCU324C8G',
  227. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 160 I/O, 324UBGA',
  228. 'category': 'FPGA - Field Programmable Gate Array',
  229. 'brand': 'Altera Corporation',
  230. 'variant': '10M02DCU324C8G',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '989-10M40DAF256C8G',
  236. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 178 I/O, 256FBGA',
  237. 'category': 'FPGA - Field Programmable Gate Array',
  238. 'brand': 'Altera Corporation',
  239. 'variant': '10M40DAF256C8G',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '989-10M25SCE144C8G',
  245. 'name': 'FPGA - Field Programmable Gate Array',
  246. 'category': 'FPGA - Field Programmable Gate Array',
  247. 'brand': 'Altera Corporation',
  248. 'variant': '10M25SCE144C8G',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '989-10M16SCU169C8G',
  254. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 130 I/O, 169UBGA',
  255. 'category': 'FPGA - Field Programmable Gate Array',
  256. 'brand': 'Altera Corporation',
  257. 'variant': '10M16SCU169C8G',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '989-10M16DCF484C8G',
  263. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 320 I/O, 484FBGA',
  264. 'category': 'FPGA - Field Programmable Gate Array',
  265. 'brand': 'Altera Corporation',
  266. 'variant': '10M16DCF484C8G',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '989-10M50DCF484C8G',
  272. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 360 I/O, 484FBGA',
  273. 'category': 'FPGA - Field Programmable Gate Array',
  274. 'brand': 'Altera Corporation',
  275. 'variant': '10M50DCF484C8G',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '989-10M16DCU324C8G',
  281. 'name': 'FPGA - Field Programmable Gate Array non-volatile FPGA, 246 I/O, 324UBGA',
  282. 'category': 'FPGA - Field Programmable Gate Array',
  283. 'brand': 'Altera Corporation',
  284. 'variant': '10M16DCU324C8G',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','12oX/hOVhLeVAePNheYJJrhNLHV7Kvn22oUh12suPto=');
  290. ga('set','dimension31','7d6f7d1b-defc-4c77-845c-9ea030d0c16e');
  291. ga('set','dimension13','163AA125AA126AA195');
  292. ga('set','metric2',13841);
  293. ga('set','dimension5','FPGA - Field Programmable Gate Array');
  294. ga('set','dimension48','aw9vv');
  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/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv" rel="canonical" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv" /><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/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" /><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><!-- Optimized for speed - Stingray Aptimizer --></head>
  300. <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
  301. <script src='../../../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
  302. <script src='../../../../../../flash/js/empty.file.js' type="text/javascript"></script>
  303. <script src='../../../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
  304. <script src='../../../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
  305. <script src='../../../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
  306. <!--[if lt IE 9]>
  307. <script src='../../../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
  308. <![endif]-->
  309. <form method="post" action="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/" 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='18301963';
  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='18301963';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
  343. var left = (screen.width / 2) - (800 / 2);var top = (screen.height / 2) - (505 / 2); var msgWindow = window.open(url,'MsgWindow','height=505,width=800,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0');
  344. }
  345. function GenerateClientID(prefix, i, suffix) {
  346. if (i < 10) { return prefix + '0' + String(i) + suffix; }
  347. else { return prefix + String(i) + suffix; }
  348. }
  349. var checked = false;
  350. function SelectAll() {
  351. checked = !checked;
  352. var i = 3;
  353. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  354. while (i < 29) {
  355. if (chkSelect != null) chkSelect.checked = checked;
  356. i = i + 1;
  357. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  358. }
  359. }
  360. function IsAllChecked(checked) {
  361. var i = 3;
  362. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  363. while (i < 29) {
  364. if (chkSelect != null && chkSelect.checked != checked) return false;
  365. i = i + 1;
  366. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  367. }
  368. return true;
  369. }
  370. function IsAnyChecked(checked) {
  371. return !IsAllChecked(!checked);
  372. }
  373. function SelectRow(row, checked) {
  374. document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
  375. }
  376. function RowSelected(index, checked) { }
  377. function GetQuantityTextboxByRow(row) {
  378. return GetQuantityTextboxByIndex(row + 2);
  379. }
  380. function GetQuantityTextboxByIndex(index) {
  381. return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
  382. }
  383. function SelectQuantity(row, quantity) {
  384. txtQuantity = GetQuantityTextboxByRow(row);
  385. if (txtQuantity == null) { return; }
  386. txtQuantity.value = quantity;
  387. SelectRow(row, true);
  388. }
  389. var qtyRegEx = /^([0]|\s)*$/;
  390. function IsQuantityEmptyOrZero(quantity) {
  391. return qtyRegEx.test(quantity);
  392. }
  393. function QuantityChanged(row, quantity) {
  394. SelectRow(row, !IsQuantityEmptyOrZero(quantity));
  395. }
  396. var QuantityRowSelectedBase = RowSelected;
  397. function QuantityRowSelected(index, checked) {
  398. QuantityRowSelectedBase(index, checked);
  399. txtQuantity = GetQuantityTextboxByIndex(index);
  400. if (txtQuantity == null) { return; }
  401. if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
  402. else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
  403. }
  404. RowSelected = QuantityRowSelected;
  405. //]]>
  406. </script>
  407. <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&amp;t=5f9d5645" type="text/javascript"></script>
  408. <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&amp;t=5f9d5645" type="text/javascript"></script>
  409. <div id="cookie-notification-bar">
  410. </div>
  411. <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
  412. <div id="wideGab" class="wideGab">
  413. <div id="ctl00_globalActionBar" class="global-action-bar">
  414. <div id="gab-container" class="container">
  415. <div id="contact" class="row">
  416. <div class="topPadding col-xs-6">
  417. <div class="inline-block">
  418. <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
  419. <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>&nbsp;
  420. 400-821-6111</a><span id="yxezcaswaauztuaqaww"><a rel="file" style="display: none;" href="xxrrtbuu.html">ubqtbausacydzezvysubqtb</a></span>
  421. &nbsp;&nbsp;&nbsp;&nbsp;<span class="pipe">|</span>&nbsp;&nbsp;&nbsp;&nbsp;
  422. <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
  423. 反馈</a>
  424. </div>
  425. <span class="qqIcon inline-block">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
  426. </span>&nbsp;&nbsp;
  427. </div>
  428. <div class="col-xs-6 align-right">
  429. <div id="tdImg" class="inline-block topPadding9px">
  430. <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" class="smallgrey">
  431. <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
  432. <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
  433. </div>
  434. <div class="topPadding inline-block">
  435. <span class="pipe">|</span>&nbsp;&nbsp;&nbsp;
  436. <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphIMAYIGjfjSb3cFcZCoHJ%252bL%2fG8M%252bGUbblDlPQ45jNcscvFH8PBrd04qIJFTT8zY%2fBRCaA3upFnK5A%3d%3d">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphIMAYIGjfjSb3cFcZCoHJ%252bL%2fG8M%252bGUbblDlPQ45jNcscvFH8PBrd04qIJFTT8zY%2fBRCaA3upFnK5A%3d%3d"><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 = '7d6f7d1b-defc-4c77-845c-9ea030d0c16e';
  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%252bTwQdvE13pxfphIMAYIGjfjSb3cFcZCoHJ%252bL%2fG8M%252bGUbblDlPQ45jNcscvFH8PBrd04qIJFTT8zY%2fBRCaA3upFnK5A%3d%3d">登录</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;">FPGA - 现场可编程门阵列</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> FPGA - 现场可编程门阵列</h1></a>
  848. <img id="ctl00_ContentMain_imageCat" class="category-img" src="../../../../../../images/DisplayCategories/18301963.png" alt="FPGA - 现场可编程门阵列" />
  849. <!--Marketing Content-->
  850. <table id="ctl00_ContentMain_tbl5">
  851. <tr>
  852. <td>
  853. <div class="marketing-content2">
  854. <span style="font-size: 14px;"><strong>可编程门极阵列(Field Programmable Gate Arrays,FPGA)</strong>,应有尽有。Mouser Electronics(贸泽电子)提供多家业界顶尖制造商的可编程门极阵列。Mouser Electronics(贸泽电子)是Altera和Lattice Semiconductor可编程门极阵列的原厂授权分销商,如想了解更多可编程门极阵列产品,请浏览下列产品分类。</span>
  855. </div>
  856. </td>
  857. </tr>
  858. </table>
  859. <div id="ctl00_ContentMain_refinemfglogo">
  860. </div>
  861. </div><!--.category-content-->
  862. </div>
  863. </td>
  864. </tr>
  865. <tr>
  866. <td>
  867. </td>
  868. </tr>
  869. <tr>
  870. <td>
  871. <div id="refine-page2">
  872. </div>
  873. </td>
  874. </tr>
  875. </table>
  876. <div id="ctl00_ContentMain_divTabs" class="row">
  877. <div class="col-xs-12">
  878. <div id="tabsNavigation" >
  879. <ul>
  880. <li id="ctl00_ContentMain_liProductsTab" class="active">
  881. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(13,841)</span></a>
  882. </li>
  883. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  884. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;FPGA - Field Programmable Gate Array&#39;);" href="../../Datasheets/_/N-aw9vv">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(117)</span></a>
  885. </li>
  886. <li id="ctl00_ContentMain_liImagesTab" class="">
  887. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;FPGA - Field Programmable Gate Array&#39;);" href="../../Images/_/N-aw9vv">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(133)</span></a>
  888. </li>
  889. <li id="ctl00_ContentMain_liNewestTab" class="">
  890. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;FPGA - Field Programmable Gate Array&#39;);" href="../../Newest-Products/_/N-aw9vv">最新产品</a>
  891. </li>
  892. </ul>
  893. </div>
  894. </div>
  895. </div>
  896. <div id="tabDivs" class="tab-divs">
  897. <script type="text/javascript">
  898. //<![CDATA[
  899. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  900. //]]>
  901. </script>
  902. <div id="ctl00_ContentMain_liProducts">
  903. <div id="refineSearchDiv">
  904. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  905. <div id="refine-keyword-search-2">
  906. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  907. <div id="boxPartSearch2">
  908. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  909. <tr>
  910. <td rowspan="3" style="vertical-align: middle">
  911. <div id="searchPartNumberBox" class="search-box" >
  912. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  913. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  914. </div>
  915. </td>
  916. </tr>
  917. <tr>
  918. <td class="chk-Search">
  919. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  920. </td>
  921. </tr>
  922. <tr>
  923. <td class="chk-Search">
  924. <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>
  925. </td>
  926. </tr>
  927. </table>
  928. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  929. </div>
  930. <script type="text/javascript" src='../../../../../../flash/js/Placeholders.min.js'></script>
  931. <script type="text/javascript" src='../../../../../../flash/js/watermark.js'></script>
  932. </div>
  933. </div>
  934. <div id="refine-mfg-select-2">
  935. </div>
  936. <div class="clear">
  937. </div>
  938. <table class="SearchParametricTable2">
  939. <tr>
  940. <td>
  941. <div id="AttributesDiv2">
  942. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  943. <div class="categorySearchLimits">
  944. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  945. <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_chkbx18301963|FPGA - Field Programmable Gate Array&#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_chkbx18301963|FPGA - Field Programmable Gate Array&#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_chkbx18301963|FPGA - Field Programmable Gate Array&#39;).checked = false;" /></span>&nbsp;<b>嵌入式处理器和控制器</b>&nbsp;&#62;&nbsp;<span title="FPGA - 现场可编程门阵列"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx18301963|FPGA - Field Programmable Gate Array" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx18301963|FPGA - Field Programmable Gate Array" 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>FPGA - 现场可编程门阵列</b>
  946. </div>
  947. </div>
  948. <hr/>
  949. </div>
  950. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  951. <p class="applied-filter-lbl">
  952. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  953. <span id="ctl00_ContentMain_uc5_lblreccount">13,841 匹配</span>
  954. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  955. </p>
  956. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  957. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  958. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  959. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../../../images/icon_tooltip.png" />
  960. <br />
  961. </div>
  962. </div>
  963. <table id="tb1" style="width: 100%;">
  964. <tr>
  965. <td>
  966. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  967. <tr>
  968. <td>
  969. <table cellpadding="0" cellspacing="0">
  970. <tr>
  971. <td>
  972. <table>
  973. <tr>
  974. <td>
  975. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  976. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  977. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  978. of parametric ids sent on the query string after the seo url is generated and redirected to.
  979. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  980. sorted parametric attributes from an endeca attribute group --->
  981. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  982. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  983. &nbsp;
  984. </div>
  985. </td>
  986. </tr>
  987. <tr>
  988. <td>
  989. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  990. <option value="4291492212">Altera</option>
  991. <option value="4294759229">Atmel</option>
  992. <option value="4294758842">Lattice</option>
  993. <option value="4292748898">Microsemi</option>
  994. </select>
  995. </td>
  996. </tr>
  997. <tr>
  998. <td>
  999. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1000. </td>
  1001. </tr>
  1002. </table>
  1003. </td>
  1004. <td valign="bottom" style="width: 15px;">
  1005. &nbsp;
  1006. </td>
  1007. </tr>
  1008. </table>
  1009. </td><td>
  1010. <table cellpadding="0" cellspacing="0">
  1011. <tr>
  1012. <td>
  1013. <table>
  1014. <tr>
  1015. <td>
  1016. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">产品</span>
  1017. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1018. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1019. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1020. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1021. sorted parametric attributes from an endeca attribute group --->
  1022. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1023. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688640" />
  1024. &nbsp;
  1025. </div>
  1026. </td>
  1027. </tr>
  1028. <tr>
  1029. <td>
  1030. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688640">
  1031. <option value="4282053551">A2F060M3E</option>
  1032. <option value="4282054263">A2F200M3F</option>
  1033. <option value="4282054260">A2F500M3G</option>
  1034. <option value="4282055693">A3P030</option>
  1035. <option value="4282056085">A3P060</option>
  1036. <option value="4282056121">A3P1000</option>
  1037. <option value="4282056099">A3P125</option>
  1038. <option value="4282056128">A3P250</option>
  1039. <option value="4282056131">A3P400</option>
  1040. <option value="4282055691">A3P600</option>
  1041. <option value="4282055857">A3PE1500</option>
  1042. <option value="4282055684">A3PE3000</option>
  1043. <option value="4282055690">A3PE600</option>
  1044. <option value="4282055062">A3PN010</option>
  1045. <option value="4282055059">A3PN020</option>
  1046. <option value="4282055065">A3PN060</option>
  1047. <option value="4282055061">A3PN125</option>
  1048. <option value="4282055055">A3PN250</option>
  1049. <option value="4282056089">A40MX02</option>
  1050. <option value="4282056077">A40MX04</option>
  1051. <option value="4282056060">A42MX09</option>
  1052. <option value="4282056066">A42MX16</option>
  1053. <option value="4282056075">A42MX24</option>
  1054. <option value="4282056081">A54SX08A</option>
  1055. <option value="4282056087">A54SX16A</option>
  1056. <option value="4282056080">A54SX32A</option>
  1057. <option value="4282056092">A54SX72A</option>
  1058. <option value="4289799732">ACEX 1K</option>
  1059. <option value="4282055922">AFS250</option>
  1060. <option value="4282055921">AFS600</option>
  1061. <option value="4282055680">AGL030V2</option>
  1062. <option value="4282055689">AGL030V5</option>
  1063. <option value="4282055490">AGL060V2</option>
  1064. <option value="4282055489">AGL060V5</option>
  1065. <option value="4282055688">AGL125V2</option>
  1066. <option value="4282055683">AGL125V5</option>
  1067. <option value="4282055682">AGL250V2</option>
  1068. <option value="4282055681">AGL250V5</option>
  1069. <option value="4282055050">AGL400V5</option>
  1070. <option value="4282055679">AGL600V2</option>
  1071. <option value="4282055049">AGLN010V2</option>
  1072. <option value="4282055067">AGLN020V2</option>
  1073. <option value="4282055066">AGLN020V5</option>
  1074. <option value="4282055054">AGLN060V2</option>
  1075. <option value="4282055051">AGLN060V5</option>
  1076. <option value="4282055047">AGLN125V2</option>
  1077. <option value="4282055058">AGLN125V5</option>
  1078. <option value="4282055056">AGLN250V2</option>
  1079. <option value="4282055052">AGLN250V5</option>
  1080. <option value="4282055042">AGLP060V5</option>
  1081. <option value="4282055338">AGLP125V5</option>
  1082. <option value="4282056116">APA075</option>
  1083. <option value="4282056106">APA150</option>
  1084. <option value="4282056084">APA300</option>
  1085. <option value="4282056102">APA450</option>
  1086. <option value="4282056096">APA600</option>
  1087. <option value="4289799709">APEX 20K</option>
  1088. <option value="4289799674">APEX II</option>
  1089. <option value="4289245921">Arria 10 GX</option>
  1090. <option value="4289814958">Arria GX</option>
  1091. <option value="4289799666">Arria II GX</option>
  1092. <option value="4289799647">Arria II GZ</option>
  1093. <option value="4289826935">Arria V GT</option>
  1094. <option value="4289826930">Arria V GX</option>
  1095. <option value="4289814911">Arria V GZ</option>
  1096. <option value="4289814874">Arria V ST</option>
  1097. <option value="4289814872">Arria V SX</option>
  1098. <option value="4289739942">AT40K</option>
  1099. <option value="4289739317">AT94KAL</option>
  1100. <option value="4282056063">AX250</option>
  1101. <option value="4289799739">Cyclone</option>
  1102. <option value="4289799642">Cyclone II</option>
  1103. <option value="4289772304">Cyclone III</option>
  1104. <option value="4289772291">Cyclone III LS</option>
  1105. <option value="4289772266">Cyclone IV E</option>
  1106. <option value="4289772258">Cyclone IV GX</option>
  1107. <option value="4289815005">Cyclone V E</option>
  1108. <option value="4289814923">Cyclone V GT</option>
  1109. <option value="4289815004">Cyclone V GX</option>
  1110. <option value="4289814892">Cyclone V SE</option>
  1111. <option value="4289814890">Cyclone V ST</option>
  1112. <option value="4289814889">Cyclone V SX</option>
  1113. <option value="4289739720">ECP2</option>
  1114. <option value="4289739712">ECP2M</option>
  1115. <option value="4289753499">ECP3</option>
  1116. <option value="4273123047">ECP5</option>
  1117. <option value="4282056064">EX128</option>
  1118. <option value="4282056068">EX256</option>
  1119. <option value="4282056070">EX64</option>
  1120. <option value="4289772237">FLEX 10K</option>
  1121. <option value="4289772223">FLEX 6000</option>
  1122. <option value="4289772221">FLEX 8000</option>
  1123. <option value="4289753644">iCE40 LP</option>
  1124. <option value="4285840787">iCE40 Ultra</option>
  1125. <option value="4282050492">iCE40 UltraLite</option>
  1126. <option value="4289772469">iCE40HX</option>
  1127. <option value="4288445793">iCE40LM</option>
  1128. <option value="4269048312">IGLOO2</option>
  1129. <option value="4289739970">ispXPGA</option>
  1130. <option value="4282055577">M1A3P600</option>
  1131. <option value="4281018638">M2GL005</option>
  1132. <option value="4281018633">M2GL010</option>
  1133. <option value="4281018629">M2GL050</option>
  1134. <option value="4281018626">M2S005</option>
  1135. <option value="4281018623">M2S010</option>
  1136. <option value="4281018621">M2S010T</option>
  1137. <option value="4281018618">M2S050</option>
  1138. <option value="4281018616">M2S050T</option>
  1139. <option value="4289657289">MachXO</option>
  1140. <option value="4289753835">MachXO2</option>
  1141. <option value="4287814495">MachXO3L</option>
  1142. <option value="4285438790">MAX10</option>
  1143. <option value="4289799724">Mercury</option>
  1144. <option value="4289739709">SC</option>
  1145. <option value="4289739708">SCM</option>
  1146. <option value="4269048330">SmartFusion2</option>
  1147. <option value="4289799720">Stratix</option>
  1148. <option value="4289799713">Stratix GX</option>
  1149. <option value="4289799635">Stratix II</option>
  1150. <option value="4289799625">Stratix II GX</option>
  1151. <option value="4289772277">Stratix III</option>
  1152. <option value="4289772285">Stratix III Enhanced</option>
  1153. <option value="4289772245">Stratix IV E</option>
  1154. <option value="4289772249">Stratix IV GT</option>
  1155. <option value="4289772241">Stratix IV GX</option>
  1156. <option value="4289245907">Stratix V</option>
  1157. <option value="4289814999">Stratix V E</option>
  1158. <option value="4289814992">Stratix V GS</option>
  1159. <option value="4289814976">Stratix V GT</option>
  1160. <option value="4289814969">Stratix V GX</option>
  1161. <option value="4289754664">XP2</option>
  1162. </select>
  1163. </td>
  1164. </tr>
  1165. <tr>
  1166. <td>
  1167. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1168. </td>
  1169. </tr>
  1170. </table>
  1171. </td>
  1172. <td valign="bottom" style="width: 15px;">
  1173. &nbsp;
  1174. </td>
  1175. </tr>
  1176. </table>
  1177. </td><td>
  1178. <table cellpadding="0" cellspacing="0">
  1179. <tr>
  1180. <td>
  1181. <table>
  1182. <tr>
  1183. <td>
  1184. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">逻辑元件数量</span>
  1185. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1186. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1187. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1188. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1189. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1190. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1191. sorted parametric attributes from an endeca attribute group --->
  1192. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1193. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="1000000900" />
  1194. </div>
  1195. </td>
  1196. </tr>
  1197. <tr>
  1198. <td>
  1199. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000900" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_1000000900">
  1200. <option value="4282055063">100</option>
  1201. <option value="4282056071">128</option>
  1202. <option value="4289687160">208</option>
  1203. <option value="4282055068">220</option>
  1204. <option value="4289696744">256</option>
  1205. <option value="4282056090">295</option>
  1206. <option value="4282055694">330</option>
  1207. <option value="4289687158">336</option>
  1208. <option value="4289685383">384</option>
  1209. <option value="4289687156">504</option>
  1210. <option value="4282056069">512</option>
  1211. <option value="4282056078">547</option>
  1212. <option value="4289696742">576</option>
  1213. <option value="4282056067">608</option>
  1214. <option value="4289688163">640</option>
  1215. <option value="4282056086">660</option>
  1216. <option value="4289687154">672</option>
  1217. <option value="4282056082">768</option>
  1218. <option value="4289687170">880</option>
  1219. <option value="4282056076">912</option>
  1220. <option value="4288445794">1000</option>
  1221. <option value="4289687164">1008</option>
  1222. <option value="4289700937">1024</option>
  1223. <option value="4285840788">1100</option>
  1224. <option value="4289687176">1152</option>
  1225. <option value="4289687416">1200</option>
  1226. <option value="4264723690">1248</option>
  1227. <option value="4289689827">1280</option>
  1228. <option value="4289687162">1296</option>
  1229. <option value="4284502501">1300</option>
  1230. <option value="4289687168">1320</option>
  1231. <option value="4282056088">1452</option>
  1232. <option value="4288131961">1500</option>
  1233. <option value="4289687465">1728</option>
  1234. <option value="4289703023">1936</option>
  1235. <option value="4289687166">1960</option>
  1236. <option value="4288445792">2000</option>
  1237. <option value="4285840783">2048</option>
  1238. <option value="4287814496">2100</option>
  1239. <option value="4289688485">2112</option>
  1240. <option value="4289657279">2280</option>
  1241. <option value="4289700935">2304</option>
  1242. <option value="4282054264">2500</option>
  1243. <option value="4289687408">2560</option>
  1244. <option value="4289703030">2704</option>
  1245. <option value="4289687462">2880</option>
  1246. <option value="4289687476">2910</option>
  1247. <option value="4288131921">3000</option>
  1248. <option value="4289687966">3520</option>
  1249. <option value="4289687172">3744</option>
  1250. <option value="4289687474">4000</option>
  1251. <option value="4289687431">4160</option>
  1252. <option value="4287814493">4300</option>
  1253. <option value="4289688168">4320</option>
  1254. <option value="4282056132">4500</option>
  1255. <option value="4289687356">4608</option>
  1256. <option value="4289687459">4800</option>
  1257. <option value="4289687469">4992</option>
  1258. <option value="4288131288">5000</option>
  1259. <option value="4289687310">5136</option>
  1260. <option value="4282054261">5500</option>
  1261. <option value="4289687471">5980</option>
  1262. <option value="4288131920">6000</option>
  1263. <option value="4282056093">6036</option>
  1264. <option value="4281018639">6060</option>
  1265. <option value="4289687231">6272</option>
  1266. <option value="4289700943">6400</option>
  1267. <option value="4282055692">6500</option>
  1268. <option value="4289687181">6656</option>
  1269. <option value="4289688220">6864</option>
  1270. <option value="4289687962">7680</option>
  1271. <option value="4288131289">8000</option>
  1272. <option value="4289687350">8256</option>
  1273. <option value="4289687423">8320</option>
  1274. <option value="4289687179">9984</option>
  1275. <option value="4289245910">10000</option>
  1276. <option value="4289687328">10320</option>
  1277. <option value="4289687454">10570</option>
  1278. <option value="4282056122">11000</option>
  1279. <option value="4289687419">11520</option>
  1280. <option value="4288131885">12000</option>
  1281. <option value="4289687482">12060</option>
  1282. <option value="4281018635">12084</option>
  1283. <option value="4289687457">14400</option>
  1284. <option value="4289687366">14448</option>
  1285. <option value="4288131923">15000</option>
  1286. <option value="4289687322">15408</option>
  1287. <option value="4289687344">15600</option>
  1288. <option value="4276269733">16000</option>
  1289. <option value="4282055858">16500</option>
  1290. <option value="4289687414">16640</option>
  1291. <option value="4288131380">17000</option>
  1292. <option value="4289687451">18460</option>
  1293. <option value="4289687364">18752</option>
  1294. <option value="4288131834">19000</option>
  1295. <option value="4288131922">20000</option>
  1296. <option value="4289687479">20060</option>
  1297. <option value="4288131867">21000</option>
  1298. <option value="4289687217">21280</option>
  1299. <option value="4289687497">21580</option>
  1300. <option value="4289687238">22320</option>
  1301. <option value="4289687411">24320</option>
  1302. <option value="4289687319">24624</option>
  1303. <option value="4289245941">25000</option>
  1304. <option value="4289687448">25660</option>
  1305. <option value="4269048324">27696</option>
  1306. <option value="4289687235">28848</option>
  1307. <option value="4288131287">29000</option>
  1308. <option value="4289687214">29440</option>
  1309. <option value="4288130795">31500</option>
  1310. <option value="4288131866">32000</option>
  1311. <option value="4289687445">32470</option>
  1312. <option value="4288131108">33000</option>
  1313. <option value="4289687362">33216</option>
  1314. <option value="4289687494">33520</option>
  1315. <option value="4289687338">33880</option>
  1316. <option value="4288131884">34000</option>
  1317. <option value="4282055685">35000</option>
  1318. <option value="4289687434">38400</option>
  1319. <option value="4289687316">39600</option>
  1320. <option value="4289245944">40000</option>
  1321. <option value="4289687443">41250</option>
  1322. <option value="4289687389">42959</option>
  1323. <option value="4273123049">44000</option>
  1324. <option value="4288130803">47500</option>
  1325. <option value="4288131892">48000</option>
  1326. <option value="4288130797">49000</option>
  1327. <option value="4289687211">49888</option>
  1328. <option value="4288130794">50000</option>
  1329. <option value="4289687491">50160</option>
  1330. <option value="4289687359">50528</option>
  1331. <option value="4289687428">51840</option>
  1332. <option value="4289687313">55856</option>
  1333. <option value="4281018630">56340</option>
  1334. <option value="4289687440">57120</option>
  1335. <option value="4289687488">60100</option>
  1336. <option value="4289687385">60214</option>
  1337. <option value="4289687335">60440</option>
  1338. <option value="4288131327">67000</option>
  1339. <option value="4288130799">67500</option>
  1340. <option value="4288131865">68000</option>
  1341. <option value="4289687353">68416</option>
  1342. <option value="4289687295">70208</option>
  1343. <option value="4289687184">72600</option>
  1344. <option value="4289687208">73920</option>
  1345. <option value="4289245894">75000</option>
  1346. <option value="4289687228">75408</option>
  1347. <option value="4288130796">77000</option>
  1348. <option value="4289687437">79040</option>
  1349. <option value="4288131883">80000</option>
  1350. <option value="4289687308">81264</option>
  1351. <option value="4289245905">85000</option>
  1352. <option value="4289687381">89178</option>
  1353. <option value="4289687485">90220</option>
  1354. <option value="4289687331">90960</option>
  1355. <option value="4288131242">92000</option>
  1356. <option value="4288131313">95000</option>
  1357. <option value="4289687305">100448</option>
  1358. <option value="4289687190">105600</option>
  1359. <option value="4288130805">107500</option>
  1360. <option value="4289687225">109424</option>
  1361. <option value="4289245918">110000</option>
  1362. <option value="4289687242">114480</option>
  1363. <option value="4288131303">115000</option>
  1364. <option value="4289687401">118143</option>
  1365. <option value="4289687325">119088</option>
  1366. <option value="4289687347">132540</option>
  1367. <option value="4288130802">142500</option>
  1368. <option value="4288051354">149000</option>
  1369. <option value="4288130818">149500</option>
  1370. <option value="4289687222">149760</option>
  1371. <option value="4289687302">150848</option>
  1372. <option value="4288130791">156000</option>
  1373. <option value="4289687188">175750</option>
  1374. <option value="4289687341">179400</option>
  1375. <option value="4289687397">181165</option>
  1376. <option value="4289245899">190000</option>
  1377. <option value="4289687299">198464</option>
  1378. <option value="4288130801">200000</option>
  1379. <option value="4288130790">220000</option>
  1380. <option value="4289687377">224000</option>
  1381. <option value="4289687205">228000</option>
  1382. <option value="4288130813">236000</option>
  1383. <option value="4289245897">242000</option>
  1384. <option value="4289687393">244188</option>
  1385. <option value="4288130804">255000</option>
  1386. <option value="4289687202">291200</option>
  1387. <option value="4289687373">298000</option>
  1388. <option value="4288130819">300000</option>
  1389. <option value="4289245924">301000</option>
  1390. <option value="4288130800">337500</option>
  1391. <option value="4288130808">340000</option>
  1392. <option value="4289687369">348500</option>
  1393. <option value="4289245926">350000</option>
  1394. <option value="4289687199">353600</option>
  1395. <option value="4288130812">360000</option>
  1396. <option value="4288130821">362000</option>
  1397. <option value="4288130789">400000</option>
  1398. <option value="4289245902">420000</option>
  1399. <option value="4288130810">425000</option>
  1400. <option value="4288130788">450000</option>
  1401. <option value="4288130811">457000</option>
  1402. <option value="4289245938">462000</option>
  1403. <option value="4288130807">490000</option>
  1404. <option value="4288130820">504000</option>
  1405. <option value="4289687196">531200</option>
  1406. <option value="4288130815">583000</option>
  1407. <option value="4288130806">597000</option>
  1408. <option value="4288130809">622000</option>
  1409. <option value="4288130814">695000</option>
  1410. <option value="4289687193">813050</option>
  1411. <option value="4288130817">840000</option>
  1412. <option value="4288130816">952000</option>
  1413. <option value="4289245950">1150000</option>
  1414. <option value="4282056117">-</option>
  1415. </select>
  1416. </td>
  1417. </tr>
  1418. <tr>
  1419. <td>
  1420. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1421. </td>
  1422. </tr>
  1423. </table>
  1424. </td>
  1425. <td valign="bottom" style="width: 15px;">
  1426. &nbsp;
  1427. </td>
  1428. </tr>
  1429. </table>
  1430. </td><td>
  1431. <table cellpadding="0" cellspacing="0">
  1432. <tr>
  1433. <td>
  1434. <table>
  1435. <tr>
  1436. <td>
  1437. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">逻辑数组块数量——LAB</span>
  1438. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1439. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1440. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1441. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1442. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1443. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1444. sorted parametric attributes from an endeca attribute group --->
  1445. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1446. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="1000000899" />
  1447. </div>
  1448. </td>
  1449. </tr>
  1450. <tr>
  1451. <td>
  1452. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000899" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_1000000899">
  1453. <option value="4289665505">8</option>
  1454. <option value="4269048321">11</option>
  1455. <option value="4289696604">12</option>
  1456. <option value="4269048317">22</option>
  1457. <option value="4289665511">24</option>
  1458. <option value="4289687161">26</option>
  1459. <option value="4289688203">32</option>
  1460. <option value="4269048325">34</option>
  1461. <option value="4289687159">42</option>
  1462. <option value="4289685384">48</option>
  1463. <option value="4289687157">63</option>
  1464. <option value="4289687467">72</option>
  1465. <option value="4289688164">80</option>
  1466. <option value="4289687155">84</option>
  1467. <option value="4289687171">88</option>
  1468. <option value="4289687417">120</option>
  1469. <option value="4276269738">125</option>
  1470. <option value="4289687165">126</option>
  1471. <option value="4289687169">132</option>
  1472. <option value="4289687177">144</option>
  1473. <option value="4289657284">150</option>
  1474. <option value="4264723691">156</option>
  1475. <option value="4289689828">160</option>
  1476. <option value="4289687163">162</option>
  1477. <option value="4289687167">196</option>
  1478. <option value="4289696689">216</option>
  1479. <option value="4276269873">250</option>
  1480. <option value="4289687409">256</option>
  1481. <option value="4289688486">264</option>
  1482. <option value="4289657280">285</option>
  1483. <option value="4289687357">288</option>
  1484. <option value="4289687477">291</option>
  1485. <option value="4289687311">321</option>
  1486. <option value="4284502502">325</option>
  1487. <option value="4289687463">360</option>
  1488. <option value="4289687232">392</option>
  1489. <option value="4289703063">400</option>
  1490. <option value="4289687432">416</option>
  1491. <option value="4289687967">440</option>
  1492. <option value="4289687173">468</option>
  1493. <option value="4289687460">480</option>
  1494. <option value="4276269879">500</option>
  1495. <option value="4289687351">516</option>
  1496. <option value="4284502500">525</option>
  1497. <option value="4289688169">540</option>
  1498. <option value="4289687472">598</option>
  1499. <option value="4289703058">624</option>
  1500. <option value="4289696026">625</option>
  1501. <option value="4289687426">640</option>
  1502. <option value="4289687329">645</option>
  1503. <option value="4289700260">750</option>
  1504. <option value="4289687345">780</option>
  1505. <option value="4289687424">832</option>
  1506. <option value="4289688221">858</option>
  1507. <option value="4289687220">900</option>
  1508. <option value="4289687367">903</option>
  1509. <option value="4289245942">943.4</option>
  1510. <option value="4289687963">960</option>
  1511. <option value="4289687323">963</option>
  1512. <option value="4289696030">1000</option>
  1513. <option value="4289687455">1057</option>
  1514. <option value="4284502498">1075</option>
  1515. <option value="4289687498">1079</option>
  1516. <option value="4289687420">1152</option>
  1517. <option value="4289687365">1172</option>
  1518. <option value="4289687483">1206</option>
  1519. <option value="4289687180">1248</option>
  1520. <option value="4289687218">1330</option>
  1521. <option value="4289687239">1395</option>
  1522. <option value="4289687458">1440</option>
  1523. <option value="4282055924">1452</option>
  1524. <option value="4289697397">1500</option>
  1525. <option value="4289245945">1509.4</option>
  1526. <option value="4289687320">1539</option>
  1527. <option value="4289687415">1664</option>
  1528. <option value="4289687495">1676</option>
  1529. <option value="4289687339">1694</option>
  1530. <option value="4289687236">1803</option>
  1531. <option value="4289687390">1805</option>
  1532. <option value="4289687215">1840</option>
  1533. <option value="4289687452">1846</option>
  1534. <option value="4289700272">1875</option>
  1535. <option value="4289687267">1900</option>
  1536. <option value="4289687480">2006</option>
  1537. <option value="4289687363">2076</option>
  1538. <option value="4289696510">2125</option>
  1539. <option value="4289696753">2375</option>
  1540. <option value="4289687412">2432</option>
  1541. <option value="4289687317">2475</option>
  1542. <option value="4289700268">2500</option>
  1543. <option value="4289687492">2508</option>
  1544. <option value="4289687386">2530</option>
  1545. <option value="4289687449">2566</option>
  1546. <option value="4289697054">2625</option>
  1547. <option value="4289687247">2700</option>
  1548. <option value="4289686483">2830</option>
  1549. <option value="4289245895">2830.2</option>
  1550. <option value="4289687185">2904</option>
  1551. <option value="4289687489">3005</option>
  1552. <option value="4289687336">3022</option>
  1553. <option value="4289687212">3118</option>
  1554. <option value="4289697387">3125</option>
  1555. <option value="4289687360">3158</option>
  1556. <option value="4289687263">3200</option>
  1557. <option value="4289245906">3207.5</option>
  1558. <option value="4289687446">3247</option>
  1559. <option value="4289687314">3491</option>
  1560. <option value="4289696021">3625</option>
  1561. <option value="4289687382">3747</option>
  1562. <option value="4289687435">3840</option>
  1563. <option value="4289697050">4000</option>
  1564. <option value="4289692089">4125</option>
  1565. <option value="4289245919">4150.9</option>
  1566. <option value="4289687191">4224</option>
  1567. <option value="4289697393">4250</option>
  1568. <option value="4289687354">4276</option>
  1569. <option value="4289687275">4300</option>
  1570. <option value="4289687296">4388</option>
  1571. <option value="4289687486">4511</option>
  1572. <option value="4289687333">4548</option>
  1573. <option value="4289687209">4620</option>
  1574. <option value="4289687229">4713</option>
  1575. <option value="4289687402">4964</option>
  1576. <option value="4289696692">5000</option>
  1577. <option value="4289687309">5079</option>
  1578. <option value="4289687429">5184</option>
  1579. <option value="4273123050">5500</option>
  1580. <option value="4289687260">5700</option>
  1581. <option value="4289687441">5712</option>
  1582. <option value="4289686487">5890</option>
  1583. <option value="4289697450">6000</option>
  1584. <option value="4289687306">6278</option>
  1585. <option value="4289687348">6627</option>
  1586. <option value="4289687226">6839</option>
  1587. <option value="4289687189">7030</option>
  1588. <option value="4289687243">7155</option>
  1589. <option value="4289686479">7169</option>
  1590. <option value="4289245900">7169.8</option>
  1591. <option value="4289687326">7443</option>
  1592. <option value="4289687398">7612</option>
  1593. <option value="4289687438">7904</option>
  1594. <option value="4289687256">8000</option>
  1595. <option value="4289686475">8302</option>
  1596. <option value="4289696344">8375</option>
  1597. <option value="4289697046">8500</option>
  1598. <option value="4289687378">8960</option>
  1599. <option value="4289687342">8970</option>
  1600. <option value="4289687206">9120</option>
  1601. <option value="4289686491">9168</option>
  1602. <option value="4289687223">9360</option>
  1603. <option value="4289687303">9428</option>
  1604. <option value="4289618586">9434</option>
  1605. <option value="4289687271">10200</option>
  1606. <option value="4289687394">10260</option>
  1607. <option value="4289687561">11320</option>
  1608. <option value="4289695375">11500</option>
  1609. <option value="4289687203">11648</option>
  1610. <option value="4289696258">11875</option>
  1611. <option value="4289618582">11900</option>
  1612. <option value="4289687374">11920</option>
  1613. <option value="4289687300">12404</option>
  1614. <option value="4289245927">13207.5</option>
  1615. <option value="4289687252">13500</option>
  1616. <option value="4289686471">13584</option>
  1617. <option value="4289687569">13688</option>
  1618. <option value="4289687370">13940</option>
  1619. <option value="4289687200">14144</option>
  1620. <option value="4289696160">14375</option>
  1621. <option value="4289686468">15096</option>
  1622. <option value="4289687557">15849</option>
  1623. <option value="4289245903">15849.1</option>
  1624. <option value="4289686464">16980</option>
  1625. <option value="4289685329">17434</option>
  1626. <option value="4289618585">18480</option>
  1627. <option value="4289692639">18625</option>
  1628. <option value="4289618581">18868</option>
  1629. <option value="4289687565">19024</option>
  1630. <option value="4289687197">21248</option>
  1631. <option value="4289618584">29080</option>
  1632. <option value="4289618577">32075</option>
  1633. <option value="4289687194">32522</option>
  1634. <option value="4289618576">41509</option>
  1635. <option value="4289245951">42770</option>
  1636. <option value="4289618588">56480</option>
  1637. <option value="4289687533">89000</option>
  1638. <option value="4289618583">113560</option>
  1639. <option value="4289687513">128300</option>
  1640. <option value="4289687529">135840</option>
  1641. <option value="4289687509">158500</option>
  1642. <option value="4289687521">160400</option>
  1643. <option value="4289687525">172600</option>
  1644. <option value="4289687506">185000</option>
  1645. <option value="4289687541">220000</option>
  1646. <option value="4289687501">225400</option>
  1647. <option value="4289687517">234720</option>
  1648. <option value="4289687537">262400</option>
  1649. <option value="4289687549">317000</option>
  1650. <option value="4289687545">359200</option>
  1651. <option value="4288181667">-</option>
  1652. </select>
  1653. </td>
  1654. </tr>
  1655. <tr>
  1656. <td>
  1657. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1658. </td>
  1659. </tr>
  1660. </table>
  1661. </td>
  1662. <td valign="bottom" style="width: 15px;">
  1663. &nbsp;
  1664. </td>
  1665. </tr>
  1666. </table>
  1667. </td><td>
  1668. <table cellpadding="0" cellspacing="0">
  1669. <tr>
  1670. <td>
  1671. <table>
  1672. <tr>
  1673. <td>
  1674. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">输入/输出端数量</span>
  1675. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1676. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1677. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1678. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1679. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1680. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1681. sorted parametric attributes from an endeca attribute group --->
  1682. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1683. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000000189" />
  1684. </div>
  1685. </td>
  1686. </tr>
  1687. <tr>
  1688. <td>
  1689. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000189" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000000189">
  1690. <option value="4285735294">10 I/O</option>
  1691. <option value="4285735346">12 I/O</option>
  1692. <option value="4285735306">18 I/O</option>
  1693. <option value="4285735552">19 I/O</option>
  1694. <option value="4285735572">22 I/O</option>
  1695. <option value="4285735555">23 I/O</option>
  1696. <option value="4285735558">24 I/O</option>
  1697. <option value="4285735547">25 I/O</option>
  1698. <option value="4285734735">26 I/O</option>
  1699. <option value="4285735553">28 I/O</option>
  1700. <option value="4285735109">34 I/O</option>
  1701. <option value="4285735345">35 I/O</option>
  1702. <option value="4285735300">37 I/O</option>
  1703. <option value="4285734149">38 I/O</option>
  1704. <option value="4285735569">40 I/O</option>
  1705. <option value="4285735302">41 I/O</option>
  1706. <option value="4285733724">45 I/O</option>
  1707. <option value="4285735554">46 I/O</option>
  1708. <option value="4285735310">49 I/O</option>
  1709. <option value="4285735549">52 I/O</option>
  1710. <option value="4285735541">56 I/O</option>
  1711. <option value="4285734055">57 I/O</option>
  1712. <option value="4285735311">59 I/O</option>
  1713. <option value="4285735562">60 I/O</option>
  1714. <option value="4285735309">62 I/O</option>
  1715. <option value="4285734045">63 I/O</option>
  1716. <option value="4285734024">65 I/O</option>
  1717. <option value="4285735112">66 I/O</option>
  1718. <option value="4285735252">67 I/O</option>
  1719. <option value="4285735046">68 I/O</option>
  1720. <option value="4285735057">69 I/O</option>
  1721. <option value="4285735295">70 I/O</option>
  1722. <option value="4285733752">71 I/O</option>
  1723. <option value="4285734153">72 I/O</option>
  1724. <option value="4285731320">73 I/O</option>
  1725. <option value="4285732713">74 I/O</option>
  1726. <option value="4285735293">75 I/O</option>
  1727. <option value="4285735262">77 I/O</option>
  1728. <option value="4285733624">78 I/O</option>
  1729. <option value="4285733893">79 I/O</option>
  1730. <option value="4285735299">80 I/O</option>
  1731. <option value="4285733859">81 I/O</option>
  1732. <option value="4285733751">82 I/O</option>
  1733. <option value="4285734143">83 I/O</option>
  1734. <option value="4285734164">84 I/O</option>
  1735. <option value="4285734165">85 I/O</option>
  1736. <option value="4285734519">86 I/O</option>
  1737. <option value="4285733867">88 I/O</option>
  1738. <option value="4273273357">89 I/O</option>
  1739. <option value="4285734159">90 I/O</option>
  1740. <option value="4285734161">91 I/O</option>
  1741. <option value="4285735312">92 I/O</option>
  1742. <option value="4285734104">93 I/O</option>
  1743. <option value="4285734102">94 I/O</option>
  1744. <option value="4285731307">95 I/O</option>
  1745. <option value="4285733933">96 I/O</option>
  1746. <option value="4285730276">97 I/O</option>
  1747. <option value="4285733615">98 I/O</option>
  1748. <option value="4285735550">100 I/O</option>
  1749. <option value="4285734148">101 I/O</option>
  1750. <option value="4285732342">102 I/O</option>
  1751. <option value="4285734041">104 I/O</option>
  1752. <option value="4285732206">105 I/O</option>
  1753. <option value="4273764752">106 I/O</option>
  1754. <option value="4273287490">107 I/O</option>
  1755. <option value="4285734521">108 I/O</option>
  1756. <option value="4285735259">111 I/O</option>
  1757. <option value="4285734162">112 I/O</option>
  1758. <option value="4273288078">113 I/O</option>
  1759. <option value="4285733616">114 I/O</option>
  1760. <option value="4285734147">115 I/O</option>
  1761. <option value="4285731319">116 I/O</option>
  1762. <option value="4285733375">117 I/O</option>
  1763. <option value="4285733856">118 I/O</option>
  1764. <option value="4285734042">119 I/O</option>
  1765. <option value="4285731575">120 I/O</option>
  1766. <option value="4273287478">125 I/O</option>
  1767. <option value="4285734047">128 I/O</option>
  1768. <option value="4273271073">129 I/O</option>
  1769. <option value="4274667486">130 I/O</option>
  1770. <option value="4273387427">131 I/O</option>
  1771. <option value="4273287487">133 I/O</option>
  1772. <option value="4273273287">134 I/O</option>
  1773. <option value="4285733614">136 I/O</option>
  1774. <option value="4285733374">137 I/O</option>
  1775. <option value="4273287483">138 I/O</option>
  1776. <option value="4273287475">139 I/O</option>
  1777. <option value="4285731519">140 I/O</option>
  1778. <option value="4285734150">142 I/O</option>
  1779. <option value="4285734154">143 I/O</option>
  1780. <option value="4285733256">144 I/O</option>
  1781. <option value="4285733260">145 I/O</option>
  1782. <option value="4273286690">146 I/O</option>
  1783. <option value="4285730841">147 I/O</option>
  1784. <option value="4273275182">148 I/O</option>
  1785. <option value="4285734151">150 I/O</option>
  1786. <option value="4273287488">151 I/O</option>
  1787. <option value="4285732144">152 I/O</option>
  1788. <option value="4273273292">153 I/O</option>
  1789. <option value="4281712670">154 I/O</option>
  1790. <option value="4273273370">156 I/O</option>
  1791. <option value="4273287485">157 I/O</option>
  1792. <option value="4273287491">158 I/O</option>
  1793. <option value="4273288073">159 I/O</option>
  1794. <option value="4285733932">160 I/O</option>
  1795. <option value="4273387430">161 I/O</option>
  1796. <option value="4285732153">165 I/O</option>
  1797. <option value="4273286680">167 I/O</option>
  1798. <option value="4276852756">168 I/O</option>
  1799. <option value="4273288315">171 I/O</option>
  1800. <option value="4273287281">172 I/O</option>
  1801. <option value="4273287284">173 I/O</option>
  1802. <option value="4273287480">174 I/O</option>
  1803. <option value="4273287482">175 I/O</option>
  1804. <option value="4285733857">176 I/O</option>
  1805. <option value="4285730838">177 I/O</option>
  1806. <option value="4274667488">178 I/O</option>
  1807. <option value="4273287283">179 I/O</option>
  1808. <option value="4273287481">180 I/O</option>
  1809. <option value="4273273285">181 I/O</option>
  1810. <option value="4273273351">182 I/O</option>
  1811. <option value="4273273380">183 I/O</option>
  1812. <option value="4273279862">184 I/O</option>
  1813. <option value="4273273392">185 I/O</option>
  1814. <option value="4285732781">186 I/O</option>
  1815. <option value="4273273379">189 I/O</option>
  1816. <option value="4273287287">190 I/O</option>
  1817. <option value="4273273289">191 I/O</option>
  1818. <option value="4273288314">192 I/O</option>
  1819. <option value="4273287477">193 I/O</option>
  1820. <option value="4273287486">194 I/O</option>
  1821. <option value="4273288312">195 I/O</option>
  1822. <option value="4273273377">196 I/O</option>
  1823. <option value="4273287285">198 I/O</option>
  1824. <option value="4285730835">199 I/O</option>
  1825. <option value="4273208076">201 I/O</option>
  1826. <option value="4273208432">202 I/O</option>
  1827. <option value="4273208434">203 I/O</option>
  1828. <option value="4273209051">204 I/O</option>
  1829. <option value="4273205791">206 I/O</option>
  1830. <option value="4273205732">207 I/O</option>
  1831. <option value="4273209113">208 I/O</option>
  1832. <option value="4273206417">209 I/O</option>
  1833. <option value="4273208823">211 I/O</option>
  1834. <option value="4273208335">212 I/O</option>
  1835. <option value="4273208334">213 I/O</option>
  1836. <option value="4273207750">215 I/O</option>
  1837. <option value="4273206406">218 I/O</option>
  1838. <option value="4273205132">219 I/O</option>
  1839. <option value="4285733600">220 I/O</option>
  1840. <option value="4285733389">221 I/O</option>
  1841. <option value="4273206662">222 I/O</option>
  1842. <option value="4273209108">223 I/O</option>
  1843. <option value="4273209118">224 I/O</option>
  1844. <option value="4273205157">226 I/O</option>
  1845. <option value="4273208333">228 I/O</option>
  1846. <option value="4273205209">229 I/O</option>
  1847. <option value="4273205210">230 I/O</option>
  1848. <option value="4273205206">233 I/O</option>
  1849. <option value="4273208072">235 I/O</option>
  1850. <option value="4273209052">240 I/O</option>
  1851. <option value="4273208439">242 I/O</option>
  1852. <option value="4273123045">245 I/O</option>
  1853. <option value="4276269874">246 I/O</option>
  1854. <option value="4273208438">248 I/O</option>
  1855. <option value="4273208433">249 I/O</option>
  1856. <option value="4276269880">250 I/O</option>
  1857. <option value="4273208330">252 I/O</option>
  1858. <option value="4273205133">254 I/O</option>
  1859. <option value="4273209115">256 I/O</option>
  1860. <option value="4273205185">260 I/O</option>
  1861. <option value="4269048331">267 I/O</option>
  1862. <option value="4273208071">270 I/O</option>
  1863. <option value="4273208822">271 I/O</option>
  1864. <option value="4273205733">274 I/O</option>
  1865. <option value="4273205790">278 I/O</option>
  1866. <option value="4273208236">280 I/O</option>
  1867. <option value="4273205178">281 I/O</option>
  1868. <option value="4273205163">283 I/O</option>
  1869. <option value="4273209103">288 I/O</option>
  1870. <option value="4273208192">289 I/O</option>
  1871. <option value="4273209111">290 I/O</option>
  1872. <option value="4273205148">292 I/O</option>
  1873. <option value="4273208178">294 I/O</option>
  1874. <option value="4273207601">295 I/O</option>
  1875. <option value="4273205153">296 I/O</option>
  1876. <option value="4273208431">297 I/O</option>
  1877. <option value="4273287996">300 I/O</option>
  1878. <option value="4273273389">301 I/O</option>
  1879. <option value="4273287476">303 I/O</option>
  1880. <option value="4273287011">304 I/O</option>
  1881. <option value="4273273322">308 I/O</option>
  1882. <option value="4273282423">310 I/O</option>
  1883. <option value="4273273364">315 I/O</option>
  1884. <option value="4273273378">316 I/O</option>
  1885. <option value="4273287484">317 I/O</option>
  1886. <option value="4276269734">320 I/O</option>
  1887. <option value="4273273361">322 I/O</option>
  1888. <option value="4273273290">324 I/O</option>
  1889. <option value="4273273306">327 I/O</option>
  1890. <option value="4273273291">328 I/O</option>
  1891. <option value="4273287286">331 I/O</option>
  1892. <option value="4273273385">333 I/O</option>
  1893. <option value="4273276432">334 I/O</option>
  1894. <option value="4273273383">335 I/O</option>
  1895. <option value="4273288311">336 I/O</option>
  1896. <option value="4273273288">338 I/O</option>
  1897. <option value="4273287549">339 I/O</option>
  1898. <option value="4273286679">341 I/O</option>
  1899. <option value="4273288313">342 I/O</option>
  1900. <option value="4273273293">343 I/O</option>
  1901. <option value="4273287489">344 I/O</option>
  1902. <option value="4273273384">345 I/O</option>
  1903. <option value="4273273311">346 I/O</option>
  1904. <option value="4273273396">350 I/O</option>
  1905. <option value="4273208442">356 I/O</option>
  1906. <option value="4273208077">358 I/O</option>
  1907. <option value="4273209119">360 I/O</option>
  1908. <option value="4273205203">361 I/O</option>
  1909. <option value="4273208331">362 I/O</option>
  1910. <option value="4273207811">363 I/O</option>
  1911. <option value="4273205182">364 I/O</option>
  1912. <option value="4273205171">366 I/O</option>
  1913. <option value="4273205137">369 I/O</option>
  1914. <option value="4273208440">370 I/O</option>
  1915. <option value="4273208325">372 I/O</option>
  1916. <option value="4273205149">374 I/O</option>
  1917. <option value="4273205189">376 I/O</option>
  1918. <option value="4273205160">377 I/O</option>
  1919. <option value="4273520698">378 I/O</option>
  1920. <option value="4273207600">380 I/O</option>
  1921. <option value="4273209117">384 I/O</option>
  1922. <option value="4273205147">393 I/O</option>
  1923. <option value="4273208339">402 I/O</option>
  1924. <option value="4273205138">406 I/O</option>
  1925. <option value="4273205188">408 I/O</option>
  1926. <option value="4273208430">410 I/O</option>
  1927. <option value="4273205135">413 I/O</option>
  1928. <option value="4273204964">414 I/O</option>
  1929. <option value="4273207997">416 I/O</option>
  1930. <option value="4273208435">418 I/O</option>
  1931. <option value="4273205176">422 I/O</option>
  1932. <option value="4273205136">424 I/O</option>
  1933. <option value="4273205204">426 I/O</option>
  1934. <option value="4273205159">429 I/O</option>
  1935. <option value="4273205213">432 I/O</option>
  1936. <option value="4273207875">436 I/O</option>
  1937. <option value="4273208332">440 I/O</option>
  1938. <option value="4273208070">444 I/O</option>
  1939. <option value="4273208338">450 I/O</option>
  1940. <option value="4273205184">452 I/O</option>
  1941. <option value="4273208444">454 I/O</option>
  1942. <option value="4273205194">455 I/O</option>
  1943. <option value="4273205134">470 I/O</option>
  1944. <option value="4273207766">472 I/O</option>
  1945. <option value="4273205202">473 I/O</option>
  1946. <option value="4273205177">475 I/O</option>
  1947. <option value="4273209110">480 I/O</option>
  1948. <option value="4273205205">486 I/O</option>
  1949. <option value="4273205191">488 I/O</option>
  1950. <option value="4273207599">490 I/O</option>
  1951. <option value="4273205187">492 I/O</option>
  1952. <option value="4276269719">500 I/O</option>
  1953. <option value="4273205190">508 I/O</option>
  1954. <option value="4273205208">514 I/O</option>
  1955. <option value="4273209114">516 I/O</option>
  1956. <option value="4273207877">520 I/O</option>
  1957. <option value="4273205151">528 I/O</option>
  1958. <option value="4273205162">531 I/O</option>
  1959. <option value="4273205150">532 I/O</option>
  1960. <option value="4273205172">534 I/O</option>
  1961. <option value="4273205161">535 I/O</option>
  1962. <option value="4273205207">538 I/O</option>
  1963. <option value="4273207810">540 I/O</option>
  1964. <option value="4273205222">544 I/O</option>
  1965. <option value="4273205212">552 I/O</option>
  1966. <option value="4273205180">554 I/O</option>
  1967. <option value="4273205165">558 I/O</option>
  1968. <option value="4273205032">560 I/O</option>
  1969. <option value="4273208441">562 I/O</option>
  1970. <option value="4273205141">564 I/O</option>
  1971. <option value="4273208337">583 I/O</option>
  1972. <option value="4273208436">586 I/O</option>
  1973. <option value="4273208319">588 I/O</option>
  1974. <option value="4273205200">597 I/O</option>
  1975. <option value="4273205211">600 I/O</option>
  1976. <option value="4273205193">607 I/O</option>
  1977. <option value="4273209104">612 I/O</option>
  1978. <option value="4273205195">615 I/O</option>
  1979. <option value="4273208069">620 I/O</option>
  1980. <option value="4273205175">622 I/O</option>
  1981. <option value="4273205192">624 I/O</option>
  1982. <option value="4273208445">642 I/O</option>
  1983. <option value="4273205164">650 I/O</option>
  1984. <option value="4273205143">654 I/O</option>
  1985. <option value="4273208427">660 I/O</option>
  1986. <option value="4273204963">674 I/O</option>
  1987. <option value="4273205199">683 I/O</option>
  1988. <option value="4273208437">684 I/O</option>
  1989. <option value="4273205214">696 I/O</option>
  1990. <option value="4273205221">704 I/O</option>
  1991. <option value="4273205201">706 I/O</option>
  1992. <option value="4273208443">712 I/O</option>
  1993. <option value="4273205169">718 I/O</option>
  1994. <option value="4273205198">726 I/O</option>
  1995. <option value="4273205179">734 I/O</option>
  1996. <option value="4273205186">735 I/O</option>
  1997. <option value="4273205174">742 I/O</option>
  1998. <option value="4273205155">744 I/O</option>
  1999. <option value="4273205167">758 I/O</option>
  2000. <option value="4273204065">768 I/O</option>
  2001. <option value="4273205197">773 I/O</option>
  2002. <option value="4273205142">781 I/O</option>
  2003. <option value="4273205196">822 I/O</option>
  2004. <option value="4273205215">840 I/O</option>
  2005. <option value="4273205140">880 I/O</option>
  2006. <option value="4273205166">902 I/O</option>
  2007. <option value="4273205139">920 I/O</option>
  2008. <option value="4273207878">942 I/O</option>
  2009. <option value="4273205154">976 I/O</option>
  2010. <option value="4273273382">1022 I/O</option>
  2011. <option value="4273205152">1120 I/O</option>
  2012. <option value="4273205173">1126 I/O</option>
  2013. <option value="4273273342">1170 I/O</option>
  2014. <option value="4273273381">1203 I/O</option>
  2015. </select>
  2016. </td>
  2017. </tr>
  2018. <tr>
  2019. <td>
  2020. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2021. </td>
  2022. </tr>
  2023. </table>
  2024. </td>
  2025. <td valign="bottom" style="width: 15px;">
  2026. &nbsp;
  2027. </td>
  2028. </tr>
  2029. </table>
  2030. </td><td>
  2031. <table cellpadding="0" cellspacing="0">
  2032. <tr>
  2033. <td>
  2034. <table>
  2035. <tr>
  2036. <td>
  2037. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">工作电源电压</span>
  2038. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  2039. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  2040. of parametric ids sent on the query string after the seo url is generated and redirected to.
  2041. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  2042. sorted parametric attributes from an endeca attribute group --->
  2043. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  2044. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="1000000393" />
  2045. &nbsp;
  2046. </div>
  2047. </td>
  2048. </tr>
  2049. <tr>
  2050. <td>
  2051. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000000393" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_1000000393">
  2052. <option value="4289815000">0.85 V</option>
  2053. <option value="4289826936">0.85 V, 1.1 V, 1.15 V</option>
  2054. <option value="4289245892">0.87 V to 0.93 V</option>
  2055. <option value="4294573437">0.9 V</option>
  2056. <option value="4292511993">0.95 V</option>
  2057. <option value="4291962315">1 V to 1.2 V</option>
  2058. <option value="4294593073">1.1 V</option>
  2059. <option value="4294592437">1.14 V to 1.26 V</option>
  2060. <option value="4292563101">1.14 V to 3.465 V, 2.375 V to 3.465 V</option>
  2061. <option value="4291336655">1.15 V to 1.25 V</option>
  2062. <option value="4294604096">1.2 V</option>
  2063. <option value="4293992264">1.2 V to 3.3 V</option>
  2064. <option value="4288671479">1.2 V, 1.5 V</option>
  2065. <option value="4276269870">1.2 V/2.5 V</option>
  2066. <option value="4294629384">1.5 V</option>
  2067. <option value="4294593702">1.5 V to 3.3 V</option>
  2068. <option value="4269048638">1.63 V</option>
  2069. <option value="4294604809">1.8 V</option>
  2070. <option value="4294593605">1.8 V, 2.5 V, 3.3 V</option>
  2071. <option value="4294627904">2.5 V</option>
  2072. <option value="4294592120">2.5 V, 3.3 V</option>
  2073. <option value="4294439255">2.5 V/3.3 V</option>
  2074. <option value="4294604646">3 V</option>
  2075. <option value="4294629911">3 V to 3.6 V</option>
  2076. <option value="4292773445">3 V, 3.3 V</option>
  2077. <option value="4276269878">3 V/3.3 V</option>
  2078. <option value="4294629989">3.3 V</option>
  2079. <option value="4294594351">3.3 V, 5 V</option>
  2080. <option value="4294630592">5 V</option>
  2081. <option value="4289245937">1.1V</option>
  2082. </select>
  2083. </td>
  2084. </tr>
  2085. <tr>
  2086. <td>
  2087. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2088. </td>
  2089. </tr>
  2090. </table>
  2091. </td>
  2092. <td valign="bottom" style="width: 15px;">
  2093. &nbsp;
  2094. </td>
  2095. </tr>
  2096. </table>
  2097. </td><td>
  2098. <table cellpadding="0" cellspacing="0">
  2099. <tr>
  2100. <td>
  2101. <table>
  2102. <tr>
  2103. <td>
  2104. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">最大工作温度</span>
  2105. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  2106. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  2107. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  2108. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  2109. of parametric ids sent on the query string after the seo url is generated and redirected to.
  2110. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  2111. sorted parametric attributes from an endeca attribute group --->
  2112. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  2113. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="1000000314" />
  2114. </div>
  2115. </td>
  2116. </tr>
  2117. <tr>
  2118. <td>
  2119. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000314" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_1000000314">
  2120. <option value="4294629996">+ 70 C</option>
  2121. <option value="4294630005">+ 85 C</option>
  2122. <option value="4294629968">+ 100 C</option>
  2123. <option value="4294568129">+ 105 C</option>
  2124. <option value="4294631245">+ 125 C</option>
  2125. </select>
  2126. </td>
  2127. </tr>
  2128. <tr>
  2129. <td>
  2130. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2131. </td>
  2132. </tr>
  2133. </table>
  2134. </td>
  2135. <td valign="bottom" style="width: 15px;">
  2136. &nbsp;
  2137. </td>
  2138. </tr>
  2139. </table>
  2140. </td><td>
  2141. <table cellpadding="0" cellspacing="0">
  2142. <tr>
  2143. <td>
  2144. <table>
  2145. <tr>
  2146. <td>
  2147. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lblheader" style="font-weight:bold;white-space:normal;">安装风格</span>
  2148. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_RangePnl">
  2149. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  2150. of parametric ids sent on the query string after the seo url is generated and redirected to.
  2151. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  2152. sorted parametric attributes from an endeca attribute group --->
  2153. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnRange" />
  2154. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnDimId" value="1323044" />
  2155. &nbsp;
  2156. </div>
  2157. </td>
  2158. </tr>
  2159. <tr>
  2160. <td>
  2161. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1323044" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_1323044">
  2162. <option value="4294741457">SMD/SMT</option>
  2163. </select>
  2164. </td>
  2165. </tr>
  2166. <tr>
  2167. <td>
  2168. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2169. </td>
  2170. </tr>
  2171. </table>
  2172. </td>
  2173. <td valign="bottom" style="width: 15px;">
  2174. &nbsp;
  2175. </td>
  2176. </tr>
  2177. </table>
  2178. </td><td>
  2179. <table cellpadding="0" cellspacing="0">
  2180. <tr>
  2181. <td>
  2182. <table>
  2183. <tr>
  2184. <td>
  2185. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  2186. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_RangePnl">
  2187. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  2188. of parametric ids sent on the query string after the seo url is generated and redirected to.
  2189. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  2190. sorted parametric attributes from an endeca attribute group --->
  2191. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnRange" />
  2192. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnDimId" value="688606" />
  2193. &nbsp;
  2194. </div>
  2195. </td>
  2196. </tr>
  2197. <tr>
  2198. <td>
  2199. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_688606">
  2200. <option value="4294694469">BGA</option>
  2201. <option value="4291430517">BGA-1152</option>
  2202. <option value="4294025898">BGA-121</option>
  2203. <option value="4292697327">BGA-132</option>
  2204. <option value="4291430793">BGA-1517</option>
  2205. <option value="4291430576">BGA-164</option>
  2206. <option value="4291430771">BGA-1760</option>
  2207. <option value="4292995062">BGA-184</option>
  2208. <option value="4289245914">BGA-1932</option>
  2209. <option value="4292986877">BGA-225</option>
  2210. <option value="4293992842">BGA-25</option>
  2211. <option value="4294680905">BGA-256</option>
  2212. <option value="4294671333">BGA-324</option>
  2213. <option value="4292697326">BGA-332</option>
  2214. <option value="4291430675">BGA-356</option>
  2215. <option value="4291430646">BGA-358</option>
  2216. <option value="4294576393">BGA-36</option>
  2217. <option value="4273123048">BGA-381</option>
  2218. <option value="4292908022">BGA-400</option>
  2219. <option value="4294675857">BGA-484</option>
  2220. <option value="4294025904">BGA-49</option>
  2221. <option value="4273123044">BGA-554</option>
  2222. <option value="4289245891">BGA-572</option>
  2223. <option value="4291430443">BGA-600</option>
  2224. <option value="4294677672">BGA-64</option>
  2225. <option value="4291430679">BGA-652</option>
  2226. <option value="4291430717">BGA-672</option>
  2227. <option value="4292761119">BGA-676</option>
  2228. <option value="4291430786">BGA-780</option>
  2229. <option value="4294671617">BGA-81</option>
  2230. <option value="4289245912">BGA-896</option>
  2231. <option value="4291430702">BGA-956</option>
  2232. <option value="4294649480">CABGA</option>
  2233. <option value="4292563094">caBGA-256</option>
  2234. <option value="4294671777">CABGA-256</option>
  2235. <option value="4292563087">caBGA-332</option>
  2236. <option value="4292512791">CBGA-121</option>
  2237. <option value="4292512805">CBGA-132</option>
  2238. <option value="4292512795">CBGA-225</option>
  2239. <option value="4292512775">CBGA-36</option>
  2240. <option value="4268669245">CBGA-381</option>
  2241. <option value="4292512793">CBGA-49</option>
  2242. <option value="4292786475">CBGA-81</option>
  2243. <option value="4294672895">CCGA</option>
  2244. <option value="4292818437">CCGA-624</option>
  2245. <option value="4292818400">CFCBGA-1152</option>
  2246. <option value="4292818399">CFCBGA-1704</option>
  2247. <option value="4294674102">CQFP</option>
  2248. <option value="4292818436">CQFP-208</option>
  2249. <option value="4292818426">CQFP-256</option>
  2250. <option value="4292818435">CQFP-352</option>
  2251. <option value="4292818433">CQFP-84</option>
  2252. <option value="4294649479">CSBGA</option>
  2253. <option value="4292863800">CSBGA-100</option>
  2254. <option value="4294649466">csBGA-132</option>
  2255. <option value="4292863799">CSBGA-132</option>
  2256. <option value="4292575849">csBGA-256</option>
  2257. <option value="4292554301">CSBGA-328</option>
  2258. <option value="4294674831">CSP</option>
  2259. <option value="4292984185">CSP-196</option>
  2260. <option value="4294012007">CSP-281</option>
  2261. <option value="4294011475">CSP-289</option>
  2262. <option value="4292984158">CSP-81</option>
  2263. <option value="4285438788">EQFP-144</option>
  2264. <option value="4294675019">FBGA</option>
  2265. <option value="4292511278">FBGA-100</option>
  2266. <option value="4291430708">FBGA-1020</option>
  2267. <option value="4292863662">FBGA-1152</option>
  2268. <option value="4294676724">FBGA-144</option>
  2269. <option value="4291430696">FBGA-1508</option>
  2270. <option value="4291430814">FBGA-1517</option>
  2271. <option value="4291430481">FBGA-169</option>
  2272. <option value="4291430773">FBGA-1760</option>
  2273. <option value="4291430795">FBGA-1932</option>
  2274. <option value="4294674867">FBGA-256</option>
  2275. <option value="4292863655">FBGA-324</option>
  2276. <option value="4291430678">FBGA-33</option>
  2277. <option value="4291430742">FBGA-400</option>
  2278. <option value="4294674868">FBGA-484</option>
  2279. <option value="4291430655">FBGA-572</option>
  2280. <option value="4291430803">FBGA-672</option>
  2281. <option value="4291641278">FBGA-780</option>
  2282. <option value="4292863666">FBGA-896</option>
  2283. <option value="4292817294">FCBGA-1152</option>
  2284. <option value="4271292988">FCBGA-325</option>
  2285. <option value="4294688729">FPBGA</option>
  2286. <option value="4292817297">FPBGA-1152</option>
  2287. <option value="4292818404">FPBGA-1156</option>
  2288. <option value="4292984197">FPBGA-144</option>
  2289. <option value="4292984201">FPBGA-256</option>
  2290. <option value="4292790579">FPBGA-256-100</option>
  2291. <option value="4292790568">FPBGA-256-144</option>
  2292. <option value="4292790577">FPBGA-256-176</option>
  2293. <option value="4294688433">fpBGA-484</option>
  2294. <option value="4292984200">FPBGA-484</option>
  2295. <option value="4294674739">fpBGA-672</option>
  2296. <option value="4292818410">FPBGA-672</option>
  2297. <option value="4292984183">FPBGA-896</option>
  2298. <option value="4294674734">fpBGA-900</option>
  2299. <option value="4265085047">FPGA-256</option>
  2300. <option value="4294677570">FTBGA</option>
  2301. <option value="4292863794">ftBGA-256</option>
  2302. <option value="4292863643">FTBGA-256</option>
  2303. <option value="4292863793">ftBGA-324</option>
  2304. <option value="4292863642">FTBGA-324</option>
  2305. <option value="4292984211">LGA-624</option>
  2306. <option value="4294688778">LQFP-144</option>
  2307. <option value="4285438784">MBGA-153</option>
  2308. <option value="4290514575">MBGA-301</option>
  2309. <option value="4289814879">MBGA-383</option>
  2310. <option value="4290514576">MBGA-484</option>
  2311. <option value="4292818398">OFCBGA-1020</option>
  2312. <option value="4292818402">OFCBGA-1152</option>
  2313. <option value="4294720779">PLCC-44</option>
  2314. <option value="4294688798">PLCC-68</option>
  2315. <option value="4294688752">PLCC-84</option>
  2316. <option value="4294684795">PQFP-100</option>
  2317. <option value="4294684323">PQFP-160</option>
  2318. <option value="4294679339">PQFP-208</option>
  2319. <option value="4292864334">PQFP-240</option>
  2320. <option value="4294719890">QFN</option>
  2321. <option value="4294671306">QFN EP</option>
  2322. <option value="4291430480">QFN-148</option>
  2323. <option value="4294719691">QFN-32</option>
  2324. <option value="4294685209">QFN-48</option>
  2325. <option value="4294671283">QFN-68</option>
  2326. <option value="4292512788">QFN-84</option>
  2327. <option value="4294685157">QFP-144</option>
  2328. <option value="4294677664">QFP-160</option>
  2329. <option value="4294677143">QFP-208</option>
  2330. <option value="4291430746">QFP-240</option>
  2331. <option value="4294718154">TQFP-100</option>
  2332. <option value="4294688334">TQFP-144</option>
  2333. <option value="4294649474">TQFP-176</option>
  2334. <option value="4294718155">TQFP-64</option>
  2335. <option value="4285438787">UBGA-169</option>
  2336. <option value="4285438786">UBGA-324</option>
  2337. <option value="4290954614">UBGA-484</option>
  2338. <option value="4290954612">UBGA-672</option>
  2339. <option value="4287814572">UBGA-81</option>
  2340. <option value="4287814610">UcBGA-36</option>
  2341. <option value="4287814609">UcBGA-49</option>
  2342. <option value="4293982623">UCSP</option>
  2343. <option value="4271292987">VFPBGA-256</option>
  2344. <option value="4281018634">VFPBGA-400</option>
  2345. <option value="4294686324">VQFP</option>
  2346. <option value="4294688809">VQFP-100</option>
  2347. <option value="4282056059">VQFP-84</option>
  2348. <option value="4292871585">VTQFP</option>
  2349. <option value="4282055043">VTQFP-176</option>
  2350. <option value="4292491039">WLCPS-25</option>
  2351. <option value="4292697325">WLCS-25</option>
  2352. <option value="4292882947">WLCSP-16</option>
  2353. <option value="4292824166">WLCSP-20</option>
  2354. <option value="4292796599">WLCSP-36</option>
  2355. <option value="4290236377">WLCSP-49</option>
  2356. <option value="4290550427">WLCSP-81</option>
  2357. </select>
  2358. </td>
  2359. </tr>
  2360. <tr>
  2361. <td>
  2362. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2363. </td>
  2364. </tr>
  2365. </table>
  2366. </td>
  2367. <td valign="bottom" style="width: 15px;">
  2368. &nbsp;
  2369. </td>
  2370. </tr>
  2371. </table>
  2372. </td>
  2373. </tr>
  2374. </table>
  2375. <table class="ApplyFilter">
  2376. <tr>
  2377. <td class="ApplyFilterColumn1">
  2378. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  2379. </td>
  2380. <td class="ApplyFilterColumn2">
  2381. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  2382. </td>
  2383. <td class="ApplyFilterColumn2_5">
  2384. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  2385. </td>
  2386. <td class="ApplyFilterColumn3">
  2387. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  2388. </td>
  2389. </tr>
  2390. </table>
  2391. </td>
  2392. </tr>
  2393. </table>
  2394. </div>
  2395. </td>
  2396. </tr>
  2397. </table>
  2398. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  2399. height: 70px; display: none; background: white; border: 1px solid #000;'>
  2400. <br />
  2401. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  2402. <br />
  2403. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  2404. <!--Close Window-->
  2405. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  2406. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  2407. </a>&nbsp;&nbsp;</div>
  2408. </div>
  2409. <div id ="VisualAttributePopup" class="hidden" >
  2410. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  2411. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  2412. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  2413. </div>
  2414. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id="loadingimgspinner" src="/Images/spinner2.gif" /></div>
  2415. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  2416. <table id="tblAttributes" >
  2417. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  2418. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  2419. <td class="visualAttributeImage">
  2420. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  2421. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  2422. </td>
  2423. <td>
  2424. <table class="visualAttValueDesc">
  2425. <tr>
  2426. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  2427. </tr>
  2428. <tr>
  2429. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  2430. </tr>
  2431. <tr data-bind="if: ImagePath1 ">
  2432. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs" /></div></td>
  2433. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  2434. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  2435. </tr>
  2436. </table>
  2437. </td>
  2438. </tr>
  2439. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  2440. </tbody>
  2441. </table>
  2442. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id="Img1" src="/Images/spinner2.gif" />
  2443. <div data-bind="if: hasMoreOptions" align="center">
  2444. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  2445. </div>
  2446. </div>
  2447. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  2448. <div class="visualAttributesBtnDiv">
  2449. <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" />
  2450. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  2451. <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" />
  2452. </div>
  2453. </div>
  2454. <style type="text/css">.ui-dialog{position:absolute;padding:0px !important;width:300px;overflow:hidden;}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.6em !important;background:none;overflow:auto;zoom:1;max-height:450px;}.ui-dialog .ui-dialog-titlebar{padding:.4em .5em !important;position:relative;background:none repeat scroll 0 0 #E0E4E9;font-size:15px;}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:0;}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:0;}</style>
  2455. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2456. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  2457. </div>
  2458. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  2459. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  2460. <script src='../../../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  2461. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2462. <script type="text/javascript">
  2463. $().ready(function () {
  2464. ko.applyBindings(new DisplayAttributesModel());
  2465. ko.bindingHandlers.hoverToggle = {
  2466. update: function (element, valueAccessor) {
  2467. var css = valueAccessor();
  2468. var isSelected = $(element).hasClass("selectedAttribute");
  2469. if (!isSelected) {
  2470. ko.utils.registerEventHandler(element, "mouseenter", function () {
  2471. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  2472. });
  2473. ko.utils.registerEventHandler(element, "mouseleave", function () {
  2474. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  2475. });
  2476. }
  2477. }
  2478. };
  2479. });
  2480. </script>
  2481. </div>
  2482. <div id="refine-mfg-logo2">
  2483. </div>
  2484. </div>
  2485. <br />
  2486. <table border="0" width="100%">
  2487. <tr>
  2488. <td>
  2489. </td>
  2490. </tr>
  2491. <tr>
  2492. <td>
  2493. <!--- Search Features --->
  2494. </td>
  2495. </tr>
  2496. <tr>
  2497. <td>
  2498. <div id="refine-page">
  2499. </div>
  2500. </td>
  2501. </tr>
  2502. <tr>
  2503. <td class="refine-show-products">
  2504. <span class="redtextb">
  2505. </span> <span class="redtextb">
  2506. </span> <span class="redtextb">
  2507. </span> <span class="redtextb">
  2508. </span>
  2509. <span class="redtextb">
  2510. </span>
  2511. </td>
  2512. </tr>
  2513. <tr>
  2514. <td>
  2515. </td>
  2516. </tr>
  2517. <tr>
  2518. <td>
  2519. <!--- Special Order Parts New --->
  2520. <!-- SOP Section 1 -->
  2521. </td>
  2522. </tr>
  2523. </table>
  2524. <div id="searchResultsTbl">
  2525. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  2526. <tr>
  2527. <td class="tdSearchResultsPagingTop">
  2528. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  2529. <tr>
  2530. <td>
  2531. <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" />
  2532. </td>
  2533. <td>
  2534. <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" />
  2535. </td>
  2536. <td>
  2537. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  2538. </td>
  2539. <td style="padding-left: 40px;">
  2540. <div class="floatrightpager">
  2541. <span class="bold">
  2542. 页面:
  2543. </span>
  2544. <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/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_553" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=13825">554</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=25">下一页</a></span>
  2545. </div>
  2546. </td>
  2547. </tr>
  2548. </table>
  2549. </td>
  2550. </tr>
  2551. <tr>
  2552. <td>
  2553. <div>
  2554. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  2555. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  2556. <th class="td-select" scope="col" style="width:35px;">
  2557. 选择
  2558. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  2559. </th><th scope="col">制造商 零件编号
  2560. </th><th scope="col">制造商
  2561. </th><th scope="col">描述
  2562. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../../Images/Search/pdf.gif" alt="文件" />
  2563. </th><th scope="col">供货情况
  2564. </th><th scope="col">单价(含17%增值税)
  2565. <br />
  2566. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  2567. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  2568. </th><th class="SearchResultParametricColumnHeading" scope="col">产品
  2569. </th><th class="SearchResultParametricColumnHeading" scope="col">逻辑元件数量
  2570. </th><th class="SearchResultParametricColumnHeading" scope="col">逻辑数组块数量——LAB
  2571. </th><th class="SearchResultParametricColumnHeading" scope="col">输入/输出端数量
  2572. </th><th class="SearchResultParametricColumnHeading" scope="col">工作电源电压
  2573. </th><th class="SearchResultParametricColumnHeading" scope="col">最大工作温度
  2574. </th><th class="SearchResultParametricColumnHeading" scope="col">安装风格
  2575. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  2576. </th>
  2577. </tr><tr class="SearchResultsSortCell">
  2578. <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$ctl19&#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$ctl21&#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_ctl23" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl23&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl25&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 零件编号 Descending 排序" /></a></td><td><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$ctl27&#39;,&#39;&#39;)"><img title="按 制造商 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl29&#39;,&#39;&#39;)"><img title="按 制造商 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 Descending 排序" /></a></td><td></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$ctl31&#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$ctl33&#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$ctl35&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Product>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl37&#39;,&#39;&#39;)"><img title="按 产品 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 产品 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Product>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl39&#39;,&#39;&#39;)"><img title="按 产品 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 产品 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of Logic Elements>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl41&#39;,&#39;&#39;)"><img title="按 逻辑元件数量 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 逻辑元件数量 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of Logic Elements>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl43&#39;,&#39;&#39;)"><img title="按 逻辑元件数量 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 逻辑元件数量 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of Logic Array Blocks - LABs>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl45&#39;,&#39;&#39;)"><img title="按 逻辑数组块数量——LAB Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 逻辑数组块数量——LAB Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of Logic Array Blocks - LABs>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl47&#39;,&#39;&#39;)"><img title="按 逻辑数组块数量——LAB Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 逻辑数组块数量——LAB Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of I/Os>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl49&#39;,&#39;&#39;)"><img title="按 输入/输出端数量 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 输入/输出端数量 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of I/Os>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl51&#39;,&#39;&#39;)"><img title="按 输入/输出端数量 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 输入/输出端数量 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Operating Supply Voltage>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl53&#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$ctl55&#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$ctl57&#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$ctl59&#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$ctl61&#39;,&#39;&#39;)"><img title="按 安装风格 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 安装风格 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Mounting Style>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl63&#39;,&#39;&#39;)"><img title="按 安装风格 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 安装风格 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl65&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 封装 / 箱体 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl67&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 / 箱体 Descending 排序" /></a></td>
  2579. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M02DCV36C8G" data-index="3">
  2580. <td class="td-select" align="center">
  2581. <div style="padding: 5px 5px 0 5px;">
  2582. <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>
  2583. </div>
  2584. </td><td><a href='/ProductDetail/Altera-Corporation/10M02DCV36C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojWa7qUl1sFV9ApUqPO0Id%2fA%3d%3d'><img title='Altera Corporation 10M02DCV36C8G' alt='Altera Corporation 10M02DCV36C8G' id=1431121580 src='/images/mouserimages/sm/WLCSP_36_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/WLCSP_36_t.jpg</div></a></td><td>
  2585. <div style="text-align:left;">
  2586. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M02DCV36C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojWa7qUl1sFV9ApUqPO0Id%2fA%3d%3d">989-10M02DCV36C8G</a><br />
  2587. <br />
  2588. <br />
  2589. 要购买完整 卷轴,请订购 1000 的倍数:
  2590. </div></td><td>
  2591. <div class="mfrDiv">
  2592. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M02DCV36C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojWa7qUl1sFV9ApUqPO0Id%2fA%3d%3d">10M02DCV36C8G</a><br />
  2593. <br />
  2594. <div style="width: 100%; text-align: center;">
  2595. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2596. </div>
  2597. <div style="width: 100%; text-align: center;">
  2598. </div>
  2599. </div>
  2600. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  2601. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 27 I/O, 36WLCSP
  2602. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2603. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  2604. </div>
  2605. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2606. </div>
  2607. </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;Altera Corporation&quot;,&quot;989-10M02DCV36C8G | 10M02DCV36C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  2608. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">765<br/>有库存</span>
  2609. <table>
  2610. <tr align="center">
  2611. <td style="padding-top: 5px">
  2612. </td>
  2613. </tr>
  2614. <tr align="center">
  2615. <td style="padding-top: 5px; padding-bottom: 5px">
  2616. </td>
  2617. </tr>
  2618. </table></td><td>
  2619. <table class="PriceBreaks" cellspacing="0" border="0">
  2620. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2621. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2622. </td>
  2623. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2624. </td>
  2625. </tr>
  2626. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2627. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2628. 剪切带
  2629. </td>
  2630. </tr>
  2631. <tr>
  2632. <td class="PriceBreakQuantity">
  2633. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  2634. </td>
  2635. <td class="PriceBreakPrice">
  2636. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥29.1096</span>
  2637. </td>
  2638. </tr>
  2639. <tr>
  2640. <td class="PriceBreakQuantity">
  2641. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  2642. </td>
  2643. <td class="PriceBreakPrice">
  2644. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥23.2596</span>
  2645. </td>
  2646. </tr>
  2647. <tr>
  2648. <td class="PriceBreakQuantity">
  2649. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,100);">100:</a>
  2650. </td>
  2651. <td class="PriceBreakPrice">
  2652. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥22.7214</span>
  2653. </td>
  2654. </tr>
  2655. <tr>
  2656. <td class="PriceBreakQuantity">
  2657. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,500);">500:</a>
  2658. </td>
  2659. <td class="PriceBreakPrice">
  2660. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥21.8673</span>
  2661. </td>
  2662. </tr>
  2663. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2664. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2665. 卷轴
  2666. </td>
  2667. </tr>
  2668. <tr>
  2669. <td class="PriceBreakQuantity">
  2670. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(1,1000);">1,000:</a>
  2671. </td>
  2672. <td class="PriceBreakPrice">
  2673. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥21.8673</span>
  2674. </td>
  2675. </tr>
  2676. <tr>
  2677. <td><br /></td>
  2678. </tr>
  2679. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2680. <td colspan="2" style="text-align: center;">
  2681. </td>
  2682. </tr>
  2683. </table>
  2684. </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;)">
  2685. <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 />
  2686. <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="购买 10M02DCV36C8G" class="buy-button" /><br />
  2687. <table cellspacing="0" border="0" style="width: 100%;">
  2688. <tr>
  2689. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2690. 最低:
  2691. </td>
  2692. <td style="padding-left: 2px; text-align: left;">
  2693. 1
  2694. </td>
  2695. </tr>
  2696. <tr>
  2697. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2698. 多个:
  2699. </td>
  2700. <td style="padding-left: 2px; text-align: left;">
  2701. 1
  2702. </td>
  2703. </tr>
  2704. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_trReel">
  2705. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2706. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(1,1000);">卷轴</a>:
  2707. </td>
  2708. <td style="padding-left: 2px; text-align: left;">
  2709. <em class="SearchResultsReel">
  2710. 1,000
  2711. </em>
  2712. </td>
  2713. </tr>
  2714. </table>
  2715. </div>
  2716. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  2717. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2718. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2fkwx8I%252bxrLNw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2fkwx8I%252bxrLNw%3d%3d" target="_blank">详细信息</a>
  2719. </div>
  2720. </td><td>MAX10
  2721. </td><td>2000
  2722. </td><td>125
  2723. </td><td>160 I/O
  2724. </td><td>1.2 V/2.5 V
  2725. </td><td>+ 85 C
  2726. </td><td>SMD/SMT
  2727. </td><td>WLCSP-36
  2728. </td>
  2729. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M08SCE144I7G" data-index="4">
  2730. <td class="td-select" align="center">
  2731. <div style="padding: 5px 5px 0 5px;">
  2732. <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>
  2733. </div>
  2734. </td><td><a href='/ProductDetail/Altera-Corporation/10M08SCE144I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSxr0nZsnFK2pOQr1fx7aCIg%3d%3d'><img title='Altera Corporation 10M08SCE144I7G' alt='Altera Corporation 10M08SCE144I7G' id=1312005002 src='/images/mouserimages/sm/QFP_144_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/QFP_144_t.jpg</div></a></td><td>
  2735. <div style="text-align:left;">
  2736. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M08SCE144I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSxr0nZsnFK2pOQr1fx7aCIg%3d%3d">989-10M08SCE144I7G</a><br />
  2737. <br />
  2738. <br />
  2739. </div></td><td>
  2740. <div class="mfrDiv">
  2741. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M08SCE144I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSxr0nZsnFK2pOQr1fx7aCIg%3d%3d">10M08SCE144I7G</a><br />
  2742. <br />
  2743. <div style="width: 100%; text-align: center;">
  2744. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2745. </div>
  2746. <div style="width: 100%; text-align: center;">
  2747. </div>
  2748. </div>
  2749. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  2750. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 101 I/O, 144EQFP
  2751. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2752. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  2753. </div>
  2754. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2755. </div>
  2756. </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;Altera Corporation&quot;,&quot;989-10M08SCE144I7G | 10M08SCE144I7G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  2757. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">80<br/>有库存</span>
  2758. <table>
  2759. <tr align="center">
  2760. <td style="padding-top: 5px">
  2761. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../../ProductDetail/Altera-Corporation/10M08SCE144I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSxr0nZsnFK2pOQr1fx7aCIg%3d%3d">更多信息可用 </a>
  2762. </td>
  2763. </tr>
  2764. <tr align="center">
  2765. <td style="padding-top: 5px; padding-bottom: 5px">
  2766. </td>
  2767. </tr>
  2768. </table></td><td>
  2769. <table class="PriceBreaks" cellspacing="0" border="0">
  2770. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2771. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2772. </td>
  2773. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2774. </td>
  2775. </tr>
  2776. <tr>
  2777. <td class="PriceBreakQuantity">
  2778. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  2779. </td>
  2780. <td class="PriceBreakPrice">
  2781. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥179.2791</span>
  2782. </td>
  2783. </tr>
  2784. <tr>
  2785. <td class="PriceBreakQuantity">
  2786. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,25);">25:</a>
  2787. </td>
  2788. <td class="PriceBreakPrice">
  2789. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥143.3952</span>
  2790. </td>
  2791. </tr>
  2792. <tr>
  2793. <td class="PriceBreakQuantity">
  2794. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  2795. </td>
  2796. <td class="PriceBreakPrice">
  2797. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥139.8501</span>
  2798. </td>
  2799. </tr>
  2800. <tr>
  2801. <td class="PriceBreakQuantity">
  2802. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,500);">500:</a>
  2803. </td>
  2804. <td class="PriceBreakPrice">
  2805. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥134.4564</span>
  2806. </td>
  2807. </tr>
  2808. <tr>
  2809. <td><br /></td>
  2810. </tr>
  2811. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2812. <td colspan="2" style="text-align: center;">
  2813. </td>
  2814. </tr>
  2815. </table>
  2816. </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;)">
  2817. <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 />
  2818. <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="购买 10M08SCE144I7G" class="buy-button" /><br />
  2819. <table cellspacing="0" border="0" style="width: 100%;">
  2820. <tr>
  2821. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2822. 最低:
  2823. </td>
  2824. <td style="padding-left: 2px; text-align: left;">
  2825. 1
  2826. </td>
  2827. </tr>
  2828. <tr>
  2829. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2830. 多个:
  2831. </td>
  2832. <td style="padding-left: 2px; text-align: left;">
  2833. 1
  2834. </td>
  2835. </tr>
  2836. </table>
  2837. </div>
  2838. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  2839. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2840. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pLuI7vNanHygw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pLuI7vNanHygw%3d%3d" target="_blank">详细信息</a>
  2841. </div>
  2842. </td><td>MAX10
  2843. </td><td>8000
  2844. </td><td>500
  2845. </td><td>101 I/O
  2846. </td><td>1.63 V
  2847. </td><td>+ 100 C
  2848. </td><td>SMD/SMT
  2849. </td><td>EQFP-144
  2850. </td>
  2851. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M02SCM153I7G" data-index="5">
  2852. <td class="td-select" align="center">
  2853. <div style="padding: 5px 5px 0 5px;">
  2854. <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>
  2855. </div>
  2856. </td><td><a href='/ProductDetail/Altera-Corporation/10M02SCM153I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojBN%2fSDduyWd6wqNgDNQe%252bHA%3d%3d'><img title='Altera Corporation 10M02SCM153I7G' alt='Altera Corporation 10M02SCM153I7G' id=1431121594 src='/images/mouserimages/sm/BGA_169_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_169_t.jpg</div></a></td><td>
  2857. <div style="text-align:left;">
  2858. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M02SCM153I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojBN%2fSDduyWd6wqNgDNQe%252bHA%3d%3d">989-10M02SCM153I7G</a><br />
  2859. <br />
  2860. <br />
  2861. </div></td><td>
  2862. <div class="mfrDiv">
  2863. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M02SCM153I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojBN%2fSDduyWd6wqNgDNQe%252bHA%3d%3d">10M02SCM153I7G</a><br />
  2864. <br />
  2865. <div style="width: 100%; text-align: center;">
  2866. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2867. </div>
  2868. <div style="width: 100%; text-align: center;">
  2869. </div>
  2870. </div>
  2871. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  2872. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 112 I/O, 153MBGA
  2873. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2874. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  2875. </div>
  2876. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2877. </div>
  2878. </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;Altera Corporation&quot;,&quot;989-10M02SCM153I7G | 10M02SCM153I7G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  2879. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">276<br/>有库存</span>
  2880. <table>
  2881. <tr align="center">
  2882. <td style="padding-top: 5px">
  2883. </td>
  2884. </tr>
  2885. <tr align="center">
  2886. <td style="padding-top: 5px; padding-bottom: 5px">
  2887. </td>
  2888. </tr>
  2889. </table></td><td>
  2890. <table class="PriceBreaks" cellspacing="0" border="0">
  2891. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2892. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2893. </td>
  2894. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2895. </td>
  2896. </tr>
  2897. <tr>
  2898. <td class="PriceBreakQuantity">
  2899. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  2900. </td>
  2901. <td class="PriceBreakPrice">
  2902. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥62.8407</span>
  2903. </td>
  2904. </tr>
  2905. <tr>
  2906. <td class="PriceBreakQuantity">
  2907. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  2908. </td>
  2909. <td class="PriceBreakPrice">
  2910. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥50.2866</span>
  2911. </td>
  2912. </tr>
  2913. <tr>
  2914. <td class="PriceBreakQuantity">
  2915. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  2916. </td>
  2917. <td class="PriceBreakPrice">
  2918. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥48.9762</span>
  2919. </td>
  2920. </tr>
  2921. <tr>
  2922. <td class="PriceBreakQuantity">
  2923. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,500);">500:</a>
  2924. </td>
  2925. <td class="PriceBreakPrice">
  2926. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥47.1276</span>
  2927. </td>
  2928. </tr>
  2929. <tr>
  2930. <td><br /></td>
  2931. </tr>
  2932. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2933. <td colspan="2" style="text-align: center;">
  2934. </td>
  2935. </tr>
  2936. </table>
  2937. </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;)">
  2938. <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 />
  2939. <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="购买 10M02SCM153I7G" class="buy-button" /><br />
  2940. <table cellspacing="0" border="0" style="width: 100%;">
  2941. <tr>
  2942. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2943. 最低:
  2944. </td>
  2945. <td style="padding-left: 2px; text-align: left;">
  2946. 1
  2947. </td>
  2948. </tr>
  2949. <tr>
  2950. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2951. 多个:
  2952. </td>
  2953. <td style="padding-left: 2px; text-align: left;">
  2954. 1
  2955. </td>
  2956. </tr>
  2957. </table>
  2958. </div>
  2959. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2960. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2961. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9g%252b0Y364EuFg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9g%252b0Y364EuFg%3d%3d" target="_blank">详细信息</a>
  2962. </div>
  2963. </td><td>
  2964. </td><td>
  2965. </td><td>
  2966. </td><td>
  2967. </td><td>
  2968. </td><td>
  2969. </td><td>SMD/SMT
  2970. </td><td>MBGA-153
  2971. </td>
  2972. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M08SCU169I7G" data-index="6">
  2973. <td class="td-select" align="center">
  2974. <div style="padding: 5px 5px 0 5px;">
  2975. <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>
  2976. </div>
  2977. </td><td><a href='/ProductDetail/Altera-Corporation/10M08SCU169I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fS7DPedFXzdo8J999tDE5yeA%3d%3d'><img title='Altera Corporation 10M08SCU169I7G' alt='Altera Corporation 10M08SCU169I7G' id=1312005008 src='/images/mouserimages/sm/BGA_169_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_169_t.jpg</div></a></td><td>
  2978. <div style="text-align:left;">
  2979. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M08SCU169I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fS7DPedFXzdo8J999tDE5yeA%3d%3d">989-10M08SCU169I7G</a><br />
  2980. <br />
  2981. <br />
  2982. </div></td><td>
  2983. <div class="mfrDiv">
  2984. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M08SCU169I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fS7DPedFXzdo8J999tDE5yeA%3d%3d">10M08SCU169I7G</a><br />
  2985. <br />
  2986. <div style="width: 100%; text-align: center;">
  2987. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2988. </div>
  2989. <div style="width: 100%; text-align: center;">
  2990. </div>
  2991. </div>
  2992. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  2993. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 130 I/O, 169UBGA
  2994. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2995. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  2996. </div>
  2997. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2998. </div>
  2999. </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;Altera Corporation&quot;,&quot;989-10M08SCU169I7G | 10M08SCU169I7G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  3000. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">152<br/>有库存</span>
  3001. <table>
  3002. <tr align="center">
  3003. <td style="padding-top: 5px">
  3004. </td>
  3005. </tr>
  3006. <tr align="center">
  3007. <td style="padding-top: 5px; padding-bottom: 5px">
  3008. </td>
  3009. </tr>
  3010. </table></td><td>
  3011. <table class="PriceBreaks" cellspacing="0" border="0">
  3012. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3013. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3014. </td>
  3015. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3016. </td>
  3017. </tr>
  3018. <tr>
  3019. <td class="PriceBreakQuantity">
  3020. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  3021. </td>
  3022. <td class="PriceBreakPrice">
  3023. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥114.5898</span>
  3024. </td>
  3025. </tr>
  3026. <tr>
  3027. <td class="PriceBreakQuantity">
  3028. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,25);">25:</a>
  3029. </td>
  3030. <td class="PriceBreakPrice">
  3031. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥91.6461</span>
  3032. </td>
  3033. </tr>
  3034. <tr>
  3035. <td class="PriceBreakQuantity">
  3036. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,100);">100:</a>
  3037. </td>
  3038. <td class="PriceBreakPrice">
  3039. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥89.4114</span>
  3040. </td>
  3041. </tr>
  3042. <tr>
  3043. <td class="PriceBreakQuantity">
  3044. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,500);">500:</a>
  3045. </td>
  3046. <td class="PriceBreakPrice">
  3047. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥85.9482</span>
  3048. </td>
  3049. </tr>
  3050. <tr>
  3051. <td><br /></td>
  3052. </tr>
  3053. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3054. <td colspan="2" style="text-align: center;">
  3055. </td>
  3056. </tr>
  3057. </table>
  3058. </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;)">
  3059. <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 />
  3060. <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="购买 10M08SCU169I7G" class="buy-button" /><br />
  3061. <table cellspacing="0" border="0" style="width: 100%;">
  3062. <tr>
  3063. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3064. 最低:
  3065. </td>
  3066. <td style="padding-left: 2px; text-align: left;">
  3067. 1
  3068. </td>
  3069. </tr>
  3070. <tr>
  3071. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3072. 多个:
  3073. </td>
  3074. <td style="padding-left: 2px; text-align: left;">
  3075. 1
  3076. </td>
  3077. </tr>
  3078. </table>
  3079. </div>
  3080. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  3081. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3082. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pIbpw060T%252bedQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pIbpw060T%252bedQ%3d%3d" target="_blank">详细信息</a>
  3083. </div>
  3084. </td><td>
  3085. </td><td>
  3086. </td><td>
  3087. </td><td>
  3088. </td><td>
  3089. </td><td>
  3090. </td><td>SMD/SMT
  3091. </td><td>UBGA-169
  3092. </td>
  3093. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M50SAE144C8G" data-index="7">
  3094. <td class="td-select" align="center">
  3095. <div style="padding: 5px 5px 0 5px;">
  3096. <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>
  3097. </div>
  3098. </td><td><a href='/ProductDetail/Altera-Corporation/10M50SAE144C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojPQ0GzLi%2fJBipgh%252bUSxsG3A%3d%3d'><img title='Altera Corporation 10M50SAE144C8G' alt='Altera Corporation 10M50SAE144C8G' id=1431121995 src='/images/mouserimages/sm/QFP_144_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/QFP_144_t.jpg</div></a></td><td>
  3099. <div style="text-align:left;">
  3100. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M50SAE144C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojPQ0GzLi%2fJBipgh%252bUSxsG3A%3d%3d">989-10M50SAE144C8G</a><br />
  3101. <br />
  3102. <br />
  3103. </div></td><td>
  3104. <div class="mfrDiv">
  3105. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M50SAE144C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojPQ0GzLi%2fJBipgh%252bUSxsG3A%3d%3d">10M50SAE144C8G</a><br />
  3106. <br />
  3107. <div style="width: 100%; text-align: center;">
  3108. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3109. </div>
  3110. <div style="width: 100%; text-align: center;">
  3111. </div>
  3112. </div>
  3113. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  3114. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 101 I/O, 144EQFP
  3115. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3116. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  3117. </div>
  3118. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3119. </div>
  3120. </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;Altera Corporation&quot;,&quot;989-10M50SAE144C8G | 10M50SAE144C8G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  3121. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">27<br/>有库存</span>
  3122. <table>
  3123. <tr align="center">
  3124. <td style="padding-top: 5px">
  3125. </td>
  3126. </tr>
  3127. <tr align="center">
  3128. <td style="padding-top: 5px; padding-bottom: 5px">
  3129. </td>
  3130. </tr>
  3131. </table></td><td>
  3132. <table class="PriceBreaks" cellspacing="0" border="0">
  3133. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3134. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3135. </td>
  3136. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3137. </td>
  3138. </tr>
  3139. <tr>
  3140. <td class="PriceBreakQuantity">
  3141. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  3142. </td>
  3143. <td class="PriceBreakPrice">
  3144. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥514.9638</span>
  3145. </td>
  3146. </tr>
  3147. <tr>
  3148. <td class="PriceBreakQuantity">
  3149. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
  3150. </td>
  3151. <td class="PriceBreakPrice">
  3152. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥432.5607</span>
  3153. </td>
  3154. </tr>
  3155. <tr>
  3156. <td class="PriceBreakQuantity">
  3157. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,100);">100:</a>
  3158. </td>
  3159. <td class="PriceBreakPrice">
  3160. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥422.2413</span>
  3161. </td>
  3162. </tr>
  3163. <tr>
  3164. <td><br /></td>
  3165. </tr>
  3166. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  3167. <td colspan="2" style="text-align: center;">
  3168. </td>
  3169. </tr>
  3170. </table>
  3171. </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;)">
  3172. <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 />
  3173. <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="购买 10M50SAE144C8G" class="buy-button" /><br />
  3174. <table cellspacing="0" border="0" style="width: 100%;">
  3175. <tr>
  3176. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3177. 最低:
  3178. </td>
  3179. <td style="padding-left: 2px; text-align: left;">
  3180. 1
  3181. </td>
  3182. </tr>
  3183. <tr>
  3184. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3185. 多个:
  3186. </td>
  3187. <td style="padding-left: 2px; text-align: left;">
  3188. 1
  3189. </td>
  3190. </tr>
  3191. </table>
  3192. </div>
  3193. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  3194. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3195. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2ftEMxR9C6ZPQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2ftEMxR9C6ZPQ%3d%3d" target="_blank">详细信息</a>
  3196. </div>
  3197. </td><td>
  3198. </td><td>
  3199. </td><td>
  3200. </td><td>
  3201. </td><td>
  3202. </td><td>
  3203. </td><td>SMD/SMT
  3204. </td><td>EQFP-144
  3205. </td>
  3206. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M16SAU169C8G" data-index="8">
  3207. <td class="td-select" align="center">
  3208. <div style="padding: 5px 5px 0 5px;">
  3209. <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>
  3210. </div>
  3211. </td><td><a href='/ProductDetail/Altera-Corporation/10M16SAU169C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uoj%2fO43IMCuM5IMTH165IR4%252bw%3d%3d'><img title='Altera Corporation 10M16SAU169C8G' alt='Altera Corporation 10M16SAU169C8G' id=1431121826 src='/images/altera/sm/Max_10_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/altera/images/Max_10_DSL.JPG</div></a></td><td>
  3212. <div style="text-align:left;">
  3213. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M16SAU169C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uoj%2fO43IMCuM5IMTH165IR4%252bw%3d%3d">989-10M16SAU169C8G</a><br />
  3214. <br />
  3215. <br />
  3216. </div></td><td>
  3217. <div class="mfrDiv">
  3218. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M16SAU169C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uoj%2fO43IMCuM5IMTH165IR4%252bw%3d%3d">10M16SAU169C8G</a><br />
  3219. <br />
  3220. <div style="width: 100%; text-align: center;">
  3221. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3222. </div>
  3223. <div style="width: 100%; text-align: center;">
  3224. </div>
  3225. </div>
  3226. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  3227. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 130 I/O, 169UBGA
  3228. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3229. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  3230. </div>
  3231. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3232. </div>
  3233. </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;Altera Corporation&quot;,&quot;989-10M16SAU169C8G | 10M16SAU169C8G&quot;]);" href="http://www.mouser.com/ds/2/591/br-max10-brochure-740801.pdf" target="_blank">数据表</a>
  3234. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">162<br/>有库存</span>
  3235. <table>
  3236. <tr align="center">
  3237. <td style="padding-top: 5px">
  3238. </td>
  3239. </tr>
  3240. <tr align="center">
  3241. <td style="padding-top: 5px; padding-bottom: 5px">
  3242. </td>
  3243. </tr>
  3244. </table></td><td>
  3245. <table class="PriceBreaks" cellspacing="0" border="0">
  3246. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3247. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3248. </td>
  3249. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3250. </td>
  3251. </tr>
  3252. <tr>
  3253. <td class="PriceBreakQuantity">
  3254. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  3255. </td>
  3256. <td class="PriceBreakPrice">
  3257. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥255.06</span>
  3258. </td>
  3259. </tr>
  3260. <tr>
  3261. <td class="PriceBreakQuantity">
  3262. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  3263. </td>
  3264. <td class="PriceBreakPrice">
  3265. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥204.0714</span>
  3266. </td>
  3267. </tr>
  3268. <tr>
  3269. <td class="PriceBreakQuantity">
  3270. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  3271. </td>
  3272. <td class="PriceBreakPrice">
  3273. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥198.9117</span>
  3274. </td>
  3275. </tr>
  3276. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  3277. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3278. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(6,500);">500:</a>
  3279. </td>
  3280. <td class="PriceBreakPrice">
  3281. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=989-10M16SAU169C8G&amp;quantity=500&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Altera Corporation&quot;,&quot;989-10M16SAU169C8G&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  3282. </td>
  3283. </tr>
  3284. <tr>
  3285. <td><br /></td>
  3286. </tr>
  3287. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  3288. <td colspan="2" style="text-align: center;">
  3289. </td>
  3290. </tr>
  3291. </table>
  3292. </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;)">
  3293. <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 />
  3294. <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="购买 10M16SAU169C8G" class="buy-button" /><br />
  3295. <table cellspacing="0" border="0" style="width: 100%;">
  3296. <tr>
  3297. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3298. 最低:
  3299. </td>
  3300. <td style="padding-left: 2px; text-align: left;">
  3301. 1
  3302. </td>
  3303. </tr>
  3304. <tr>
  3305. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3306. 多个:
  3307. </td>
  3308. <td style="padding-left: 2px; text-align: left;">
  3309. 1
  3310. </td>
  3311. </tr>
  3312. </table>
  3313. </div>
  3314. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  3315. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3316. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9tAcYw4zL3mA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9tAcYw4zL3mA%3d%3d" target="_blank">详细信息</a>
  3317. </div>
  3318. </td><td>MAX10
  3319. </td><td>16000
  3320. </td><td>1000
  3321. </td><td>130 I/O
  3322. </td><td>3 V/3.3 V
  3323. </td><td>+ 85 C
  3324. </td><td>SMD/SMT
  3325. </td><td>UBGA-169
  3326. </td>
  3327. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M08DCF484C8G" data-index="9">
  3328. <td class="td-select" align="center">
  3329. <div style="padding: 5px 5px 0 5px;">
  3330. <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>
  3331. </div>
  3332. </td><td><a href='/ProductDetail/Altera-Corporation/10M08DCF484C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSAGPZF2nnGwlm1O8pYIzBQQ%3d%3d'><img title='Altera Corporation 10M08DCF484C8G' alt='Altera Corporation 10M08DCF484C8G' id=1312004958 src='/images/mouserimages/sm/BGA_484_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_484_t.jpg</div></a></td><td>
  3333. <div style="text-align:left;">
  3334. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M08DCF484C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSAGPZF2nnGwlm1O8pYIzBQQ%3d%3d">989-10M08DCF484C8G</a><br />
  3335. <br />
  3336. <br />
  3337. </div></td><td>
  3338. <div class="mfrDiv">
  3339. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M08DCF484C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSAGPZF2nnGwlm1O8pYIzBQQ%3d%3d">10M08DCF484C8G</a><br />
  3340. <br />
  3341. <div style="width: 100%; text-align: center;">
  3342. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3343. </div>
  3344. <div style="width: 100%; text-align: center;">
  3345. </div>
  3346. </div>
  3347. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  3348. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 250 I/O, 484FBGA
  3349. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3350. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  3351. </div>
  3352. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3353. </div>
  3354. </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;Altera Corporation&quot;,&quot;989-10M08DCF484C8G | 10M08DCF484C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  3355. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">69<br/>有库存</span>
  3356. <table>
  3357. <tr align="center">
  3358. <td style="padding-top: 5px">
  3359. </td>
  3360. </tr>
  3361. <tr align="center">
  3362. <td style="padding-top: 5px; padding-bottom: 5px">
  3363. </td>
  3364. </tr>
  3365. </table></td><td>
  3366. <table class="PriceBreaks" cellspacing="0" border="0">
  3367. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3368. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3369. </td>
  3370. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3371. </td>
  3372. </tr>
  3373. <tr>
  3374. <td class="PriceBreakQuantity">
  3375. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  3376. </td>
  3377. <td class="PriceBreakPrice">
  3378. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥212.7762</span>
  3379. </td>
  3380. </tr>
  3381. <tr>
  3382. <td class="PriceBreakQuantity">
  3383. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,25);">25:</a>
  3384. </td>
  3385. <td class="PriceBreakPrice">
  3386. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥170.1882</span>
  3387. </td>
  3388. </tr>
  3389. <tr>
  3390. <td class="PriceBreakQuantity">
  3391. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  3392. </td>
  3393. <td class="PriceBreakPrice">
  3394. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥165.9528</span>
  3395. </td>
  3396. </tr>
  3397. <tr>
  3398. <td class="PriceBreakQuantity">
  3399. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,500);">500:</a>
  3400. </td>
  3401. <td class="PriceBreakPrice">
  3402. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥159.5646</span>
  3403. </td>
  3404. </tr>
  3405. <tr>
  3406. <td><br /></td>
  3407. </tr>
  3408. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3409. <td colspan="2" style="text-align: center;">
  3410. </td>
  3411. </tr>
  3412. </table>
  3413. </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;)">
  3414. <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 />
  3415. <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="购买 10M08DCF484C8G" class="buy-button" /><br />
  3416. <table cellspacing="0" border="0" style="width: 100%;">
  3417. <tr>
  3418. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3419. 最低:
  3420. </td>
  3421. <td style="padding-left: 2px; text-align: left;">
  3422. 1
  3423. </td>
  3424. </tr>
  3425. <tr>
  3426. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3427. 多个:
  3428. </td>
  3429. <td style="padding-left: 2px; text-align: left;">
  3430. 1
  3431. </td>
  3432. </tr>
  3433. </table>
  3434. </div>
  3435. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  3436. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3437. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pJLdS34G%2fh3Pg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pJLdS34G%2fh3Pg%3d%3d" target="_blank">详细信息</a>
  3438. </div>
  3439. </td><td>MAX10
  3440. </td><td>8000
  3441. </td><td>500
  3442. </td><td>250 I/O
  3443. </td><td>1.2 V/2.5 V
  3444. </td><td>+ 85 C
  3445. </td><td>SMD/SMT
  3446. </td><td>FBGA-484
  3447. </td>
  3448. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M16SCE144I7G" data-index="10">
  3449. <td class="td-select" align="center">
  3450. <div style="padding: 5px 5px 0 5px;">
  3451. <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>
  3452. </div>
  3453. </td><td><a href='/ProductDetail/Altera-Corporation/10M16SCE144I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uojyg2qGqmiqOWMWpW7HqBbuw%3d%3d'><img title='Altera Corporation 10M16SCE144I7G' alt='Altera Corporation 10M16SCE144I7G' id=1431121834 src='/images/mouserimages/sm/QFP_144_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/QFP_144_t.jpg</div></a></td><td>
  3454. <div style="text-align:left;">
  3455. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M16SCE144I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uojyg2qGqmiqOWMWpW7HqBbuw%3d%3d">989-10M16SCE144I7G</a><br />
  3456. <br />
  3457. <br />
  3458. </div></td><td>
  3459. <div class="mfrDiv">
  3460. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M16SCE144I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uojyg2qGqmiqOWMWpW7HqBbuw%3d%3d">10M16SCE144I7G</a><br />
  3461. <br />
  3462. <div style="width: 100%; text-align: center;">
  3463. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3464. </div>
  3465. <div style="width: 100%; text-align: center;">
  3466. </div>
  3467. </div>
  3468. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  3469. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 101 I/O, 144EQFP
  3470. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3471. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  3472. </div>
  3473. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3474. </div>
  3475. </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;Altera Corporation&quot;,&quot;989-10M16SCE144I7G | 10M16SCE144I7G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  3476. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">58<br/>有库存</span>
  3477. <table>
  3478. <tr align="center">
  3479. <td style="padding-top: 5px">
  3480. </td>
  3481. </tr>
  3482. <tr align="center">
  3483. <td style="padding-top: 5px; padding-bottom: 5px">
  3484. </td>
  3485. </tr>
  3486. </table></td><td>
  3487. <table class="PriceBreaks" cellspacing="0" border="0">
  3488. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3489. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3490. </td>
  3491. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3492. </td>
  3493. </tr>
  3494. <tr>
  3495. <td class="PriceBreakQuantity">
  3496. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  3497. </td>
  3498. <td class="PriceBreakPrice">
  3499. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥350.2395</span>
  3500. </td>
  3501. </tr>
  3502. <tr>
  3503. <td class="PriceBreakQuantity">
  3504. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,25);">25:</a>
  3505. </td>
  3506. <td class="PriceBreakPrice">
  3507. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥280.1565</span>
  3508. </td>
  3509. </tr>
  3510. <tr>
  3511. <td class="PriceBreakQuantity">
  3512. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,100);">100:</a>
  3513. </td>
  3514. <td class="PriceBreakPrice">
  3515. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥273.1482</span>
  3516. </td>
  3517. </tr>
  3518. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  3519. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3520. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(8,500);">500:</a>
  3521. </td>
  3522. <td class="PriceBreakPrice">
  3523. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=989-10M16SCE144I7G&amp;quantity=500&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Altera Corporation&quot;,&quot;989-10M16SCE144I7G&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  3524. </td>
  3525. </tr>
  3526. <tr>
  3527. <td><br /></td>
  3528. </tr>
  3529. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  3530. <td colspan="2" style="text-align: center;">
  3531. </td>
  3532. </tr>
  3533. </table>
  3534. </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;)">
  3535. <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 />
  3536. <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="购买 10M16SCE144I7G" class="buy-button" /><br />
  3537. <table cellspacing="0" border="0" style="width: 100%;">
  3538. <tr>
  3539. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3540. 最低:
  3541. </td>
  3542. <td style="padding-left: 2px; text-align: left;">
  3543. 1
  3544. </td>
  3545. </tr>
  3546. <tr>
  3547. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3548. 多个:
  3549. </td>
  3550. <td style="padding-left: 2px; text-align: left;">
  3551. 1
  3552. </td>
  3553. </tr>
  3554. </table>
  3555. </div>
  3556. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  3557. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3558. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9oU524bMJzmQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9oU524bMJzmQ%3d%3d" target="_blank">详细信息</a>
  3559. </div>
  3560. </td><td>
  3561. </td><td>
  3562. </td><td>
  3563. </td><td>
  3564. </td><td>
  3565. </td><td>
  3566. </td><td>SMD/SMT
  3567. </td><td>EQFP-144
  3568. </td>
  3569. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M04SCU169I7G" data-index="11">
  3570. <td class="td-select" align="center">
  3571. <div style="padding: 5px 5px 0 5px;">
  3572. <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>
  3573. </div>
  3574. </td><td><a href='/ProductDetail/Altera-Corporation/10M04SCU169I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSG5DoSWIJuhpwYUZPDyhlmA%3d%3d'><img title='Altera Corporation 10M04SCU169I7G' alt='Altera Corporation 10M04SCU169I7G' id=1311990001 src='/images/mouserimages/sm/BGA_169_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_169_t.jpg</div></a></td><td>
  3575. <div style="text-align:left;">
  3576. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M04SCU169I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSG5DoSWIJuhpwYUZPDyhlmA%3d%3d">989-10M04SCU169I7G</a><br />
  3577. <br />
  3578. <br />
  3579. </div></td><td>
  3580. <div class="mfrDiv">
  3581. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M04SCU169I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSG5DoSWIJuhpwYUZPDyhlmA%3d%3d">10M04SCU169I7G</a><br />
  3582. <br />
  3583. <div style="width: 100%; text-align: center;">
  3584. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3585. </div>
  3586. <div style="width: 100%; text-align: center;">
  3587. </div>
  3588. </div>
  3589. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  3590. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 130 I/O, 169UBGA
  3591. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3592. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  3593. </div>
  3594. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3595. </div>
  3596. </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;Altera Corporation&quot;,&quot;989-10M04SCU169I7G | 10M04SCU169I7G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  3597. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">146<br/>有库存</span>
  3598. <table>
  3599. <tr align="center">
  3600. <td style="padding-top: 5px">
  3601. </td>
  3602. </tr>
  3603. <tr align="center">
  3604. <td style="padding-top: 5px; padding-bottom: 5px">
  3605. </td>
  3606. </tr>
  3607. </table></td><td>
  3608. <table class="PriceBreaks" cellspacing="0" border="0">
  3609. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3610. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3611. </td>
  3612. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3613. </td>
  3614. </tr>
  3615. <tr>
  3616. <td class="PriceBreakQuantity">
  3617. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  3618. </td>
  3619. <td class="PriceBreakPrice">
  3620. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥98.8767</span>
  3621. </td>
  3622. </tr>
  3623. <tr>
  3624. <td class="PriceBreakQuantity">
  3625. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  3626. </td>
  3627. <td class="PriceBreakPrice">
  3628. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥79.092</span>
  3629. </td>
  3630. </tr>
  3631. <tr>
  3632. <td class="PriceBreakQuantity">
  3633. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,100);">100:</a>
  3634. </td>
  3635. <td class="PriceBreakPrice">
  3636. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥77.1615</span>
  3637. </td>
  3638. </tr>
  3639. <tr>
  3640. <td class="PriceBreakQuantity">
  3641. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,500);">500:</a>
  3642. </td>
  3643. <td class="PriceBreakPrice">
  3644. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥74.1546</span>
  3645. </td>
  3646. </tr>
  3647. <tr>
  3648. <td><br /></td>
  3649. </tr>
  3650. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3651. <td colspan="2" style="text-align: center;">
  3652. </td>
  3653. </tr>
  3654. </table>
  3655. </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;)">
  3656. <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 />
  3657. <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="购买 10M04SCU169I7G" class="buy-button" /><br />
  3658. <table cellspacing="0" border="0" style="width: 100%;">
  3659. <tr>
  3660. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3661. 最低:
  3662. </td>
  3663. <td style="padding-left: 2px; text-align: left;">
  3664. 1
  3665. </td>
  3666. </tr>
  3667. <tr>
  3668. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3669. 多个:
  3670. </td>
  3671. <td style="padding-left: 2px; text-align: left;">
  3672. 1
  3673. </td>
  3674. </tr>
  3675. </table>
  3676. </div>
  3677. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  3678. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3679. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=fr44ug%252b5BYu16P04RyKnqg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=fr44ug%252b5BYu16P04RyKnqg%3d%3d" target="_blank">详细信息</a>
  3680. </div>
  3681. </td><td>
  3682. </td><td>
  3683. </td><td>
  3684. </td><td>
  3685. </td><td>
  3686. </td><td>
  3687. </td><td>SMD/SMT
  3688. </td><td>UBGA-169
  3689. </td>
  3690. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M04SCE144I7G" data-index="12">
  3691. <td class="td-select" align="center">
  3692. <div style="padding: 5px 5px 0 5px;">
  3693. <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>
  3694. </div>
  3695. </td><td><a href='/ProductDetail/Altera-Corporation/10M04SCE144I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSAKxaRhphgJst4TKcXifh5w%3d%3d'><img title='Altera Corporation 10M04SCE144I7G' alt='Altera Corporation 10M04SCE144I7G' id=1311989995 src='/images/mouserimages/sm/QFP_144_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/QFP_144_t.jpg</div></a></td><td>
  3696. <div style="text-align:left;">
  3697. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M04SCE144I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSAKxaRhphgJst4TKcXifh5w%3d%3d">989-10M04SCE144I7G</a><br />
  3698. <br />
  3699. <br />
  3700. </div></td><td>
  3701. <div class="mfrDiv">
  3702. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M04SCE144I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSAKxaRhphgJst4TKcXifh5w%3d%3d">10M04SCE144I7G</a><br />
  3703. <br />
  3704. <div style="width: 100%; text-align: center;">
  3705. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3706. </div>
  3707. <div style="width: 100%; text-align: center;">
  3708. </div>
  3709. </div>
  3710. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  3711. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 101 I/O, 144EQFP
  3712. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3713. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  3714. </div>
  3715. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3716. </div>
  3717. </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;Altera Corporation&quot;,&quot;989-10M04SCE144I7G | 10M04SCE144I7G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  3718. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">150<br/>有库存</span>
  3719. <table>
  3720. <tr align="center">
  3721. <td style="padding-top: 5px">
  3722. </td>
  3723. </tr>
  3724. <tr align="center">
  3725. <td style="padding-top: 5px; padding-bottom: 5px">
  3726. </td>
  3727. </tr>
  3728. </table></td><td>
  3729. <table class="PriceBreaks" cellspacing="0" border="0">
  3730. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3731. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3732. </td>
  3733. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3734. </td>
  3735. </tr>
  3736. <tr>
  3737. <td class="PriceBreakQuantity">
  3738. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  3739. </td>
  3740. <td class="PriceBreakPrice">
  3741. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥117.3627</span>
  3742. </td>
  3743. </tr>
  3744. <tr>
  3745. <td class="PriceBreakQuantity">
  3746. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  3747. </td>
  3748. <td class="PriceBreakPrice">
  3749. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥93.8691</span>
  3750. </td>
  3751. </tr>
  3752. <tr>
  3753. <td class="PriceBreakQuantity">
  3754. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,100);">100:</a>
  3755. </td>
  3756. <td class="PriceBreakPrice">
  3757. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥91.5642</span>
  3758. </td>
  3759. </tr>
  3760. <tr>
  3761. <td class="PriceBreakQuantity">
  3762. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,500);">500:</a>
  3763. </td>
  3764. <td class="PriceBreakPrice">
  3765. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥88.0191</span>
  3766. </td>
  3767. </tr>
  3768. <tr>
  3769. <td><br /></td>
  3770. </tr>
  3771. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3772. <td colspan="2" style="text-align: center;">
  3773. </td>
  3774. </tr>
  3775. </table>
  3776. </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;)">
  3777. <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 />
  3778. <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="购买 10M04SCE144I7G" class="buy-button" /><br />
  3779. <table cellspacing="0" border="0" style="width: 100%;">
  3780. <tr>
  3781. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3782. 最低:
  3783. </td>
  3784. <td style="padding-left: 2px; text-align: left;">
  3785. 1
  3786. </td>
  3787. </tr>
  3788. <tr>
  3789. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3790. 多个:
  3791. </td>
  3792. <td style="padding-left: 2px; text-align: left;">
  3793. 1
  3794. </td>
  3795. </tr>
  3796. </table>
  3797. </div>
  3798. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  3799. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3800. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=K4SZ6hvA1jXls6FuityFUQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=K4SZ6hvA1jXls6FuityFUQ%3d%3d" target="_blank">详细信息</a>
  3801. </div>
  3802. </td><td>MAX10
  3803. </td><td>4000
  3804. </td><td>250
  3805. </td><td>101 I/O
  3806. </td><td>1.63 V
  3807. </td><td>+ 100 C
  3808. </td><td>SMD/SMT
  3809. </td><td>EQFP-144
  3810. </td>
  3811. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M08SCM153I7G" data-index="13">
  3812. <td class="td-select" align="center">
  3813. <div style="padding: 5px 5px 0 5px;">
  3814. <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>
  3815. </div>
  3816. </td><td><a href='/ProductDetail/Altera-Corporation/10M08SCM153I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSKgffFxSKdxihAmCV3txf9g%3d%3d'><img title='Altera Corporation 10M08SCM153I7G' alt='Altera Corporation 10M08SCM153I7G' id=1312005004 src='/images/mouserimages/sm/BGA_169_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_169_t.jpg</div></a></td><td>
  3817. <div style="text-align:left;">
  3818. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M08SCM153I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSKgffFxSKdxihAmCV3txf9g%3d%3d">989-10M08SCM153I7G</a><br />
  3819. <br />
  3820. <br />
  3821. </div></td><td>
  3822. <div class="mfrDiv">
  3823. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M08SCM153I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSKgffFxSKdxihAmCV3txf9g%3d%3d">10M08SCM153I7G</a><br />
  3824. <br />
  3825. <div style="width: 100%; text-align: center;">
  3826. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3827. </div>
  3828. <div style="width: 100%; text-align: center;">
  3829. </div>
  3830. </div>
  3831. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  3832. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 112 I/O, 153MBGA
  3833. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3834. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  3835. </div>
  3836. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3837. </div>
  3838. </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;Altera Corporation&quot;,&quot;989-10M08SCM153I7G | 10M08SCM153I7G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  3839. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">324<br/>有库存</span>
  3840. <table>
  3841. <tr align="center">
  3842. <td style="padding-top: 5px">
  3843. </td>
  3844. </tr>
  3845. <tr align="center">
  3846. <td style="padding-top: 5px; padding-bottom: 5px">
  3847. </td>
  3848. </tr>
  3849. </table></td><td>
  3850. <table class="PriceBreaks" cellspacing="0" border="0">
  3851. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3852. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3853. </td>
  3854. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3855. </td>
  3856. </tr>
  3857. <tr>
  3858. <td class="PriceBreakQuantity">
  3859. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  3860. </td>
  3861. <td class="PriceBreakPrice">
  3862. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥197.7651</span>
  3863. </td>
  3864. </tr>
  3865. <tr>
  3866. <td class="PriceBreakQuantity">
  3867. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  3868. </td>
  3869. <td class="PriceBreakPrice">
  3870. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥158.1723</span>
  3871. </td>
  3872. </tr>
  3873. <tr>
  3874. <td class="PriceBreakQuantity">
  3875. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,100);">100:</a>
  3876. </td>
  3877. <td class="PriceBreakPrice">
  3878. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥154.2528</span>
  3879. </td>
  3880. </tr>
  3881. <tr>
  3882. <td class="PriceBreakQuantity">
  3883. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,500);">500:</a>
  3884. </td>
  3885. <td class="PriceBreakPrice">
  3886. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥148.3209</span>
  3887. </td>
  3888. </tr>
  3889. <tr>
  3890. <td><br /></td>
  3891. </tr>
  3892. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3893. <td colspan="2" style="text-align: center;">
  3894. </td>
  3895. </tr>
  3896. </table>
  3897. </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;)">
  3898. <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 />
  3899. <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="购买 10M08SCM153I7G" class="buy-button" /><br />
  3900. <table cellspacing="0" border="0" style="width: 100%;">
  3901. <tr>
  3902. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3903. 最低:
  3904. </td>
  3905. <td style="padding-left: 2px; text-align: left;">
  3906. 1
  3907. </td>
  3908. </tr>
  3909. <tr>
  3910. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3911. 多个:
  3912. </td>
  3913. <td style="padding-left: 2px; text-align: left;">
  3914. 1
  3915. </td>
  3916. </tr>
  3917. </table>
  3918. </div>
  3919. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  3920. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3921. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pLSuFyicqVsqA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pLSuFyicqVsqA%3d%3d" target="_blank">详细信息</a>
  3922. </div>
  3923. </td><td>MAX10
  3924. </td><td>8000
  3925. </td><td>500
  3926. </td><td>112 I/O
  3927. </td><td>1.63 V
  3928. </td><td>+ 100 C
  3929. </td><td>SMD/SMT
  3930. </td><td>MBGA-153
  3931. </td>
  3932. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M02DCV36I7G" data-index="14">
  3933. <td class="td-select" align="center">
  3934. <div style="padding: 5px 5px 0 5px;">
  3935. <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>
  3936. </div>
  3937. </td><td><a href='/ProductDetail/Altera-Corporation/10M02DCV36I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uojy%2fQm7i1mcNwMQbmv5HWxgg%3d%3d'><img title='Altera Corporation 10M02DCV36I7G' alt='Altera Corporation 10M02DCV36I7G' id=1431121582 src='/images/mouserimages/sm/WLCSP_36_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/WLCSP_36_t.jpg</div></a></td><td>
  3938. <div style="text-align:left;">
  3939. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M02DCV36I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uojy%2fQm7i1mcNwMQbmv5HWxgg%3d%3d">989-10M02DCV36I7G</a><br />
  3940. <br />
  3941. <br />
  3942. 要购买完整 卷轴,请订购 1000 的倍数:
  3943. </div></td><td>
  3944. <div class="mfrDiv">
  3945. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M02DCV36I7G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uojy%2fQm7i1mcNwMQbmv5HWxgg%3d%3d">10M02DCV36I7G</a><br />
  3946. <br />
  3947. <div style="width: 100%; text-align: center;">
  3948. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3949. </div>
  3950. <div style="width: 100%; text-align: center;">
  3951. </div>
  3952. </div>
  3953. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  3954. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 27 I/O, 36WLCSP
  3955. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3956. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  3957. </div>
  3958. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3959. </div>
  3960. </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;Altera Corporation&quot;,&quot;989-10M02DCV36I7G | 10M02DCV36I7G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  3961. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">789<br/>有库存</span>
  3962. <table>
  3963. <tr align="center">
  3964. <td style="padding-top: 5px">
  3965. </td>
  3966. </tr>
  3967. <tr align="center">
  3968. <td style="padding-top: 5px; padding-bottom: 5px">
  3969. </td>
  3970. </tr>
  3971. </table></td><td>
  3972. <table class="PriceBreaks" cellspacing="0" border="0">
  3973. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3974. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3975. </td>
  3976. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3977. </td>
  3978. </tr>
  3979. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3980. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3981. 剪切带
  3982. </td>
  3983. </tr>
  3984. <tr>
  3985. <td class="PriceBreakQuantity">
  3986. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  3987. </td>
  3988. <td class="PriceBreakPrice">
  3989. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥38.8089</span>
  3990. </td>
  3991. </tr>
  3992. <tr>
  3993. <td class="PriceBreakQuantity">
  3994. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  3995. </td>
  3996. <td class="PriceBreakPrice">
  3997. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥31.0401</span>
  3998. </td>
  3999. </tr>
  4000. <tr>
  4001. <td class="PriceBreakQuantity">
  4002. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  4003. </td>
  4004. <td class="PriceBreakPrice">
  4005. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥30.2679</span>
  4006. </td>
  4007. </tr>
  4008. <tr>
  4009. <td class="PriceBreakQuantity">
  4010. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,500);">500:</a>
  4011. </td>
  4012. <td class="PriceBreakPrice">
  4013. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥29.1096</span>
  4014. </td>
  4015. </tr>
  4016. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4017. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4018. 卷轴
  4019. </td>
  4020. </tr>
  4021. <tr>
  4022. <td class="PriceBreakQuantity">
  4023. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(12,1000);">1,000:</a>
  4024. </td>
  4025. <td class="PriceBreakPrice">
  4026. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥29.1096</span>
  4027. </td>
  4028. </tr>
  4029. <tr>
  4030. <td><br /></td>
  4031. </tr>
  4032. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  4033. <td colspan="2" style="text-align: center;">
  4034. </td>
  4035. </tr>
  4036. </table>
  4037. </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;)">
  4038. <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 />
  4039. <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="购买 10M02DCV36I7G" class="buy-button" /><br />
  4040. <table cellspacing="0" border="0" style="width: 100%;">
  4041. <tr>
  4042. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4043. 最低:
  4044. </td>
  4045. <td style="padding-left: 2px; text-align: left;">
  4046. 1
  4047. </td>
  4048. </tr>
  4049. <tr>
  4050. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4051. 多个:
  4052. </td>
  4053. <td style="padding-left: 2px; text-align: left;">
  4054. 1
  4055. </td>
  4056. </tr>
  4057. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_trReel">
  4058. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4059. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(12,1000);">卷轴</a>:
  4060. </td>
  4061. <td style="padding-left: 2px; text-align: left;">
  4062. <em class="SearchResultsReel">
  4063. 1,000
  4064. </em>
  4065. </td>
  4066. </tr>
  4067. </table>
  4068. </div>
  4069. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  4070. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4071. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2fEDqDJWX1oDg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2fEDqDJWX1oDg%3d%3d" target="_blank">详细信息</a>
  4072. </div>
  4073. </td><td>
  4074. </td><td>
  4075. </td><td>
  4076. </td><td>
  4077. </td><td>
  4078. </td><td>
  4079. </td><td>SMD/SMT
  4080. </td><td>WLCSP-36
  4081. </td>
  4082. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M04DCF256C8G" data-index="15">
  4083. <td class="td-select" align="center">
  4084. <div style="padding: 5px 5px 0 5px;">
  4085. <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>
  4086. </div>
  4087. </td><td><a href='/ProductDetail/Altera-Corporation/10M04DCF256C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fS68XafC%2fZfn%252b9nDEAR5ONhA%3d%3d'><img title='Altera Corporation 10M04DCF256C8G' alt='Altera Corporation 10M04DCF256C8G' id=1312000007 src='/images/mouserimages/sm/BGA_256_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_256_t.jpg</div></a></td><td>
  4088. <div style="text-align:left;">
  4089. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M04DCF256C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fS68XafC%2fZfn%252b9nDEAR5ONhA%3d%3d">989-10M04DCF256C8G</a><br />
  4090. <br />
  4091. <br />
  4092. </div></td><td>
  4093. <div class="mfrDiv">
  4094. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M04DCF256C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fS68XafC%2fZfn%252b9nDEAR5ONhA%3d%3d">10M04DCF256C8G</a><br />
  4095. <br />
  4096. <div style="width: 100%; text-align: center;">
  4097. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4098. </div>
  4099. <div style="width: 100%; text-align: center;">
  4100. </div>
  4101. </div>
  4102. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  4103. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 178 I/O, 256FBGA
  4104. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4105. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  4106. </div>
  4107. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4108. </div>
  4109. </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;Altera Corporation&quot;,&quot;989-10M04DCF256C8G | 10M04DCF256C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  4110. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">264<br/>有库存</span>
  4111. <table>
  4112. <tr align="center">
  4113. <td style="padding-top: 5px">
  4114. </td>
  4115. </tr>
  4116. <tr align="center">
  4117. <td style="padding-top: 5px; padding-bottom: 5px">
  4118. </td>
  4119. </tr>
  4120. </table></td><td>
  4121. <table class="PriceBreaks" cellspacing="0" border="0">
  4122. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4123. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4124. </td>
  4125. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4126. </td>
  4127. </tr>
  4128. <tr>
  4129. <td class="PriceBreakQuantity">
  4130. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  4131. </td>
  4132. <td class="PriceBreakPrice">
  4133. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥99.1107</span>
  4134. </td>
  4135. </tr>
  4136. <tr>
  4137. <td class="PriceBreakQuantity">
  4138. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,25);">25:</a>
  4139. </td>
  4140. <td class="PriceBreakPrice">
  4141. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥79.3143</span>
  4142. </td>
  4143. </tr>
  4144. <tr>
  4145. <td class="PriceBreakQuantity">
  4146. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  4147. </td>
  4148. <td class="PriceBreakPrice">
  4149. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥77.3136</span>
  4150. </td>
  4151. </tr>
  4152. <tr>
  4153. <td class="PriceBreakQuantity">
  4154. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,500);">500:</a>
  4155. </td>
  4156. <td class="PriceBreakPrice">
  4157. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥74.3184</span>
  4158. </td>
  4159. </tr>
  4160. <tr>
  4161. <td><br /></td>
  4162. </tr>
  4163. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4164. <td colspan="2" style="text-align: center;">
  4165. </td>
  4166. </tr>
  4167. </table>
  4168. </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;)">
  4169. <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 />
  4170. <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="购买 10M04DCF256C8G" class="buy-button" /><br />
  4171. <table cellspacing="0" border="0" style="width: 100%;">
  4172. <tr>
  4173. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4174. 最低:
  4175. </td>
  4176. <td style="padding-left: 2px; text-align: left;">
  4177. 1
  4178. </td>
  4179. </tr>
  4180. <tr>
  4181. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4182. 多个:
  4183. </td>
  4184. <td style="padding-left: 2px; text-align: left;">
  4185. 1
  4186. </td>
  4187. </tr>
  4188. </table>
  4189. </div>
  4190. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  4191. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4192. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pLVPZfvvTSaAw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=l3zG6yga3pLVPZfvvTSaAw%3d%3d" target="_blank">详细信息</a>
  4193. </div>
  4194. </td><td>MAX10
  4195. </td><td>4000
  4196. </td><td>250
  4197. </td><td>178 I/O
  4198. </td><td>1.2 V/2.5 V
  4199. </td><td>+ 85 C
  4200. </td><td>SMD/SMT
  4201. </td><td>FBGA-256
  4202. </td>
  4203. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M16SCE144C8G" data-index="16">
  4204. <td class="td-select" align="center">
  4205. <div style="padding: 5px 5px 0 5px;">
  4206. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$chkSelect" onclick="javascript:RowSelected(16, this.checked);" /></span>
  4207. </div>
  4208. </td><td><a href='/ProductDetail/Altera-Corporation/10M16SCE144C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojBsc%252bTb1XT8zPnBmQvz0i9Q%3d%3d'><img title='Altera Corporation 10M16SCE144C8G' alt='Altera Corporation 10M16SCE144C8G' id=1431121832 src='/images/mouserimages/sm/QFP_144_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/QFP_144_t.jpg</div></a></td><td>
  4209. <div style="text-align:left;">
  4210. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M16SCE144C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojBsc%252bTb1XT8zPnBmQvz0i9Q%3d%3d">989-10M16SCE144C8G</a><br />
  4211. <br />
  4212. <br />
  4213. </div></td><td>
  4214. <div class="mfrDiv">
  4215. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M16SCE144C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojBsc%252bTb1XT8zPnBmQvz0i9Q%3d%3d">10M16SCE144C8G</a><br />
  4216. <br />
  4217. <div style="width: 100%; text-align: center;">
  4218. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4219. </div>
  4220. <div style="width: 100%; text-align: center;">
  4221. </div>
  4222. </div>
  4223. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  4224. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 101 I/O, 144EQFP
  4225. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4226. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  4227. </div>
  4228. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4229. </div>
  4230. </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;Altera Corporation&quot;,&quot;989-10M16SCE144C8G | 10M16SCE144C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  4231. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">96<br/>有库存</span>
  4232. <table>
  4233. <tr align="center">
  4234. <td style="padding-top: 5px">
  4235. </td>
  4236. </tr>
  4237. <tr align="center">
  4238. <td style="padding-top: 5px; padding-bottom: 5px">
  4239. </td>
  4240. </tr>
  4241. </table></td><td>
  4242. <table class="PriceBreaks" cellspacing="0" border="0">
  4243. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4244. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4245. </td>
  4246. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4247. </td>
  4248. </tr>
  4249. <tr>
  4250. <td class="PriceBreakQuantity">
  4251. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  4252. </td>
  4253. <td class="PriceBreakPrice">
  4254. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥262.6767</span>
  4255. </td>
  4256. </tr>
  4257. <tr>
  4258. <td class="PriceBreakQuantity">
  4259. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,25);">25:</a>
  4260. </td>
  4261. <td class="PriceBreakPrice">
  4262. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥210.1554</span>
  4263. </td>
  4264. </tr>
  4265. <tr>
  4266. <td class="PriceBreakQuantity">
  4267. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
  4268. </td>
  4269. <td class="PriceBreakPrice">
  4270. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥204.9255</span>
  4271. </td>
  4272. </tr>
  4273. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  4274. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4275. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(14,500);">500:</a>
  4276. </td>
  4277. <td class="PriceBreakPrice">
  4278. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=989-10M16SCE144C8G&amp;quantity=500&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Altera Corporation&quot;,&quot;989-10M16SCE144C8G&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  4279. </td>
  4280. </tr>
  4281. <tr>
  4282. <td><br /></td>
  4283. </tr>
  4284. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  4285. <td colspan="2" style="text-align: center;">
  4286. </td>
  4287. </tr>
  4288. </table>
  4289. </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;)">
  4290. <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 />
  4291. <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="购买 10M16SCE144C8G" class="buy-button" /><br />
  4292. <table cellspacing="0" border="0" style="width: 100%;">
  4293. <tr>
  4294. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4295. 最低:
  4296. </td>
  4297. <td style="padding-left: 2px; text-align: left;">
  4298. 1
  4299. </td>
  4300. </tr>
  4301. <tr>
  4302. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4303. 多个:
  4304. </td>
  4305. <td style="padding-left: 2px; text-align: left;">
  4306. 1
  4307. </td>
  4308. </tr>
  4309. </table>
  4310. </div>
  4311. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  4312. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4313. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9oRx91EzuQsA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9oRx91EzuQsA%3d%3d" target="_blank">详细信息</a>
  4314. </div>
  4315. </td><td>MAX10
  4316. </td><td>16000
  4317. </td><td>1000
  4318. </td><td>320 I/O
  4319. </td><td>3 V/3.3 V
  4320. </td><td>+ 85 C
  4321. </td><td>SMD/SMT
  4322. </td><td>EQFP-144
  4323. </td>
  4324. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M25SAE144C8G" data-index="17">
  4325. <td class="td-select" align="center">
  4326. <div style="padding: 5px 5px 0 5px;">
  4327. <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>
  4328. </div>
  4329. </td><td><a href='/ProductDetail/Altera-Corporation/10M25SAE144C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsSJ4%252bqNGjwHhKy8%2fQko3fN5aQZinKOkHKw%3d%3d'><img title='Altera Corporation 10M25SAE144C8G' alt='Altera Corporation 10M25SAE144C8G' id=1530212338 src='/images/altera/sm/Max_10_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/altera/images/Max_10_DSL.JPG</div></a></td><td>
  4330. <div style="text-align:left;">
  4331. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M25SAE144C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsSJ4%252bqNGjwHhKy8%2fQko3fN5aQZinKOkHKw%3d%3d">989-10M25SAE144C8G</a><br />
  4332. <br />
  4333. <br />
  4334. </div></td><td>
  4335. <div class="mfrDiv">
  4336. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M25SAE144C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsSJ4%252bqNGjwHhKy8%2fQko3fN5aQZinKOkHKw%3d%3d">10M25SAE144C8G</a><br />
  4337. <br />
  4338. <div style="width: 100%; text-align: center;">
  4339. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4340. </div>
  4341. <div style="width: 100%; text-align: center;">
  4342. </div>
  4343. </div>
  4344. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  4345. </td><td>FPGA - 现场可编程门阵列
  4346. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4347. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  4348. </div>
  4349. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4350. </div>
  4351. </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;Altera Corporation&quot;,&quot;989-10M25SAE144C8G | 10M25SAE144C8G&quot;]);" href="http://www.mouser.com/ds/2/591/br-max10-brochure-740801.pdf" target="_blank">数据表</a>
  4352. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">57<br/>有库存</span>
  4353. <table>
  4354. <tr align="center">
  4355. <td style="padding-top: 5px">
  4356. </td>
  4357. </tr>
  4358. <tr align="center">
  4359. <td style="padding-top: 5px; padding-bottom: 5px">
  4360. </td>
  4361. </tr>
  4362. </table></td><td>
  4363. <table class="PriceBreaks" cellspacing="0" border="0">
  4364. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4365. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4366. </td>
  4367. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4368. </td>
  4369. </tr>
  4370. <tr>
  4371. <td class="PriceBreakQuantity">
  4372. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  4373. </td>
  4374. <td class="PriceBreakPrice">
  4375. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥374.2713</span>
  4376. </td>
  4377. </tr>
  4378. <tr>
  4379. <td class="PriceBreakQuantity">
  4380. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,25);">25:</a>
  4381. </td>
  4382. <td class="PriceBreakPrice">
  4383. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥299.4147</span>
  4384. </td>
  4385. </tr>
  4386. <tr>
  4387. <td class="PriceBreakQuantity">
  4388. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,100);">100:</a>
  4389. </td>
  4390. <td class="PriceBreakPrice">
  4391. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥291.9384</span>
  4392. </td>
  4393. </tr>
  4394. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  4395. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4396. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(15,500);">500:</a>
  4397. </td>
  4398. <td class="PriceBreakPrice">
  4399. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=989-10M25SAE144C8G&amp;quantity=500&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Altera Corporation&quot;,&quot;989-10M25SAE144C8G&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  4400. </td>
  4401. </tr>
  4402. <tr>
  4403. <td><br /></td>
  4404. </tr>
  4405. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  4406. <td colspan="2" style="text-align: center;">
  4407. </td>
  4408. </tr>
  4409. </table>
  4410. </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;)">
  4411. <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 />
  4412. <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="购买 10M25SAE144C8G" class="buy-button" /><br />
  4413. <table cellspacing="0" border="0" style="width: 100%;">
  4414. <tr>
  4415. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4416. 最低:
  4417. </td>
  4418. <td style="padding-left: 2px; text-align: left;">
  4419. 1
  4420. </td>
  4421. </tr>
  4422. <tr>
  4423. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4424. 多个:
  4425. </td>
  4426. <td style="padding-left: 2px; text-align: left;">
  4427. 1
  4428. </td>
  4429. </tr>
  4430. </table>
  4431. </div>
  4432. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  4433. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4434. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Q9aBwnvBRpdkFPZ%2f8VdUtQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=Q9aBwnvBRpdkFPZ%2f8VdUtQ%3d%3d" target="_blank">详细信息</a>
  4435. </div>
  4436. </td><td>
  4437. </td><td>
  4438. </td><td>
  4439. </td><td>
  4440. </td><td>
  4441. </td><td>
  4442. </td><td>
  4443. </td><td>
  4444. </td>
  4445. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M16DCF256C8G" data-index="18">
  4446. <td class="td-select" align="center">
  4447. <div style="padding: 5px 5px 0 5px;">
  4448. <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>
  4449. </div>
  4450. </td><td><a href='/ProductDetail/Altera-Corporation/10M16DCF256C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uoj%252b1nTugerj%2fvUeMSFkP%252bYjg%3d%3d'><img title='Altera Corporation 10M16DCF256C8G' alt='Altera Corporation 10M16DCF256C8G' id=1431121794 src='/images/mouserimages/sm/BGA_256_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_256_t.jpg</div></a></td><td>
  4451. <div style="text-align:left;">
  4452. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M16DCF256C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uoj%252b1nTugerj%2fvUeMSFkP%252bYjg%3d%3d">989-10M16DCF256C8G</a><br />
  4453. <br />
  4454. <br />
  4455. </div></td><td>
  4456. <div class="mfrDiv">
  4457. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M16DCF256C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uoj%252b1nTugerj%2fvUeMSFkP%252bYjg%3d%3d">10M16DCF256C8G</a><br />
  4458. <br />
  4459. <div style="width: 100%; text-align: center;">
  4460. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4461. </div>
  4462. <div style="width: 100%; text-align: center;">
  4463. </div>
  4464. </div>
  4465. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  4466. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 178 I/O, 256FBGA
  4467. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4468. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  4469. </div>
  4470. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4471. </div>
  4472. </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;Altera Corporation&quot;,&quot;989-10M16DCF256C8G | 10M16DCF256C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  4473. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">66<br/>有库存</span>
  4474. <table>
  4475. <tr align="center">
  4476. <td style="padding-top: 5px">
  4477. </td>
  4478. </tr>
  4479. <tr align="center">
  4480. <td style="padding-top: 5px; padding-bottom: 5px">
  4481. </td>
  4482. </tr>
  4483. </table></td><td>
  4484. <table class="PriceBreaks" cellspacing="0" border="0">
  4485. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4486. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4487. </td>
  4488. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4489. </td>
  4490. </tr>
  4491. <tr>
  4492. <td class="PriceBreakQuantity">
  4493. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  4494. </td>
  4495. <td class="PriceBreakPrice">
  4496. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥295.2495</span>
  4497. </td>
  4498. </tr>
  4499. <tr>
  4500. <td class="PriceBreakQuantity">
  4501. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,25);">25:</a>
  4502. </td>
  4503. <td class="PriceBreakPrice">
  4504. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥236.1879</span>
  4505. </td>
  4506. </tr>
  4507. <tr>
  4508. <td class="PriceBreakQuantity">
  4509. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,100);">100:</a>
  4510. </td>
  4511. <td class="PriceBreakPrice">
  4512. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥230.3379</span>
  4513. </td>
  4514. </tr>
  4515. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  4516. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4517. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(16,500);">500:</a>
  4518. </td>
  4519. <td class="PriceBreakPrice">
  4520. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=989-10M16DCF256C8G&amp;quantity=500&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Altera Corporation&quot;,&quot;989-10M16DCF256C8G&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  4521. </td>
  4522. </tr>
  4523. <tr>
  4524. <td><br /></td>
  4525. </tr>
  4526. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  4527. <td colspan="2" style="text-align: center;">
  4528. </td>
  4529. </tr>
  4530. </table>
  4531. </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;)">
  4532. <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 />
  4533. <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="购买 10M16DCF256C8G" class="buy-button" /><br />
  4534. <table cellspacing="0" border="0" style="width: 100%;">
  4535. <tr>
  4536. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4537. 最低:
  4538. </td>
  4539. <td style="padding-left: 2px; text-align: left;">
  4540. 1
  4541. </td>
  4542. </tr>
  4543. <tr>
  4544. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4545. 多个:
  4546. </td>
  4547. <td style="padding-left: 2px; text-align: left;">
  4548. 1
  4549. </td>
  4550. </tr>
  4551. </table>
  4552. </div>
  4553. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  4554. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4555. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B8uCf%252bTS04HOw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B8uCf%252bTS04HOw%3d%3d" target="_blank">详细信息</a>
  4556. </div>
  4557. </td><td>MAX10
  4558. </td><td>16000
  4559. </td><td>1000
  4560. </td><td>178 I/O
  4561. </td><td>1.2 V/2.5 V
  4562. </td><td>+ 85 C
  4563. </td><td>SMD/SMT
  4564. </td><td>FPGA-256
  4565. </td>
  4566. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M04DAF256C8G" data-index="19">
  4567. <td class="td-select" align="center">
  4568. <div style="padding: 5px 5px 0 5px;">
  4569. <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>
  4570. </div>
  4571. </td><td><a href='/ProductDetail/Altera-Corporation/10M04DAF256C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSZTnFf9UtS%252b9pW74FFP2Y1g%3d%3d'><img title='Altera Corporation 10M04DAF256C8G' alt='Altera Corporation 10M04DAF256C8G' id=1311999995 src='/images/mouserimages/sm/BGA_256_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_256_t.jpg</div></a></td><td>
  4572. <div style="text-align:left;">
  4573. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M04DAF256C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSZTnFf9UtS%252b9pW74FFP2Y1g%3d%3d">989-10M04DAF256C8G</a><br />
  4574. <br />
  4575. <br />
  4576. </div></td><td>
  4577. <div class="mfrDiv">
  4578. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M04DAF256C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsQPdgc%2fRF7fSZTnFf9UtS%252b9pW74FFP2Y1g%3d%3d">10M04DAF256C8G</a><br />
  4579. <br />
  4580. <div style="width: 100%; text-align: center;">
  4581. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4582. </div>
  4583. <div style="width: 100%; text-align: center;">
  4584. </div>
  4585. </div>
  4586. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  4587. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 178 I/O, 256FBGA
  4588. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4589. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  4590. </div>
  4591. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4592. </div>
  4593. </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;Altera Corporation&quot;,&quot;989-10M04DAF256C8G | 10M04DAF256C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  4594. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">228<br/>有库存</span>
  4595. <table>
  4596. <tr align="center">
  4597. <td style="padding-top: 5px">
  4598. </td>
  4599. </tr>
  4600. <tr align="center">
  4601. <td style="padding-top: 5px; padding-bottom: 5px">
  4602. </td>
  4603. </tr>
  4604. </table></td><td>
  4605. <table class="PriceBreaks" cellspacing="0" border="0">
  4606. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4607. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4608. </td>
  4609. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4610. </td>
  4611. </tr>
  4612. <tr>
  4613. <td class="PriceBreakQuantity">
  4614. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  4615. </td>
  4616. <td class="PriceBreakPrice">
  4617. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥132.3738</span>
  4618. </td>
  4619. </tr>
  4620. <tr>
  4621. <td class="PriceBreakQuantity">
  4622. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,25);">25:</a>
  4623. </td>
  4624. <td class="PriceBreakPrice">
  4625. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥105.885</span>
  4626. </td>
  4627. </tr>
  4628. <tr>
  4629. <td class="PriceBreakQuantity">
  4630. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,100);">100:</a>
  4631. </td>
  4632. <td class="PriceBreakPrice">
  4633. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥103.2642</span>
  4634. </td>
  4635. </tr>
  4636. <tr>
  4637. <td class="PriceBreakQuantity">
  4638. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,500);">500:</a>
  4639. </td>
  4640. <td class="PriceBreakPrice">
  4641. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥99.2628</span>
  4642. </td>
  4643. </tr>
  4644. <tr>
  4645. <td><br /></td>
  4646. </tr>
  4647. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4648. <td colspan="2" style="text-align: center;">
  4649. </td>
  4650. </tr>
  4651. </table>
  4652. </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;)">
  4653. <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 />
  4654. <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="购买 10M04DAF256C8G" class="buy-button" /><br />
  4655. <table cellspacing="0" border="0" style="width: 100%;">
  4656. <tr>
  4657. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4658. 最低:
  4659. </td>
  4660. <td style="padding-left: 2px; text-align: left;">
  4661. 1
  4662. </td>
  4663. </tr>
  4664. <tr>
  4665. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4666. 多个:
  4667. </td>
  4668. <td style="padding-left: 2px; text-align: left;">
  4669. 1
  4670. </td>
  4671. </tr>
  4672. </table>
  4673. </div>
  4674. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  4675. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4676. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=fr44ug%252b5BYv6wEoqMgpelQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=fr44ug%252b5BYv6wEoqMgpelQ%3d%3d" target="_blank">详细信息</a>
  4677. </div>
  4678. </td><td>MAX10
  4679. </td><td>4000
  4680. </td><td>250
  4681. </td><td>178 I/O
  4682. </td><td>1.2 V/2.5 V
  4683. </td><td>+ 85 C
  4684. </td><td>SMD/SMT
  4685. </td><td>FBGA-256
  4686. </td>
  4687. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M16DAF484C8G" data-index="20">
  4688. <td class="td-select" align="center">
  4689. <div style="padding: 5px 5px 0 5px;">
  4690. <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>
  4691. </div>
  4692. </td><td><a href='/ProductDetail/Altera-Corporation/10M16DAF484C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojlGkds7fDRxvdw8mL%2fSF4rA%3d%3d'><img title='Altera Corporation 10M16DAF484C8G' alt='Altera Corporation 10M16DAF484C8G' id=1431121780 src='/images/mouserimages/sm/BGA_484_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_484_t.jpg</div></a></td><td>
  4693. <div style="text-align:left;">
  4694. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M16DAF484C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojlGkds7fDRxvdw8mL%2fSF4rA%3d%3d">989-10M16DAF484C8G</a><br />
  4695. <br />
  4696. <br />
  4697. </div></td><td>
  4698. <div class="mfrDiv">
  4699. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M16DAF484C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojlGkds7fDRxvdw8mL%2fSF4rA%3d%3d">10M16DAF484C8G</a><br />
  4700. <br />
  4701. <div style="width: 100%; text-align: center;">
  4702. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4703. </div>
  4704. <div style="width: 100%; text-align: center;">
  4705. </div>
  4706. </div>
  4707. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  4708. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 320 I/O, 484FBGA
  4709. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4710. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  4711. </div>
  4712. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4713. </div>
  4714. </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;Altera Corporation&quot;,&quot;989-10M16DAF484C8G | 10M16DAF484C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  4715. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">59<br/>有库存</span>
  4716. <table>
  4717. <tr align="center">
  4718. <td style="padding-top: 5px">
  4719. </td>
  4720. </tr>
  4721. <tr align="center">
  4722. <td style="padding-top: 5px; padding-bottom: 5px">
  4723. </td>
  4724. </tr>
  4725. </table></td><td>
  4726. <table class="PriceBreaks" cellspacing="0" border="0">
  4727. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4728. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4729. </td>
  4730. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4731. </td>
  4732. </tr>
  4733. <tr>
  4734. <td class="PriceBreakQuantity">
  4735. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  4736. </td>
  4737. <td class="PriceBreakPrice">
  4738. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥399.2157</span>
  4739. </td>
  4740. </tr>
  4741. <tr>
  4742. <td class="PriceBreakQuantity">
  4743. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,25);">25:</a>
  4744. </td>
  4745. <td class="PriceBreakPrice">
  4746. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥319.3632</span>
  4747. </td>
  4748. </tr>
  4749. <tr>
  4750. <td class="PriceBreakQuantity">
  4751. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  4752. </td>
  4753. <td class="PriceBreakPrice">
  4754. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥311.4306</span>
  4755. </td>
  4756. </tr>
  4757. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  4758. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4759. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(18,500);">500:</a>
  4760. </td>
  4761. <td class="PriceBreakPrice">
  4762. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=989-10M16DAF484C8G&amp;quantity=500&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Altera Corporation&quot;,&quot;989-10M16DAF484C8G&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  4763. </td>
  4764. </tr>
  4765. <tr>
  4766. <td><br /></td>
  4767. </tr>
  4768. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  4769. <td colspan="2" style="text-align: center;">
  4770. </td>
  4771. </tr>
  4772. </table>
  4773. </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;)">
  4774. <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 />
  4775. <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="购买 10M16DAF484C8G" class="buy-button" /><br />
  4776. <table cellspacing="0" border="0" style="width: 100%;">
  4777. <tr>
  4778. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4779. 最低:
  4780. </td>
  4781. <td style="padding-left: 2px; text-align: left;">
  4782. 1
  4783. </td>
  4784. </tr>
  4785. <tr>
  4786. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4787. 多个:
  4788. </td>
  4789. <td style="padding-left: 2px; text-align: left;">
  4790. 1
  4791. </td>
  4792. </tr>
  4793. </table>
  4794. </div>
  4795. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  4796. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4797. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2f4WI839wqCjw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2f4WI839wqCjw%3d%3d" target="_blank">详细信息</a>
  4798. </div>
  4799. </td><td>MAX10
  4800. </td><td>16000
  4801. </td><td>1000
  4802. </td><td>320 I/O
  4803. </td><td>1.2 V/2.5 V
  4804. </td><td>+ 85 C
  4805. </td><td>SMD/SMT
  4806. </td><td>FBGA-484
  4807. </td>
  4808. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M02DCU324C8G" data-index="21">
  4809. <td class="td-select" align="center">
  4810. <div style="padding: 5px 5px 0 5px;">
  4811. <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>
  4812. </div>
  4813. </td><td><a href='/ProductDetail/Altera-Corporation/10M02DCU324C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uoj6L9K3z6K%252bqOHJwVlT763pQ%3d%3d'><img title='Altera Corporation 10M02DCU324C8G' alt='Altera Corporation 10M02DCU324C8G' id=1431121574 src='/images/mouserimages/sm/BGA_324_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_324_t.jpg</div></a></td><td>
  4814. <div style="text-align:left;">
  4815. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M02DCU324C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uoj6L9K3z6K%252bqOHJwVlT763pQ%3d%3d">989-10M02DCU324C8G</a><br />
  4816. <br />
  4817. <br />
  4818. </div></td><td>
  4819. <div class="mfrDiv">
  4820. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M02DCU324C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uoj6L9K3z6K%252bqOHJwVlT763pQ%3d%3d">10M02DCU324C8G</a><br />
  4821. <br />
  4822. <div style="width: 100%; text-align: center;">
  4823. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4824. </div>
  4825. <div style="width: 100%; text-align: center;">
  4826. </div>
  4827. </div>
  4828. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  4829. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 160 I/O, 324UBGA
  4830. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4831. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  4832. </div>
  4833. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4834. </div>
  4835. </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;Altera Corporation&quot;,&quot;989-10M02DCU324C8G | 10M02DCU324C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  4836. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">238<br/>有库存</span>
  4837. <table>
  4838. <tr align="center">
  4839. <td style="padding-top: 5px">
  4840. </td>
  4841. </tr>
  4842. <tr align="center">
  4843. <td style="padding-top: 5px; padding-bottom: 5px">
  4844. </td>
  4845. </tr>
  4846. </table></td><td>
  4847. <table class="PriceBreaks" cellspacing="0" border="0">
  4848. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4849. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4850. </td>
  4851. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4852. </td>
  4853. </tr>
  4854. <tr>
  4855. <td class="PriceBreakQuantity">
  4856. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  4857. </td>
  4858. <td class="PriceBreakPrice">
  4859. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥64.4553</span>
  4860. </td>
  4861. </tr>
  4862. <tr>
  4863. <td class="PriceBreakQuantity">
  4864. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,25);">25:</a>
  4865. </td>
  4866. <td class="PriceBreakPrice">
  4867. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥51.597</span>
  4868. </td>
  4869. </tr>
  4870. <tr>
  4871. <td class="PriceBreakQuantity">
  4872. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  4873. </td>
  4874. <td class="PriceBreakPrice">
  4875. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥50.2866</span>
  4876. </td>
  4877. </tr>
  4878. <tr>
  4879. <td class="PriceBreakQuantity">
  4880. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,500);">500:</a>
  4881. </td>
  4882. <td class="PriceBreakPrice">
  4883. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥48.3561</span>
  4884. </td>
  4885. </tr>
  4886. <tr>
  4887. <td><br /></td>
  4888. </tr>
  4889. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4890. <td colspan="2" style="text-align: center;">
  4891. </td>
  4892. </tr>
  4893. </table>
  4894. </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;)">
  4895. <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 />
  4896. <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="购买 10M02DCU324C8G" class="buy-button" /><br />
  4897. <table cellspacing="0" border="0" style="width: 100%;">
  4898. <tr>
  4899. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4900. 最低:
  4901. </td>
  4902. <td style="padding-left: 2px; text-align: left;">
  4903. 1
  4904. </td>
  4905. </tr>
  4906. <tr>
  4907. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4908. 多个:
  4909. </td>
  4910. <td style="padding-left: 2px; text-align: left;">
  4911. 1
  4912. </td>
  4913. </tr>
  4914. </table>
  4915. </div>
  4916. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  4917. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4918. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9MTIQcIGS2fQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9MTIQcIGS2fQ%3d%3d" target="_blank">详细信息</a>
  4919. </div>
  4920. </td><td>MAX10
  4921. </td><td>2000
  4922. </td><td>125
  4923. </td><td>160 I/O
  4924. </td><td>1.2 V/2.5 V
  4925. </td><td>+ 85 C
  4926. </td><td>SMD/SMT
  4927. </td><td>UBGA-324
  4928. </td>
  4929. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M40DAF256C8G" data-index="22">
  4930. <td class="td-select" align="center">
  4931. <div style="padding: 5px 5px 0 5px;">
  4932. <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>
  4933. </div>
  4934. </td><td><a href='/ProductDetail/Altera-Corporation/10M40DAF256C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojAm8pXrHSDE7ozIx5DmyiHA%3d%3d'><img title='Altera Corporation 10M40DAF256C8G' alt='Altera Corporation 10M40DAF256C8G' id=1431121856 src='/images/mouserimages/sm/BGA_256_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_256_t.jpg</div></a></td><td>
  4935. <div style="text-align:left;">
  4936. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M40DAF256C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojAm8pXrHSDE7ozIx5DmyiHA%3d%3d">989-10M40DAF256C8G</a><br />
  4937. <br />
  4938. <br />
  4939. </div></td><td>
  4940. <div class="mfrDiv">
  4941. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M40DAF256C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojAm8pXrHSDE7ozIx5DmyiHA%3d%3d">10M40DAF256C8G</a><br />
  4942. <br />
  4943. <div style="width: 100%; text-align: center;">
  4944. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4945. </div>
  4946. <div style="width: 100%; text-align: center;">
  4947. </div>
  4948. </div>
  4949. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  4950. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 178 I/O, 256FBGA
  4951. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4952. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  4953. </div>
  4954. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4955. </div>
  4956. </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;Altera Corporation&quot;,&quot;989-10M40DAF256C8G | 10M40DAF256C8G&quot;]);" href="https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/hb/max-10/m10_overview.pdf" target="_blank">数据表</a>
  4957. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">76<br/>有库存</span>
  4958. <table>
  4959. <tr align="center">
  4960. <td style="padding-top: 5px">
  4961. </td>
  4962. </tr>
  4963. <tr align="center">
  4964. <td style="padding-top: 5px; padding-bottom: 5px">
  4965. </td>
  4966. </tr>
  4967. </table></td><td>
  4968. <table class="PriceBreaks" cellspacing="0" border="0">
  4969. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4970. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4971. </td>
  4972. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4973. </td>
  4974. </tr>
  4975. <tr>
  4976. <td class="PriceBreakQuantity">
  4977. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  4978. </td>
  4979. <td class="PriceBreakPrice">
  4980. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥616.1571</span>
  4981. </td>
  4982. </tr>
  4983. <tr>
  4984. <td class="PriceBreakQuantity">
  4985. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,25);">25:</a>
  4986. </td>
  4987. <td class="PriceBreakPrice">
  4988. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥517.5846</span>
  4989. </td>
  4990. </tr>
  4991. <tr>
  4992. <td class="PriceBreakQuantity">
  4993. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,100);">100:</a>
  4994. </td>
  4995. <td class="PriceBreakPrice">
  4996. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥505.2645</span>
  4997. </td>
  4998. </tr>
  4999. <tr>
  5000. <td><br /></td>
  5001. </tr>
  5002. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  5003. <td colspan="2" style="text-align: center;">
  5004. </td>
  5005. </tr>
  5006. </table>
  5007. </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;)">
  5008. <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 />
  5009. <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="购买 10M40DAF256C8G" class="buy-button" /><br />
  5010. <table cellspacing="0" border="0" style="width: 100%;">
  5011. <tr>
  5012. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5013. 最低:
  5014. </td>
  5015. <td style="padding-left: 2px; text-align: left;">
  5016. 1
  5017. </td>
  5018. </tr>
  5019. <tr>
  5020. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5021. 多个:
  5022. </td>
  5023. <td style="padding-left: 2px; text-align: left;">
  5024. 1
  5025. </td>
  5026. </tr>
  5027. </table>
  5028. </div>
  5029. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  5030. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5031. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B8A94%2fwfSgUrQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B8A94%2fwfSgUrQ%3d%3d" target="_blank">详细信息</a>
  5032. </div>
  5033. </td><td>
  5034. </td><td>
  5035. </td><td>
  5036. </td><td>
  5037. </td><td>
  5038. </td><td>
  5039. </td><td>SMD/SMT
  5040. </td><td>FBGA-256
  5041. </td>
  5042. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M25SCE144C8G" data-index="23">
  5043. <td class="td-select" align="center">
  5044. <div style="padding: 5px 5px 0 5px;">
  5045. <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>
  5046. </div>
  5047. </td><td><a href='/ProductDetail/Altera-Corporation/10M25SCE144C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsSJ4%252bqNGjwHhJsHqyxolQKXClRBYP7XDUw%3d%3d'><img title='Altera Corporation 10M25SCE144C8G' alt='Altera Corporation 10M25SCE144C8G' id=1530212326 src='/images/altera/sm/Max_10_DSL.JPG' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/altera/images/Max_10_DSL.JPG</div></a></td><td>
  5048. <div style="text-align:left;">
  5049. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M25SCE144C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsSJ4%252bqNGjwHhJsHqyxolQKXClRBYP7XDUw%3d%3d">989-10M25SCE144C8G</a><br />
  5050. <br />
  5051. <br />
  5052. </div></td><td>
  5053. <div class="mfrDiv">
  5054. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M25SCE144C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsSJ4%252bqNGjwHhJsHqyxolQKXClRBYP7XDUw%3d%3d">10M25SCE144C8G</a><br />
  5055. <br />
  5056. <div style="width: 100%; text-align: center;">
  5057. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  5058. </div>
  5059. <div style="width: 100%; text-align: center;">
  5060. </div>
  5061. </div>
  5062. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  5063. </td><td>FPGA - 现场可编程门阵列
  5064. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5065. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  5066. </div>
  5067. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5068. </div>
  5069. </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;Altera Corporation&quot;,&quot;989-10M25SCE144C8G | 10M25SCE144C8G&quot;]);" href="http://www.mouser.com/ds/2/591/br-max10-brochure-740801.pdf" target="_blank">数据表</a>
  5070. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">56<br/>有库存</span>
  5071. <table>
  5072. <tr align="center">
  5073. <td style="padding-top: 5px">
  5074. </td>
  5075. </tr>
  5076. <tr align="center">
  5077. <td style="padding-top: 5px; padding-bottom: 5px">
  5078. </td>
  5079. </tr>
  5080. </table></td><td>
  5081. <table class="PriceBreaks" cellspacing="0" border="0">
  5082. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5083. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5084. </td>
  5085. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5086. </td>
  5087. </tr>
  5088. <tr>
  5089. <td class="PriceBreakQuantity">
  5090. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  5091. </td>
  5092. <td class="PriceBreakPrice">
  5093. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥304.2585</span>
  5094. </td>
  5095. </tr>
  5096. <tr>
  5097. <td class="PriceBreakQuantity">
  5098. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,25);">25:</a>
  5099. </td>
  5100. <td class="PriceBreakPrice">
  5101. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥243.4302</span>
  5102. </td>
  5103. </tr>
  5104. <tr>
  5105. <td class="PriceBreakQuantity">
  5106. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,100);">100:</a>
  5107. </td>
  5108. <td class="PriceBreakPrice">
  5109. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥237.3462</span>
  5110. </td>
  5111. </tr>
  5112. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  5113. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5114. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(21,500);">500:</a>
  5115. </td>
  5116. <td class="PriceBreakPrice">
  5117. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=989-10M25SCE144C8G&amp;quantity=500&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Altera Corporation&quot;,&quot;989-10M25SCE144C8G&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  5118. </td>
  5119. </tr>
  5120. <tr>
  5121. <td><br /></td>
  5122. </tr>
  5123. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  5124. <td colspan="2" style="text-align: center;">
  5125. </td>
  5126. </tr>
  5127. </table>
  5128. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl08_btnBuy&#39;)">
  5129. <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 />
  5130. <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="购买 10M25SCE144C8G" class="buy-button" /><br />
  5131. <table cellspacing="0" border="0" style="width: 100%;">
  5132. <tr>
  5133. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5134. 最低:
  5135. </td>
  5136. <td style="padding-left: 2px; text-align: left;">
  5137. 1
  5138. </td>
  5139. </tr>
  5140. <tr>
  5141. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5142. 多个:
  5143. </td>
  5144. <td style="padding-left: 2px; text-align: left;">
  5145. 1
  5146. </td>
  5147. </tr>
  5148. </table>
  5149. </div>
  5150. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  5151. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5152. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Q9aBwnvBRpeFB9lnYMc60Q%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=Q9aBwnvBRpeFB9lnYMc60Q%3d%3d" target="_blank">详细信息</a>
  5153. </div>
  5154. </td><td>
  5155. </td><td>
  5156. </td><td>
  5157. </td><td>
  5158. </td><td>
  5159. </td><td>
  5160. </td><td>
  5161. </td><td>
  5162. </td>
  5163. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M16SCU169C8G" data-index="24">
  5164. <td class="td-select" align="center">
  5165. <div style="padding: 5px 5px 0 5px;">
  5166. <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>
  5167. </div>
  5168. </td><td><a href='/ProductDetail/Altera-Corporation/10M16SCU169C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojkZHUNdxbKMrvFh2o6HDoUQ%3d%3d'><img title='Altera Corporation 10M16SCU169C8G' alt='Altera Corporation 10M16SCU169C8G' id=1431121838 src='/images/mouserimages/sm/BGA_169_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_169_t.jpg</div></a></td><td>
  5169. <div style="text-align:left;">
  5170. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M16SCU169C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojkZHUNdxbKMrvFh2o6HDoUQ%3d%3d">989-10M16SCU169C8G</a><br />
  5171. <br />
  5172. <br />
  5173. </div></td><td>
  5174. <div class="mfrDiv">
  5175. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M16SCU169C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojkZHUNdxbKMrvFh2o6HDoUQ%3d%3d">10M16SCU169C8G</a><br />
  5176. <br />
  5177. <div style="width: 100%; text-align: center;">
  5178. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  5179. </div>
  5180. <div style="width: 100%; text-align: center;">
  5181. </div>
  5182. </div>
  5183. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  5184. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 130 I/O, 169UBGA
  5185. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5186. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  5187. </div>
  5188. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5189. </div>
  5190. </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;Altera Corporation&quot;,&quot;989-10M16SCU169C8G | 10M16SCU169C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  5191. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">96<br/>有库存</span>
  5192. <table>
  5193. <tr align="center">
  5194. <td style="padding-top: 5px">
  5195. </td>
  5196. </tr>
  5197. <tr align="center">
  5198. <td style="padding-top: 5px; padding-bottom: 5px">
  5199. </td>
  5200. </tr>
  5201. </table></td><td>
  5202. <table class="PriceBreaks" cellspacing="0" border="0">
  5203. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5204. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5205. </td>
  5206. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5207. </td>
  5208. </tr>
  5209. <tr>
  5210. <td class="PriceBreakQuantity">
  5211. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  5212. </td>
  5213. <td class="PriceBreakPrice">
  5214. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥210.6936</span>
  5215. </td>
  5216. </tr>
  5217. <tr>
  5218. <td class="PriceBreakQuantity">
  5219. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,25);">25:</a>
  5220. </td>
  5221. <td class="PriceBreakPrice">
  5222. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥168.5736</span>
  5223. </td>
  5224. </tr>
  5225. <tr>
  5226. <td class="PriceBreakQuantity">
  5227. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  5228. </td>
  5229. <td class="PriceBreakPrice">
  5230. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥164.3382</span>
  5231. </td>
  5232. </tr>
  5233. <tr>
  5234. <td class="PriceBreakQuantity">
  5235. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,500);">500:</a>
  5236. </td>
  5237. <td class="PriceBreakPrice">
  5238. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥158.0202</span>
  5239. </td>
  5240. </tr>
  5241. <tr>
  5242. <td><br /></td>
  5243. </tr>
  5244. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5245. <td colspan="2" style="text-align: center;">
  5246. </td>
  5247. </tr>
  5248. </table>
  5249. </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;)">
  5250. <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 />
  5251. <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="购买 10M16SCU169C8G" class="buy-button" /><br />
  5252. <table cellspacing="0" border="0" style="width: 100%;">
  5253. <tr>
  5254. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5255. 最低:
  5256. </td>
  5257. <td style="padding-left: 2px; text-align: left;">
  5258. 1
  5259. </td>
  5260. </tr>
  5261. <tr>
  5262. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5263. 多个:
  5264. </td>
  5265. <td style="padding-left: 2px; text-align: left;">
  5266. 1
  5267. </td>
  5268. </tr>
  5269. </table>
  5270. </div>
  5271. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  5272. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5273. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9pZEjkOqBpdA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9pZEjkOqBpdA%3d%3d" target="_blank">详细信息</a>
  5274. </div>
  5275. </td><td>MAX10
  5276. </td><td>16000
  5277. </td><td>1000
  5278. </td><td>320 I/O
  5279. </td><td>3 V/3.3 V
  5280. </td><td>+ 85 C
  5281. </td><td>SMD/SMT
  5282. </td><td>UBGA-169
  5283. </td>
  5284. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M16DCF484C8G" data-index="25">
  5285. <td class="td-select" align="center">
  5286. <div style="padding: 5px 5px 0 5px;">
  5287. <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>
  5288. </div>
  5289. </td><td><a href='/ProductDetail/Altera-Corporation/10M16DCF484C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojvbB0zv5QDgjAPZ1iwSg8Pg%3d%3d'><img title='Altera Corporation 10M16DCF484C8G' alt='Altera Corporation 10M16DCF484C8G' id=1431121800 src='/images/mouserimages/sm/BGA_484_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_484_t.jpg</div></a></td><td>
  5290. <div style="text-align:left;">
  5291. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M16DCF484C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojvbB0zv5QDgjAPZ1iwSg8Pg%3d%3d">989-10M16DCF484C8G</a><br />
  5292. <br />
  5293. <br />
  5294. </div></td><td>
  5295. <div class="mfrDiv">
  5296. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M16DCF484C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojvbB0zv5QDgjAPZ1iwSg8Pg%3d%3d">10M16DCF484C8G</a><br />
  5297. <br />
  5298. <div style="width: 100%; text-align: center;">
  5299. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  5300. </div>
  5301. <div style="width: 100%; text-align: center;">
  5302. </div>
  5303. </div>
  5304. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  5305. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 320 I/O, 484FBGA
  5306. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5307. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  5308. </div>
  5309. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5310. </div>
  5311. </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;Altera Corporation&quot;,&quot;989-10M16DCF484C8G | 10M16DCF484C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  5312. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">60<br/>有库存</span>
  5313. <table>
  5314. <tr align="center">
  5315. <td style="padding-top: 5px">
  5316. </td>
  5317. </tr>
  5318. <tr align="center">
  5319. <td style="padding-top: 5px; padding-bottom: 5px">
  5320. </td>
  5321. </tr>
  5322. </table></td><td>
  5323. <table class="PriceBreaks" cellspacing="0" border="0">
  5324. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5325. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5326. </td>
  5327. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5328. </td>
  5329. </tr>
  5330. <tr>
  5331. <td class="PriceBreakQuantity">
  5332. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  5333. </td>
  5334. <td class="PriceBreakPrice">
  5335. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥354.861</span>
  5336. </td>
  5337. </tr>
  5338. <tr>
  5339. <td class="PriceBreakQuantity">
  5340. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,25);">25:</a>
  5341. </td>
  5342. <td class="PriceBreakPrice">
  5343. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥283.8537</span>
  5344. </td>
  5345. </tr>
  5346. <tr>
  5347. <td class="PriceBreakQuantity">
  5348. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
  5349. </td>
  5350. <td class="PriceBreakPrice">
  5351. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥276.7752</span>
  5352. </td>
  5353. </tr>
  5354. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  5355. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5356. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,500);">500:</a>
  5357. </td>
  5358. <td class="PriceBreakPrice">
  5359. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=989-10M16DCF484C8G&amp;quantity=500&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Altera Corporation&quot;,&quot;989-10M16DCF484C8G&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  5360. </td>
  5361. </tr>
  5362. <tr>
  5363. <td><br /></td>
  5364. </tr>
  5365. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  5366. <td colspan="2" style="text-align: center;">
  5367. </td>
  5368. </tr>
  5369. </table>
  5370. </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;)">
  5371. <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 />
  5372. <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="购买 10M16DCF484C8G" class="buy-button" /><br />
  5373. <table cellspacing="0" border="0" style="width: 100%;">
  5374. <tr>
  5375. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5376. 最低:
  5377. </td>
  5378. <td style="padding-left: 2px; text-align: left;">
  5379. 1
  5380. </td>
  5381. </tr>
  5382. <tr>
  5383. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5384. 多个:
  5385. </td>
  5386. <td style="padding-left: 2px; text-align: left;">
  5387. 1
  5388. </td>
  5389. </tr>
  5390. </table>
  5391. </div>
  5392. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  5393. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5394. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9gf%2fRqDU9d0A%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B9gf%2fRqDU9d0A%3d%3d" target="_blank">详细信息</a>
  5395. </div>
  5396. </td><td>MAX10
  5397. </td><td>16000
  5398. </td><td>1000
  5399. </td><td>320 I/O
  5400. </td><td>1.2 V/2.5 V
  5401. </td><td>+ 85 C
  5402. </td><td>SMD/SMT
  5403. </td><td>FBGA-484
  5404. </td>
  5405. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M50DCF484C8G" data-index="26">
  5406. <td class="td-select" align="center">
  5407. <div style="padding: 5px 5px 0 5px;">
  5408. <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>
  5409. </div>
  5410. </td><td><a href='/ProductDetail/Altera-Corporation/10M50DCF484C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojCWvrAniFr8GiTUOdwsg7TQ%3d%3d'><img title='Altera Corporation 10M50DCF484C8G' alt='Altera Corporation 10M50DCF484C8G' id=1431121967 src='/images/mouserimages/sm/BGA_484_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_484_t.jpg</div></a></td><td>
  5411. <div style="text-align:left;">
  5412. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M50DCF484C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojCWvrAniFr8GiTUOdwsg7TQ%3d%3d">989-10M50DCF484C8G</a><br />
  5413. <br />
  5414. <br />
  5415. </div></td><td>
  5416. <div class="mfrDiv">
  5417. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M50DCF484C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58UojCWvrAniFr8GiTUOdwsg7TQ%3d%3d">10M50DCF484C8G</a><br />
  5418. <br />
  5419. <div style="width: 100%; text-align: center;">
  5420. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  5421. </div>
  5422. <div style="width: 100%; text-align: center;">
  5423. </div>
  5424. </div>
  5425. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  5426. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 360 I/O, 484FBGA
  5427. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5428. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  5429. </div>
  5430. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5431. </div>
  5432. </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;Altera Corporation&quot;,&quot;989-10M50DCF484C8G | 10M50DCF484C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  5433. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">55<br/>有库存</span>
  5434. <table>
  5435. <tr align="center">
  5436. <td style="padding-top: 5px">
  5437. </td>
  5438. </tr>
  5439. <tr align="center">
  5440. <td style="padding-top: 5px; padding-bottom: 5px">
  5441. </td>
  5442. </tr>
  5443. </table></td><td>
  5444. <table class="PriceBreaks" cellspacing="0" border="0">
  5445. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5446. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5447. </td>
  5448. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5449. </td>
  5450. </tr>
  5451. <tr>
  5452. <td class="PriceBreakQuantity">
  5453. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  5454. </td>
  5455. <td class="PriceBreakPrice">
  5456. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥974.4813</span>
  5457. </td>
  5458. </tr>
  5459. <tr>
  5460. <td class="PriceBreakQuantity">
  5461. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,25);">25:</a>
  5462. </td>
  5463. <td class="PriceBreakPrice">
  5464. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥818.532</span>
  5465. </td>
  5466. </tr>
  5467. <tr>
  5468. <td class="PriceBreakQuantity">
  5469. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,100);">100:</a>
  5470. </td>
  5471. <td class="PriceBreakPrice">
  5472. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥799.0515</span>
  5473. </td>
  5474. </tr>
  5475. <tr>
  5476. <td><br /></td>
  5477. </tr>
  5478. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  5479. <td colspan="2" style="text-align: center;">
  5480. </td>
  5481. </tr>
  5482. </table>
  5483. </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;)">
  5484. <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 />
  5485. <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="购买 10M50DCF484C8G" class="buy-button" /><br />
  5486. <table cellspacing="0" border="0" style="width: 100%;">
  5487. <tr>
  5488. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5489. 最低:
  5490. </td>
  5491. <td style="padding-left: 2px; text-align: left;">
  5492. 1
  5493. </td>
  5494. </tr>
  5495. <tr>
  5496. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5497. 多个:
  5498. </td>
  5499. <td style="padding-left: 2px; text-align: left;">
  5500. 1
  5501. </td>
  5502. </tr>
  5503. </table>
  5504. </div>
  5505. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  5506. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5507. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2fXz0Qkvdl%2fnA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2fXz0Qkvdl%2fnA%3d%3d" target="_blank">详细信息</a>
  5508. </div>
  5509. </td><td>MAX10
  5510. </td><td>50000
  5511. </td><td>3125
  5512. </td><td>500 I/O
  5513. </td><td>1.2 V/2.5 V
  5514. </td><td>+ 85 C
  5515. </td><td>SMD/SMT
  5516. </td><td>FBGA-484
  5517. </td>
  5518. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M16DCU324C8G" data-index="27">
  5519. <td class="td-select" align="center">
  5520. <div style="padding: 5px 5px 0 5px;">
  5521. <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>
  5522. </div>
  5523. </td><td><a href='/ProductDetail/Altera-Corporation/10M16DCU324C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uoj0VGPMbRYXPD3qIPi86cOXA%3d%3d'><img title='Altera Corporation 10M16DCU324C8G' alt='Altera Corporation 10M16DCU324C8G' id=1431121806 src='/images/mouserimages/sm/BGA_324_t.jpg' /></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_324_t.jpg</div></a></td><td>
  5524. <div style="text-align:left;">
  5525. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Altera-Corporation/10M16DCU324C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uoj0VGPMbRYXPD3qIPi86cOXA%3d%3d">989-10M16DCU324C8G</a><br />
  5526. <br />
  5527. <br />
  5528. </div></td><td>
  5529. <div class="mfrDiv">
  5530. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Altera-Corporation/10M16DCU324C8G/?qs=sGAEpiMZZMsWE4XtJSx%252bsVMML5Q58Uoj0VGPMbRYXPD3qIPi86cOXA%3d%3d">10M16DCU324C8G</a><br />
  5531. <br />
  5532. <div style="width: 100%; text-align: center;">
  5533. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  5534. </div>
  5535. <div style="width: 100%; text-align: center;">
  5536. </div>
  5537. </div>
  5538. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../../altera">Altera Corporation</a>
  5539. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 246 I/O, 324UBGA
  5540. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5541. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../altera-max10-fpga">了解更多</a>
  5542. </div>
  5543. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5544. </div>
  5545. </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;Altera Corporation&quot;,&quot;989-10M16DCU324C8G | 10M16DCU324C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  5546. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">119<br/>有库存</span>
  5547. <table>
  5548. <tr align="center">
  5549. <td style="padding-top: 5px">
  5550. </td>
  5551. </tr>
  5552. <tr align="center">
  5553. <td style="padding-top: 5px; padding-bottom: 5px">
  5554. </td>
  5555. </tr>
  5556. </table></td><td>
  5557. <table class="PriceBreaks" cellspacing="0" border="0">
  5558. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5559. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5560. </td>
  5561. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5562. </td>
  5563. </tr>
  5564. <tr>
  5565. <td class="PriceBreakQuantity">
  5566. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  5567. </td>
  5568. <td class="PriceBreakPrice">
  5569. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥295.2495</span>
  5570. </td>
  5571. </tr>
  5572. <tr>
  5573. <td class="PriceBreakQuantity">
  5574. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
  5575. </td>
  5576. <td class="PriceBreakPrice">
  5577. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥236.1879</span>
  5578. </td>
  5579. </tr>
  5580. <tr>
  5581. <td class="PriceBreakQuantity">
  5582. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  5583. </td>
  5584. <td class="PriceBreakPrice">
  5585. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥230.3379</span>
  5586. </td>
  5587. </tr>
  5588. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  5589. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5590. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,500);">500:</a>
  5591. </td>
  5592. <td class="PriceBreakPrice">
  5593. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=989-10M16DCU324C8G&amp;quantity=500&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Altera Corporation&quot;,&quot;989-10M16DCU324C8G&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  5594. </td>
  5595. </tr>
  5596. <tr>
  5597. <td><br /></td>
  5598. </tr>
  5599. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  5600. <td colspan="2" style="text-align: center;">
  5601. </td>
  5602. </tr>
  5603. </table>
  5604. </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;)">
  5605. <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 />
  5606. <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="购买 10M16DCU324C8G" class="buy-button" /><br />
  5607. <table cellspacing="0" border="0" style="width: 100%;">
  5608. <tr>
  5609. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5610. 最低:
  5611. </td>
  5612. <td style="padding-left: 2px; text-align: left;">
  5613. 1
  5614. </td>
  5615. </tr>
  5616. <tr>
  5617. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5618. 多个:
  5619. </td>
  5620. <td style="padding-left: 2px; text-align: left;">
  5621. 1
  5622. </td>
  5623. </tr>
  5624. </table>
  5625. </div>
  5626. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  5627. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5628. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2fYUpUmuUvkRA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=9nfJn4gl3B%2fYUpUmuUvkRA%3d%3d" target="_blank">详细信息</a>
  5629. </div>
  5630. </td><td>MAX10
  5631. </td><td>16000
  5632. </td><td>1000
  5633. </td><td>320 I/O
  5634. </td><td>1.2 V/2.5 V
  5635. </td><td>+ 85 C
  5636. </td><td>SMD/SMT
  5637. </td><td>UBGA-324
  5638. </td>
  5639. </tr>
  5640. </table>
  5641. </div>
  5642. </td>
  5643. </tr>
  5644. <tr>
  5645. <td class="tdSearchResultsPagingBottom">
  5646. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  5647. <tr>
  5648. <td>
  5649. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  5650. </td>
  5651. <td>
  5652. <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" />
  5653. </td>
  5654. <td>
  5655. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  5656. </td>
  5657. <td style="padding-left: 40px;">
  5658. <div class="floatrightpager">
  5659. <span class="bold">
  5660. 页面:
  5661. </span>
  5662. <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/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_553" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=13825">554</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv/?No=25">下一页</a></span>
  5663. </div>
  5664. </td>
  5665. </tr>
  5666. </table>
  5667. </td>
  5668. </tr>
  5669. <tr>
  5670. <td>
  5671. <!--- Search Tips --->
  5672. </td>
  5673. </tr>
  5674. <tr>
  5675. <td>
  5676. <!-- SOP Section 2 -->
  5677. </td>
  5678. </tr>
  5679. </table>
  5680. </div>
  5681. </div><!-- #liProducts-->
  5682. <!-- Datasheets tab -->
  5683. <!-- #liDatasheets-->
  5684. <!-- Images tab -->
  5685. <!-- #liImages-->
  5686. <!-- Newest Products tab -->
  5687. <!-- #liProducts-->
  5688. </div>
  5689. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  5690. <div>
  5691. <span class="popular-searches-label">热门搜索:</span>
  5692. <span class="popular-searches-links"><a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv?P=1yvm6hn&pop=umwu' onclick="ga('send','event','Popular Search Refine Click','FPGA - Field Programmable Gate Array','111 I/O FPGA - Field Programmable Gate Array')">111 I/O FPGA - 现场可编程门阵列</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv?P=1yxz36wZ1z0wtpx&pop=noll' onclick="ga('send','event','Popular Search Refine Click','FPGA - Field Programmable Gate Array','+ 85 C 256 FPGA - Field Programmable Gate Array')">+ 85 C 256 FPGA - 现场可编程门阵列</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv?P=1z0yqx7&pop=kq6v' onclick="ga('send','event','Popular Search Refine Click','FPGA - Field Programmable Gate Array','QFN-32 FPGA - Field Programmable Gate Array')">QFN-32 FPGA - 现场可编程门阵列</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv?P=1yztzwa&pop=qapc' onclick="ga('send','event','Popular Search Refine Click','FPGA - Field Programmable Gate Array','CQFP-256 FPGA - Field Programmable Gate Array')">CQFP-256 FPGA - 现场可编程门阵列</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv?P=1yz090w&pop=wtuc' onclick="ga('send','event','Popular Search Refine Click','FPGA - Field Programmable Gate Array','BGA-164 FPGA - Field Programmable Gate Array')">BGA-164 FPGA - 现场可编程门阵列</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array/_/N-aw9vv?P=1z0x8qq&pop=n5ln' onclick="ga('send','event','Popular Search Refine Click','FPGA - Field Programmable Gate Array','TQFP-176 FPGA - Field Programmable Gate Array')">TQFP-176 FPGA - 现场可编程门阵列</a></span>
  5693. </div>
  5694. </div>
  5695. <div style="visibility: hidden;">
  5696. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  5697. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  5698. <span id="SearchResultCount">13841</span>
  5699. <div id="disclaimer">
  5700. 图像仅供参考<br/>请参阅产品规格</div>
  5701. </div>
  5702. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/FPGA-Field-Programmable-Gate-Array" />
  5703. <script type="text/javascript" src='../../../../../../javascript/ProductImage.js'></script>
  5704. <script type="text/javascript" src='../../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  5705. <script type="text/javascript" src='../../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  5706. <!--[if gte IE 9]><!-->
  5707. <script type="text/javascript" src='../../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  5708. <!--<![endif]-->
  5709. <!--[if lt IE 9]>
  5710. <script type="text/javascript" src='../../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  5711. <![endif]-->
  5712. <script type="text/javascript" src='../../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  5713. <script type="text/javascript">
  5714. var subdomain = 'cn2';
  5715. </script>
  5716. </div>
  5717. <div class="aspNetHidden">
  5718. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  5719. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  5720. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  5721. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  5722. </div>
  5723. <script type="text/javascript">
  5724. //<![CDATA[
  5725. var mfrIDsArray = new Array;
  5726. //]]>
  5727. </script>
  5728. <script src='../../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  5729. <script type="text/javascript">
  5730. //<![CDATA[
  5731. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  5732. </script>
  5733. <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>
  5734. <script type="text/javascript">
  5735. //<![CDATA[
  5736. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  5737. <!-- Google Code for Conversion Page Remarketing List -->
  5738. <!--
  5739. var google_conversion_id = 1046090287;
  5740. var google_conversion_language = "en";
  5741. var google_conversion_format = "3";
  5742. var google_conversion_color = "666666";
  5743. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  5744. var google_conversion_value = 0;
  5745. //-->
  5746. </script>
  5747. <div class="ga-remarketing">
  5748. <script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
  5749. </script>
  5750. </div>
  5751. <noscript>
  5752. <div style="display:inline;">
  5753. <img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1046090287/?label=9WmrCMOVxQEQr6To8gM&amp;guid=ON&amp;script=0" />
  5754. </div>
  5755. </noscript>
  5756. <script type="text/javascript">
  5757. //]]>
  5758. </script>
  5759. <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>
  5760. <script type="text/javascript">
  5761. //<![CDATA[
  5762. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000900^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000899^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000189^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000000393^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000314^ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1323044^ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$688606';
  5763. theForm.oldSubmit = theForm.submit;
  5764. theForm.submit = WebForm_SaveScrollPositionSubmit;
  5765. theForm.oldOnSubmit = theForm.onsubmit;
  5766. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  5767. //]]>
  5768. </script>
  5769. </form>
  5770. <div id="content-container2" class="hidden">
  5771. <div id="content-fixed-width2" class="content-fixed-width">
  5772. </div>
  5773. </div>
  5774. <div id="wideFooter" class="wideFooter">
  5775. <div id="footer" class="container">
  5776. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB11|20160304.2" />
  5777. <div id="ft_table1">
  5778. <div class="row">
  5779. <div class="col-xs-12">
  5780. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  5781. <div class="floatleft padding5right">
  5782. <strong class="h3">
  5783. 快速电子邮件注册</strong>&nbsp;&nbsp;
  5784. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  5785. </div>
  5786. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  5787. 提交
  5788. </a>
  5789. </div>
  5790. <div id="ft_icons" class="ft_icons">
  5791. <div id="ft_social">
  5792. <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>
  5793. <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>
  5794. <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>
  5795. <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">
  5796. <div class="ico-social fb"></div>
  5797. </a>
  5798. <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">
  5799. <div class="ico-social tw"></div>
  5800. </a>
  5801. <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">
  5802. <div class="ico-social rss"></div>
  5803. </a>
  5804. <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">
  5805. <div class="ico-social yt"></div>
  5806. </a>
  5807. <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">
  5808. <div class="ico-social gp"></div>
  5809. </a>
  5810. <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">
  5811. <div class="ico-social ln"></div>
  5812. </a>
  5813. <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">
  5814. <div class="ico-social sb"></div>
  5815. </a>
  5816. <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">
  5817. <div class="ico-social blog"></div>
  5818. </a>
  5819. </div>
  5820. </div>
  5821. </div>
  5822. </div>
  5823. </div>
  5824. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  5825. <div class="ft_wrapper">
  5826. <div id="ft_links" class="row">
  5827. <div class="col-xs-3 paddingBtm10 hidden-xs">
  5828. <strong class="paddingTopBtm10 inline-block">
  5829. 公司</strong>
  5830. <ul>
  5831. <li>
  5832. <a id="ctl00_Footer1_lnk26" href="../../../../../../aboutus/">关于我们</a></li>
  5833. <li>
  5834. <a id="ctl00_Footer1_lnk28" href="../../../../../../educationalsales/">教育销售</a></li>
  5835. <li>
  5836. <a id="ctl00_Footer1_lnk31" href="../../../../../../pressroom/">新闻中心</a></li>
  5837. <li>
  5838. <a id="ctl00_Footer1_lnk32" href="../../../../../../careers/">Mouser 工作机会</a></li>
  5839. <li>
  5840. <a id="ctl00_Footer1_lnk29" href="../../../../../../quality/">品质保证</a></li>
  5841. <li>
  5842. <a id="ctl00_Footer1_lnk30" href="../../../../../../environmental/">环境保护</a></li>
  5843. </ul>
  5844. </div>
  5845. <div class="col-xs-3 hidden-xs">
  5846. <strong class="paddingTopBtm10 inline-block">
  5847. 快速链接</strong>
  5848. <ul>
  5849. <li><a id="A7" href="/blog">
  5850. Mouser博客</a></li>
  5851. <li>
  5852. <a id="ctl00_Footer1_hlnk1" href="../../../../../../new/">最新产品</a></li>
  5853. <li>
  5854. <a id="ctl00_Footer1_hlnk2" href="../../../../../../new/products/">新产品</a></li>
  5855. <li>
  5856. <a id="ctl00_Footer1_hlnk3" href="../../../../../../applications/">新技术</a></li>
  5857. </ul>
  5858. </div>
  5859. <div class="col-xs-12 col-sm-3">
  5860. <strong class="paddingTopBtm10 inline-block">
  5861. 支持</strong>
  5862. <ul>
  5863. <li><a id="A3" href="/feedback.aspx">
  5864. 反馈</a></li>
  5865. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  5866. 帮助</a></li>
  5867. <li>
  5868. <a id="ctl00_Footer1_lnk27" href="../../../../../../contact/">联系我们</a></li>
  5869. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  5870. 浏览器支持</a></li>
  5871. <li><a id="A6" href="/cookie-policy/">
  5872. Cookie政策</a></li>
  5873. </ul>
  5874. </div>
  5875. <div class="col-xs-12 col-sm-3">
  5876. <strong class="paddingTopBtm10 inline-block">
  5877. 昴氏(上海)电子贸易有限公司</strong>
  5878. <ul>
  5879. <li>
  5880. <h4>
  5881. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  5882. </li>
  5883. </ul>
  5884. </div>
  5885. </div>
  5886. </div>
  5887. </div>
  5888. <div class="row">
  5889. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  5890. <div id="ft_copy">
  5891. <span class="ft_terms">
  5892. <a id="A1" href="/privacypolicy/">
  5893. 隐私政策</a>
  5894. &nbsp;&nbsp;|&nbsp;&nbsp;
  5895. <a id="href3" href="/saleterms/">
  5896. 销售条款</a>
  5897. <br />
  5898. </span>
  5899. <span class="ft_copyright">
  5900. 版权所有©2016 Mouser Electronics, Inc
  5901. |
  5902. 沪ICP备15042575号-1
  5903. <br />
  5904. </span>
  5905. <span class="ft_trade">
  5906. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  5907. </span>
  5908. <span class="ft_hq">
  5909. Corporate headquarters and logistics center in Mansfield, Texas USA.
  5910. </span>
  5911. <br />
  5912. <span class="ft_ClassicMobile">
  5913. <strong>
  5914. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  5915. </span>
  5916. </div>
  5917. </div>
  5918. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  5919. <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>
  5920. <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>
  5921. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  5922. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  5923. </a>
  5924. <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>
  5925. <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;
  5926. </a>
  5927. </div>
  5928. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  5929. <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>
  5930. <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>
  5931. <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>
  5932. <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>
  5933. </div>
  5934. </div>
  5935. <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>
  5936. <script type="text/javascript">
  5937. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  5938. </script>
  5939. </div>
  5940. </div>
  5941. <script src="../../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  5942. <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>
  5943. </body>
  5944. </html>