32.html 374 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021
  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_17d58f55-47d3-4be8-9a73-ea9243ce7212-37156-308787';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. 可编程逻辑 IC | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应可编程逻辑 IC 。Mouser提供可编程逻辑 IC 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="可编程逻辑 IC" /><meta name="verify-v1" content="bhrmPa5uloYbiuM+lDu4z+y0qUGeKGW5FfFMprQAqlU=" /><meta name="viewport" content="width=1000, initial-scale=1" /><meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
  38. <!-- BASE STYLE SHEET -->
  39. <link rel="shortcut icon" href="../../../../../favicon.ico" /><link rel="alternate" type="application/rss+xml" title="RSS" href="../../../../../rss/rss.xml" />
  40. <!--[if IE 7]>
  41. <link rel="stylesheet" type="text/css" href="../../../../../css/ie7.css" />
  42. <![endif]-->
  43. <!--[if IE 8]>
  44. <link rel="stylesheet" type="text/css" href="../../../../../css/ie8.css" />
  45. <![endif]-->
  46. <!--[if IE 9]>
  47. <link rel="stylesheet" type="text/css" href="../../../../../css/ie9.css" />
  48. <![endif]-->
  49. <script type="text/javascript">
  50. function OpenBackordered(URL) {
  51. var MsgWindow;
  52. MsgWindow = window.open(URL, "MsgWindow", "scrollbars=1,height=500,width=650,menubar=0,resizable=1");
  53. }
  54. </script>
  55. <script type="text/javascript"> var _gaq = _gaq || [];var pluginUrl ='//www.google-analytics.com/plugins/ga/inpage_linkid.js';_gaq.push(['_require', 'inpage_linkid', pluginUrl]); _gaq.push(['_setAccount', "UA-521079-1"]);_gaq.push(['_setDomainName', "mouser.cn"]);_gaq.push(['_setAllowLinker', true]);_gaq.push(['_setAllowAnchor', true]);_gaq.push(["_setCustomVar",1,"Language","zh-CN",3]);_gaq.push(["_setCustomVar",30,"s35h","JrWQOSOWm2Zh8NtBXxmHrU1Gdb7g4GNbx8QfBwfXJRM=",2]);_gaq.push(["_setCustomVar",31,"Cart","353f7eda-640d-4857-8be9-b26b27a5151e",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA96AA68",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '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','JrWQOSOWm2Zh8NtBXxmHrU1Gdb7g4GNbx8QfBwfXJRM=');
  290. ga('set','dimension31','353f7eda-640d-4857-8be9-b26b27a5151e');
  291. ga('set','dimension13','163AA125AA96AA68');
  292. ga('set','metric2',16385);
  293. ga('set','dimension5','Programmable Logic ICs');
  294. ga('set','dimension48','6j778');
  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/Programmable-Logic-ICs/_/N-6j778/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778" rel="canonical" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778" /><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/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/" /><script type="text/javascript" src="/msrqqqqxsqb.js" defer></script><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#yxezcaswaauztuaqaww{display:none!important}</style><!-- 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/Programmable-Logic-ICs/_/N-6j778/" 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='10973492';
  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='10973492';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><a href="xxrrtbuu.html" style="display: none;" rel="file" id="yxezcaswaauztuaqaww">ubqtbausacydzezvysubqtb</a>
  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%2f4qc5ce9IXZBtQkqWv2G7DqRS4cvkrwWZ2gqDjUf7CPF4WPYbfT2iwYTsNIVXmWkI%252bNV6iL88cwQ%3d%3d">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7DqRS4cvkrwWZ2gqDjUf7CPF4WPYbfT2iwYTsNIVXmWkI%252bNV6iL88cwQ%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 = '353f7eda-640d-4857-8be9-b26b27a5151e';
  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%2f4qc5ce9IXZBtQkqWv2G7DqRS4cvkrwWZ2gqDjUf7CPF4WPYbfT2iwYTsNIVXmWkI%252bNV6iL88cwQ%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" itemprop="isPartOf" href="../../../_/N-6j73k/" style="font-size: 9pt; font-weight: bold;">集成电路 - IC</a>
  831. <strong>></strong>
  832. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">可编程逻辑 IC</a>
  833. <hr />
  834. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  835. <div class="categorySearchLimits">
  836. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  837. </div>
  838. </div>
  839. </div>
  840. <table border="0" width="100%">
  841. <tr>
  842. <td>
  843. <div id="ctl00_ContentMain_pnl3">
  844. <div id="category-top" class="category-content">
  845. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> 可编程逻辑 IC</h1></a>
  846. <!--Marketing Content-->
  847. <div id="ctl00_ContentMain_refinemfglogo">
  848. </div>
  849. </div><!--.category-content-->
  850. </div>
  851. </td>
  852. </tr>
  853. <tr>
  854. <td>
  855. </td>
  856. </tr>
  857. <tr>
  858. <td>
  859. <div id="refine-page2">
  860. </div>
  861. </td>
  862. </tr>
  863. </table>
  864. <div id="ctl00_ContentMain_divTabs" class="row">
  865. <div class="col-xs-12">
  866. <div id="tabsNavigation" >
  867. <ul>
  868. <li id="ctl00_ContentMain_liProductsTab" class="active">
  869. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(16,385)</span></a>
  870. </li>
  871. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  872. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Programmable Logic ICs&#39;);" href="../../Datasheets/_/N-6j778">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(266)</span></a>
  873. </li>
  874. <li id="ctl00_ContentMain_liImagesTab" class="">
  875. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Programmable Logic ICs&#39;);" href="../../Images/_/N-6j778">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(178)</span></a>
  876. </li>
  877. <li id="ctl00_ContentMain_liNewestTab" class="">
  878. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Programmable Logic ICs&#39;);" href="../../Newest-Products/_/N-6j778">最新产品</a>
  879. </li>
  880. </ul>
  881. </div>
  882. </div>
  883. </div>
  884. <div id="tabDivs" class="tab-divs">
  885. <!-- Hide the View links if javascript is disabled -->
  886. <noscript>
  887. <style type="text/css">.list-visual{display:none;}</style>
  888. </noscript>
  889. <div id="CategoryControlTop">
  890. <table class="table-categories">
  891. <tr><td valign="top">
  892. <input type="hidden" name="ctl00$ContentMain$uc6$listCategories$ctl01$hdnCatID" id="ctl00_ContentMain_uc6_listCategories_ctl01_hdnCatID" value="10973492" />
  893. <div class="topCatTitle">
  894. <div class="col-xs-8 no-left-pad">
  895. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkCategory" class="SearchResultsTopLevelCategory" href="./"><h2>可编程逻辑 IC类型</h2></a>
  896. </div>
  897. <div class="text-right">
  898. <div class="list-visual">
  899. <ul>
  900. <li class="right-border active">
  901. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;List&#39;, &#39;Programmable Logic ICs&#39;); SwitchListView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkListView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkListView&#39;,&#39;&#39;)">
  902. <i class="fa fa-th-list"></i>&nbsp;列表</a>
  903. </li>
  904. <li>
  905. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;Visual&#39;, &#39;Programmable Logic ICs&#39;); SwitchVisualView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkVisualView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkVisualView&#39;,&#39;&#39;)">
  906. <i class="fa fa-th-large"></i>&nbsp;目视</a>
  907. </li>
  908. </ul>
  909. </div>
  910. </div>
  911. </div>
  912. <ul class="sub-cats">
  913. <table id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories" cellspacing="0" style="width:100%;border-collapse:collapse;">
  914. <tr>
  915. <td>
  916. <li class="sub-cat">
  917. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973493.png" alt="CPLD - Complex Programmable Logic Devices" /></div>
  918. <div class="div-cat-title">
  919. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../CPLD-Complex-Programmable-Logic-Devices/_/N-6j779/"><h3>CPLD - 复杂可编程逻辑器件</h3></a>
  920. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lblRecordCount">2,392</span>)</span>
  921. </div>
  922. </li>
  923. </td><td>
  924. <li class="sub-cat">
  925. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973497.png" alt="FPGA - Configuration Memory" /></div>
  926. <div class="div-cat-title">
  927. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../FPGA-Configuration-Memory/_/N-6j77d/"><h3>FPGA-配置存储器</h3></a>
  928. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lblRecordCount">96</span>)</span>
  929. </div>
  930. </li>
  931. </td><td>
  932. <li class="sub-cat">
  933. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973494.png" alt="SPLD - Simple Programmable Logic Devices" /></div>
  934. <div class="div-cat-title">
  935. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../SPLD-Simple-Programmable-Logic-Devices/_/N-6j77a/"><h3>SPLD - 简单可编程逻辑器件</h3></a>
  936. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lblRecordCount">29</span>)</span>
  937. </div>
  938. </li>
  939. </td>
  940. </tr><tr>
  941. <td>
  942. <li class="sub-cat">
  943. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/12263512.png" alt="EEPLD - Electronically Erasable Programmable Logic Devices" /></div>
  944. <div class="div-cat-title">
  945. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../EEPLD-Electronically-Erasable-Programmable-Logic-Devices/_/N-7aul4/"><h3>EEPLD - 电子擦除可编程逻辑设备</h3></a>
  946. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lblRecordCount">27</span>)</span>
  947. </div>
  948. </li>
  949. </td><td>
  950. <li class="sub-cat">
  951. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973496.png" alt="FPGA - Field Programmable Gate Array" /></div>
  952. <div class="div-cat-title">
  953. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../FPGA-Field-Programmable-Gate-Array/_/N-6j77c/"><h3>FPGA - 现场可编程门阵列</h3></a>
  954. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lblRecordCount">13,841</span>)</span>
  955. </div>
  956. </li>
  957. </td><td></td>
  958. </tr>
  959. </table></ul>
  960. </td></tr></table>
  961. <div id="search-left-col">
  962. </div>
  963. </div>
  964. <script type="text/javascript">
  965. //<![CDATA[
  966. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  967. //]]>
  968. </script>
  969. <div id="ctl00_ContentMain_liProducts">
  970. <div id="refineSearchDiv">
  971. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  972. <div id="refine-keyword-search-2">
  973. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  974. <div id="boxPartSearch2">
  975. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  976. <tr>
  977. <td rowspan="3" style="vertical-align: middle">
  978. <div id="searchPartNumberBox" class="search-box" >
  979. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  980. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  981. </div>
  982. </td>
  983. </tr>
  984. <tr>
  985. <td class="chk-Search">
  986. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  987. </td>
  988. </tr>
  989. <tr>
  990. <td class="chk-Search">
  991. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_ContentMain_uc2_chkRoHSCompliant" type="checkbox" name="ctl00$ContentMain$uc2$chkRoHSCompliant" /><label for="ctl00_ContentMain_uc2_chkRoHSCompliant">符合RoHS</label></span>
  992. </td>
  993. </tr>
  994. </table>
  995. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  996. </div>
  997. <script type="text/javascript" src='../../../../../flash/js/Placeholders.min.js'></script>
  998. <script type="text/javascript" src='../../../../../flash/js/watermark.js'></script>
  999. </div>
  1000. </div>
  1001. <div id="refine-mfg-select-2">
  1002. </div>
  1003. <div class="clear">
  1004. </div>
  1005. <table class="SearchParametricTable2">
  1006. <tr>
  1007. <td>
  1008. <div id="AttributesDiv2">
  1009. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  1010. <div class="categorySearchLimits">
  1011. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  1012. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<span title="半导体"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx254459|Semiconductors" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973492|Programmable Logic ICs&#39;).checked = false;" /></span>&nbsp;<b>半导体</b>&nbsp;&#62;&nbsp;<span title="集成电路 - IC"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx10973360|Integrated Circuits - ICs" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973492|Programmable Logic ICs&#39;).checked = false;" /></span>&nbsp;<b>集成电路 - IC</b>&nbsp;&#62;&nbsp;<span title="可编程逻辑 IC"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973492|Programmable Logic ICs" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx10973492|Programmable Logic ICs" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = true;" /></span>&nbsp;<b>可编程逻辑 IC</b>
  1013. </div>
  1014. </div>
  1015. <hr/>
  1016. </div>
  1017. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  1018. <p class="applied-filter-lbl">
  1019. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  1020. <span id="ctl00_ContentMain_uc5_lblreccount">16,385 匹配</span>
  1021. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  1022. </p>
  1023. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  1024. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  1025. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  1026. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../../images/icon_tooltip.png" />
  1027. <br />
  1028. </div>
  1029. </div>
  1030. <table id="tb1" style="width: 100%;">
  1031. <tr>
  1032. <td>
  1033. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  1034. <tr>
  1035. <td>
  1036. <table cellpadding="0" cellspacing="0">
  1037. <tr>
  1038. <td>
  1039. <table>
  1040. <tr>
  1041. <td>
  1042. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  1043. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  1044. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1045. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1046. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1047. sorted parametric attributes from an endeca attribute group --->
  1048. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  1049. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  1050. </div>
  1051. </td>
  1052. </tr>
  1053. <tr>
  1054. <td>
  1055. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  1056. <option value="4291492212">Altera</option>
  1057. <option value="4294759229">Atmel</option>
  1058. <option value="4294758842">Lattice</option>
  1059. <option value="4292748898">Microsemi</option>
  1060. <option value="4284568550">Silego</option>
  1061. <option value="4294764375">STMicroelectronics</option>
  1062. <option value="4294759686">Texas Instruments</option>
  1063. </select>
  1064. </td>
  1065. </tr>
  1066. <tr>
  1067. <td>
  1068. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1069. </td>
  1070. </tr>
  1071. </table>
  1072. </td>
  1073. <td valign="bottom" style="width: 15px;">
  1074. &nbsp;
  1075. </td>
  1076. </tr>
  1077. </table>
  1078. </td><td>
  1079. <table cellpadding="0" cellspacing="0">
  1080. <tr>
  1081. <td>
  1082. <table>
  1083. <tr>
  1084. <td>
  1085. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">产品</span>
  1086. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1087. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1088. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1089. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1090. sorted parametric attributes from an endeca attribute group --->
  1091. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1092. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688640" />
  1093. </div>
  1094. </td>
  1095. </tr>
  1096. <tr>
  1097. <td>
  1098. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688640">
  1099. <option value="4282053551">A2F060M3E</option>
  1100. <option value="4282054263">A2F200M3F</option>
  1101. <option value="4282054260">A2F500M3G</option>
  1102. <option value="4282055693">A3P030</option>
  1103. <option value="4282056085">A3P060</option>
  1104. <option value="4282056121">A3P1000</option>
  1105. <option value="4282056099">A3P125</option>
  1106. <option value="4282056128">A3P250</option>
  1107. <option value="4282056131">A3P400</option>
  1108. <option value="4282055691">A3P600</option>
  1109. <option value="4282055857">A3PE1500</option>
  1110. <option value="4282055684">A3PE3000</option>
  1111. <option value="4282055690">A3PE600</option>
  1112. <option value="4282055062">A3PN010</option>
  1113. <option value="4282055059">A3PN020</option>
  1114. <option value="4282055065">A3PN060</option>
  1115. <option value="4282055061">A3PN125</option>
  1116. <option value="4282055055">A3PN250</option>
  1117. <option value="4282056089">A40MX02</option>
  1118. <option value="4282056077">A40MX04</option>
  1119. <option value="4282056060">A42MX09</option>
  1120. <option value="4282056066">A42MX16</option>
  1121. <option value="4282056075">A42MX24</option>
  1122. <option value="4282056081">A54SX08A</option>
  1123. <option value="4282056087">A54SX16A</option>
  1124. <option value="4282056080">A54SX32A</option>
  1125. <option value="4282056092">A54SX72A</option>
  1126. <option value="4289799732">ACEX 1K</option>
  1127. <option value="4282055922">AFS250</option>
  1128. <option value="4282055921">AFS600</option>
  1129. <option value="4282055680">AGL030V2</option>
  1130. <option value="4282055689">AGL030V5</option>
  1131. <option value="4282055490">AGL060V2</option>
  1132. <option value="4282055489">AGL060V5</option>
  1133. <option value="4282055688">AGL125V2</option>
  1134. <option value="4282055683">AGL125V5</option>
  1135. <option value="4282055682">AGL250V2</option>
  1136. <option value="4282055681">AGL250V5</option>
  1137. <option value="4282055050">AGL400V5</option>
  1138. <option value="4282055679">AGL600V2</option>
  1139. <option value="4282055049">AGLN010V2</option>
  1140. <option value="4282055067">AGLN020V2</option>
  1141. <option value="4282055066">AGLN020V5</option>
  1142. <option value="4282055054">AGLN060V2</option>
  1143. <option value="4282055051">AGLN060V5</option>
  1144. <option value="4282055047">AGLN125V2</option>
  1145. <option value="4282055058">AGLN125V5</option>
  1146. <option value="4282055056">AGLN250V2</option>
  1147. <option value="4282055052">AGLN250V5</option>
  1148. <option value="4282055042">AGLP060V5</option>
  1149. <option value="4282055338">AGLP125V5</option>
  1150. <option value="4282056116">APA075</option>
  1151. <option value="4282056106">APA150</option>
  1152. <option value="4282056084">APA300</option>
  1153. <option value="4282056102">APA450</option>
  1154. <option value="4282056096">APA600</option>
  1155. <option value="4289799709">APEX 20K</option>
  1156. <option value="4289799674">APEX II</option>
  1157. <option value="4289245921">Arria 10 GX</option>
  1158. <option value="4289814958">Arria GX</option>
  1159. <option value="4289799666">Arria II GX</option>
  1160. <option value="4289799647">Arria II GZ</option>
  1161. <option value="4289826935">Arria V GT</option>
  1162. <option value="4289826930">Arria V GX</option>
  1163. <option value="4289814911">Arria V GZ</option>
  1164. <option value="4289814874">Arria V ST</option>
  1165. <option value="4289814872">Arria V SX</option>
  1166. <option value="4289739942">AT40K</option>
  1167. <option value="4289739317">AT94KAL</option>
  1168. <option value="4289649822">ATF1500A</option>
  1169. <option value="4289649818">ATF1500AL</option>
  1170. <option value="4289649812">ATF1502AS</option>
  1171. <option value="4289649815">ATF1502ASL</option>
  1172. <option value="4289649817">ATF1502ASV</option>
  1173. <option value="4289649704">ATF1502BE</option>
  1174. <option value="4289649826">ATF1504AS</option>
  1175. <option value="4289649703">ATF1504ASL</option>
  1176. <option value="4289649819">ATF1504ASV</option>
  1177. <option value="4289649827">ATF1504ASVL</option>
  1178. <option value="4289649821">ATF1508AS</option>
  1179. <option value="4289649814">ATF1508ASL</option>
  1180. <option value="4289649701">ATF1508ASV</option>
  1181. <option value="4289649700">ATF1508ASVL</option>
  1182. <option value="4273050349">ATF16LV8C</option>
  1183. <option value="4273050354">ATF16V8B</option>
  1184. <option value="4273050352">ATF16V8BQL</option>
  1185. <option value="4273050353">ATF16V8C</option>
  1186. <option value="4273050358">ATF16V8CZ</option>
  1187. <option value="4273050357">ATF22LV10C</option>
  1188. <option value="4273050344">ATF22LV10CQZ</option>
  1189. <option value="4273050345">ATF22V10B</option>
  1190. <option value="4273050351">ATF22V10C</option>
  1191. <option value="4273050347">ATF22V10CQ</option>
  1192. <option value="4273050341">ATF22V10CQZ</option>
  1193. <option value="4289649813">ATF2500C</option>
  1194. <option value="4289649825">ATF750C</option>
  1195. <option value="4289649824">ATF750CL</option>
  1196. <option value="4289649698">ATF750LVC</option>
  1197. <option value="4282056063">AX250</option>
  1198. <option value="4289799739">Cyclone</option>
  1199. <option value="4289799642">Cyclone II</option>
  1200. <option value="4289772304">Cyclone III</option>
  1201. <option value="4289772291">Cyclone III LS</option>
  1202. <option value="4289772266">Cyclone IV E</option>
  1203. <option value="4289772258">Cyclone IV GX</option>
  1204. <option value="4289815005">Cyclone V E</option>
  1205. <option value="4289814923">Cyclone V GT</option>
  1206. <option value="4289815004">Cyclone V GX</option>
  1207. <option value="4289814892">Cyclone V SE</option>
  1208. <option value="4289814890">Cyclone V ST</option>
  1209. <option value="4289814889">Cyclone V SX</option>
  1210. <option value="4273050336">DSM21</option>
  1211. <option value="4289739720">ECP2</option>
  1212. <option value="4289739712">ECP2M</option>
  1213. <option value="4289753499">ECP3</option>
  1214. <option value="4273123047">ECP5</option>
  1215. <option value="4282056064">EX128</option>
  1216. <option value="4282056068">EX256</option>
  1217. <option value="4282056070">EX64</option>
  1218. <option value="4289772237">FLEX 10K</option>
  1219. <option value="4289772223">FLEX 6000</option>
  1220. <option value="4289772221">FLEX 8000</option>
  1221. <option value="4289753644">iCE40 LP</option>
  1222. <option value="4285840787">iCE40 Ultra</option>
  1223. <option value="4282050492">iCE40 UltraLite</option>
  1224. <option value="4289772469">iCE40HX</option>
  1225. <option value="4288445793">iCE40LM</option>
  1226. <option value="4269048312">IGLOO2</option>
  1227. <option value="4289657236">ispLSI 1016E</option>
  1228. <option value="4289657250">ispLSI 1032E</option>
  1229. <option value="4289657383">ispLSI 1032EA</option>
  1230. <option value="4289657231">ispLSI 1048E</option>
  1231. <option value="4289657387">ispLSI 1048EA</option>
  1232. <option value="4289657240">ispLSI 2032A</option>
  1233. <option value="4289657402">ispLSI 2032E</option>
  1234. <option value="4289657397">ispLSI 2032VE</option>
  1235. <option value="4289657311">ispLSI 2064A</option>
  1236. <option value="4289657249">ispLSI 2064V</option>
  1237. <option value="4289657398">ispLSI 2064VE</option>
  1238. <option value="4289657309">ispLSI 2096A</option>
  1239. <option value="4289657385">ispLSI 2096E</option>
  1240. <option value="4289657307">ispLSI 2128A</option>
  1241. <option value="4289657380">ispLSI 2128E</option>
  1242. <option value="4289657399">ispLSI 2128VE</option>
  1243. <option value="4289657393">ispLSI 2192VE</option>
  1244. <option value="4289657391">ispLSI 5128VE</option>
  1245. <option value="4289657400">ispLSI 5256VA</option>
  1246. <option value="4289657384">ispLSI 5256VE</option>
  1247. <option value="4289657388">ispLSI 5384VA</option>
  1248. <option value="4289657403">ispLSI 5384VE</option>
  1249. <option value="4289657396">ispLSI 5512VA</option>
  1250. <option value="4289657390">ispLSI 5512VE</option>
  1251. <option value="4289657290">ispMACH 4000</option>
  1252. <option value="4289649834">ispMACH 4032</option>
  1253. <option value="4289649838">ispMACH 4064</option>
  1254. <option value="4289649854">ispMACH 4128</option>
  1255. <option value="4289649843">ispMACH 4256</option>
  1256. <option value="4289649839">ispMACH 4384</option>
  1257. <option value="4289649841">ispMACH 4512</option>
  1258. <option value="4289649845">ispMACH 4A</option>
  1259. <option value="4289739970">ispXPGA</option>
  1260. <option value="4289649846">ispXPLD</option>
  1261. <option value="4282055577">M1A3P600</option>
  1262. <option value="4281018638">M2GL005</option>
  1263. <option value="4281018633">M2GL010</option>
  1264. <option value="4281018629">M2GL050</option>
  1265. <option value="4281018626">M2S005</option>
  1266. <option value="4281018623">M2S010</option>
  1267. <option value="4281018621">M2S010T</option>
  1268. <option value="4281018618">M2S050</option>
  1269. <option value="4281018616">M2S050T</option>
  1270. <option value="4289657289">MachXO</option>
  1271. <option value="4289753835">MachXO2</option>
  1272. <option value="4287814495">MachXO3L</option>
  1273. <option value="4289665500">MAX 3000A</option>
  1274. <option value="4289665494">MAX 7000</option>
  1275. <option value="4289665497">MAX 7000A</option>
  1276. <option value="4289665495">MAX 7000B</option>
  1277. <option value="4285812938">MAX 7000S</option>
  1278. <option value="4289665485">MAX 9000</option>
  1279. <option value="4289665483">MAX 9000A</option>
  1280. <option value="4289665503">MAX II</option>
  1281. <option value="4289665517">MAX V</option>
  1282. <option value="4285438790">MAX10</option>
  1283. <option value="4289799724">Mercury</option>
  1284. <option value="4289739709">SC</option>
  1285. <option value="4289739708">SCM</option>
  1286. <option value="4269048330">SmartFusion2</option>
  1287. <option value="4289799720">Stratix</option>
  1288. <option value="4289799713">Stratix GX</option>
  1289. <option value="4289799635">Stratix II</option>
  1290. <option value="4289799625">Stratix II GX</option>
  1291. <option value="4289772277">Stratix III</option>
  1292. <option value="4289772285">Stratix III Enhanced</option>
  1293. <option value="4289772245">Stratix IV E</option>
  1294. <option value="4289772249">Stratix IV GT</option>
  1295. <option value="4289772241">Stratix IV GX</option>
  1296. <option value="4289245907">Stratix V</option>
  1297. <option value="4289814999">Stratix V E</option>
  1298. <option value="4289814992">Stratix V GS</option>
  1299. <option value="4289814976">Stratix V GT</option>
  1300. <option value="4289814969">Stratix V GX</option>
  1301. <option value="4273050030">TIBPAL16L8</option>
  1302. <option value="4273050029">TIBPAL16R4</option>
  1303. <option value="4273050028">TIBPAL16R6</option>
  1304. <option value="4273050026">TIBPAL20L8</option>
  1305. <option value="4273050025">TIBPAL20R4</option>
  1306. <option value="4289754664">XP2</option>
  1307. <option value="4273050403">ZPSD3</option>
  1308. </select>
  1309. </td>
  1310. </tr>
  1311. <tr>
  1312. <td>
  1313. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1314. </td>
  1315. </tr>
  1316. </table>
  1317. </td>
  1318. <td valign="bottom" style="width: 15px;">
  1319. &nbsp;
  1320. </td>
  1321. </tr>
  1322. </table>
  1323. </td><td>
  1324. <table cellpadding="0" cellspacing="0">
  1325. <tr>
  1326. <td>
  1327. <table>
  1328. <tr>
  1329. <td>
  1330. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">最大工作频率</span>
  1331. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1332. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1333. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1334. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1335. sorted parametric attributes from an endeca attribute group --->
  1336. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1337. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="1000000313" />
  1338. </div>
  1339. </td>
  1340. </tr>
  1341. <tr>
  1342. <td>
  1343. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000313" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_1000000313">
  1344. <option value="4292860258">3.1 MHz</option>
  1345. <option value="4294593727">5 MHz</option>
  1346. <option value="4294442521">6 MHz</option>
  1347. <option value="4292840790">8 MHz</option>
  1348. <option value="4294604067">10 MHz</option>
  1349. <option value="4273050350">10 MHz, 12.5 MHz</option>
  1350. <option value="4273050359">10 MHz, 15 MHz</option>
  1351. <option value="4294602423">15 MHz</option>
  1352. <option value="4294604000">20 MHz</option>
  1353. <option value="4294601133">23.2 MHz</option>
  1354. <option value="4294603746">25 MHz</option>
  1355. <option value="4294595193">33 MHz</option>
  1356. <option value="4294602361">33.3 MHz</option>
  1357. <option value="4294602366">40 MHz</option>
  1358. <option value="4294595545">41.7 MHz</option>
  1359. <option value="4294429803">48 MHz</option>
  1360. <option value="4294603884">50 MHz</option>
  1361. <option value="4294603793">60 MHz</option>
  1362. <option value="4294602427">62 MHz</option>
  1363. <option value="4294604072">62.5 MHz</option>
  1364. <option value="4292792096">62.5 MHz, 100 MHz</option>
  1365. <option value="4294591077">66 MHz</option>
  1366. <option value="4294603885">70 MHz</option>
  1367. <option value="4294603763">71 MHz</option>
  1368. <option value="4294603807">75 MHz</option>
  1369. <option value="4294602353">76.9 MHz</option>
  1370. <option value="4282055926">79 MHz</option>
  1371. <option value="4292792743">79 MHz, 131 MHz</option>
  1372. <option value="4294604003">80 MHz</option>
  1373. <option value="4294604909">83 MHz</option>
  1374. <option value="4294604051">83.3 MHz</option>
  1375. <option value="4294603745">90 MHz</option>
  1376. <option value="4294028470">90.9 MHz</option>
  1377. <option value="4294604086">100 MHz</option>
  1378. <option value="4292792098">100 MHz, 125 MHz</option>
  1379. <option value="4282055931">103 MHz</option>
  1380. <option value="4292870648">104 MHz</option>
  1381. <option value="4294603924">110 MHz</option>
  1382. <option value="4294603783">111 MHz</option>
  1383. <option value="4294603930">116 MHz</option>
  1384. <option value="4291430400">116.3 MHz</option>
  1385. <option value="4294603778">120 MHz</option>
  1386. <option value="4294604076">125 MHz</option>
  1387. <option value="4292792087">125 MHz, 154 MHz</option>
  1388. <option value="4291430401">126.6 MHz</option>
  1389. <option value="4291430393">128.2 MHz</option>
  1390. <option value="4282055928">129 MHz</option>
  1391. <option value="4282056073">131 MHz</option>
  1392. <option value="4292864312">133 MHz</option>
  1393. <option value="4294603989">135 MHz</option>
  1394. <option value="4282056091">139 MHz</option>
  1395. <option value="4294603771">142 MHz</option>
  1396. <option value="4294604031">143 MHz</option>
  1397. <option value="4292792088">143 MHz, 200 MHz</option>
  1398. <option value="4291430391">144 MHz</option>
  1399. <option value="4291430398">147.1 MHz</option>
  1400. <option value="4291430397">149.3 MHz</option>
  1401. <option value="4294603876">150 MHz</option>
  1402. <option value="4282056079">151 MHz</option>
  1403. <option value="4294428987">151.5 MHz</option>
  1404. <option value="4292787285">152 MHz</option>
  1405. <option value="4294429795">153 MHz</option>
  1406. <option value="4294603799">155 MHz</option>
  1407. <option value="4294593658">156 MHz</option>
  1408. <option value="4293992692">160 MHz</option>
  1409. <option value="4289665487">163.9 MHz</option>
  1410. <option value="4282055927">164 MHz</option>
  1411. <option value="4294603879">165 MHz</option>
  1412. <option value="4294603962">166 MHz</option>
  1413. <option value="4294602381">166.7 MHz</option>
  1414. <option value="4294604035">167 MHz</option>
  1415. <option value="4292792090">167 MHz, 250 MHz</option>
  1416. <option value="4294593612">168 MHz</option>
  1417. <option value="4294603757">170 MHz</option>
  1418. <option value="4294593644">172 MHz</option>
  1419. <option value="4291430394">172.4 MHz</option>
  1420. <option value="4294603923">175 MHz</option>
  1421. <option value="4289665493">175.4 MHz</option>
  1422. <option value="4292900253">178.57 MHz</option>
  1423. <option value="4294604074">180 MHz</option>
  1424. <option value="4294604039">182 MHz</option>
  1425. <option value="4282055937">188 MHz</option>
  1426. <option value="4289665488">188.7 MHz</option>
  1427. <option value="4294429796">192 MHz</option>
  1428. <option value="4291430402">192.3 MHz</option>
  1429. <option value="4282056072">198 MHz</option>
  1430. <option value="4294604093">200 MHz</option>
  1431. <option value="4294429800">205 MHz</option>
  1432. <option value="4294429693">210 MHz</option>
  1433. <option value="4292793616">215 MHz</option>
  1434. <option value="4294593656">217 MHz</option>
  1435. <option value="4294603858">220 MHz</option>
  1436. <option value="4291430403">222.2 MHz</option>
  1437. <option value="4294603881">225 MHz</option>
  1438. <option value="4294593654">227 MHz</option>
  1439. <option value="4294428985">227.27 MHz</option>
  1440. <option value="4291430404">227.3 MHz</option>
  1441. <option value="4294429910">231 MHz</option>
  1442. <option value="4282055932">237 MHz</option>
  1443. <option value="4294593663">238 MHz</option>
  1444. <option value="4294592225">240 MHz</option>
  1445. <option value="4289649645">241 MHz</option>
  1446. <option value="4289665491">243.9 MHz</option>
  1447. <option value="4282056061">247 MHz</option>
  1448. <option value="4294603981">250 MHz</option>
  1449. <option value="4292985480">260 MHz</option>
  1450. <option value="4294593649">263 MHz</option>
  1451. <option value="4294603932">267 MHz</option>
  1452. <option value="4292563380">269 MHz</option>
  1453. <option value="4294429909">272 MHz</option>
  1454. <option value="4291430553">274 MHz</option>
  1455. <option value="4292864344">275 MHz</option>
  1456. <option value="4294593647">278 MHz</option>
  1457. <option value="4294603823">280 MHz</option>
  1458. <option value="4294592212">294 MHz</option>
  1459. <option value="4282055929">296 MHz</option>
  1460. <option value="4294603832">300 MHz</option>
  1461. <option value="4289665496">303 MHz</option>
  1462. <option value="4291430802">304 MHz</option>
  1463. <option value="4294429530">310 MHz</option>
  1464. <option value="4294429906">311 MHz</option>
  1465. <option value="4294592213">313 MHz</option>
  1466. <option value="4292686997">315 MHz</option>
  1467. <option value="4294604009">320 MHz</option>
  1468. <option value="4294604046">322 MHz</option>
  1469. <option value="4292555520">323 MHz</option>
  1470. <option value="4294604793">333 MHz</option>
  1471. <option value="4294603755">350 MHz</option>
  1472. <option value="4294603827">357 MHz</option>
  1473. <option value="4292562132">375 MHz</option>
  1474. <option value="4294428984">384.6 MHz</option>
  1475. <option value="4292792102">388 MHz</option>
  1476. <option value="4291430658">390 MHz</option>
  1477. <option value="4294603996">400 MHz</option>
  1478. <option value="4294591009">420 MHz</option>
  1479. <option value="4294576815">450 MHz</option>
  1480. <option value="4269048639">472.5 MHz</option>
  1481. <option value="4294596740">500 MHz</option>
  1482. <option value="4292792649">526.32 MHz, 892.86 MHz</option>
  1483. <option value="4292512807">533 MHz</option>
  1484. <option value="4291430639">540 MHz</option>
  1485. <option value="4294596738">550 MHz</option>
  1486. <option value="4291430685">565 MHz</option>
  1487. <option value="4294596761">600 MHz</option>
  1488. <option value="4291430769">622.08 MHz</option>
  1489. <option value="4294592245">649 MHz</option>
  1490. <option value="4292793609">650 MHz</option>
  1491. <option value="4291430687">684 MHz</option>
  1492. <option value="4294591747">700 MHz</option>
  1493. <option value="4294429805">763 MHz</option>
  1494. <option value="4294428993">781.25 MHz</option>
  1495. <option value="4294592651">800 MHz</option>
  1496. <option value="4294592244">870 MHz</option>
  1497. <option value="4294429521">892.86 MHz</option>
  1498. <option value="4294030180">1098.9 MHz</option>
  1499. <option value="4294030179">1282.05 MHz</option>
  1500. <option value="4294030178">1470.59 MHz</option>
  1501. </select>
  1502. </td>
  1503. </tr>
  1504. <tr>
  1505. <td>
  1506. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1507. </td>
  1508. </tr>
  1509. </table>
  1510. </td>
  1511. <td valign="bottom" style="width: 15px;">
  1512. &nbsp;
  1513. </td>
  1514. </tr>
  1515. </table>
  1516. </td><td>
  1517. <table cellpadding="0" cellspacing="0">
  1518. <tr>
  1519. <td>
  1520. <table>
  1521. <tr>
  1522. <td>
  1523. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">工作电源电压</span>
  1524. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1525. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1526. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1527. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1528. sorted parametric attributes from an endeca attribute group --->
  1529. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1530. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="1000000393" />
  1531. </div>
  1532. </td>
  1533. </tr>
  1534. <tr>
  1535. <td>
  1536. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000393" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_1000000393">
  1537. <option value="4289815000">0.85 V</option>
  1538. <option value="4289826936">0.85 V, 1.1 V, 1.15 V</option>
  1539. <option value="4289245892">0.87 V to 0.93 V</option>
  1540. <option value="4294573437">0.9 V</option>
  1541. <option value="4292511993">0.95 V</option>
  1542. <option value="4291962315">1 V to 1.2 V</option>
  1543. <option value="4294593073">1.1 V</option>
  1544. <option value="4294592437">1.14 V to 1.26 V</option>
  1545. <option value="4292563101">1.14 V to 3.465 V, 2.375 V to 3.465 V</option>
  1546. <option value="4291336655">1.15 V to 1.25 V</option>
  1547. <option value="4294604096">1.2 V</option>
  1548. <option value="4293992264">1.2 V to 3.3 V</option>
  1549. <option value="4288671479">1.2 V, 1.5 V</option>
  1550. <option value="4276269870">1.2 V/2.5 V</option>
  1551. <option value="4294629384">1.5 V</option>
  1552. <option value="4294593702">1.5 V to 3.3 V</option>
  1553. <option value="4269048638">1.63 V</option>
  1554. <option value="4294604809">1.8 V</option>
  1555. <option value="4294595633">1.8 V to 5 V</option>
  1556. <option value="4294593605">1.8 V, 2.5 V, 3.3 V</option>
  1557. <option value="4294603034">2.3 V to 2.7 V</option>
  1558. <option value="4294627904">2.5 V</option>
  1559. <option value="4294592120">2.5 V, 3.3 V</option>
  1560. <option value="4294439255">2.5 V/3.3 V</option>
  1561. <option value="4294629721">2.7 V to 5.5 V</option>
  1562. <option value="4294628486">2.97 V to 3.63 V</option>
  1563. <option value="4294604646">3 V</option>
  1564. <option value="4294629911">3 V to 3.6 V</option>
  1565. <option value="4294629160">3 V to 5.5 V</option>
  1566. <option value="4292773445">3 V, 3.3 V</option>
  1567. <option value="4276269878">3 V/3.3 V</option>
  1568. <option value="4294629989">3.3 V</option>
  1569. <option value="4294594351">3.3 V, 5 V</option>
  1570. <option value="4294630355">4.5 V to 5.5 V</option>
  1571. <option value="4294628563">4.75 V to 5.25 V</option>
  1572. <option value="4294630592">5 V</option>
  1573. <option value="4289245937">1.1V</option>
  1574. </select>
  1575. </td>
  1576. </tr>
  1577. <tr>
  1578. <td>
  1579. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1580. </td>
  1581. </tr>
  1582. </table>
  1583. </td>
  1584. <td valign="bottom" style="width: 15px;">
  1585. &nbsp;
  1586. </td>
  1587. </tr>
  1588. </table>
  1589. </td><td>
  1590. <table cellpadding="0" cellspacing="0">
  1591. <tr>
  1592. <td>
  1593. <table>
  1594. <tr>
  1595. <td>
  1596. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">最大工作温度</span>
  1597. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1598. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1599. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1600. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1601. sorted parametric attributes from an endeca attribute group --->
  1602. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1603. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000000314" />
  1604. </div>
  1605. </td>
  1606. </tr>
  1607. <tr>
  1608. <td>
  1609. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000314" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000000314">
  1610. <option value="4294629996">+ 70 C</option>
  1611. <option value="4294629984">+ 75 C</option>
  1612. <option value="4294630005">+ 85 C</option>
  1613. <option value="4294575688">+ 90 C</option>
  1614. <option value="4294629968">+ 100 C</option>
  1615. <option value="4294568129">+ 105 C</option>
  1616. <option value="4294631245">+ 125 C</option>
  1617. <option value="4293983346">+ 130 C</option>
  1618. </select>
  1619. </td>
  1620. </tr>
  1621. <tr>
  1622. <td>
  1623. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1624. </td>
  1625. </tr>
  1626. </table>
  1627. </td>
  1628. <td valign="bottom" style="width: 15px;">
  1629. &nbsp;
  1630. </td>
  1631. </tr>
  1632. </table>
  1633. </td><td>
  1634. <table cellpadding="0" cellspacing="0">
  1635. <tr>
  1636. <td>
  1637. <table>
  1638. <tr>
  1639. <td>
  1640. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">安装风格</span>
  1641. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1642. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1643. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1644. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1645. sorted parametric attributes from an endeca attribute group --->
  1646. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1647. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="1323044" />
  1648. </div>
  1649. </td>
  1650. </tr>
  1651. <tr>
  1652. <td>
  1653. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1323044" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_1323044">
  1654. <option value="4294741457">SMD/SMT</option>
  1655. <option value="4294739373">Through Hole</option>
  1656. </select>
  1657. </td>
  1658. </tr>
  1659. <tr>
  1660. <td>
  1661. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1662. </td>
  1663. </tr>
  1664. </table>
  1665. </td>
  1666. <td valign="bottom" style="width: 15px;">
  1667. &nbsp;
  1668. </td>
  1669. </tr>
  1670. </table>
  1671. </td><td>
  1672. <table cellpadding="0" cellspacing="0">
  1673. <tr>
  1674. <td>
  1675. <table>
  1676. <tr>
  1677. <td>
  1678. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  1679. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  1680. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1681. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1682. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1683. sorted parametric attributes from an endeca attribute group --->
  1684. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  1685. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="688606" />
  1686. </div>
  1687. </td>
  1688. </tr>
  1689. <tr>
  1690. <td>
  1691. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_688606">
  1692. <option value="4294694469">BGA</option>
  1693. <option value="4294677014">BGA-100</option>
  1694. <option value="4291430517">BGA-1152</option>
  1695. <option value="4294025898">BGA-121</option>
  1696. <option value="4292697327">BGA-132</option>
  1697. <option value="4294688763">BGA-144</option>
  1698. <option value="4291430793">BGA-1517</option>
  1699. <option value="4291430576">BGA-164</option>
  1700. <option value="4294672631">BGA-169</option>
  1701. <option value="4291430771">BGA-1760</option>
  1702. <option value="4292995062">BGA-184</option>
  1703. <option value="4289245914">BGA-1932</option>
  1704. <option value="4292986877">BGA-225</option>
  1705. <option value="4293992842">BGA-25</option>
  1706. <option value="4294680905">BGA-256</option>
  1707. <option value="4294675883">BGA-272</option>
  1708. <option value="4294671333">BGA-324</option>
  1709. <option value="4292697326">BGA-332</option>
  1710. <option value="4291430675">BGA-356</option>
  1711. <option value="4291430646">BGA-358</option>
  1712. <option value="4294576393">BGA-36</option>
  1713. <option value="4273123048">BGA-381</option>
  1714. <option value="4294675913">BGA-388</option>
  1715. <option value="4292908022">BGA-400</option>
  1716. <option value="4294675857">BGA-484</option>
  1717. <option value="4294025904">BGA-49</option>
  1718. <option value="4294649468">BGA-492</option>
  1719. <option value="4273123044">BGA-554</option>
  1720. <option value="4289245891">BGA-572</option>
  1721. <option value="4291430443">BGA-600</option>
  1722. <option value="4294677672">BGA-64</option>
  1723. <option value="4291430679">BGA-652</option>
  1724. <option value="4291430717">BGA-672</option>
  1725. <option value="4292761119">BGA-676</option>
  1726. <option value="4292486669">BGA-68</option>
  1727. <option value="4291430786">BGA-780</option>
  1728. <option value="4294671617">BGA-81</option>
  1729. <option value="4289245912">BGA-896</option>
  1730. <option value="4291430702">BGA-956</option>
  1731. <option value="4294649480">CABGA</option>
  1732. <option value="4292790558">CABGA-100-28</option>
  1733. <option value="4292563094">caBGA-256</option>
  1734. <option value="4294671777">CABGA-256</option>
  1735. <option value="4292563087">caBGA-332</option>
  1736. <option value="4292790545">CABGA-49-28</option>
  1737. <option value="4292512791">CBGA-121</option>
  1738. <option value="4292512805">CBGA-132</option>
  1739. <option value="4292512795">CBGA-225</option>
  1740. <option value="4292512775">CBGA-36</option>
  1741. <option value="4268669245">CBGA-381</option>
  1742. <option value="4292512793">CBGA-49</option>
  1743. <option value="4292786475">CBGA-81</option>
  1744. <option value="4294672895">CCGA</option>
  1745. <option value="4292818437">CCGA-624</option>
  1746. <option value="4294681773">CDIP-24</option>
  1747. <option value="4292818400">CFCBGA-1152</option>
  1748. <option value="4292818399">CFCBGA-1704</option>
  1749. <option value="4292863386">CLCC-28</option>
  1750. <option value="4294674102">CQFP</option>
  1751. <option value="4292818436">CQFP-208</option>
  1752. <option value="4292818426">CQFP-256</option>
  1753. <option value="4292818435">CQFP-352</option>
  1754. <option value="4292818433">CQFP-84</option>
  1755. <option value="4294649479">CSBGA</option>
  1756. <option value="4292863800">CSBGA-100</option>
  1757. <option value="4294649466">csBGA-132</option>
  1758. <option value="4292863799">CSBGA-132</option>
  1759. <option value="4292575849">csBGA-256</option>
  1760. <option value="4292554301">CSBGA-328</option>
  1761. <option value="4292790569">CSBGA-56-32</option>
  1762. <option value="4292790560">CSBGA-56-388</option>
  1763. <option value="4292790541">CSBGA-56-484</option>
  1764. <option value="4294674831">CSP</option>
  1765. <option value="4292984185">CSP-196</option>
  1766. <option value="4294012007">CSP-281</option>
  1767. <option value="4294011475">CSP-289</option>
  1768. <option value="4292984158">CSP-81</option>
  1769. <option value="4285438788">EQFP-144</option>
  1770. <option value="4294675019">FBGA</option>
  1771. <option value="4292511278">FBGA-100</option>
  1772. <option value="4291430708">FBGA-1020</option>
  1773. <option value="4292863662">FBGA-1152</option>
  1774. <option value="4294676724">FBGA-144</option>
  1775. <option value="4291430696">FBGA-1508</option>
  1776. <option value="4291430814">FBGA-1517</option>
  1777. <option value="4291430481">FBGA-169</option>
  1778. <option value="4291430773">FBGA-1760</option>
  1779. <option value="4291430795">FBGA-1932</option>
  1780. <option value="4294674867">FBGA-256</option>
  1781. <option value="4292863655">FBGA-324</option>
  1782. <option value="4291430678">FBGA-33</option>
  1783. <option value="4291430742">FBGA-400</option>
  1784. <option value="4294674868">FBGA-484</option>
  1785. <option value="4291430655">FBGA-572</option>
  1786. <option value="4291430803">FBGA-672</option>
  1787. <option value="4291641278">FBGA-780</option>
  1788. <option value="4292863666">FBGA-896</option>
  1789. <option value="4292817294">FCBGA-1152</option>
  1790. <option value="4271292988">FCBGA-325</option>
  1791. <option value="4294688729">FPBGA</option>
  1792. <option value="4292817297">FPBGA-1152</option>
  1793. <option value="4292818404">FPBGA-1156</option>
  1794. <option value="4292984197">FPBGA-144</option>
  1795. <option value="4292790523">FPBGA-144-145</option>
  1796. <option value="4292790515">FPBGA-144-160</option>
  1797. <option value="4292790578">FPBGA-144-224</option>
  1798. <option value="4292790559">FPBGA-144-28</option>
  1799. <option value="4292790561">FPBGA-144-32</option>
  1800. <option value="4292790576">FPBGA-144-400</option>
  1801. <option value="4292790516">FPBGA-144-67</option>
  1802. <option value="4292790099">FPBGA-144-96</option>
  1803. <option value="4294649465">FPBGA-208</option>
  1804. <option value="4292790571">FPBGA-208-28</option>
  1805. <option value="4292790547">FPBGA-208-32</option>
  1806. <option value="4292790528">FPBGA-208-44</option>
  1807. <option value="4292984201">FPBGA-256</option>
  1808. <option value="4292790579">FPBGA-256-100</option>
  1809. <option value="4292790566">FPBGA-256-128</option>
  1810. <option value="4292790540">FPBGA-256-132</option>
  1811. <option value="4292790568">FPBGA-256-144</option>
  1812. <option value="4292790544">FPBGA-256-145</option>
  1813. <option value="4292790574">FPBGA-256-160</option>
  1814. <option value="4292790577">FPBGA-256-176</option>
  1815. <option value="4292790572">FPBGA-256-224</option>
  1816. <option value="4292790535">FPBGA-256-256</option>
  1817. <option value="4292790514">FPBGA-256-400</option>
  1818. <option value="4292790575">FPBGA-256-44</option>
  1819. <option value="4292790565">FPBGA-256-48</option>
  1820. <option value="4292790519">FPBGA-256-49</option>
  1821. <option value="4292790518">FPBGA-256-67</option>
  1822. <option value="4292790512">FPBGA-256-70</option>
  1823. <option value="4292790557">FPBGA-256-97</option>
  1824. <option value="4292790536">FPBGA-388-224</option>
  1825. <option value="4292790522">FPBGA-388-400</option>
  1826. <option value="4292790551">FPBGA-388-49</option>
  1827. <option value="4292790520">FPBGA-388-84</option>
  1828. <option value="4294688433">fpBGA-484</option>
  1829. <option value="4292984200">FPBGA-484</option>
  1830. <option value="4292790564">FPBGA-484-100</option>
  1831. <option value="4292790554">FPBGA-484-176</option>
  1832. <option value="4292790553">FPBGA-484-256</option>
  1833. <option value="4292790562">FPBGA-484-44</option>
  1834. <option value="4292790563">FPBGA-484-48</option>
  1835. <option value="4294674739">fpBGA-672</option>
  1836. <option value="4292818410">FPBGA-672</option>
  1837. <option value="4292790529">FPBGA-672-100</option>
  1838. <option value="4292790549">FPBGA-672-44</option>
  1839. <option value="4292790550">FPBGA-672-48</option>
  1840. <option value="4292984183">FPBGA-896</option>
  1841. <option value="4294674734">fpBGA-900</option>
  1842. <option value="4265085047">FPGA-256</option>
  1843. <option value="4292858598">ftBGA</option>
  1844. <option value="4294677570">FTBGA</option>
  1845. <option value="4292863794">ftBGA-256</option>
  1846. <option value="4292863643">FTBGA-256</option>
  1847. <option value="4292863793">ftBGA-324</option>
  1848. <option value="4292863642">FTBGA-324</option>
  1849. <option value="4292863384">JLCC-44</option>
  1850. <option value="4294686258">LAP-8</option>
  1851. <option value="4292817708">LCC-28</option>
  1852. <option value="4292984211">LGA-624</option>
  1853. <option value="4294688778">LQFP-144</option>
  1854. <option value="4285438784">MBGA-153</option>
  1855. <option value="4290514575">MBGA-301</option>
  1856. <option value="4289814879">MBGA-383</option>
  1857. <option value="4290514576">MBGA-484</option>
  1858. <option value="4285812951">MBGA-64</option>
  1859. <option value="4285812950">MBGA-68</option>
  1860. <option value="4292818398">OFCBGA-1020</option>
  1861. <option value="4292818402">OFCBGA-1152</option>
  1862. <option value="4294688827">PDIP-20</option>
  1863. <option value="4294687493">PDIP-24</option>
  1864. <option value="4294720783">PDIP-40</option>
  1865. <option value="4294741647">PDIP-8</option>
  1866. <option value="4291430395">PGA-160</option>
  1867. <option value="4291430392">PGA-192</option>
  1868. <option value="4292900388">PLCC-100</option>
  1869. <option value="4294687309">PLCC-20</option>
  1870. <option value="4294729354">PLCC-28</option>
  1871. <option value="4294720779">PLCC-44</option>
  1872. <option value="4294683735">PLCC-52</option>
  1873. <option value="4294688798">PLCC-68</option>
  1874. <option value="4294688752">PLCC-84</option>
  1875. <option value="4294684795">PQFP-100</option>
  1876. <option value="4294649471">PQFP-120</option>
  1877. <option value="4294683240">PQFP-128</option>
  1878. <option value="4294684323">PQFP-160</option>
  1879. <option value="4294679339">PQFP-208</option>
  1880. <option value="4292864334">PQFP-240</option>
  1881. <option value="4294719890">QFN</option>
  1882. <option value="4294671306">QFN EP</option>
  1883. <option value="4291430480">QFN-148</option>
  1884. <option value="4294719691">QFN-32</option>
  1885. <option value="4294685209">QFN-48</option>
  1886. <option value="4294671283">QFN-68</option>
  1887. <option value="4292512788">QFN-84</option>
  1888. <option value="4294685157">QFP-144</option>
  1889. <option value="4294677664">QFP-160</option>
  1890. <option value="4294677143">QFP-208</option>
  1891. <option value="4291430746">QFP-240</option>
  1892. <option value="4294685171">QFP-64</option>
  1893. <option value="4292790102">Quad FP-128</option>
  1894. <option value="4292790101">Quad FP-160</option>
  1895. <option value="4292790103">Quad FP-64</option>
  1896. <option value="4294740988">SOIC</option>
  1897. <option value="4294738489">SOIC-16</option>
  1898. <option value="4294729352">SOIC-20</option>
  1899. <option value="4294687808">SOIC-24</option>
  1900. <option value="4294741649">SOIC-8</option>
  1901. <option value="4284568547">STQFN-12</option>
  1902. <option value="4284568543">STQFN-14</option>
  1903. <option value="4284568549">STQFN-20</option>
  1904. <option value="4294721306">TDFN-8</option>
  1905. <option value="4294718154">TQFP-100</option>
  1906. <option value="4294718152">TQFP-128</option>
  1907. <option value="4294688334">TQFP-144</option>
  1908. <option value="4294649474">TQFP-176</option>
  1909. <option value="4294686246">TQFP-32</option>
  1910. <option value="4294686335">TQFP-44</option>
  1911. <option value="4294686753">TQFP-48</option>
  1912. <option value="4294718155">TQFP-64</option>
  1913. <option value="4294740958">TSSOP-20</option>
  1914. <option value="4294719112">TSSOP-24</option>
  1915. <option value="4285438787">UBGA-169</option>
  1916. <option value="4285438786">UBGA-324</option>
  1917. <option value="4290954614">UBGA-484</option>
  1918. <option value="4290954612">UBGA-672</option>
  1919. <option value="4287814572">UBGA-81</option>
  1920. <option value="4287814610">UcBGA-36</option>
  1921. <option value="4287814609">UcBGA-49</option>
  1922. <option value="4293982623">UCSP</option>
  1923. <option value="4271292987">VFPBGA-256</option>
  1924. <option value="4281018634">VFPBGA-400</option>
  1925. <option value="4294686324">VQFP</option>
  1926. <option value="4294688809">VQFP-100</option>
  1927. <option value="4282056059">VQFP-84</option>
  1928. <option value="4292871585">VTQFP</option>
  1929. <option value="4282055043">VTQFP-176</option>
  1930. <option value="4292491039">WLCPS-25</option>
  1931. <option value="4292697325">WLCS-25</option>
  1932. <option value="4292882947">WLCSP-16</option>
  1933. <option value="4292824166">WLCSP-20</option>
  1934. <option value="4292796599">WLCSP-36</option>
  1935. <option value="4290236377">WLCSP-49</option>
  1936. <option value="4290550427">WLCSP-81</option>
  1937. </select>
  1938. </td>
  1939. </tr>
  1940. <tr>
  1941. <td>
  1942. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1943. </td>
  1944. </tr>
  1945. </table>
  1946. </td>
  1947. <td valign="bottom" style="width: 15px;">
  1948. &nbsp;
  1949. </td>
  1950. </tr>
  1951. </table>
  1952. </td>
  1953. </tr>
  1954. </table>
  1955. <table class="ApplyFilter">
  1956. <tr>
  1957. <td class="ApplyFilterColumn1">
  1958. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1959. </td>
  1960. <td class="ApplyFilterColumn2">
  1961. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  1962. </td>
  1963. <td class="ApplyFilterColumn2_5">
  1964. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  1965. </td>
  1966. <td class="ApplyFilterColumn3">
  1967. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1968. </td>
  1969. </tr>
  1970. </table>
  1971. </td>
  1972. </tr>
  1973. </table>
  1974. </div>
  1975. </td>
  1976. </tr>
  1977. </table>
  1978. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  1979. height: 70px; display: none; background: white; border: 1px solid #000;'>
  1980. <br />
  1981. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  1982. <br />
  1983. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  1984. <!--Close Window-->
  1985. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  1986. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  1987. </a>&nbsp;&nbsp;</div>
  1988. </div>
  1989. <div id ="VisualAttributePopup" class="hidden" >
  1990. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  1991. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  1992. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  1993. </div>
  1994. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id="loadingimgspinner" src="/Images/spinner2.gif" /></div>
  1995. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  1996. <table id="tblAttributes" >
  1997. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  1998. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  1999. <td class="visualAttributeImage">
  2000. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  2001. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  2002. </td>
  2003. <td>
  2004. <table class="visualAttValueDesc">
  2005. <tr>
  2006. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  2007. </tr>
  2008. <tr>
  2009. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  2010. </tr>
  2011. <tr data-bind="if: ImagePath1 ">
  2012. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs" /></div></td>
  2013. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  2014. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  2015. </tr>
  2016. </table>
  2017. </td>
  2018. </tr>
  2019. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  2020. </tbody>
  2021. </table>
  2022. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id="Img1" src="/Images/spinner2.gif" />
  2023. <div data-bind="if: hasMoreOptions" align="center">
  2024. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  2025. </div>
  2026. </div>
  2027. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  2028. <div class="visualAttributesBtnDiv">
  2029. <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" />
  2030. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  2031. <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" />
  2032. </div>
  2033. </div>
  2034. <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>
  2035. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2036. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  2037. </div>
  2038. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  2039. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  2040. <script src='../../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  2041. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2042. <script type="text/javascript">
  2043. $().ready(function () {
  2044. ko.applyBindings(new DisplayAttributesModel());
  2045. ko.bindingHandlers.hoverToggle = {
  2046. update: function (element, valueAccessor) {
  2047. var css = valueAccessor();
  2048. var isSelected = $(element).hasClass("selectedAttribute");
  2049. if (!isSelected) {
  2050. ko.utils.registerEventHandler(element, "mouseenter", function () {
  2051. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  2052. });
  2053. ko.utils.registerEventHandler(element, "mouseleave", function () {
  2054. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  2055. });
  2056. }
  2057. }
  2058. };
  2059. });
  2060. </script>
  2061. </div>
  2062. <div id="refine-mfg-logo2">
  2063. </div>
  2064. </div>
  2065. <br />
  2066. <table border="0" width="100%">
  2067. <tr>
  2068. <td>
  2069. </td>
  2070. </tr>
  2071. <tr>
  2072. <td>
  2073. <!--- Search Features --->
  2074. </td>
  2075. </tr>
  2076. <tr>
  2077. <td>
  2078. <div id="refine-page">
  2079. </div>
  2080. </td>
  2081. </tr>
  2082. <tr>
  2083. <td class="refine-show-products">
  2084. <span class="redtextb">
  2085. </span> <span class="redtextb">
  2086. </span> <span class="redtextb">
  2087. </span> <span class="redtextb">
  2088. </span>
  2089. <span class="redtextb">
  2090. </span>
  2091. </td>
  2092. </tr>
  2093. <tr>
  2094. <td>
  2095. </td>
  2096. </tr>
  2097. <tr>
  2098. <td>
  2099. <!--- Special Order Parts New --->
  2100. <!-- SOP Section 1 -->
  2101. </td>
  2102. </tr>
  2103. </table>
  2104. <div id="searchResultsTbl">
  2105. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  2106. <tr>
  2107. <td class="tdSearchResultsPagingTop">
  2108. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  2109. <tr>
  2110. <td>
  2111. <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" />
  2112. </td>
  2113. <td>
  2114. <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" />
  2115. </td>
  2116. <td>
  2117. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  2118. </td>
  2119. <td style="padding-left: 40px;">
  2120. <div class="floatrightpager">
  2121. <span class="bold">
  2122. 页面:
  2123. </span>
  2124. <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/Programmable-Logic-ICs/_/N-6j778/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_655" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=16375">656</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=25">下一页</a></span>
  2125. </div>
  2126. </td>
  2127. </tr>
  2128. </table>
  2129. </td>
  2130. </tr>
  2131. <tr>
  2132. <td>
  2133. <div>
  2134. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  2135. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  2136. <th class="td-select" scope="col" style="width:35px;">
  2137. 选择
  2138. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  2139. </th><th scope="col">制造商 零件编号
  2140. </th><th scope="col">制造商
  2141. </th><th scope="col">描述
  2142. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../Images/Search/pdf.gif" alt="文件" />
  2143. </th><th scope="col">供货情况
  2144. </th><th scope="col">单价(含17%增值税)
  2145. <br />
  2146. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  2147. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  2148. </th><th class="SearchResultParametricColumnHeading" scope="col">产品
  2149. </th><th class="SearchResultParametricColumnHeading" scope="col">最大工作频率
  2150. </th><th class="SearchResultParametricColumnHeading" scope="col">工作电源电压
  2151. </th><th class="SearchResultParametricColumnHeading" scope="col">最大工作温度
  2152. </th><th class="SearchResultParametricColumnHeading" scope="col">安装风格
  2153. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  2154. </th>
  2155. </tr><tr class="SearchResultsSortCell">
  2156. <td class="td-select" align="center"></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl17&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 Mouser 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl19&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 Mouser 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Ascending&#39;); return false;" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl02_ctl21" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl21&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl23&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl25&#39;,&#39;&#39;)"><img title="按 制造商 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl27&#39;,&#39;&#39;)"><img title="按 制造商 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Default>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl29&#39;,&#39;&#39;)"><img title="按 供货情况 Ascending 排序" src="../../../../../Images/Search/btn_ActiveSort_Up.jpg" alt="按 供货情况 Ascending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl31&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 单价(含17%增值税) Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl33&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Product>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl35&#39;,&#39;&#39;)"><img title="按 产品 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 产品 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Product>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl37&#39;,&#39;&#39;)"><img title="按 产品 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 产品 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Operating Frequency>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl39&#39;,&#39;&#39;)"><img title="按 最大工作频率 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 最大工作频率 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Operating Frequency>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl41&#39;,&#39;&#39;)"><img title="按 最大工作频率 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 最大工作频率 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Operating Supply Voltage>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl43&#39;,&#39;&#39;)"><img title="按 工作电源电压 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 工作电源电压 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Operating Supply Voltage>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl45&#39;,&#39;&#39;)"><img title="按 工作电源电压 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 工作电源电压 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Operating Temperature>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl47&#39;,&#39;&#39;)"><img title="按 最大工作温度 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 最大工作温度 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Operating Temperature>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl49&#39;,&#39;&#39;)"><img title="按 最大工作温度 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 最大工作温度 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Mounting Style>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl51&#39;,&#39;&#39;)"><img title="按 安装风格 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 安装风格 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Mounting Style>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl53&#39;,&#39;&#39;)"><img title="按 安装风格 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 安装风格 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl55&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 封装 / 箱体 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl57&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 / 箱体 Descending 排序" /></a></td>
  2157. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M02DCV36C8G" data-index="3">
  2158. <td class="td-select" align="center">
  2159. <div style="padding: 5px 5px 0 5px;">
  2160. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl03$chkSelect" onclick="javascript:RowSelected(3, this.checked);" /></span>
  2161. </div>
  2162. </td><td><a href='/ProductDetail/Altera-Corporation/10M02DCV36C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUApulbd8p2oKrEK%252bpAhuSdQ%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>
  2163. <div style="text-align:left;">
  2164. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M02DCV36C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUApulbd8p2oKrEK%252bpAhuSdQ%3d%3d">989-10M02DCV36C8G</a><br />
  2165. <br />
  2166. <br />
  2167. 要购买完整 卷轴,请订购 1000 的倍数:
  2168. </div></td><td>
  2169. <div class="mfrDiv">
  2170. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M02DCV36C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUApulbd8p2oKrEK%252bpAhuSdQ%3d%3d">10M02DCV36C8G</a><br />
  2171. <br />
  2172. <div style="width: 100%; text-align: center;">
  2173. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2174. </div>
  2175. <div style="width: 100%; text-align: center;">
  2176. </div>
  2177. </div>
  2178. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  2179. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 27 I/O, 36WLCSP
  2180. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2181. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  2182. </div>
  2183. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2184. </div>
  2185. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Altera Corporation&quot;,&quot;989-10M02DCV36C8G | 10M02DCV36C8G&quot;]);" href="http://www.mouser.com/ds/2/591/m10_overview-709317.pdf" target="_blank">数据表</a>
  2186. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">765<br/>有库存</span>
  2187. <table>
  2188. <tr align="center">
  2189. <td style="padding-top: 5px">
  2190. </td>
  2191. </tr>
  2192. <tr align="center">
  2193. <td style="padding-top: 5px; padding-bottom: 5px">
  2194. </td>
  2195. </tr>
  2196. </table></td><td>
  2197. <table class="PriceBreaks" cellspacing="0" border="0">
  2198. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2199. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2200. </td>
  2201. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2202. </td>
  2203. </tr>
  2204. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2205. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2206. 剪切带
  2207. </td>
  2208. </tr>
  2209. <tr>
  2210. <td class="PriceBreakQuantity">
  2211. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  2212. </td>
  2213. <td class="PriceBreakPrice">
  2214. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥29.1096</span>
  2215. </td>
  2216. </tr>
  2217. <tr>
  2218. <td class="PriceBreakQuantity">
  2219. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  2220. </td>
  2221. <td class="PriceBreakPrice">
  2222. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥23.2596</span>
  2223. </td>
  2224. </tr>
  2225. <tr>
  2226. <td class="PriceBreakQuantity">
  2227. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,100);">100:</a>
  2228. </td>
  2229. <td class="PriceBreakPrice">
  2230. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥22.7214</span>
  2231. </td>
  2232. </tr>
  2233. <tr>
  2234. <td class="PriceBreakQuantity">
  2235. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,500);">500:</a>
  2236. </td>
  2237. <td class="PriceBreakPrice">
  2238. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥21.8673</span>
  2239. </td>
  2240. </tr>
  2241. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2242. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2243. 卷轴
  2244. </td>
  2245. </tr>
  2246. <tr>
  2247. <td class="PriceBreakQuantity">
  2248. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(1,1000);">1,000:</a>
  2249. </td>
  2250. <td class="PriceBreakPrice">
  2251. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥21.8673</span>
  2252. </td>
  2253. </tr>
  2254. <tr>
  2255. <td><br /></td>
  2256. </tr>
  2257. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  2258. <td colspan="2" style="text-align: center;">
  2259. </td>
  2260. </tr>
  2261. </table>
  2262. </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;)">
  2263. <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 />
  2264. <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 />
  2265. <table cellspacing="0" border="0" style="width: 100%;">
  2266. <tr>
  2267. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2268. 最低:
  2269. </td>
  2270. <td style="padding-left: 2px; text-align: left;">
  2271. 1
  2272. </td>
  2273. </tr>
  2274. <tr>
  2275. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2276. 多个:
  2277. </td>
  2278. <td style="padding-left: 2px; text-align: left;">
  2279. 1
  2280. </td>
  2281. </tr>
  2282. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_trReel">
  2283. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2284. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(1,1000);">卷轴</a>:
  2285. </td>
  2286. <td style="padding-left: 2px; text-align: left;">
  2287. <em class="SearchResultsReel">
  2288. 1,000
  2289. </em>
  2290. </td>
  2291. </tr>
  2292. </table>
  2293. </div>
  2294. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  2295. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2296. <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>
  2297. </div>
  2298. </td><td>MAX10
  2299. </td><td>450 MHz
  2300. </td><td>1.2 V/2.5 V
  2301. </td><td>+ 85 C
  2302. </td><td>SMD/SMT
  2303. </td><td>WLCSP-36
  2304. </td>
  2305. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M08SCE144I7G" data-index="4">
  2306. <td class="td-select" align="center">
  2307. <div style="padding: 5px 5px 0 5px;">
  2308. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl04$chkSelect" onclick="javascript:RowSelected(4, this.checked);" /></span>
  2309. </div>
  2310. </td><td><a href='/ProductDetail/Altera-Corporation/10M08SCE144I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nxaz4b2R8YEjFPmiWjULMkw%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>
  2311. <div style="text-align:left;">
  2312. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M08SCE144I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nxaz4b2R8YEjFPmiWjULMkw%3d%3d">989-10M08SCE144I7G</a><br />
  2313. <br />
  2314. <br />
  2315. </div></td><td>
  2316. <div class="mfrDiv">
  2317. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M08SCE144I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nxaz4b2R8YEjFPmiWjULMkw%3d%3d">10M08SCE144I7G</a><br />
  2318. <br />
  2319. <div style="width: 100%; text-align: center;">
  2320. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2321. </div>
  2322. <div style="width: 100%; text-align: center;">
  2323. </div>
  2324. </div>
  2325. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  2326. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 101 I/O, 144EQFP
  2327. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2328. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  2329. </div>
  2330. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2331. </div>
  2332. </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>
  2333. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">80<br/>有库存</span>
  2334. <table>
  2335. <tr align="center">
  2336. <td style="padding-top: 5px">
  2337. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Altera-Corporation/10M08SCE144I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nxaz4b2R8YEjFPmiWjULMkw%3d%3d">更多信息可用 </a>
  2338. </td>
  2339. </tr>
  2340. <tr align="center">
  2341. <td style="padding-top: 5px; padding-bottom: 5px">
  2342. </td>
  2343. </tr>
  2344. </table></td><td>
  2345. <table class="PriceBreaks" cellspacing="0" border="0">
  2346. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2347. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2348. </td>
  2349. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2350. </td>
  2351. </tr>
  2352. <tr>
  2353. <td class="PriceBreakQuantity">
  2354. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  2355. </td>
  2356. <td class="PriceBreakPrice">
  2357. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥179.2791</span>
  2358. </td>
  2359. </tr>
  2360. <tr>
  2361. <td class="PriceBreakQuantity">
  2362. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,25);">25:</a>
  2363. </td>
  2364. <td class="PriceBreakPrice">
  2365. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥143.3952</span>
  2366. </td>
  2367. </tr>
  2368. <tr>
  2369. <td class="PriceBreakQuantity">
  2370. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  2371. </td>
  2372. <td class="PriceBreakPrice">
  2373. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥139.8501</span>
  2374. </td>
  2375. </tr>
  2376. <tr>
  2377. <td class="PriceBreakQuantity">
  2378. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,500);">500:</a>
  2379. </td>
  2380. <td class="PriceBreakPrice">
  2381. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥134.4564</span>
  2382. </td>
  2383. </tr>
  2384. <tr>
  2385. <td><br /></td>
  2386. </tr>
  2387. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2388. <td colspan="2" style="text-align: center;">
  2389. </td>
  2390. </tr>
  2391. </table>
  2392. </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;)">
  2393. <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 />
  2394. <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 />
  2395. <table cellspacing="0" border="0" style="width: 100%;">
  2396. <tr>
  2397. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2398. 最低:
  2399. </td>
  2400. <td style="padding-left: 2px; text-align: left;">
  2401. 1
  2402. </td>
  2403. </tr>
  2404. <tr>
  2405. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2406. 多个:
  2407. </td>
  2408. <td style="padding-left: 2px; text-align: left;">
  2409. 1
  2410. </td>
  2411. </tr>
  2412. </table>
  2413. </div>
  2414. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  2415. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2416. <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>
  2417. </div>
  2418. </td><td>MAX10
  2419. </td><td>472.5 MHz
  2420. </td><td>1.63 V
  2421. </td><td>+ 100 C
  2422. </td><td>SMD/SMT
  2423. </td><td>EQFP-144
  2424. </td>
  2425. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M02SCM153I7G" data-index="5">
  2426. <td class="td-select" align="center">
  2427. <div style="padding: 5px 5px 0 5px;">
  2428. <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>
  2429. </div>
  2430. </td><td><a href='/ProductDetail/Altera-Corporation/10M02SCM153I7G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUZQuEBFN55kM%252bKultEayFtQ%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>
  2431. <div style="text-align:left;">
  2432. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M02SCM153I7G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUZQuEBFN55kM%252bKultEayFtQ%3d%3d">989-10M02SCM153I7G</a><br />
  2433. <br />
  2434. <br />
  2435. </div></td><td>
  2436. <div class="mfrDiv">
  2437. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M02SCM153I7G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUZQuEBFN55kM%252bKultEayFtQ%3d%3d">10M02SCM153I7G</a><br />
  2438. <br />
  2439. <div style="width: 100%; text-align: center;">
  2440. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2441. </div>
  2442. <div style="width: 100%; text-align: center;">
  2443. </div>
  2444. </div>
  2445. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  2446. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 112 I/O, 153MBGA
  2447. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2448. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  2449. </div>
  2450. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2451. </div>
  2452. </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>
  2453. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">276<br/>有库存</span>
  2454. <table>
  2455. <tr align="center">
  2456. <td style="padding-top: 5px">
  2457. </td>
  2458. </tr>
  2459. <tr align="center">
  2460. <td style="padding-top: 5px; padding-bottom: 5px">
  2461. </td>
  2462. </tr>
  2463. </table></td><td>
  2464. <table class="PriceBreaks" cellspacing="0" border="0">
  2465. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2466. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2467. </td>
  2468. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2469. </td>
  2470. </tr>
  2471. <tr>
  2472. <td class="PriceBreakQuantity">
  2473. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  2474. </td>
  2475. <td class="PriceBreakPrice">
  2476. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥62.8407</span>
  2477. </td>
  2478. </tr>
  2479. <tr>
  2480. <td class="PriceBreakQuantity">
  2481. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  2482. </td>
  2483. <td class="PriceBreakPrice">
  2484. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥50.2866</span>
  2485. </td>
  2486. </tr>
  2487. <tr>
  2488. <td class="PriceBreakQuantity">
  2489. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  2490. </td>
  2491. <td class="PriceBreakPrice">
  2492. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥48.9762</span>
  2493. </td>
  2494. </tr>
  2495. <tr>
  2496. <td class="PriceBreakQuantity">
  2497. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,500);">500:</a>
  2498. </td>
  2499. <td class="PriceBreakPrice">
  2500. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥47.1276</span>
  2501. </td>
  2502. </tr>
  2503. <tr>
  2504. <td><br /></td>
  2505. </tr>
  2506. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2507. <td colspan="2" style="text-align: center;">
  2508. </td>
  2509. </tr>
  2510. </table>
  2511. </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;)">
  2512. <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 />
  2513. <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 />
  2514. <table cellspacing="0" border="0" style="width: 100%;">
  2515. <tr>
  2516. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2517. 最低:
  2518. </td>
  2519. <td style="padding-left: 2px; text-align: left;">
  2520. 1
  2521. </td>
  2522. </tr>
  2523. <tr>
  2524. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2525. 多个:
  2526. </td>
  2527. <td style="padding-left: 2px; text-align: left;">
  2528. 1
  2529. </td>
  2530. </tr>
  2531. </table>
  2532. </div>
  2533. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2534. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2535. <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>
  2536. </div>
  2537. </td><td>
  2538. </td><td>
  2539. </td><td>
  2540. </td><td>
  2541. </td><td>SMD/SMT
  2542. </td><td>MBGA-153
  2543. </td>
  2544. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M08SCU169I7G" data-index="6">
  2545. <td class="td-select" align="center">
  2546. <div style="padding: 5px 5px 0 5px;">
  2547. <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>
  2548. </div>
  2549. </td><td><a href='/ProductDetail/Altera-Corporation/10M08SCU169I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6ncpf3f%252bRJlUnU%252bx0TCvS4xA%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>
  2550. <div style="text-align:left;">
  2551. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M08SCU169I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6ncpf3f%252bRJlUnU%252bx0TCvS4xA%3d%3d">989-10M08SCU169I7G</a><br />
  2552. <br />
  2553. <br />
  2554. </div></td><td>
  2555. <div class="mfrDiv">
  2556. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M08SCU169I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6ncpf3f%252bRJlUnU%252bx0TCvS4xA%3d%3d">10M08SCU169I7G</a><br />
  2557. <br />
  2558. <div style="width: 100%; text-align: center;">
  2559. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2560. </div>
  2561. <div style="width: 100%; text-align: center;">
  2562. </div>
  2563. </div>
  2564. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  2565. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 130 I/O, 169UBGA
  2566. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2567. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  2568. </div>
  2569. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2570. </div>
  2571. </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>
  2572. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">152<br/>有库存</span>
  2573. <table>
  2574. <tr align="center">
  2575. <td style="padding-top: 5px">
  2576. </td>
  2577. </tr>
  2578. <tr align="center">
  2579. <td style="padding-top: 5px; padding-bottom: 5px">
  2580. </td>
  2581. </tr>
  2582. </table></td><td>
  2583. <table class="PriceBreaks" cellspacing="0" border="0">
  2584. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2585. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2586. </td>
  2587. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2588. </td>
  2589. </tr>
  2590. <tr>
  2591. <td class="PriceBreakQuantity">
  2592. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  2593. </td>
  2594. <td class="PriceBreakPrice">
  2595. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥114.5898</span>
  2596. </td>
  2597. </tr>
  2598. <tr>
  2599. <td class="PriceBreakQuantity">
  2600. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,25);">25:</a>
  2601. </td>
  2602. <td class="PriceBreakPrice">
  2603. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥91.6461</span>
  2604. </td>
  2605. </tr>
  2606. <tr>
  2607. <td class="PriceBreakQuantity">
  2608. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,100);">100:</a>
  2609. </td>
  2610. <td class="PriceBreakPrice">
  2611. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥89.4114</span>
  2612. </td>
  2613. </tr>
  2614. <tr>
  2615. <td class="PriceBreakQuantity">
  2616. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,500);">500:</a>
  2617. </td>
  2618. <td class="PriceBreakPrice">
  2619. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥85.9482</span>
  2620. </td>
  2621. </tr>
  2622. <tr>
  2623. <td><br /></td>
  2624. </tr>
  2625. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2626. <td colspan="2" style="text-align: center;">
  2627. </td>
  2628. </tr>
  2629. </table>
  2630. </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;)">
  2631. <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 />
  2632. <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 />
  2633. <table cellspacing="0" border="0" style="width: 100%;">
  2634. <tr>
  2635. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2636. 最低:
  2637. </td>
  2638. <td style="padding-left: 2px; text-align: left;">
  2639. 1
  2640. </td>
  2641. </tr>
  2642. <tr>
  2643. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2644. 多个:
  2645. </td>
  2646. <td style="padding-left: 2px; text-align: left;">
  2647. 1
  2648. </td>
  2649. </tr>
  2650. </table>
  2651. </div>
  2652. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  2653. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2654. <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>
  2655. </div>
  2656. </td><td>
  2657. </td><td>
  2658. </td><td>
  2659. </td><td>
  2660. </td><td>SMD/SMT
  2661. </td><td>UBGA-169
  2662. </td>
  2663. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M50SAE144C8G" data-index="7">
  2664. <td class="td-select" align="center">
  2665. <div style="padding: 5px 5px 0 5px;">
  2666. <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>
  2667. </div>
  2668. </td><td><a href='/ProductDetail/Altera-Corporation/10M50SAE144C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUkL2tsNHGmR0sB9eHQSPbkQ%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>
  2669. <div style="text-align:left;">
  2670. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M50SAE144C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUkL2tsNHGmR0sB9eHQSPbkQ%3d%3d">989-10M50SAE144C8G</a><br />
  2671. <br />
  2672. <br />
  2673. </div></td><td>
  2674. <div class="mfrDiv">
  2675. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M50SAE144C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUkL2tsNHGmR0sB9eHQSPbkQ%3d%3d">10M50SAE144C8G</a><br />
  2676. <br />
  2677. <div style="width: 100%; text-align: center;">
  2678. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2679. </div>
  2680. <div style="width: 100%; text-align: center;">
  2681. </div>
  2682. </div>
  2683. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  2684. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 101 I/O, 144EQFP
  2685. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2686. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  2687. </div>
  2688. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2689. </div>
  2690. </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>
  2691. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">27<br/>有库存</span>
  2692. <table>
  2693. <tr align="center">
  2694. <td style="padding-top: 5px">
  2695. </td>
  2696. </tr>
  2697. <tr align="center">
  2698. <td style="padding-top: 5px; padding-bottom: 5px">
  2699. </td>
  2700. </tr>
  2701. </table></td><td>
  2702. <table class="PriceBreaks" cellspacing="0" border="0">
  2703. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2704. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2705. </td>
  2706. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2707. </td>
  2708. </tr>
  2709. <tr>
  2710. <td class="PriceBreakQuantity">
  2711. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  2712. </td>
  2713. <td class="PriceBreakPrice">
  2714. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥514.9638</span>
  2715. </td>
  2716. </tr>
  2717. <tr>
  2718. <td class="PriceBreakQuantity">
  2719. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
  2720. </td>
  2721. <td class="PriceBreakPrice">
  2722. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥432.5607</span>
  2723. </td>
  2724. </tr>
  2725. <tr>
  2726. <td class="PriceBreakQuantity">
  2727. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,100);">100:</a>
  2728. </td>
  2729. <td class="PriceBreakPrice">
  2730. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥422.2413</span>
  2731. </td>
  2732. </tr>
  2733. <tr>
  2734. <td><br /></td>
  2735. </tr>
  2736. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  2737. <td colspan="2" style="text-align: center;">
  2738. </td>
  2739. </tr>
  2740. </table>
  2741. </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;)">
  2742. <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 />
  2743. <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 />
  2744. <table cellspacing="0" border="0" style="width: 100%;">
  2745. <tr>
  2746. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2747. 最低:
  2748. </td>
  2749. <td style="padding-left: 2px; text-align: left;">
  2750. 1
  2751. </td>
  2752. </tr>
  2753. <tr>
  2754. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2755. 多个:
  2756. </td>
  2757. <td style="padding-left: 2px; text-align: left;">
  2758. 1
  2759. </td>
  2760. </tr>
  2761. </table>
  2762. </div>
  2763. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2764. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2765. <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>
  2766. </div>
  2767. </td><td>
  2768. </td><td>
  2769. </td><td>
  2770. </td><td>
  2771. </td><td>SMD/SMT
  2772. </td><td>EQFP-144
  2773. </td>
  2774. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M16SAU169C8G" data-index="8">
  2775. <td class="td-select" align="center">
  2776. <div style="padding: 5px 5px 0 5px;">
  2777. <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>
  2778. </div>
  2779. </td><td><a href='/ProductDetail/Altera-Corporation/10M16SAU169C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUiOkB8Jizq%2f9U3Y7iXLhN9g%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>
  2780. <div style="text-align:left;">
  2781. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M16SAU169C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUiOkB8Jizq%2f9U3Y7iXLhN9g%3d%3d">989-10M16SAU169C8G</a><br />
  2782. <br />
  2783. <br />
  2784. </div></td><td>
  2785. <div class="mfrDiv">
  2786. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M16SAU169C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUiOkB8Jizq%2f9U3Y7iXLhN9g%3d%3d">10M16SAU169C8G</a><br />
  2787. <br />
  2788. <div style="width: 100%; text-align: center;">
  2789. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2790. </div>
  2791. <div style="width: 100%; text-align: center;">
  2792. </div>
  2793. </div>
  2794. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  2795. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 130 I/O, 169UBGA
  2796. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2797. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  2798. </div>
  2799. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2800. </div>
  2801. </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>
  2802. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">162<br/>有库存</span>
  2803. <table>
  2804. <tr align="center">
  2805. <td style="padding-top: 5px">
  2806. </td>
  2807. </tr>
  2808. <tr align="center">
  2809. <td style="padding-top: 5px; padding-bottom: 5px">
  2810. </td>
  2811. </tr>
  2812. </table></td><td>
  2813. <table class="PriceBreaks" cellspacing="0" border="0">
  2814. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2815. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2816. </td>
  2817. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2818. </td>
  2819. </tr>
  2820. <tr>
  2821. <td class="PriceBreakQuantity">
  2822. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  2823. </td>
  2824. <td class="PriceBreakPrice">
  2825. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥255.06</span>
  2826. </td>
  2827. </tr>
  2828. <tr>
  2829. <td class="PriceBreakQuantity">
  2830. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  2831. </td>
  2832. <td class="PriceBreakPrice">
  2833. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥204.0714</span>
  2834. </td>
  2835. </tr>
  2836. <tr>
  2837. <td class="PriceBreakQuantity">
  2838. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  2839. </td>
  2840. <td class="PriceBreakPrice">
  2841. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥198.9117</span>
  2842. </td>
  2843. </tr>
  2844. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  2845. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2846. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(6,500);">500:</a>
  2847. </td>
  2848. <td class="PriceBreakPrice">
  2849. <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>
  2850. </td>
  2851. </tr>
  2852. <tr>
  2853. <td><br /></td>
  2854. </tr>
  2855. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  2856. <td colspan="2" style="text-align: center;">
  2857. </td>
  2858. </tr>
  2859. </table>
  2860. </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;)">
  2861. <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 />
  2862. <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 />
  2863. <table cellspacing="0" border="0" style="width: 100%;">
  2864. <tr>
  2865. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2866. 最低:
  2867. </td>
  2868. <td style="padding-left: 2px; text-align: left;">
  2869. 1
  2870. </td>
  2871. </tr>
  2872. <tr>
  2873. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2874. 多个:
  2875. </td>
  2876. <td style="padding-left: 2px; text-align: left;">
  2877. 1
  2878. </td>
  2879. </tr>
  2880. </table>
  2881. </div>
  2882. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2883. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2884. <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>
  2885. </div>
  2886. </td><td>MAX10
  2887. </td><td>450 MHz
  2888. </td><td>3 V/3.3 V
  2889. </td><td>+ 85 C
  2890. </td><td>SMD/SMT
  2891. </td><td>UBGA-169
  2892. </td>
  2893. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M08DCF484C8G" data-index="9">
  2894. <td class="td-select" align="center">
  2895. <div style="padding: 5px 5px 0 5px;">
  2896. <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>
  2897. </div>
  2898. </td><td><a href='/ProductDetail/Altera-Corporation/10M08DCF484C8G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nUnFs3jEVk4PZR68%2fenL5ww%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>
  2899. <div style="text-align:left;">
  2900. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M08DCF484C8G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nUnFs3jEVk4PZR68%2fenL5ww%3d%3d">989-10M08DCF484C8G</a><br />
  2901. <br />
  2902. <br />
  2903. </div></td><td>
  2904. <div class="mfrDiv">
  2905. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M08DCF484C8G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nUnFs3jEVk4PZR68%2fenL5ww%3d%3d">10M08DCF484C8G</a><br />
  2906. <br />
  2907. <div style="width: 100%; text-align: center;">
  2908. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2909. </div>
  2910. <div style="width: 100%; text-align: center;">
  2911. </div>
  2912. </div>
  2913. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  2914. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 250 I/O, 484FBGA
  2915. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2916. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  2917. </div>
  2918. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2919. </div>
  2920. </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>
  2921. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">69<br/>有库存</span>
  2922. <table>
  2923. <tr align="center">
  2924. <td style="padding-top: 5px">
  2925. </td>
  2926. </tr>
  2927. <tr align="center">
  2928. <td style="padding-top: 5px; padding-bottom: 5px">
  2929. </td>
  2930. </tr>
  2931. </table></td><td>
  2932. <table class="PriceBreaks" cellspacing="0" border="0">
  2933. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2934. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2935. </td>
  2936. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2937. </td>
  2938. </tr>
  2939. <tr>
  2940. <td class="PriceBreakQuantity">
  2941. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  2942. </td>
  2943. <td class="PriceBreakPrice">
  2944. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥212.7762</span>
  2945. </td>
  2946. </tr>
  2947. <tr>
  2948. <td class="PriceBreakQuantity">
  2949. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,25);">25:</a>
  2950. </td>
  2951. <td class="PriceBreakPrice">
  2952. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥170.1882</span>
  2953. </td>
  2954. </tr>
  2955. <tr>
  2956. <td class="PriceBreakQuantity">
  2957. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  2958. </td>
  2959. <td class="PriceBreakPrice">
  2960. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥165.9528</span>
  2961. </td>
  2962. </tr>
  2963. <tr>
  2964. <td class="PriceBreakQuantity">
  2965. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,500);">500:</a>
  2966. </td>
  2967. <td class="PriceBreakPrice">
  2968. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥159.5646</span>
  2969. </td>
  2970. </tr>
  2971. <tr>
  2972. <td><br /></td>
  2973. </tr>
  2974. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2975. <td colspan="2" style="text-align: center;">
  2976. </td>
  2977. </tr>
  2978. </table>
  2979. </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;)">
  2980. <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 />
  2981. <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 />
  2982. <table cellspacing="0" border="0" style="width: 100%;">
  2983. <tr>
  2984. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2985. 最低:
  2986. </td>
  2987. <td style="padding-left: 2px; text-align: left;">
  2988. 1
  2989. </td>
  2990. </tr>
  2991. <tr>
  2992. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2993. 多个:
  2994. </td>
  2995. <td style="padding-left: 2px; text-align: left;">
  2996. 1
  2997. </td>
  2998. </tr>
  2999. </table>
  3000. </div>
  3001. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  3002. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3003. <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>
  3004. </div>
  3005. </td><td>MAX10
  3006. </td><td>450 MHz
  3007. </td><td>1.2 V/2.5 V
  3008. </td><td>+ 85 C
  3009. </td><td>SMD/SMT
  3010. </td><td>FBGA-484
  3011. </td>
  3012. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M16SCE144I7G" data-index="10">
  3013. <td class="td-select" align="center">
  3014. <div style="padding: 5px 5px 0 5px;">
  3015. <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>
  3016. </div>
  3017. </td><td><a href='/ProductDetail/Altera-Corporation/10M16SCE144I7G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUkLsnhhOEW6BlNV28k%252bwuUQ%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>
  3018. <div style="text-align:left;">
  3019. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M16SCE144I7G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUkLsnhhOEW6BlNV28k%252bwuUQ%3d%3d">989-10M16SCE144I7G</a><br />
  3020. <br />
  3021. <br />
  3022. </div></td><td>
  3023. <div class="mfrDiv">
  3024. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M16SCE144I7G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUkLsnhhOEW6BlNV28k%252bwuUQ%3d%3d">10M16SCE144I7G</a><br />
  3025. <br />
  3026. <div style="width: 100%; text-align: center;">
  3027. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3028. </div>
  3029. <div style="width: 100%; text-align: center;">
  3030. </div>
  3031. </div>
  3032. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  3033. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 101 I/O, 144EQFP
  3034. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3035. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  3036. </div>
  3037. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3038. </div>
  3039. </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>
  3040. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">58<br/>有库存</span>
  3041. <table>
  3042. <tr align="center">
  3043. <td style="padding-top: 5px">
  3044. </td>
  3045. </tr>
  3046. <tr align="center">
  3047. <td style="padding-top: 5px; padding-bottom: 5px">
  3048. </td>
  3049. </tr>
  3050. </table></td><td>
  3051. <table class="PriceBreaks" cellspacing="0" border="0">
  3052. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3053. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3054. </td>
  3055. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3056. </td>
  3057. </tr>
  3058. <tr>
  3059. <td class="PriceBreakQuantity">
  3060. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  3061. </td>
  3062. <td class="PriceBreakPrice">
  3063. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥350.2395</span>
  3064. </td>
  3065. </tr>
  3066. <tr>
  3067. <td class="PriceBreakQuantity">
  3068. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,25);">25:</a>
  3069. </td>
  3070. <td class="PriceBreakPrice">
  3071. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥280.1565</span>
  3072. </td>
  3073. </tr>
  3074. <tr>
  3075. <td class="PriceBreakQuantity">
  3076. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,100);">100:</a>
  3077. </td>
  3078. <td class="PriceBreakPrice">
  3079. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥273.1482</span>
  3080. </td>
  3081. </tr>
  3082. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  3083. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3084. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(8,500);">500:</a>
  3085. </td>
  3086. <td class="PriceBreakPrice">
  3087. <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>
  3088. </td>
  3089. </tr>
  3090. <tr>
  3091. <td><br /></td>
  3092. </tr>
  3093. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  3094. <td colspan="2" style="text-align: center;">
  3095. </td>
  3096. </tr>
  3097. </table>
  3098. </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;)">
  3099. <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 />
  3100. <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 />
  3101. <table cellspacing="0" border="0" style="width: 100%;">
  3102. <tr>
  3103. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3104. 最低:
  3105. </td>
  3106. <td style="padding-left: 2px; text-align: left;">
  3107. 1
  3108. </td>
  3109. </tr>
  3110. <tr>
  3111. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3112. 多个:
  3113. </td>
  3114. <td style="padding-left: 2px; text-align: left;">
  3115. 1
  3116. </td>
  3117. </tr>
  3118. </table>
  3119. </div>
  3120. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  3121. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3122. <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>
  3123. </div>
  3124. </td><td>
  3125. </td><td>
  3126. </td><td>
  3127. </td><td>
  3128. </td><td>SMD/SMT
  3129. </td><td>EQFP-144
  3130. </td>
  3131. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M04SCU169I7G" data-index="11">
  3132. <td class="td-select" align="center">
  3133. <div style="padding: 5px 5px 0 5px;">
  3134. <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>
  3135. </div>
  3136. </td><td><a href='/ProductDetail/Altera-Corporation/10M04SCU169I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nh8Pfx5bqLTbXQxUNEt1l6A%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>
  3137. <div style="text-align:left;">
  3138. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M04SCU169I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nh8Pfx5bqLTbXQxUNEt1l6A%3d%3d">989-10M04SCU169I7G</a><br />
  3139. <br />
  3140. <br />
  3141. </div></td><td>
  3142. <div class="mfrDiv">
  3143. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M04SCU169I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nh8Pfx5bqLTbXQxUNEt1l6A%3d%3d">10M04SCU169I7G</a><br />
  3144. <br />
  3145. <div style="width: 100%; text-align: center;">
  3146. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3147. </div>
  3148. <div style="width: 100%; text-align: center;">
  3149. </div>
  3150. </div>
  3151. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  3152. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 130 I/O, 169UBGA
  3153. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3154. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  3155. </div>
  3156. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3157. </div>
  3158. </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>
  3159. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">146<br/>有库存</span>
  3160. <table>
  3161. <tr align="center">
  3162. <td style="padding-top: 5px">
  3163. </td>
  3164. </tr>
  3165. <tr align="center">
  3166. <td style="padding-top: 5px; padding-bottom: 5px">
  3167. </td>
  3168. </tr>
  3169. </table></td><td>
  3170. <table class="PriceBreaks" cellspacing="0" border="0">
  3171. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3172. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3173. </td>
  3174. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3175. </td>
  3176. </tr>
  3177. <tr>
  3178. <td class="PriceBreakQuantity">
  3179. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  3180. </td>
  3181. <td class="PriceBreakPrice">
  3182. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥98.8767</span>
  3183. </td>
  3184. </tr>
  3185. <tr>
  3186. <td class="PriceBreakQuantity">
  3187. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  3188. </td>
  3189. <td class="PriceBreakPrice">
  3190. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥79.092</span>
  3191. </td>
  3192. </tr>
  3193. <tr>
  3194. <td class="PriceBreakQuantity">
  3195. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,100);">100:</a>
  3196. </td>
  3197. <td class="PriceBreakPrice">
  3198. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥77.1615</span>
  3199. </td>
  3200. </tr>
  3201. <tr>
  3202. <td class="PriceBreakQuantity">
  3203. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,500);">500:</a>
  3204. </td>
  3205. <td class="PriceBreakPrice">
  3206. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥74.1546</span>
  3207. </td>
  3208. </tr>
  3209. <tr>
  3210. <td><br /></td>
  3211. </tr>
  3212. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3213. <td colspan="2" style="text-align: center;">
  3214. </td>
  3215. </tr>
  3216. </table>
  3217. </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;)">
  3218. <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 />
  3219. <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 />
  3220. <table cellspacing="0" border="0" style="width: 100%;">
  3221. <tr>
  3222. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3223. 最低:
  3224. </td>
  3225. <td style="padding-left: 2px; text-align: left;">
  3226. 1
  3227. </td>
  3228. </tr>
  3229. <tr>
  3230. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3231. 多个:
  3232. </td>
  3233. <td style="padding-left: 2px; text-align: left;">
  3234. 1
  3235. </td>
  3236. </tr>
  3237. </table>
  3238. </div>
  3239. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  3240. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3241. <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>
  3242. </div>
  3243. </td><td>
  3244. </td><td>
  3245. </td><td>
  3246. </td><td>
  3247. </td><td>SMD/SMT
  3248. </td><td>UBGA-169
  3249. </td>
  3250. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M04SCE144I7G" data-index="12">
  3251. <td class="td-select" align="center">
  3252. <div style="padding: 5px 5px 0 5px;">
  3253. <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>
  3254. </div>
  3255. </td><td><a href='/ProductDetail/Altera-Corporation/10M04SCE144I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6n0YLRP1aFvG%2fMyZQI8MhiYA%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>
  3256. <div style="text-align:left;">
  3257. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M04SCE144I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6n0YLRP1aFvG%2fMyZQI8MhiYA%3d%3d">989-10M04SCE144I7G</a><br />
  3258. <br />
  3259. <br />
  3260. </div></td><td>
  3261. <div class="mfrDiv">
  3262. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M04SCE144I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6n0YLRP1aFvG%2fMyZQI8MhiYA%3d%3d">10M04SCE144I7G</a><br />
  3263. <br />
  3264. <div style="width: 100%; text-align: center;">
  3265. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3266. </div>
  3267. <div style="width: 100%; text-align: center;">
  3268. </div>
  3269. </div>
  3270. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  3271. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 101 I/O, 144EQFP
  3272. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3273. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  3274. </div>
  3275. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3276. </div>
  3277. </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>
  3278. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">150<br/>有库存</span>
  3279. <table>
  3280. <tr align="center">
  3281. <td style="padding-top: 5px">
  3282. </td>
  3283. </tr>
  3284. <tr align="center">
  3285. <td style="padding-top: 5px; padding-bottom: 5px">
  3286. </td>
  3287. </tr>
  3288. </table></td><td>
  3289. <table class="PriceBreaks" cellspacing="0" border="0">
  3290. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3291. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3292. </td>
  3293. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3294. </td>
  3295. </tr>
  3296. <tr>
  3297. <td class="PriceBreakQuantity">
  3298. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  3299. </td>
  3300. <td class="PriceBreakPrice">
  3301. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥117.3627</span>
  3302. </td>
  3303. </tr>
  3304. <tr>
  3305. <td class="PriceBreakQuantity">
  3306. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  3307. </td>
  3308. <td class="PriceBreakPrice">
  3309. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥93.8691</span>
  3310. </td>
  3311. </tr>
  3312. <tr>
  3313. <td class="PriceBreakQuantity">
  3314. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,100);">100:</a>
  3315. </td>
  3316. <td class="PriceBreakPrice">
  3317. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥91.5642</span>
  3318. </td>
  3319. </tr>
  3320. <tr>
  3321. <td class="PriceBreakQuantity">
  3322. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,500);">500:</a>
  3323. </td>
  3324. <td class="PriceBreakPrice">
  3325. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥88.0191</span>
  3326. </td>
  3327. </tr>
  3328. <tr>
  3329. <td><br /></td>
  3330. </tr>
  3331. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3332. <td colspan="2" style="text-align: center;">
  3333. </td>
  3334. </tr>
  3335. </table>
  3336. </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;)">
  3337. <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 />
  3338. <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 />
  3339. <table cellspacing="0" border="0" style="width: 100%;">
  3340. <tr>
  3341. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3342. 最低:
  3343. </td>
  3344. <td style="padding-left: 2px; text-align: left;">
  3345. 1
  3346. </td>
  3347. </tr>
  3348. <tr>
  3349. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3350. 多个:
  3351. </td>
  3352. <td style="padding-left: 2px; text-align: left;">
  3353. 1
  3354. </td>
  3355. </tr>
  3356. </table>
  3357. </div>
  3358. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  3359. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3360. <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>
  3361. </div>
  3362. </td><td>MAX10
  3363. </td><td>472.5 MHz
  3364. </td><td>1.63 V
  3365. </td><td>+ 100 C
  3366. </td><td>SMD/SMT
  3367. </td><td>EQFP-144
  3368. </td>
  3369. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M08SCM153I7G" data-index="13">
  3370. <td class="td-select" align="center">
  3371. <div style="padding: 5px 5px 0 5px;">
  3372. <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>
  3373. </div>
  3374. </td><td><a href='/ProductDetail/Altera-Corporation/10M08SCM153I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6noKsNNjKvlS0LF%252bwIP6BaGQ%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>
  3375. <div style="text-align:left;">
  3376. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M08SCM153I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6noKsNNjKvlS0LF%252bwIP6BaGQ%3d%3d">989-10M08SCM153I7G</a><br />
  3377. <br />
  3378. <br />
  3379. </div></td><td>
  3380. <div class="mfrDiv">
  3381. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M08SCM153I7G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6noKsNNjKvlS0LF%252bwIP6BaGQ%3d%3d">10M08SCM153I7G</a><br />
  3382. <br />
  3383. <div style="width: 100%; text-align: center;">
  3384. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3385. </div>
  3386. <div style="width: 100%; text-align: center;">
  3387. </div>
  3388. </div>
  3389. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  3390. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 112 I/O, 153MBGA
  3391. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3392. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  3393. </div>
  3394. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3395. </div>
  3396. </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>
  3397. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">324<br/>有库存</span>
  3398. <table>
  3399. <tr align="center">
  3400. <td style="padding-top: 5px">
  3401. </td>
  3402. </tr>
  3403. <tr align="center">
  3404. <td style="padding-top: 5px; padding-bottom: 5px">
  3405. </td>
  3406. </tr>
  3407. </table></td><td>
  3408. <table class="PriceBreaks" cellspacing="0" border="0">
  3409. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3410. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3411. </td>
  3412. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3413. </td>
  3414. </tr>
  3415. <tr>
  3416. <td class="PriceBreakQuantity">
  3417. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  3418. </td>
  3419. <td class="PriceBreakPrice">
  3420. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥197.7651</span>
  3421. </td>
  3422. </tr>
  3423. <tr>
  3424. <td class="PriceBreakQuantity">
  3425. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  3426. </td>
  3427. <td class="PriceBreakPrice">
  3428. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥158.1723</span>
  3429. </td>
  3430. </tr>
  3431. <tr>
  3432. <td class="PriceBreakQuantity">
  3433. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,100);">100:</a>
  3434. </td>
  3435. <td class="PriceBreakPrice">
  3436. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥154.2528</span>
  3437. </td>
  3438. </tr>
  3439. <tr>
  3440. <td class="PriceBreakQuantity">
  3441. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,500);">500:</a>
  3442. </td>
  3443. <td class="PriceBreakPrice">
  3444. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥148.3209</span>
  3445. </td>
  3446. </tr>
  3447. <tr>
  3448. <td><br /></td>
  3449. </tr>
  3450. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3451. <td colspan="2" style="text-align: center;">
  3452. </td>
  3453. </tr>
  3454. </table>
  3455. </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;)">
  3456. <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 />
  3457. <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 />
  3458. <table cellspacing="0" border="0" style="width: 100%;">
  3459. <tr>
  3460. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3461. 最低:
  3462. </td>
  3463. <td style="padding-left: 2px; text-align: left;">
  3464. 1
  3465. </td>
  3466. </tr>
  3467. <tr>
  3468. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3469. 多个:
  3470. </td>
  3471. <td style="padding-left: 2px; text-align: left;">
  3472. 1
  3473. </td>
  3474. </tr>
  3475. </table>
  3476. </div>
  3477. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  3478. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3479. <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>
  3480. </div>
  3481. </td><td>MAX10
  3482. </td><td>472.5 MHz
  3483. </td><td>1.63 V
  3484. </td><td>+ 100 C
  3485. </td><td>SMD/SMT
  3486. </td><td>MBGA-153
  3487. </td>
  3488. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M02DCV36I7G" data-index="14">
  3489. <td class="td-select" align="center">
  3490. <div style="padding: 5px 5px 0 5px;">
  3491. <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>
  3492. </div>
  3493. </td><td><a href='/ProductDetail/Altera-Corporation/10M02DCV36I7G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUorVmhLChpDL18MRuXwqeAQ%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>
  3494. <div style="text-align:left;">
  3495. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M02DCV36I7G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUorVmhLChpDL18MRuXwqeAQ%3d%3d">989-10M02DCV36I7G</a><br />
  3496. <br />
  3497. <br />
  3498. 要购买完整 卷轴,请订购 1000 的倍数:
  3499. </div></td><td>
  3500. <div class="mfrDiv">
  3501. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M02DCV36I7G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUorVmhLChpDL18MRuXwqeAQ%3d%3d">10M02DCV36I7G</a><br />
  3502. <br />
  3503. <div style="width: 100%; text-align: center;">
  3504. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3505. </div>
  3506. <div style="width: 100%; text-align: center;">
  3507. </div>
  3508. </div>
  3509. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  3510. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 27 I/O, 36WLCSP
  3511. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3512. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  3513. </div>
  3514. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3515. </div>
  3516. </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>
  3517. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">789<br/>有库存</span>
  3518. <table>
  3519. <tr align="center">
  3520. <td style="padding-top: 5px">
  3521. </td>
  3522. </tr>
  3523. <tr align="center">
  3524. <td style="padding-top: 5px; padding-bottom: 5px">
  3525. </td>
  3526. </tr>
  3527. </table></td><td>
  3528. <table class="PriceBreaks" cellspacing="0" border="0">
  3529. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3530. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3531. </td>
  3532. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3533. </td>
  3534. </tr>
  3535. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3536. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3537. 剪切带
  3538. </td>
  3539. </tr>
  3540. <tr>
  3541. <td class="PriceBreakQuantity">
  3542. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  3543. </td>
  3544. <td class="PriceBreakPrice">
  3545. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥38.8089</span>
  3546. </td>
  3547. </tr>
  3548. <tr>
  3549. <td class="PriceBreakQuantity">
  3550. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  3551. </td>
  3552. <td class="PriceBreakPrice">
  3553. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥31.0401</span>
  3554. </td>
  3555. </tr>
  3556. <tr>
  3557. <td class="PriceBreakQuantity">
  3558. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  3559. </td>
  3560. <td class="PriceBreakPrice">
  3561. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥30.2679</span>
  3562. </td>
  3563. </tr>
  3564. <tr>
  3565. <td class="PriceBreakQuantity">
  3566. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,500);">500:</a>
  3567. </td>
  3568. <td class="PriceBreakPrice">
  3569. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥29.1096</span>
  3570. </td>
  3571. </tr>
  3572. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3573. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3574. 卷轴
  3575. </td>
  3576. </tr>
  3577. <tr>
  3578. <td class="PriceBreakQuantity">
  3579. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(12,1000);">1,000:</a>
  3580. </td>
  3581. <td class="PriceBreakPrice">
  3582. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥29.1096</span>
  3583. </td>
  3584. </tr>
  3585. <tr>
  3586. <td><br /></td>
  3587. </tr>
  3588. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3589. <td colspan="2" style="text-align: center;">
  3590. </td>
  3591. </tr>
  3592. </table>
  3593. </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;)">
  3594. <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 />
  3595. <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 />
  3596. <table cellspacing="0" border="0" style="width: 100%;">
  3597. <tr>
  3598. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3599. 最低:
  3600. </td>
  3601. <td style="padding-left: 2px; text-align: left;">
  3602. 1
  3603. </td>
  3604. </tr>
  3605. <tr>
  3606. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3607. 多个:
  3608. </td>
  3609. <td style="padding-left: 2px; text-align: left;">
  3610. 1
  3611. </td>
  3612. </tr>
  3613. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_trReel">
  3614. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3615. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(12,1000);">卷轴</a>:
  3616. </td>
  3617. <td style="padding-left: 2px; text-align: left;">
  3618. <em class="SearchResultsReel">
  3619. 1,000
  3620. </em>
  3621. </td>
  3622. </tr>
  3623. </table>
  3624. </div>
  3625. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  3626. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3627. <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>
  3628. </div>
  3629. </td><td>
  3630. </td><td>
  3631. </td><td>
  3632. </td><td>
  3633. </td><td>SMD/SMT
  3634. </td><td>WLCSP-36
  3635. </td>
  3636. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M04DCF256C8G" data-index="15">
  3637. <td class="td-select" align="center">
  3638. <div style="padding: 5px 5px 0 5px;">
  3639. <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>
  3640. </div>
  3641. </td><td><a href='/ProductDetail/Altera-Corporation/10M04DCF256C8G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6neK1AO1EA%252bMWN5%2f7o8Lr%252bzw%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>
  3642. <div style="text-align:left;">
  3643. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M04DCF256C8G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6neK1AO1EA%252bMWN5%2f7o8Lr%252bzw%3d%3d">989-10M04DCF256C8G</a><br />
  3644. <br />
  3645. <br />
  3646. </div></td><td>
  3647. <div class="mfrDiv">
  3648. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M04DCF256C8G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6neK1AO1EA%252bMWN5%2f7o8Lr%252bzw%3d%3d">10M04DCF256C8G</a><br />
  3649. <br />
  3650. <div style="width: 100%; text-align: center;">
  3651. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3652. </div>
  3653. <div style="width: 100%; text-align: center;">
  3654. </div>
  3655. </div>
  3656. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  3657. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 178 I/O, 256FBGA
  3658. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3659. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  3660. </div>
  3661. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3662. </div>
  3663. </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>
  3664. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">264<br/>有库存</span>
  3665. <table>
  3666. <tr align="center">
  3667. <td style="padding-top: 5px">
  3668. </td>
  3669. </tr>
  3670. <tr align="center">
  3671. <td style="padding-top: 5px; padding-bottom: 5px">
  3672. </td>
  3673. </tr>
  3674. </table></td><td>
  3675. <table class="PriceBreaks" cellspacing="0" border="0">
  3676. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3677. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3678. </td>
  3679. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3680. </td>
  3681. </tr>
  3682. <tr>
  3683. <td class="PriceBreakQuantity">
  3684. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  3685. </td>
  3686. <td class="PriceBreakPrice">
  3687. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥99.1107</span>
  3688. </td>
  3689. </tr>
  3690. <tr>
  3691. <td class="PriceBreakQuantity">
  3692. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,25);">25:</a>
  3693. </td>
  3694. <td class="PriceBreakPrice">
  3695. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥79.3143</span>
  3696. </td>
  3697. </tr>
  3698. <tr>
  3699. <td class="PriceBreakQuantity">
  3700. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  3701. </td>
  3702. <td class="PriceBreakPrice">
  3703. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥77.3136</span>
  3704. </td>
  3705. </tr>
  3706. <tr>
  3707. <td class="PriceBreakQuantity">
  3708. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,500);">500:</a>
  3709. </td>
  3710. <td class="PriceBreakPrice">
  3711. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥74.3184</span>
  3712. </td>
  3713. </tr>
  3714. <tr>
  3715. <td><br /></td>
  3716. </tr>
  3717. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3718. <td colspan="2" style="text-align: center;">
  3719. </td>
  3720. </tr>
  3721. </table>
  3722. </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;)">
  3723. <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 />
  3724. <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 />
  3725. <table cellspacing="0" border="0" style="width: 100%;">
  3726. <tr>
  3727. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3728. 最低:
  3729. </td>
  3730. <td style="padding-left: 2px; text-align: left;">
  3731. 1
  3732. </td>
  3733. </tr>
  3734. <tr>
  3735. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3736. 多个:
  3737. </td>
  3738. <td style="padding-left: 2px; text-align: left;">
  3739. 1
  3740. </td>
  3741. </tr>
  3742. </table>
  3743. </div>
  3744. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  3745. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3746. <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>
  3747. </div>
  3748. </td><td>MAX10
  3749. </td><td>450 MHz
  3750. </td><td>1.2 V/2.5 V
  3751. </td><td>+ 85 C
  3752. </td><td>SMD/SMT
  3753. </td><td>FBGA-256
  3754. </td>
  3755. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M16SCE144C8G" data-index="16">
  3756. <td class="td-select" align="center">
  3757. <div style="padding: 5px 5px 0 5px;">
  3758. <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>
  3759. </div>
  3760. </td><td><a href='/ProductDetail/Altera-Corporation/10M16SCE144C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUnUL1ORKhF%2f8rdPh0ioSztg%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>
  3761. <div style="text-align:left;">
  3762. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M16SCE144C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUnUL1ORKhF%2f8rdPh0ioSztg%3d%3d">989-10M16SCE144C8G</a><br />
  3763. <br />
  3764. <br />
  3765. </div></td><td>
  3766. <div class="mfrDiv">
  3767. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M16SCE144C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUnUL1ORKhF%2f8rdPh0ioSztg%3d%3d">10M16SCE144C8G</a><br />
  3768. <br />
  3769. <div style="width: 100%; text-align: center;">
  3770. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3771. </div>
  3772. <div style="width: 100%; text-align: center;">
  3773. </div>
  3774. </div>
  3775. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  3776. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 101 I/O, 144EQFP
  3777. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3778. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  3779. </div>
  3780. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3781. </div>
  3782. </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>
  3783. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">96<br/>有库存</span>
  3784. <table>
  3785. <tr align="center">
  3786. <td style="padding-top: 5px">
  3787. </td>
  3788. </tr>
  3789. <tr align="center">
  3790. <td style="padding-top: 5px; padding-bottom: 5px">
  3791. </td>
  3792. </tr>
  3793. </table></td><td>
  3794. <table class="PriceBreaks" cellspacing="0" border="0">
  3795. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3796. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3797. </td>
  3798. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3799. </td>
  3800. </tr>
  3801. <tr>
  3802. <td class="PriceBreakQuantity">
  3803. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  3804. </td>
  3805. <td class="PriceBreakPrice">
  3806. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥262.6767</span>
  3807. </td>
  3808. </tr>
  3809. <tr>
  3810. <td class="PriceBreakQuantity">
  3811. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,25);">25:</a>
  3812. </td>
  3813. <td class="PriceBreakPrice">
  3814. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥210.1554</span>
  3815. </td>
  3816. </tr>
  3817. <tr>
  3818. <td class="PriceBreakQuantity">
  3819. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
  3820. </td>
  3821. <td class="PriceBreakPrice">
  3822. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥204.9255</span>
  3823. </td>
  3824. </tr>
  3825. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  3826. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3827. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(14,500);">500:</a>
  3828. </td>
  3829. <td class="PriceBreakPrice">
  3830. <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>
  3831. </td>
  3832. </tr>
  3833. <tr>
  3834. <td><br /></td>
  3835. </tr>
  3836. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  3837. <td colspan="2" style="text-align: center;">
  3838. </td>
  3839. </tr>
  3840. </table>
  3841. </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;)">
  3842. <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 />
  3843. <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 />
  3844. <table cellspacing="0" border="0" style="width: 100%;">
  3845. <tr>
  3846. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3847. 最低:
  3848. </td>
  3849. <td style="padding-left: 2px; text-align: left;">
  3850. 1
  3851. </td>
  3852. </tr>
  3853. <tr>
  3854. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3855. 多个:
  3856. </td>
  3857. <td style="padding-left: 2px; text-align: left;">
  3858. 1
  3859. </td>
  3860. </tr>
  3861. </table>
  3862. </div>
  3863. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  3864. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3865. <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>
  3866. </div>
  3867. </td><td>MAX10
  3868. </td><td>450 MHz
  3869. </td><td>3 V/3.3 V
  3870. </td><td>+ 85 C
  3871. </td><td>SMD/SMT
  3872. </td><td>EQFP-144
  3873. </td>
  3874. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M25SAE144C8G" data-index="17">
  3875. <td class="td-select" align="center">
  3876. <div style="padding: 5px 5px 0 5px;">
  3877. <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>
  3878. </div>
  3879. </td><td><a href='/ProductDetail/Altera-Corporation/10M25SAE144C8G/?qs=sGAEpiMZZMvwLjDpJZyitDxRXYEzhpkZxZtZMWH3kKa8mjTXk204rg%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>
  3880. <div style="text-align:left;">
  3881. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M25SAE144C8G/?qs=sGAEpiMZZMvwLjDpJZyitDxRXYEzhpkZxZtZMWH3kKa8mjTXk204rg%3d%3d">989-10M25SAE144C8G</a><br />
  3882. <br />
  3883. <br />
  3884. </div></td><td>
  3885. <div class="mfrDiv">
  3886. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M25SAE144C8G/?qs=sGAEpiMZZMvwLjDpJZyitDxRXYEzhpkZxZtZMWH3kKa8mjTXk204rg%3d%3d">10M25SAE144C8G</a><br />
  3887. <br />
  3888. <div style="width: 100%; text-align: center;">
  3889. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3890. </div>
  3891. <div style="width: 100%; text-align: center;">
  3892. </div>
  3893. </div>
  3894. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  3895. </td><td>FPGA - 现场可编程门阵列
  3896. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3897. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  3898. </div>
  3899. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3900. </div>
  3901. </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>
  3902. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">57<br/>有库存</span>
  3903. <table>
  3904. <tr align="center">
  3905. <td style="padding-top: 5px">
  3906. </td>
  3907. </tr>
  3908. <tr align="center">
  3909. <td style="padding-top: 5px; padding-bottom: 5px">
  3910. </td>
  3911. </tr>
  3912. </table></td><td>
  3913. <table class="PriceBreaks" cellspacing="0" border="0">
  3914. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3915. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3916. </td>
  3917. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3918. </td>
  3919. </tr>
  3920. <tr>
  3921. <td class="PriceBreakQuantity">
  3922. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  3923. </td>
  3924. <td class="PriceBreakPrice">
  3925. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥374.2713</span>
  3926. </td>
  3927. </tr>
  3928. <tr>
  3929. <td class="PriceBreakQuantity">
  3930. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,25);">25:</a>
  3931. </td>
  3932. <td class="PriceBreakPrice">
  3933. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥299.4147</span>
  3934. </td>
  3935. </tr>
  3936. <tr>
  3937. <td class="PriceBreakQuantity">
  3938. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,100);">100:</a>
  3939. </td>
  3940. <td class="PriceBreakPrice">
  3941. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥291.9384</span>
  3942. </td>
  3943. </tr>
  3944. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  3945. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3946. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(15,500);">500:</a>
  3947. </td>
  3948. <td class="PriceBreakPrice">
  3949. <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>
  3950. </td>
  3951. </tr>
  3952. <tr>
  3953. <td><br /></td>
  3954. </tr>
  3955. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  3956. <td colspan="2" style="text-align: center;">
  3957. </td>
  3958. </tr>
  3959. </table>
  3960. </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;)">
  3961. <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 />
  3962. <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 />
  3963. <table cellspacing="0" border="0" style="width: 100%;">
  3964. <tr>
  3965. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3966. 最低:
  3967. </td>
  3968. <td style="padding-left: 2px; text-align: left;">
  3969. 1
  3970. </td>
  3971. </tr>
  3972. <tr>
  3973. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3974. 多个:
  3975. </td>
  3976. <td style="padding-left: 2px; text-align: left;">
  3977. 1
  3978. </td>
  3979. </tr>
  3980. </table>
  3981. </div>
  3982. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  3983. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3984. <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>
  3985. </div>
  3986. </td><td>
  3987. </td><td>
  3988. </td><td>
  3989. </td><td>
  3990. </td><td>
  3991. </td><td>
  3992. </td>
  3993. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M16DCF256C8G" data-index="18">
  3994. <td class="td-select" align="center">
  3995. <div style="padding: 5px 5px 0 5px;">
  3996. <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>
  3997. </div>
  3998. </td><td><a href='/ProductDetail/Altera-Corporation/10M16DCF256C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUe%2fd1GBCr26ct%252bkhCu3tjoA%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>
  3999. <div style="text-align:left;">
  4000. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M16DCF256C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUe%2fd1GBCr26ct%252bkhCu3tjoA%3d%3d">989-10M16DCF256C8G</a><br />
  4001. <br />
  4002. <br />
  4003. </div></td><td>
  4004. <div class="mfrDiv">
  4005. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M16DCF256C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUe%2fd1GBCr26ct%252bkhCu3tjoA%3d%3d">10M16DCF256C8G</a><br />
  4006. <br />
  4007. <div style="width: 100%; text-align: center;">
  4008. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4009. </div>
  4010. <div style="width: 100%; text-align: center;">
  4011. </div>
  4012. </div>
  4013. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  4014. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 178 I/O, 256FBGA
  4015. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4016. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  4017. </div>
  4018. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4019. </div>
  4020. </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>
  4021. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">66<br/>有库存</span>
  4022. <table>
  4023. <tr align="center">
  4024. <td style="padding-top: 5px">
  4025. </td>
  4026. </tr>
  4027. <tr align="center">
  4028. <td style="padding-top: 5px; padding-bottom: 5px">
  4029. </td>
  4030. </tr>
  4031. </table></td><td>
  4032. <table class="PriceBreaks" cellspacing="0" border="0">
  4033. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4034. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4035. </td>
  4036. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4037. </td>
  4038. </tr>
  4039. <tr>
  4040. <td class="PriceBreakQuantity">
  4041. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  4042. </td>
  4043. <td class="PriceBreakPrice">
  4044. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥295.2495</span>
  4045. </td>
  4046. </tr>
  4047. <tr>
  4048. <td class="PriceBreakQuantity">
  4049. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,25);">25:</a>
  4050. </td>
  4051. <td class="PriceBreakPrice">
  4052. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥236.1879</span>
  4053. </td>
  4054. </tr>
  4055. <tr>
  4056. <td class="PriceBreakQuantity">
  4057. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,100);">100:</a>
  4058. </td>
  4059. <td class="PriceBreakPrice">
  4060. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥230.3379</span>
  4061. </td>
  4062. </tr>
  4063. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  4064. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4065. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(16,500);">500:</a>
  4066. </td>
  4067. <td class="PriceBreakPrice">
  4068. <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>
  4069. </td>
  4070. </tr>
  4071. <tr>
  4072. <td><br /></td>
  4073. </tr>
  4074. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  4075. <td colspan="2" style="text-align: center;">
  4076. </td>
  4077. </tr>
  4078. </table>
  4079. </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;)">
  4080. <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 />
  4081. <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 />
  4082. <table cellspacing="0" border="0" style="width: 100%;">
  4083. <tr>
  4084. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4085. 最低:
  4086. </td>
  4087. <td style="padding-left: 2px; text-align: left;">
  4088. 1
  4089. </td>
  4090. </tr>
  4091. <tr>
  4092. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4093. 多个:
  4094. </td>
  4095. <td style="padding-left: 2px; text-align: left;">
  4096. 1
  4097. </td>
  4098. </tr>
  4099. </table>
  4100. </div>
  4101. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  4102. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4103. <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>
  4104. </div>
  4105. </td><td>MAX10
  4106. </td><td>450 MHz
  4107. </td><td>1.2 V/2.5 V
  4108. </td><td>+ 85 C
  4109. </td><td>SMD/SMT
  4110. </td><td>FPGA-256
  4111. </td>
  4112. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M04DAF256C8G" data-index="19">
  4113. <td class="td-select" align="center">
  4114. <div style="padding: 5px 5px 0 5px;">
  4115. <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>
  4116. </div>
  4117. </td><td><a href='/ProductDetail/Altera-Corporation/10M04DAF256C8G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nl8AWymVsxxaFVccKfplU3g%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>
  4118. <div style="text-align:left;">
  4119. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M04DAF256C8G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nl8AWymVsxxaFVccKfplU3g%3d%3d">989-10M04DAF256C8G</a><br />
  4120. <br />
  4121. <br />
  4122. </div></td><td>
  4123. <div class="mfrDiv">
  4124. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M04DAF256C8G/?qs=sGAEpiMZZMvwLjDpJZyitG8Gw%2fHlCU6nl8AWymVsxxaFVccKfplU3g%3d%3d">10M04DAF256C8G</a><br />
  4125. <br />
  4126. <div style="width: 100%; text-align: center;">
  4127. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4128. </div>
  4129. <div style="width: 100%; text-align: center;">
  4130. </div>
  4131. </div>
  4132. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  4133. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 178 I/O, 256FBGA
  4134. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4135. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  4136. </div>
  4137. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4138. </div>
  4139. </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>
  4140. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">228<br/>有库存</span>
  4141. <table>
  4142. <tr align="center">
  4143. <td style="padding-top: 5px">
  4144. </td>
  4145. </tr>
  4146. <tr align="center">
  4147. <td style="padding-top: 5px; padding-bottom: 5px">
  4148. </td>
  4149. </tr>
  4150. </table></td><td>
  4151. <table class="PriceBreaks" cellspacing="0" border="0">
  4152. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4153. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4154. </td>
  4155. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4156. </td>
  4157. </tr>
  4158. <tr>
  4159. <td class="PriceBreakQuantity">
  4160. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  4161. </td>
  4162. <td class="PriceBreakPrice">
  4163. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥132.3738</span>
  4164. </td>
  4165. </tr>
  4166. <tr>
  4167. <td class="PriceBreakQuantity">
  4168. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,25);">25:</a>
  4169. </td>
  4170. <td class="PriceBreakPrice">
  4171. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥105.885</span>
  4172. </td>
  4173. </tr>
  4174. <tr>
  4175. <td class="PriceBreakQuantity">
  4176. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,100);">100:</a>
  4177. </td>
  4178. <td class="PriceBreakPrice">
  4179. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥103.2642</span>
  4180. </td>
  4181. </tr>
  4182. <tr>
  4183. <td class="PriceBreakQuantity">
  4184. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,500);">500:</a>
  4185. </td>
  4186. <td class="PriceBreakPrice">
  4187. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥99.2628</span>
  4188. </td>
  4189. </tr>
  4190. <tr>
  4191. <td><br /></td>
  4192. </tr>
  4193. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4194. <td colspan="2" style="text-align: center;">
  4195. </td>
  4196. </tr>
  4197. </table>
  4198. </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;)">
  4199. <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 />
  4200. <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 />
  4201. <table cellspacing="0" border="0" style="width: 100%;">
  4202. <tr>
  4203. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4204. 最低:
  4205. </td>
  4206. <td style="padding-left: 2px; text-align: left;">
  4207. 1
  4208. </td>
  4209. </tr>
  4210. <tr>
  4211. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4212. 多个:
  4213. </td>
  4214. <td style="padding-left: 2px; text-align: left;">
  4215. 1
  4216. </td>
  4217. </tr>
  4218. </table>
  4219. </div>
  4220. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  4221. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4222. <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>
  4223. </div>
  4224. </td><td>MAX10
  4225. </td><td>450 MHz
  4226. </td><td>1.2 V/2.5 V
  4227. </td><td>+ 85 C
  4228. </td><td>SMD/SMT
  4229. </td><td>FBGA-256
  4230. </td>
  4231. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M16DAF484C8G" data-index="20">
  4232. <td class="td-select" align="center">
  4233. <div style="padding: 5px 5px 0 5px;">
  4234. <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>
  4235. </div>
  4236. </td><td><a href='/ProductDetail/Altera-Corporation/10M16DAF484C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eU1TEb1WOn0BROo%2f%252bRQx1Q7Q%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>
  4237. <div style="text-align:left;">
  4238. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M16DAF484C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eU1TEb1WOn0BROo%2f%252bRQx1Q7Q%3d%3d">989-10M16DAF484C8G</a><br />
  4239. <br />
  4240. <br />
  4241. </div></td><td>
  4242. <div class="mfrDiv">
  4243. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M16DAF484C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eU1TEb1WOn0BROo%2f%252bRQx1Q7Q%3d%3d">10M16DAF484C8G</a><br />
  4244. <br />
  4245. <div style="width: 100%; text-align: center;">
  4246. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4247. </div>
  4248. <div style="width: 100%; text-align: center;">
  4249. </div>
  4250. </div>
  4251. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  4252. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 320 I/O, 484FBGA
  4253. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4254. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  4255. </div>
  4256. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4257. </div>
  4258. </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>
  4259. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">59<br/>有库存</span>
  4260. <table>
  4261. <tr align="center">
  4262. <td style="padding-top: 5px">
  4263. </td>
  4264. </tr>
  4265. <tr align="center">
  4266. <td style="padding-top: 5px; padding-bottom: 5px">
  4267. </td>
  4268. </tr>
  4269. </table></td><td>
  4270. <table class="PriceBreaks" cellspacing="0" border="0">
  4271. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4272. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4273. </td>
  4274. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4275. </td>
  4276. </tr>
  4277. <tr>
  4278. <td class="PriceBreakQuantity">
  4279. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  4280. </td>
  4281. <td class="PriceBreakPrice">
  4282. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥399.2157</span>
  4283. </td>
  4284. </tr>
  4285. <tr>
  4286. <td class="PriceBreakQuantity">
  4287. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,25);">25:</a>
  4288. </td>
  4289. <td class="PriceBreakPrice">
  4290. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥319.3632</span>
  4291. </td>
  4292. </tr>
  4293. <tr>
  4294. <td class="PriceBreakQuantity">
  4295. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  4296. </td>
  4297. <td class="PriceBreakPrice">
  4298. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥311.4306</span>
  4299. </td>
  4300. </tr>
  4301. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  4302. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4303. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(18,500);">500:</a>
  4304. </td>
  4305. <td class="PriceBreakPrice">
  4306. <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>
  4307. </td>
  4308. </tr>
  4309. <tr>
  4310. <td><br /></td>
  4311. </tr>
  4312. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  4313. <td colspan="2" style="text-align: center;">
  4314. </td>
  4315. </tr>
  4316. </table>
  4317. </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;)">
  4318. <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 />
  4319. <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 />
  4320. <table cellspacing="0" border="0" style="width: 100%;">
  4321. <tr>
  4322. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4323. 最低:
  4324. </td>
  4325. <td style="padding-left: 2px; text-align: left;">
  4326. 1
  4327. </td>
  4328. </tr>
  4329. <tr>
  4330. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4331. 多个:
  4332. </td>
  4333. <td style="padding-left: 2px; text-align: left;">
  4334. 1
  4335. </td>
  4336. </tr>
  4337. </table>
  4338. </div>
  4339. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  4340. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4341. <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>
  4342. </div>
  4343. </td><td>MAX10
  4344. </td><td>450 MHz
  4345. </td><td>1.2 V/2.5 V
  4346. </td><td>+ 85 C
  4347. </td><td>SMD/SMT
  4348. </td><td>FBGA-484
  4349. </td>
  4350. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M02DCU324C8G" data-index="21">
  4351. <td class="td-select" align="center">
  4352. <div style="padding: 5px 5px 0 5px;">
  4353. <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>
  4354. </div>
  4355. </td><td><a href='/ProductDetail/Altera-Corporation/10M02DCU324C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUL8dSrguWGVt2G56fmwBRyg%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>
  4356. <div style="text-align:left;">
  4357. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M02DCU324C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUL8dSrguWGVt2G56fmwBRyg%3d%3d">989-10M02DCU324C8G</a><br />
  4358. <br />
  4359. <br />
  4360. </div></td><td>
  4361. <div class="mfrDiv">
  4362. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M02DCU324C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUL8dSrguWGVt2G56fmwBRyg%3d%3d">10M02DCU324C8G</a><br />
  4363. <br />
  4364. <div style="width: 100%; text-align: center;">
  4365. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4366. </div>
  4367. <div style="width: 100%; text-align: center;">
  4368. </div>
  4369. </div>
  4370. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  4371. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 160 I/O, 324UBGA
  4372. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4373. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  4374. </div>
  4375. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4376. </div>
  4377. </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>
  4378. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">238<br/>有库存</span>
  4379. <table>
  4380. <tr align="center">
  4381. <td style="padding-top: 5px">
  4382. </td>
  4383. </tr>
  4384. <tr align="center">
  4385. <td style="padding-top: 5px; padding-bottom: 5px">
  4386. </td>
  4387. </tr>
  4388. </table></td><td>
  4389. <table class="PriceBreaks" cellspacing="0" border="0">
  4390. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4391. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4392. </td>
  4393. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4394. </td>
  4395. </tr>
  4396. <tr>
  4397. <td class="PriceBreakQuantity">
  4398. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  4399. </td>
  4400. <td class="PriceBreakPrice">
  4401. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥64.4553</span>
  4402. </td>
  4403. </tr>
  4404. <tr>
  4405. <td class="PriceBreakQuantity">
  4406. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,25);">25:</a>
  4407. </td>
  4408. <td class="PriceBreakPrice">
  4409. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥51.597</span>
  4410. </td>
  4411. </tr>
  4412. <tr>
  4413. <td class="PriceBreakQuantity">
  4414. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  4415. </td>
  4416. <td class="PriceBreakPrice">
  4417. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥50.2866</span>
  4418. </td>
  4419. </tr>
  4420. <tr>
  4421. <td class="PriceBreakQuantity">
  4422. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,500);">500:</a>
  4423. </td>
  4424. <td class="PriceBreakPrice">
  4425. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥48.3561</span>
  4426. </td>
  4427. </tr>
  4428. <tr>
  4429. <td><br /></td>
  4430. </tr>
  4431. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4432. <td colspan="2" style="text-align: center;">
  4433. </td>
  4434. </tr>
  4435. </table>
  4436. </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;)">
  4437. <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 />
  4438. <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 />
  4439. <table cellspacing="0" border="0" style="width: 100%;">
  4440. <tr>
  4441. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4442. 最低:
  4443. </td>
  4444. <td style="padding-left: 2px; text-align: left;">
  4445. 1
  4446. </td>
  4447. </tr>
  4448. <tr>
  4449. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4450. 多个:
  4451. </td>
  4452. <td style="padding-left: 2px; text-align: left;">
  4453. 1
  4454. </td>
  4455. </tr>
  4456. </table>
  4457. </div>
  4458. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  4459. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4460. <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>
  4461. </div>
  4462. </td><td>MAX10
  4463. </td><td>450 MHz
  4464. </td><td>1.2 V/2.5 V
  4465. </td><td>+ 85 C
  4466. </td><td>SMD/SMT
  4467. </td><td>UBGA-324
  4468. </td>
  4469. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M40DAF256C8G" data-index="22">
  4470. <td class="td-select" align="center">
  4471. <div style="padding: 5px 5px 0 5px;">
  4472. <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>
  4473. </div>
  4474. </td><td><a href='/ProductDetail/Altera-Corporation/10M40DAF256C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUkbyRZo1jZh%2fr8VeFK1N0wA%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>
  4475. <div style="text-align:left;">
  4476. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M40DAF256C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUkbyRZo1jZh%2fr8VeFK1N0wA%3d%3d">989-10M40DAF256C8G</a><br />
  4477. <br />
  4478. <br />
  4479. </div></td><td>
  4480. <div class="mfrDiv">
  4481. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M40DAF256C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUkbyRZo1jZh%2fr8VeFK1N0wA%3d%3d">10M40DAF256C8G</a><br />
  4482. <br />
  4483. <div style="width: 100%; text-align: center;">
  4484. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4485. </div>
  4486. <div style="width: 100%; text-align: center;">
  4487. </div>
  4488. </div>
  4489. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  4490. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 178 I/O, 256FBGA
  4491. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4492. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  4493. </div>
  4494. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4495. </div>
  4496. </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>
  4497. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">76<br/>有库存</span>
  4498. <table>
  4499. <tr align="center">
  4500. <td style="padding-top: 5px">
  4501. </td>
  4502. </tr>
  4503. <tr align="center">
  4504. <td style="padding-top: 5px; padding-bottom: 5px">
  4505. </td>
  4506. </tr>
  4507. </table></td><td>
  4508. <table class="PriceBreaks" cellspacing="0" border="0">
  4509. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4510. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4511. </td>
  4512. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4513. </td>
  4514. </tr>
  4515. <tr>
  4516. <td class="PriceBreakQuantity">
  4517. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  4518. </td>
  4519. <td class="PriceBreakPrice">
  4520. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥616.1571</span>
  4521. </td>
  4522. </tr>
  4523. <tr>
  4524. <td class="PriceBreakQuantity">
  4525. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,25);">25:</a>
  4526. </td>
  4527. <td class="PriceBreakPrice">
  4528. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥517.5846</span>
  4529. </td>
  4530. </tr>
  4531. <tr>
  4532. <td class="PriceBreakQuantity">
  4533. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,100);">100:</a>
  4534. </td>
  4535. <td class="PriceBreakPrice">
  4536. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥505.2645</span>
  4537. </td>
  4538. </tr>
  4539. <tr>
  4540. <td><br /></td>
  4541. </tr>
  4542. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  4543. <td colspan="2" style="text-align: center;">
  4544. </td>
  4545. </tr>
  4546. </table>
  4547. </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;)">
  4548. <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 />
  4549. <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 />
  4550. <table cellspacing="0" border="0" style="width: 100%;">
  4551. <tr>
  4552. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4553. 最低:
  4554. </td>
  4555. <td style="padding-left: 2px; text-align: left;">
  4556. 1
  4557. </td>
  4558. </tr>
  4559. <tr>
  4560. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4561. 多个:
  4562. </td>
  4563. <td style="padding-left: 2px; text-align: left;">
  4564. 1
  4565. </td>
  4566. </tr>
  4567. </table>
  4568. </div>
  4569. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  4570. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4571. <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>
  4572. </div>
  4573. </td><td>
  4574. </td><td>
  4575. </td><td>
  4576. </td><td>
  4577. </td><td>SMD/SMT
  4578. </td><td>FBGA-256
  4579. </td>
  4580. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M25SCE144C8G" data-index="23">
  4581. <td class="td-select" align="center">
  4582. <div style="padding: 5px 5px 0 5px;">
  4583. <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>
  4584. </div>
  4585. </td><td><a href='/ProductDetail/Altera-Corporation/10M25SCE144C8G/?qs=sGAEpiMZZMvwLjDpJZyitDxRXYEzhpkZnlSM66rbPPWFW5pZgpWn%2fg%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>
  4586. <div style="text-align:left;">
  4587. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M25SCE144C8G/?qs=sGAEpiMZZMvwLjDpJZyitDxRXYEzhpkZnlSM66rbPPWFW5pZgpWn%2fg%3d%3d">989-10M25SCE144C8G</a><br />
  4588. <br />
  4589. <br />
  4590. </div></td><td>
  4591. <div class="mfrDiv">
  4592. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M25SCE144C8G/?qs=sGAEpiMZZMvwLjDpJZyitDxRXYEzhpkZnlSM66rbPPWFW5pZgpWn%2fg%3d%3d">10M25SCE144C8G</a><br />
  4593. <br />
  4594. <div style="width: 100%; text-align: center;">
  4595. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4596. </div>
  4597. <div style="width: 100%; text-align: center;">
  4598. </div>
  4599. </div>
  4600. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  4601. </td><td>FPGA - 现场可编程门阵列
  4602. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4603. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  4604. </div>
  4605. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4606. </div>
  4607. </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>
  4608. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">56<br/>有库存</span>
  4609. <table>
  4610. <tr align="center">
  4611. <td style="padding-top: 5px">
  4612. </td>
  4613. </tr>
  4614. <tr align="center">
  4615. <td style="padding-top: 5px; padding-bottom: 5px">
  4616. </td>
  4617. </tr>
  4618. </table></td><td>
  4619. <table class="PriceBreaks" cellspacing="0" border="0">
  4620. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4621. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4622. </td>
  4623. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4624. </td>
  4625. </tr>
  4626. <tr>
  4627. <td class="PriceBreakQuantity">
  4628. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  4629. </td>
  4630. <td class="PriceBreakPrice">
  4631. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥304.2585</span>
  4632. </td>
  4633. </tr>
  4634. <tr>
  4635. <td class="PriceBreakQuantity">
  4636. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,25);">25:</a>
  4637. </td>
  4638. <td class="PriceBreakPrice">
  4639. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥243.4302</span>
  4640. </td>
  4641. </tr>
  4642. <tr>
  4643. <td class="PriceBreakQuantity">
  4644. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,100);">100:</a>
  4645. </td>
  4646. <td class="PriceBreakPrice">
  4647. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥237.3462</span>
  4648. </td>
  4649. </tr>
  4650. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  4651. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4652. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(21,500);">500:</a>
  4653. </td>
  4654. <td class="PriceBreakPrice">
  4655. <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>
  4656. </td>
  4657. </tr>
  4658. <tr>
  4659. <td><br /></td>
  4660. </tr>
  4661. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  4662. <td colspan="2" style="text-align: center;">
  4663. </td>
  4664. </tr>
  4665. </table>
  4666. </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;)">
  4667. <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 />
  4668. <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 />
  4669. <table cellspacing="0" border="0" style="width: 100%;">
  4670. <tr>
  4671. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4672. 最低:
  4673. </td>
  4674. <td style="padding-left: 2px; text-align: left;">
  4675. 1
  4676. </td>
  4677. </tr>
  4678. <tr>
  4679. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4680. 多个:
  4681. </td>
  4682. <td style="padding-left: 2px; text-align: left;">
  4683. 1
  4684. </td>
  4685. </tr>
  4686. </table>
  4687. </div>
  4688. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  4689. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4690. <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>
  4691. </div>
  4692. </td><td>
  4693. </td><td>
  4694. </td><td>
  4695. </td><td>
  4696. </td><td>
  4697. </td><td>
  4698. </td>
  4699. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M16SCU169C8G" data-index="24">
  4700. <td class="td-select" align="center">
  4701. <div style="padding: 5px 5px 0 5px;">
  4702. <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>
  4703. </div>
  4704. </td><td><a href='/ProductDetail/Altera-Corporation/10M16SCU169C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUCflr80FpoZu%252bfbB2Yg00Zg%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>
  4705. <div style="text-align:left;">
  4706. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M16SCU169C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUCflr80FpoZu%252bfbB2Yg00Zg%3d%3d">989-10M16SCU169C8G</a><br />
  4707. <br />
  4708. <br />
  4709. </div></td><td>
  4710. <div class="mfrDiv">
  4711. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M16SCU169C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUCflr80FpoZu%252bfbB2Yg00Zg%3d%3d">10M16SCU169C8G</a><br />
  4712. <br />
  4713. <div style="width: 100%; text-align: center;">
  4714. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4715. </div>
  4716. <div style="width: 100%; text-align: center;">
  4717. </div>
  4718. </div>
  4719. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  4720. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 130 I/O, 169UBGA
  4721. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4722. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  4723. </div>
  4724. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4725. </div>
  4726. </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>
  4727. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">96<br/>有库存</span>
  4728. <table>
  4729. <tr align="center">
  4730. <td style="padding-top: 5px">
  4731. </td>
  4732. </tr>
  4733. <tr align="center">
  4734. <td style="padding-top: 5px; padding-bottom: 5px">
  4735. </td>
  4736. </tr>
  4737. </table></td><td>
  4738. <table class="PriceBreaks" cellspacing="0" border="0">
  4739. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4740. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4741. </td>
  4742. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4743. </td>
  4744. </tr>
  4745. <tr>
  4746. <td class="PriceBreakQuantity">
  4747. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  4748. </td>
  4749. <td class="PriceBreakPrice">
  4750. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥210.6936</span>
  4751. </td>
  4752. </tr>
  4753. <tr>
  4754. <td class="PriceBreakQuantity">
  4755. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,25);">25:</a>
  4756. </td>
  4757. <td class="PriceBreakPrice">
  4758. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥168.5736</span>
  4759. </td>
  4760. </tr>
  4761. <tr>
  4762. <td class="PriceBreakQuantity">
  4763. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  4764. </td>
  4765. <td class="PriceBreakPrice">
  4766. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥164.3382</span>
  4767. </td>
  4768. </tr>
  4769. <tr>
  4770. <td class="PriceBreakQuantity">
  4771. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,500);">500:</a>
  4772. </td>
  4773. <td class="PriceBreakPrice">
  4774. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥158.0202</span>
  4775. </td>
  4776. </tr>
  4777. <tr>
  4778. <td><br /></td>
  4779. </tr>
  4780. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4781. <td colspan="2" style="text-align: center;">
  4782. </td>
  4783. </tr>
  4784. </table>
  4785. </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;)">
  4786. <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 />
  4787. <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 />
  4788. <table cellspacing="0" border="0" style="width: 100%;">
  4789. <tr>
  4790. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4791. 最低:
  4792. </td>
  4793. <td style="padding-left: 2px; text-align: left;">
  4794. 1
  4795. </td>
  4796. </tr>
  4797. <tr>
  4798. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4799. 多个:
  4800. </td>
  4801. <td style="padding-left: 2px; text-align: left;">
  4802. 1
  4803. </td>
  4804. </tr>
  4805. </table>
  4806. </div>
  4807. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  4808. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4809. <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>
  4810. </div>
  4811. </td><td>MAX10
  4812. </td><td>450 MHz
  4813. </td><td>3 V/3.3 V
  4814. </td><td>+ 85 C
  4815. </td><td>SMD/SMT
  4816. </td><td>UBGA-169
  4817. </td>
  4818. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M16DCF484C8G" data-index="25">
  4819. <td class="td-select" align="center">
  4820. <div style="padding: 5px 5px 0 5px;">
  4821. <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>
  4822. </div>
  4823. </td><td><a href='/ProductDetail/Altera-Corporation/10M16DCF484C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUda%2ftIVhVPJt9X5%252bzl8ZH0g%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>
  4824. <div style="text-align:left;">
  4825. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M16DCF484C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUda%2ftIVhVPJt9X5%252bzl8ZH0g%3d%3d">989-10M16DCF484C8G</a><br />
  4826. <br />
  4827. <br />
  4828. </div></td><td>
  4829. <div class="mfrDiv">
  4830. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M16DCF484C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUda%2ftIVhVPJt9X5%252bzl8ZH0g%3d%3d">10M16DCF484C8G</a><br />
  4831. <br />
  4832. <div style="width: 100%; text-align: center;">
  4833. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4834. </div>
  4835. <div style="width: 100%; text-align: center;">
  4836. </div>
  4837. </div>
  4838. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  4839. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 320 I/O, 484FBGA
  4840. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4841. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  4842. </div>
  4843. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4844. </div>
  4845. </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>
  4846. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">60<br/>有库存</span>
  4847. <table>
  4848. <tr align="center">
  4849. <td style="padding-top: 5px">
  4850. </td>
  4851. </tr>
  4852. <tr align="center">
  4853. <td style="padding-top: 5px; padding-bottom: 5px">
  4854. </td>
  4855. </tr>
  4856. </table></td><td>
  4857. <table class="PriceBreaks" cellspacing="0" border="0">
  4858. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4859. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4860. </td>
  4861. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4862. </td>
  4863. </tr>
  4864. <tr>
  4865. <td class="PriceBreakQuantity">
  4866. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  4867. </td>
  4868. <td class="PriceBreakPrice">
  4869. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥354.861</span>
  4870. </td>
  4871. </tr>
  4872. <tr>
  4873. <td class="PriceBreakQuantity">
  4874. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,25);">25:</a>
  4875. </td>
  4876. <td class="PriceBreakPrice">
  4877. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥283.8537</span>
  4878. </td>
  4879. </tr>
  4880. <tr>
  4881. <td class="PriceBreakQuantity">
  4882. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
  4883. </td>
  4884. <td class="PriceBreakPrice">
  4885. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥276.7752</span>
  4886. </td>
  4887. </tr>
  4888. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  4889. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4890. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,500);">500:</a>
  4891. </td>
  4892. <td class="PriceBreakPrice">
  4893. <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>
  4894. </td>
  4895. </tr>
  4896. <tr>
  4897. <td><br /></td>
  4898. </tr>
  4899. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  4900. <td colspan="2" style="text-align: center;">
  4901. </td>
  4902. </tr>
  4903. </table>
  4904. </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;)">
  4905. <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 />
  4906. <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 />
  4907. <table cellspacing="0" border="0" style="width: 100%;">
  4908. <tr>
  4909. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4910. 最低:
  4911. </td>
  4912. <td style="padding-left: 2px; text-align: left;">
  4913. 1
  4914. </td>
  4915. </tr>
  4916. <tr>
  4917. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4918. 多个:
  4919. </td>
  4920. <td style="padding-left: 2px; text-align: left;">
  4921. 1
  4922. </td>
  4923. </tr>
  4924. </table>
  4925. </div>
  4926. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  4927. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4928. <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>
  4929. </div>
  4930. </td><td>MAX10
  4931. </td><td>450 MHz
  4932. </td><td>1.2 V/2.5 V
  4933. </td><td>+ 85 C
  4934. </td><td>SMD/SMT
  4935. </td><td>FBGA-484
  4936. </td>
  4937. </tr><tr class="SearchResultsRowEven" data-partnumber="989-10M50DCF484C8G" data-index="26">
  4938. <td class="td-select" align="center">
  4939. <div style="padding: 5px 5px 0 5px;">
  4940. <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>
  4941. </div>
  4942. </td><td><a href='/ProductDetail/Altera-Corporation/10M50DCF484C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUIBkj6UOLXO2kPqacH2iK7A%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>
  4943. <div style="text-align:left;">
  4944. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M50DCF484C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUIBkj6UOLXO2kPqacH2iK7A%3d%3d">989-10M50DCF484C8G</a><br />
  4945. <br />
  4946. <br />
  4947. </div></td><td>
  4948. <div class="mfrDiv">
  4949. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M50DCF484C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eUIBkj6UOLXO2kPqacH2iK7A%3d%3d">10M50DCF484C8G</a><br />
  4950. <br />
  4951. <div style="width: 100%; text-align: center;">
  4952. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4953. </div>
  4954. <div style="width: 100%; text-align: center;">
  4955. </div>
  4956. </div>
  4957. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  4958. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 360 I/O, 484FBGA
  4959. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4960. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  4961. </div>
  4962. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4963. </div>
  4964. </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>
  4965. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">55<br/>有库存</span>
  4966. <table>
  4967. <tr align="center">
  4968. <td style="padding-top: 5px">
  4969. </td>
  4970. </tr>
  4971. <tr align="center">
  4972. <td style="padding-top: 5px; padding-bottom: 5px">
  4973. </td>
  4974. </tr>
  4975. </table></td><td>
  4976. <table class="PriceBreaks" cellspacing="0" border="0">
  4977. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4978. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4979. </td>
  4980. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4981. </td>
  4982. </tr>
  4983. <tr>
  4984. <td class="PriceBreakQuantity">
  4985. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  4986. </td>
  4987. <td class="PriceBreakPrice">
  4988. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥974.4813</span>
  4989. </td>
  4990. </tr>
  4991. <tr>
  4992. <td class="PriceBreakQuantity">
  4993. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,25);">25:</a>
  4994. </td>
  4995. <td class="PriceBreakPrice">
  4996. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥818.532</span>
  4997. </td>
  4998. </tr>
  4999. <tr>
  5000. <td class="PriceBreakQuantity">
  5001. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,100);">100:</a>
  5002. </td>
  5003. <td class="PriceBreakPrice">
  5004. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥799.0515</span>
  5005. </td>
  5006. </tr>
  5007. <tr>
  5008. <td><br /></td>
  5009. </tr>
  5010. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  5011. <td colspan="2" style="text-align: center;">
  5012. </td>
  5013. </tr>
  5014. </table>
  5015. </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;)">
  5016. <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 />
  5017. <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 />
  5018. <table cellspacing="0" border="0" style="width: 100%;">
  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. <tr>
  5028. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5029. 多个:
  5030. </td>
  5031. <td style="padding-left: 2px; text-align: left;">
  5032. 1
  5033. </td>
  5034. </tr>
  5035. </table>
  5036. </div>
  5037. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  5038. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5039. <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>
  5040. </div>
  5041. </td><td>MAX10
  5042. </td><td>450 MHz
  5043. </td><td>1.2 V/2.5 V
  5044. </td><td>+ 85 C
  5045. </td><td>SMD/SMT
  5046. </td><td>FBGA-484
  5047. </td>
  5048. </tr><tr class="SearchResultsRowOdd" data-partnumber="989-10M16DCU324C8G" data-index="27">
  5049. <td class="td-select" align="center">
  5050. <div style="padding: 5px 5px 0 5px;">
  5051. <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>
  5052. </div>
  5053. </td><td><a href='/ProductDetail/Altera-Corporation/10M16DCU324C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eU8b11s7CK46EwE5OI9vh5ZA%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>
  5054. <div style="text-align:left;">
  5055. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Altera-Corporation/10M16DCU324C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eU8b11s7CK46EwE5OI9vh5ZA%3d%3d">989-10M16DCU324C8G</a><br />
  5056. <br />
  5057. <br />
  5058. </div></td><td>
  5059. <div class="mfrDiv">
  5060. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Altera-Corporation/10M16DCU324C8G/?qs=sGAEpiMZZMvwLjDpJZyitBsznOtA56eU8b11s7CK46EwE5OI9vh5ZA%3d%3d">10M16DCU324C8G</a><br />
  5061. <br />
  5062. <div style="width: 100%; text-align: center;">
  5063. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  5064. </div>
  5065. <div style="width: 100%; text-align: center;">
  5066. </div>
  5067. </div>
  5068. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../altera">Altera Corporation</a>
  5069. </td><td>FPGA - 现场可编程门阵列 non-volatile FPGA, 246 I/O, 324UBGA
  5070. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5071. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../altera-max10-fpga">了解更多</a>
  5072. </div>
  5073. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5074. </div>
  5075. </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>
  5076. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">119<br/>有库存</span>
  5077. <table>
  5078. <tr align="center">
  5079. <td style="padding-top: 5px">
  5080. </td>
  5081. </tr>
  5082. <tr align="center">
  5083. <td style="padding-top: 5px; padding-bottom: 5px">
  5084. </td>
  5085. </tr>
  5086. </table></td><td>
  5087. <table class="PriceBreaks" cellspacing="0" border="0">
  5088. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5089. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5090. </td>
  5091. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5092. </td>
  5093. </tr>
  5094. <tr>
  5095. <td class="PriceBreakQuantity">
  5096. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  5097. </td>
  5098. <td class="PriceBreakPrice">
  5099. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥295.2495</span>
  5100. </td>
  5101. </tr>
  5102. <tr>
  5103. <td class="PriceBreakQuantity">
  5104. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
  5105. </td>
  5106. <td class="PriceBreakPrice">
  5107. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥236.1879</span>
  5108. </td>
  5109. </tr>
  5110. <tr>
  5111. <td class="PriceBreakQuantity">
  5112. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  5113. </td>
  5114. <td class="PriceBreakPrice">
  5115. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥230.3379</span>
  5116. </td>
  5117. </tr>
  5118. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  5119. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5120. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,500);">500:</a>
  5121. </td>
  5122. <td class="PriceBreakPrice">
  5123. <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>
  5124. </td>
  5125. </tr>
  5126. <tr>
  5127. <td><br /></td>
  5128. </tr>
  5129. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  5130. <td colspan="2" style="text-align: center;">
  5131. </td>
  5132. </tr>
  5133. </table>
  5134. </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;)">
  5135. <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 />
  5136. <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 />
  5137. <table cellspacing="0" border="0" style="width: 100%;">
  5138. <tr>
  5139. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5140. 最低:
  5141. </td>
  5142. <td style="padding-left: 2px; text-align: left;">
  5143. 1
  5144. </td>
  5145. </tr>
  5146. <tr>
  5147. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5148. 多个:
  5149. </td>
  5150. <td style="padding-left: 2px; text-align: left;">
  5151. 1
  5152. </td>
  5153. </tr>
  5154. </table>
  5155. </div>
  5156. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  5157. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5158. <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>
  5159. </div>
  5160. </td><td>MAX10
  5161. </td><td>450 MHz
  5162. </td><td>1.2 V/2.5 V
  5163. </td><td>+ 85 C
  5164. </td><td>SMD/SMT
  5165. </td><td>UBGA-324
  5166. </td>
  5167. </tr>
  5168. </table>
  5169. </div>
  5170. </td>
  5171. </tr>
  5172. <tr>
  5173. <td class="tdSearchResultsPagingBottom">
  5174. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  5175. <tr>
  5176. <td>
  5177. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  5178. </td>
  5179. <td>
  5180. <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" />
  5181. </td>
  5182. <td>
  5183. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  5184. </td>
  5185. <td style="padding-left: 40px;">
  5186. <div class="floatrightpager">
  5187. <span class="bold">
  5188. 页面:
  5189. </span>
  5190. <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/Programmable-Logic-ICs/_/N-6j778/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_655" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=16375">656</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?No=25">下一页</a></span>
  5191. </div>
  5192. </td>
  5193. </tr>
  5194. </table>
  5195. </td>
  5196. </tr>
  5197. <tr>
  5198. <td>
  5199. <!--- Search Tips --->
  5200. </td>
  5201. </tr>
  5202. <tr>
  5203. <td>
  5204. <!-- SOP Section 2 -->
  5205. </td>
  5206. </tr>
  5207. </table>
  5208. </div>
  5209. </div><!-- #liProducts-->
  5210. <!-- Datasheets tab -->
  5211. <!-- #liDatasheets-->
  5212. <!-- Images tab -->
  5213. <!-- #liImages-->
  5214. <!-- Newest Products tab -->
  5215. <!-- #liProducts-->
  5216. </div>
  5217. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  5218. <div>
  5219. <span class="popular-searches-label">热门搜索:</span>
  5220. <span class="popular-searches-links"><a href='/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/FPGA-Field-Programmable-Gate-Array/_/N-6j77c?P=1z0xvsb&pop=5gr2' onclick="ga('send','event','Popular Search Refine Click','Programmable Logic ICs','PQFP-208 FPGA - Field Programmable Gate Array')">PQFP-208 FPGA - 现场可编程门阵列</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/FPGA-Configuration-Memory/_/N-6j77d?P=1z0z63x&pop=ekga' onclick="ga('send','event','Popular Search Refine Click','Programmable Logic ICs','Through Hole FPGA - Configuration Memory')">Through Hole FPGA-配置存储器</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/FPGA-Field-Programmable-Gate-Array/_/N-6j77c?P=1z0xsc4&pop=264w' onclick="ga('send','event','Popular Search Refine Click','Programmable Logic ICs','FBGA-484 FPGA - Field Programmable Gate Array')">FBGA-484 FPGA - 现场可编程门阵列</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/FPGA-Field-Programmable-Gate-Array/_/N-6j77c?P=1yy1mfw&pop=53w' onclick="ga('send','event','Popular Search Refine Click','Programmable Logic ICs','Cyclone V GX FPGA - Field Programmable Gate Array')">Cyclone V GX FPGA - 现场可编程门阵列</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778?P=1z0yydm&pop=v2qm' onclick="ga('send','event','Popular Search Refine Click','Programmable Logic ICs','PLCC-28 Programmable Logic ICs')">PLCC-28 可编程逻辑 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs/_/N-6j778/?P=1z0ypqj&pop=of6r' onclick="ga('send','event','Popular Search Refine Click','Programmable Logic ICs','TQFP-64 Programmable Logic ICs')">TQFP-64 可编程逻辑 IC</a></span>
  5221. </div>
  5222. </div>
  5223. <div style="visibility: hidden;">
  5224. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  5225. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  5226. <span id="SearchResultCount">16385</span>
  5227. <div id="disclaimer">
  5228. 图像仅供参考<br/>请参阅产品规格</div>
  5229. </div>
  5230. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Integrated-Circuits-ICs/Programmable-Logic-ICs" />
  5231. <script type="text/javascript" src='../../../../../javascript/ProductImage.js'></script>
  5232. <script type="text/javascript" src='../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  5233. <script type="text/javascript" src='../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  5234. <!--[if gte IE 9]><!-->
  5235. <script type="text/javascript" src='../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  5236. <!--<![endif]-->
  5237. <!--[if lt IE 9]>
  5238. <script type="text/javascript" src='../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  5239. <![endif]-->
  5240. <script type="text/javascript" src='../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  5241. <script type="text/javascript">
  5242. var subdomain = 'cn2';
  5243. </script>
  5244. </div>
  5245. <div class="aspNetHidden">
  5246. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  5247. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  5248. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  5249. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  5250. </div>
  5251. <script type="text/javascript">
  5252. //<![CDATA[
  5253. var mfrIDsArray = new Array;
  5254. //]]>
  5255. </script>
  5256. <script src='../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  5257. <script type="text/javascript">
  5258. //<![CDATA[
  5259. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  5260. </script>
  5261. <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>
  5262. <script type="text/javascript">
  5263. //<![CDATA[
  5264. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  5265. <!-- Google Code for Conversion Page Remarketing List -->
  5266. <!--
  5267. var google_conversion_id = 1046090287;
  5268. var google_conversion_language = "en";
  5269. var google_conversion_format = "3";
  5270. var google_conversion_color = "666666";
  5271. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  5272. var google_conversion_value = 0;
  5273. //-->
  5274. </script>
  5275. <div class="ga-remarketing">
  5276. <script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
  5277. </script>
  5278. </div>
  5279. <noscript>
  5280. <div style="display:inline;">
  5281. <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" />
  5282. </div>
  5283. </noscript>
  5284. <script type="text/javascript">
  5285. //]]>
  5286. </script>
  5287. <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>
  5288. <script type="text/javascript">
  5289. //<![CDATA[
  5290. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000313^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$1000000393^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000314^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1323044^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$688606';
  5291. theForm.oldSubmit = theForm.submit;
  5292. theForm.submit = WebForm_SaveScrollPositionSubmit;
  5293. theForm.oldOnSubmit = theForm.onsubmit;
  5294. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  5295. //]]>
  5296. </script>
  5297. </form>
  5298. <div id="content-container2" class="hidden">
  5299. <div id="content-fixed-width2" class="content-fixed-width">
  5300. </div>
  5301. </div>
  5302. <div id="wideFooter" class="wideFooter">
  5303. <div id="footer" class="container">
  5304. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB09|20160304.2" />
  5305. <div id="ft_table1">
  5306. <div class="row">
  5307. <div class="col-xs-12">
  5308. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  5309. <div class="floatleft padding5right">
  5310. <strong class="h3">
  5311. 快速电子邮件注册</strong>&nbsp;&nbsp;
  5312. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  5313. </div>
  5314. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  5315. 提交
  5316. </a>
  5317. </div>
  5318. <div id="ft_icons" class="ft_icons">
  5319. <div id="ft_social">
  5320. <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>
  5321. <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>
  5322. <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>
  5323. <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">
  5324. <div class="ico-social fb"></div>
  5325. </a>
  5326. <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">
  5327. <div class="ico-social tw"></div>
  5328. </a>
  5329. <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">
  5330. <div class="ico-social rss"></div>
  5331. </a>
  5332. <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">
  5333. <div class="ico-social yt"></div>
  5334. </a>
  5335. <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">
  5336. <div class="ico-social gp"></div>
  5337. </a>
  5338. <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">
  5339. <div class="ico-social ln"></div>
  5340. </a>
  5341. <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">
  5342. <div class="ico-social sb"></div>
  5343. </a>
  5344. <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">
  5345. <div class="ico-social blog"></div>
  5346. </a>
  5347. </div>
  5348. </div>
  5349. </div>
  5350. </div>
  5351. </div>
  5352. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  5353. <div class="ft_wrapper">
  5354. <div id="ft_links" class="row">
  5355. <div class="col-xs-3 paddingBtm10 hidden-xs">
  5356. <strong class="paddingTopBtm10 inline-block">
  5357. 公司</strong>
  5358. <ul>
  5359. <li>
  5360. <a id="ctl00_Footer1_lnk26" href="../../../../../aboutus/">关于我们</a></li>
  5361. <li>
  5362. <a id="ctl00_Footer1_lnk28" href="../../../../../educationalsales/">教育销售</a></li>
  5363. <li>
  5364. <a id="ctl00_Footer1_lnk31" href="../../../../../pressroom/">新闻中心</a></li>
  5365. <li>
  5366. <a id="ctl00_Footer1_lnk32" href="../../../../../careers/">Mouser 工作机会</a></li>
  5367. <li>
  5368. <a id="ctl00_Footer1_lnk29" href="../../../../../quality/">品质保证</a></li>
  5369. <li>
  5370. <a id="ctl00_Footer1_lnk30" href="../../../../../environmental/">环境保护</a></li>
  5371. </ul>
  5372. </div>
  5373. <div class="col-xs-3 hidden-xs">
  5374. <strong class="paddingTopBtm10 inline-block">
  5375. 快速链接</strong>
  5376. <ul>
  5377. <li><a id="A7" href="/blog">
  5378. Mouser博客</a></li>
  5379. <li>
  5380. <a id="ctl00_Footer1_hlnk1" href="../../../../../new/">最新产品</a></li>
  5381. <li>
  5382. <a id="ctl00_Footer1_hlnk2" href="../../../../../new/products/">新产品</a></li>
  5383. <li>
  5384. <a id="ctl00_Footer1_hlnk3" href="../../../../../applications/">新技术</a></li>
  5385. </ul>
  5386. </div>
  5387. <div class="col-xs-12 col-sm-3">
  5388. <strong class="paddingTopBtm10 inline-block">
  5389. 支持</strong>
  5390. <ul>
  5391. <li><a id="A3" href="/feedback.aspx">
  5392. 反馈</a></li>
  5393. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  5394. 帮助</a></li>
  5395. <li>
  5396. <a id="ctl00_Footer1_lnk27" href="../../../../../contact/">联系我们</a></li>
  5397. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  5398. 浏览器支持</a></li>
  5399. <li><a id="A6" href="/cookie-policy/">
  5400. Cookie政策</a></li>
  5401. </ul>
  5402. </div>
  5403. <div class="col-xs-12 col-sm-3">
  5404. <strong class="paddingTopBtm10 inline-block">
  5405. 昴氏(上海)电子贸易有限公司</strong>
  5406. <ul>
  5407. <li>
  5408. <h4>
  5409. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  5410. </li>
  5411. </ul>
  5412. </div>
  5413. </div>
  5414. </div>
  5415. </div>
  5416. <div class="row">
  5417. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  5418. <div id="ft_copy">
  5419. <span class="ft_terms">
  5420. <a id="A1" href="/privacypolicy/">
  5421. 隐私政策</a>
  5422. &nbsp;&nbsp;|&nbsp;&nbsp;
  5423. <a id="href3" href="/saleterms/">
  5424. 销售条款</a>
  5425. <br />
  5426. </span>
  5427. <span class="ft_copyright">
  5428. 版权所有©2016 Mouser Electronics, Inc
  5429. |
  5430. 沪ICP备15042575号-1
  5431. <br />
  5432. </span>
  5433. <span class="ft_trade">
  5434. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  5435. </span>
  5436. <span class="ft_hq">
  5437. Corporate headquarters and logistics center in Mansfield, Texas USA.
  5438. </span>
  5439. <br />
  5440. <span class="ft_ClassicMobile">
  5441. <strong>
  5442. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  5443. </span>
  5444. </div>
  5445. </div>
  5446. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  5447. <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>
  5448. <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>
  5449. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  5450. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  5451. </a>
  5452. <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>
  5453. <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;
  5454. </a>
  5455. </div>
  5456. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  5457. <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>
  5458. <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>
  5459. <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>
  5460. <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>
  5461. </div>
  5462. </div>
  5463. <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>
  5464. <script type="text/javascript">
  5465. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  5466. </script>
  5467. </div>
  5468. </div>
  5469. <script src="../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  5470. <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>
  5471. </body>
  5472. </html>