11.html 416 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793
  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_4a368d02-c944-4e1a-92e6-eca762e2efcc-26452-318792';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. CPU - 中央处理器 | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应CPU - 中央处理器 。Mouser提供CPU - 中央处理器 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="CPU - 中央处理器" /><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","hX1NISilROBT22uLmBU9l09eaZFD/VwF5jY0DmMVoIc=",2]);_gaq.push(["_setCustomVar",31,"Cart","e38a31d2-c483-49cb-bc1f-6d69db004ca3",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': '607-FH8065348717SRX6',
  65. 'name': 'CPU - Central Processing Units Atom E3845 Quad CR 1.90GHz FCBGA1170',
  66. 'category': 'CPU - Central Processing Units',
  67. 'brand': 'Intel',
  68. 'variant': 'FH8065301487717S R1X6',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '607-CM806460148430SZ',
  74. 'name': 'CPU - Central Processing Units Core i5-4570TE Dual CR 2.7GHz FCLGA1150',
  75. 'category': 'CPU - Central Processing Units',
  76. 'brand': 'Intel',
  77. 'variant': 'CM8064601484301S R17Z',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '607-CM806460154SR1QM',
  83. 'name': 'CPU - Central Processing Units Core i7-4790S Quad CR 4.0GHz FCLGA1150',
  84. 'category': 'CPU - Central Processing Units',
  85. 'brand': 'Intel',
  86. 'variant': 'CM8064601561014S R1QM',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '607-AW8063801115901S',
  92. 'name': 'CPU - Central Processing Units Core i5-3610ME Dual Core 2.7GHz FCPGA988',
  93. 'category': 'CPU - Central Processing Units',
  94. 'brand': 'Intel',
  95. 'variant': 'AW8063801115901S R0QJ',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '607-CM806460153890S3',
  101. 'name': 'CPU - Central Processing Units Core i7-4770TE Quad CR 3.3GHz FCLGA1150',
  102. 'category': 'CPU - Central Processing Units',
  103. 'brand': 'Intel',
  104. 'variant': 'CM8064601538900S R183',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '607-CM806402350SR21P',
  110. 'name': 'CPU - Central Processing Units Xeon E5-2608Lv3 6 CR 2.0GHz FCLGA-2011',
  111. 'category': 'CPU - Central Processing Units',
  112. 'brand': 'Intel',
  113. 'variant': 'CM8064402033500S R21P',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '607-FH806589716SR267',
  119. 'name': 'CPU - Central Processing Units 64BIT MPU',
  120. 'category': 'CPU - Central Processing Units',
  121. 'brand': 'Intel',
  122. 'variant': 'FH8065801974816S R267',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '607-CM806460147SR1PA',
  128. 'name': 'CPU - Central Processing Units Core i3-4350T Dual CR 3.1GHz FCLGA1150',
  129. 'category': 'CPU - Central Processing Units',
  130. 'brand': 'Intel',
  131. 'variant': 'CM8064601481957S R1PA',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '607-CM806418314SR207',
  137. 'name': 'CPU - Central Processing Units Xeon E5-2620v3 6 CR 2.4GHz FCLGA-2011',
  138. 'category': 'CPU - Central Processing Units',
  139. 'brand': 'Intel',
  140. 'variant': 'CM8064401831400S R207',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '607-LE80537GG0494MS',
  146. 'name': 'CPU - Central Processing Units Core 2 T7500 Dual Core 2.2GHz PBGA479',
  147. 'category': 'CPU - Central Processing Units',
  148. 'brand': 'Intel',
  149. 'variant': 'LE80537GG0494MS LADM',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '607-AV8063801149203S',
  155. 'name': 'CPU - Central Processing Units Core i7-3612QE Quad CR 2.1GHz FCBGA1023',
  156. 'category': 'CPU - Central Processing Units',
  157. 'brand': 'Intel',
  158. 'variant': 'AV8063801149203S R0ND',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '607-CM8063701137502S',
  164. 'name': 'CPU - Central Processing Units Core i3-3220 Dual CR 3.3GHz FCLGA1155',
  165. 'category': 'CPU - Central Processing Units',
  166. 'brand': 'Intel',
  167. 'variant': 'CM8063701137502S R0RG',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '607-AW8063801118306S',
  173. 'name': 'CPU - Central Processing Units Core i7-3610QE Quad Core 2.3GHz FCPGA988',
  174. 'category': 'CPU - Central Processing Units',
  175. 'brand': 'Intel',
  176. 'variant': 'AW8063801118306S R0NP',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '607-FH806550151676S8',
  182. 'name': 'CPU - Central Processing Units Atom C2338 Dual Core 1.7GHz FCBGA1283',
  183. 'category': 'CPU - Central Processing Units',
  184. 'brand': 'Intel',
  185. 'variant': 'FH8065501516761S R1S8',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '607-CM806460154SR1QN',
  191. 'name': 'CPU - Central Processing Units Core i5-4590S Quad CR 3.7GHz FCLGA1150',
  192. 'category': 'CPU - Central Processing Units',
  193. 'brand': 'Intel',
  194. 'variant': 'CM8064601561214S R1QN',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '607-FH806550151670SW',
  200. 'name': 'CPU - Central Processing Units Atom C2758 Eight CR 2.4GHz FCBGA1283',
  201. 'category': 'CPU - Central Processing Units',
  202. 'brand': 'Intel',
  203. 'variant': 'FH8065501516702S R1CW',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '607-FH806550151670SY',
  209. 'name': 'CPU - Central Processing Units Atom C2718 Eight CR 2.0GHz FCBGA1283',
  210. 'category': 'CPU - Central Processing Units',
  211. 'brand': 'Intel',
  212. 'variant': 'FH8065501516708S R1CY',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '607-CN8061704455ACSH',
  218. 'name': 'CPU - Central Processing Units Core i7-620LE Dual CR 2.0GHz FCBGA1288',
  219. 'category': 'CPU - Central Processing Units',
  220. 'brand': 'Intel',
  221. 'variant': 'CN80617004455ACS LBXH',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '607-CM8062307262003S',
  227. 'name': 'CPU - Central Processing Units Xeon E3-1275 Quad Core 3.4GHz LGA1155',
  228. 'category': 'CPU - Central Processing Units',
  229. 'brand': 'Intel',
  230. 'variant': 'CM8062307262003S R00P',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '607-AV8062700849508S',
  236. 'name': 'CPU - Central Processing Units Core i7-2655LE Dual CR 2.2GHz FCBGA1023',
  237. 'category': 'CPU - Central Processing Units',
  238. 'brand': 'Intel',
  239. 'variant': 'AV8062700849508S R078',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '607-CL806470180SR1VZ',
  245. 'name': 'CPU - Central Processing Units Core i7-4700EC Quad CR 2.7GHz FCBGA1364',
  246. 'category': 'CPU - Central Processing Units',
  247. 'brand': 'Intel',
  248. 'variant': 'CL8064701830000S R1VZ',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '607-CM806460156SR1S6',
  254. 'name': 'CPU - Central Processing Units Core i5-4590T Quad CR 3.0GHz FCLGA1150',
  255. 'category': 'CPU - Central Processing Units',
  256. 'brand': 'Intel',
  257. 'variant': 'CM8064601561826S R1S6',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '607-LE80537GF0484MS',
  263. 'name': 'CPU - Central Processing Units Core 2 T7400 Dual Core 2.16GHz PBGA479',
  264. 'category': 'CPU - Central Processing Units',
  265. 'brand': 'Intel',
  266. 'variant': 'LE80537GF0484MS LGFV',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '607-CL806470151250SF',
  272. 'name': 'CPU - Central Processing Units Core i3-4010Y Dual CR 1.3GHz FCBGA1168',
  273. 'category': 'CPU - Central Processing Units',
  274. 'brand': 'Intel',
  275. 'variant': 'CL8064701512503S R18F',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '607-LF80537NE0411MS',
  281. 'name': 'CPU - Central Processing Units Celeron M 550 Sngl Core 2GHz PBGA478',
  282. 'category': 'CPU - Central Processing Units',
  283. 'brand': 'Intel',
  284. 'variant': 'LF80537NE0411MS LAJ9',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','hX1NISilROBT22uLmBU9l09eaZFD/VwF5jY0DmMVoIc=');
  290. ga('set','dimension31','e38a31d2-c483-49cb-bc1f-6d69db004ca3');
  291. ga('set','dimension13','163AA125AA96AA68');
  292. ga('set','metric2',589);
  293. ga('set','dimension5','CPU - Central Processing Units');
  294. ga('set','dimension48','baqhe');
  295. ga('set','dimension3','Refine');
  296. ga('set','dimension55','Products');
  297. ga('send', 'pageview');
  298. </script>
  299. <link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe" rel="canonical" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe" /><meta http-equiv="content-language" content="zh-cn" /><link href="../../../../../../css/style.axd?v=3.0.20160304.2&amp;type=css&amp;fileSet=CSS_Base&amp;lang=zh-CN" rel="stylesheet" type="text/css" /><link href="../../../../../../css/style.axd?v=3.0.20160304.2&amp;fileSet=Css_Search&amp;type=css&amp;lang=zh-CN" rel="stylesheet" type="text/css" /><link rel="alternate" hreflang="es-AR" href="http://ar.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" /><script type="text/javascript" src="/msrqqqqxsqb.js" defer></script><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#yxezcaswaauztuaqaww{display:none!important}</style></head>
  300. <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
  301. <script src='../../../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
  302. <script src='../../../../../../flash/js/empty.file.js' type="text/javascript"></script>
  303. <script src='../../../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
  304. <script src='../../../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
  305. <script src='../../../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
  306. <!--[if lt IE 9]>
  307. <script src='../../../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
  308. <![endif]-->
  309. <form method="post" action="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/" 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='18976658';
  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='18976658';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%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphJ%252btzEscHTaHNnloQgeNO4D%252bObaTVA%252bPf7U9vPc0J25dDih7pUdjgbFQB7O3RHwiaY%3d">更改国家</a>
  437. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphJ%252btzEscHTaHNnloQgeNO4D%252bObaTVA%252bPf7U9vPc0J25dDih7pUdjgbFQB7O3RHwiaY%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 = 'e38a31d2-c483-49cb-bc1f-6d69db004ca3';
  506. var currentCountryCode = 'CN';
  507. var currentCurrencyCode= 'RMB';
  508. var currencyCulture = 'zh-CN';
  509. var cultureCode = 'zh-CN';
  510. var customerID = '';
  511. </script>
  512. <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  513. </td>
  514. </tr>
  515. </table>
  516. <div style="display: none; padding-top: 10px" id="divSingleItem">
  517. <table id="tblSingeItem">
  518. <tr>
  519. <!-- Here goes the single item -->
  520. <td style="padding-right: 15px">
  521. <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
  522. <td style="align: right; padding-right: 2px" id="tdSingleItms">
  523. <div id="divAll">
  524. <div id="wrapper">
  525. <div id="divLbl">
  526. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
  527. </div>
  528. <div id="divHyp">
  529. </div>
  530. </div>
  531. <div id="divRest">
  532. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
  533. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
  534. <br />
  535. <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
  536. </div>
  537. </div>
  538. </td>
  539. </tr>
  540. </table>
  541. </div>
  542. <div id="divForCart" class="divMsgLnkTotal" style="display: none">
  543. <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
  544. <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
  545. <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
  546. <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
  547. <a onclick="javascript:return MiniCart.SendToCartPage(&#39;Cart Hover&#39;,&#39;View Cart Button&#39;);" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$linkToCartAtMiniCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  548. </div>
  549. </div>
  550. </td>
  551. <td style="display: none" id="trCartSubTotal">
  552. <table class="tblMiniCartSub">
  553. <tr>
  554. <td align="right" style="padding-bottom: 5px; padding-top: 2px">
  555. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
  556. <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
  557. </td>
  558. </tr>
  559. <tr>
  560. <td align="right" style="padding-bottom: 5px">
  561. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
  562. </td>
  563. </tr>
  564. <tr>
  565. <td align="left" style="padding-bottom: 5px">
  566. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
  567. </td>
  568. </tr>
  569. <tr>
  570. <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
  571. <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack(&#39;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune&#39;,&#39;&#39;)" style="color:White;text-decoration:none;">继续购物</a>
  572. <a onclick="return MiniCart.SendToCartPage(&#39;Add to Cart Modal&#39;,&#39;View Cart&#39;);" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  573. </td>
  574. </tr>
  575. </table>
  576. <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
  577. </td>
  578. </tr>
  579. <tr id="trHideModalCheckBox" style="display: none">
  580. <td colspan="2">
  581. <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
  582. </td>
  583. </tr>
  584. </table>
  585. <script type="text/javascript">
  586. $(document).ready(function () {
  587. MiniCart.source = 'refine';
  588. });
  589. </script>
  590. </div>
  591. <script type="text/javascript">
  592. function OpenCurrencyPopup() {
  593. $("#tblink").trigger('click');
  594. }
  595. function CloseCurrencyPopup() {
  596. var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
  597. var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
  598. if (ddlCurrency != null && hidCurrencyValue != null) {
  599. ddlCurrency.selectedIndex = hidCurrencyValue.value;
  600. }
  601. window.location.reload();
  602. }
  603. </script>
  604. </div>
  605. </div>
  606. <div id="wideHeader" class="wideHeader">
  607. <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
  608. <div id="search" class="row">
  609. <div id="logo" class='col-xs-4'>
  610. <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
  611. </div>
  612. <div id="search-block" class="col-xs-4">
  613. <div id="search-title">
  614. 物料编号/关键字
  615. </div>
  616. <div id="search-bar">
  617. <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_NavHeader_btn1&#39;)">
  618. <div id="searchPartNumberBox" class="search-box inline-block">
  619. <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
  620. <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
  621. </div>
  622. <div class="inline-block">
  623. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
  624. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
  625. </div>
  626. </div>
  627. </div>
  628. </div>
  629. <div id="account" class="col-xs-4 align-right">
  630. <ul>
  631. <li>
  632. </li>
  633. <li>
  634. <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7D%2fzEbCxVZR9TMbhabil8UazR0wvsJ%252bTwQdvE13pxfphJ%252btzEscHTaHNnloQgeNO4D%252bObaTVA%252bPf7U9vPc0J25dDih7pUdjgbFQB7O3RHwiaY%3d">登录</a>
  635. </li>
  636. <li>
  637. </li>
  638. <li>
  639. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  643. </li>
  644. <li>
  645. <!-- Mush:TBC -->
  646. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  647. </li>
  648. </ul>
  649. </div>
  650. </div>
  651. <div id="navArea" class="row">
  652. <div class="col-xs-12">
  653. <div id="navMain" class="inline-block">
  654. <div class="navbar">
  655. <ul class="topnav">
  656. <li>
  657. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  658. <ul class="subnav" id="subnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  661. </li>
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  670. </li>
  671. </ul>
  672. </li>
  673. <li>
  674. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  675. <ul class="subnav" id="subnav">
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  678. </li>
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  687. </li>
  688. </ul>
  689. </li>
  690. <li>
  691. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  692. <ul class="subnav" id="subnav">
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  695. </li>
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  725. </li>
  726. </ul>
  727. </li>
  728. <li>
  729. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  730. <ul class="subnav" id="subnav">
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  733. </li>
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  760. </li>
  761. </ul>
  762. </li>
  763. <li>
  764. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  765. <ul class="subnav" id="subnav">
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  768. </li>
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  777. </li>
  778. </ul>
  779. </li>
  780. <li>
  781. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  782. <ul class="subnav" id="subnav">
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  785. </li>
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  797. </li>
  798. </ul>
  799. </li>
  800. </ul>
  801. </div>
  802. </div>
  803. <div class="onlineCatalog inline-block">
  804. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  805. </div>
  806. </div>
  807. </div>
  808. </div>
  809. <div style="visibility: hidden; height: 0px;">
  810. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  811. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  812. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  813. </div>
  814. <script type="text/javascript">
  815. $(document).ready(function () {
  816. //* change to html5 catalog if javascript is enabled *
  817. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  818. });
  819. </script>
  820. <script type="text/javascript" src='../../../../../../javascript/genLib.js'></script>
  821. </div>
  822. <div id="ctl00_divWide" class="divWide">
  823. <link rel="stylesheet" type="text/css" href='../../../../../../css/fontawesome/css/font-awesome.min.css' />
  824. <br />
  825. <strong></strong>
  826. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  827. <strong>></strong>
  828. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" href="../../../../../_/N-5gcb/" style="font-size: 9pt; font-weight: bold;">半导体</a>
  829. <strong>></strong>
  830. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" href="../../../../_/N-6j73k/" style="font-size: 9pt; font-weight: bold;">集成电路 - IC</a>
  831. <strong>></strong>
  832. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-a86bc/" style="font-size: 9pt; font-weight: bold;">嵌入式处理器和控制器</a>
  833. <strong>></strong>
  834. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl04_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">CPU - 中央处理器</a>
  835. <hr />
  836. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  837. <div class="categorySearchLimits">
  838. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  839. </div>
  840. </div>
  841. </div>
  842. <table border="0" width="100%">
  843. <tr>
  844. <td>
  845. <div id="ctl00_ContentMain_pnl3">
  846. <div id="category-top" class="category-content">
  847. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> CPU - 中央处理器</h1></a>
  848. <img id="ctl00_ContentMain_imageCat" class="category-img" src="../../../../../../images/DisplayCategories/18976658.png" alt="CPU - 中央处理器" />
  849. <!--Marketing Content-->
  850. <table id="ctl00_ContentMain_tbl5">
  851. <tr>
  852. <td>
  853. <div class="marketing-content2">
  854. <strong>CPU - Central Processing Units</strong>&nbsp;are available at Mouser Electronics from Intel. Mouser is an authorized distributor for Intel. Please view our large selection of embedded processors&nbsp;&amp;&nbsp;embedded controllers&nbsp;below.
  855. </div>
  856. </td>
  857. </tr>
  858. </table>
  859. <div id="ctl00_ContentMain_refinemfglogo">
  860. </div>
  861. </div><!--.category-content-->
  862. </div>
  863. </td>
  864. </tr>
  865. <tr>
  866. <td>
  867. </td>
  868. </tr>
  869. <tr>
  870. <td>
  871. <div id="refine-page2">
  872. </div>
  873. </td>
  874. </tr>
  875. </table>
  876. <div id="ctl00_ContentMain_divTabs" class="row">
  877. <div class="col-xs-12">
  878. <div id="tabsNavigation" >
  879. <ul>
  880. <li id="ctl00_ContentMain_liProductsTab" class="active">
  881. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(589)</span></a>
  882. </li>
  883. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  884. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;CPU - Central Processing Units&#39;);" href="../../Datasheets/_/N-baqhe">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(161)</span></a>
  885. </li>
  886. <li id="ctl00_ContentMain_liImagesTab" class="">
  887. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;CPU - Central Processing Units&#39;);" href="../../Images/_/N-baqhe">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(38)</span></a>
  888. </li>
  889. <li id="ctl00_ContentMain_liNewestTab" class="">
  890. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;CPU - Central Processing Units&#39;);" href="../../Newest-Products/_/N-baqhe">最新产品</a>
  891. </li>
  892. </ul>
  893. </div>
  894. </div>
  895. </div>
  896. <div id="tabDivs" class="tab-divs">
  897. <script type="text/javascript">
  898. //<![CDATA[
  899. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  900. //]]>
  901. </script>
  902. <div id="ctl00_ContentMain_liProducts">
  903. <div id="refineSearchDiv">
  904. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  905. <div id="refine-keyword-search-2">
  906. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  907. <div id="boxPartSearch2">
  908. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  909. <tr>
  910. <td rowspan="3" style="vertical-align: middle">
  911. <div id="searchPartNumberBox" class="search-box" >
  912. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  913. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  914. </div>
  915. </td>
  916. </tr>
  917. <tr>
  918. <td class="chk-Search">
  919. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  920. </td>
  921. </tr>
  922. <tr>
  923. <td class="chk-Search">
  924. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_ContentMain_uc2_chkRoHSCompliant" type="checkbox" name="ctl00$ContentMain$uc2$chkRoHSCompliant" /><label for="ctl00_ContentMain_uc2_chkRoHSCompliant">符合RoHS</label></span>
  925. </td>
  926. </tr>
  927. </table>
  928. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  929. </div>
  930. <script type="text/javascript" src='../../../../../../flash/js/Placeholders.min.js'></script>
  931. <script type="text/javascript" src='../../../../../../flash/js/watermark.js'></script>
  932. </div>
  933. </div>
  934. <div id="refine-mfg-select-2">
  935. </div>
  936. <div class="clear">
  937. </div>
  938. <table class="SearchParametricTable2">
  939. <tr>
  940. <td>
  941. <div id="AttributesDiv2">
  942. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  943. <div class="categorySearchLimits">
  944. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  945. <span class="subCategoryHeader">类别</span>&nbsp;&nbsp;<span title="半导体"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx254459|Semiconductors" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx18976658|CPU - Central Processing Units&#39;).checked = false;" /></span>&nbsp;<b>半导体</b>&nbsp;&#62;&nbsp;<span title="集成电路 - IC"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx10973360|Integrated Circuits - ICs" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = false;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx18976658|CPU - Central Processing Units&#39;).checked = false;" /></span>&nbsp;<b>集成电路 - IC</b>&nbsp;&#62;&nbsp;<span title="嵌入式处理器和控制器"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors & Controllers" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx17177592|Embedded Processors & Controllers" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx18976658|CPU - Central Processing Units&#39;).checked = false;" /></span>&nbsp;<b>嵌入式处理器和控制器</b>&nbsp;&#62;&nbsp;<span title="CPU - 中央处理器"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx18976658|CPU - Central Processing Units" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx18976658|CPU - Central Processing Units" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx17177592|Embedded Processors &amp; Controllers&#39;).checked = true;" /></span>&nbsp;<b>CPU - 中央处理器</b>
  946. </div>
  947. </div>
  948. <hr/>
  949. </div>
  950. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  951. <p class="applied-filter-lbl">
  952. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  953. <span id="ctl00_ContentMain_uc5_lblreccount">589 匹配</span>
  954. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  955. </p>
  956. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  957. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  958. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  959. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../../../images/icon_tooltip.png" />
  960. <br />
  961. </div>
  962. </div>
  963. <table id="tb1" style="width: 100%;">
  964. <tr>
  965. <td>
  966. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  967. <tr>
  968. <td>
  969. <table cellpadding="0" cellspacing="0">
  970. <tr>
  971. <td>
  972. <table>
  973. <tr>
  974. <td>
  975. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  976. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  977. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  978. of parametric ids sent on the query string after the seo url is generated and redirected to.
  979. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  980. sorted parametric attributes from an endeca attribute group --->
  981. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  982. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  983. </div>
  984. </td>
  985. </tr>
  986. <tr>
  987. <td>
  988. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  989. <option value="4284836075">Advantech</option>
  990. <option value="4290047598">Intel</option>
  991. </select>
  992. </td>
  993. </tr>
  994. <tr>
  995. <td>
  996. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  997. </td>
  998. </tr>
  999. </table>
  1000. </td>
  1001. <td valign="bottom" style="width: 15px;">
  1002. &nbsp;
  1003. </td>
  1004. </tr>
  1005. </table>
  1006. </td><td>
  1007. <table cellpadding="0" cellspacing="0">
  1008. <tr>
  1009. <td>
  1010. <table>
  1011. <tr>
  1012. <td>
  1013. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">产品</span>
  1014. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1015. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1016. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1017. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1018. sorted parametric attributes from an endeca attribute group --->
  1019. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1020. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="688640" />
  1021. </div>
  1022. </td>
  1023. </tr>
  1024. <tr>
  1025. <td>
  1026. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_688640">
  1027. <option value="4289923368">Desktop Processors</option>
  1028. <option value="4289923313">Embedded Processors</option>
  1029. <option value="4289923380">Mobile Processors</option>
  1030. <option value="4289923381">Server Processors</option>
  1031. <option value="4285911118">Storage Processors</option>
  1032. </select>
  1033. </td>
  1034. </tr>
  1035. <tr>
  1036. <td>
  1037. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1038. </td>
  1039. </tr>
  1040. </table>
  1041. </td>
  1042. <td valign="bottom" style="width: 15px;">
  1043. &nbsp;
  1044. </td>
  1045. </tr>
  1046. </table>
  1047. </td><td>
  1048. <table cellpadding="0" cellspacing="0">
  1049. <tr>
  1050. <td>
  1051. <table>
  1052. <tr>
  1053. <td>
  1054. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  1055. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1056. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1057. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1058. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1059. sorted parametric attributes from an endeca attribute group --->
  1060. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1061. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="688606" />
  1062. </div>
  1063. </td>
  1064. </tr>
  1065. <tr>
  1066. <td>
  1067. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_688606">
  1068. <option value="4290038339">BGA-1224</option>
  1069. <option value="4289569555">BGA-1288</option>
  1070. <option value="4290037544">BGA-479</option>
  1071. <option value="4261520824">BGA-559</option>
  1072. <option value="4291430702">BGA-956</option>
  1073. <option value="4290038442">FCBGA-1023</option>
  1074. <option value="4290037186">FCBGA-1088</option>
  1075. <option value="4292989903">FCBGA-1156</option>
  1076. <option value="4290038254">FCBGA-1168</option>
  1077. <option value="4289452703">FCBGA-1170</option>
  1078. <option value="4274213411">FCBGA-1234</option>
  1079. <option value="4290037828">FCBGA-1283</option>
  1080. <option value="4290037496">FCBGA-1284</option>
  1081. <option value="4289434576">FCBGA-1288</option>
  1082. <option value="4289569548">FCBGA-1364</option>
  1083. <option value="4289434524">FCBGA-1380</option>
  1084. <option value="4289434495">FCBGA-1752</option>
  1085. <option value="4289434640">FCBGA-3600</option>
  1086. <option value="4287788192">FCBGA-393</option>
  1087. <option value="4290037438">FCBGA-437</option>
  1088. <option value="4289434512">FCBGA-479</option>
  1089. <option value="4290037836">FCBGA-559</option>
  1090. <option value="4292989901">FCBGA-676</option>
  1091. <option value="4290036979">FCBGA-883</option>
  1092. <option value="4290037129">FCBGA-951</option>
  1093. <option value="4289457072">FCBGA1283</option>
  1094. <option value="4290037929">FCLGA-1150</option>
  1095. <option value="4274213421">FCLGA-1151</option>
  1096. <option value="4290038082">FCLGA-1155</option>
  1097. <option value="4290037424">FCLGA-1156</option>
  1098. <option value="4290037772">FCLGA-1248</option>
  1099. <option value="4290038201">FCLGA-1356</option>
  1100. <option value="4290038635">FCLGA-1366</option>
  1101. <option value="4290038224">FCLGA-2011</option>
  1102. <option value="4289434654">FCLGA-771</option>
  1103. <option value="4284610726">FCLGA2011-3</option>
  1104. <option value="4289440918">FCPGA-1023</option>
  1105. <option value="4290037196">FCPGA-478</option>
  1106. <option value="4290037863">FCPGA-946</option>
  1107. <option value="4290038331">FCPGA-988</option>
  1108. <option value="4289434585">GCLGA-1155</option>
  1109. <option value="4290037287">HPBGA-479</option>
  1110. <option value="4290038095">LGA-1155</option>
  1111. <option value="4290037452">LGA-1156</option>
  1112. <option value="4289569551">LGA-2011</option>
  1113. <option value="4290037634">LGA-771</option>
  1114. <option value="4290037648">LGA-775</option>
  1115. <option value="4290037552">PBGA-437</option>
  1116. <option value="4290037164">PBGA-441</option>
  1117. <option value="4289938630">PBGA-478</option>
  1118. <option value="4290037268">PBGA-479</option>
  1119. <option value="4290037462">PGA-478</option>
  1120. <option value="4290037814">PGA-988</option>
  1121. <option value="4290037310">PLGA-775</option>
  1122. <option value="4290037199">PPGA-478</option>
  1123. <option value="4287157291">UTFCBGA-1380</option>
  1124. <option value="4285911109">UTFCBGA-592</option>
  1125. </select>
  1126. </td>
  1127. </tr>
  1128. <tr>
  1129. <td>
  1130. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1131. </td>
  1132. </tr>
  1133. </table>
  1134. </td>
  1135. <td valign="bottom" style="width: 15px;">
  1136. &nbsp;
  1137. </td>
  1138. </tr>
  1139. </table>
  1140. </td><td>
  1141. <table cellpadding="0" cellspacing="0">
  1142. <tr>
  1143. <td>
  1144. <table>
  1145. <tr>
  1146. <td>
  1147. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">系列</span>
  1148. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1149. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1150. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1151. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1152. sorted parametric attributes from an endeca attribute group --->
  1153. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1154. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="688418" />
  1155. </div>
  1156. </td>
  1157. </tr>
  1158. <tr>
  1159. <td>
  1160. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688418" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_688418">
  1161. <option value="4289861800">Intel Atom</option>
  1162. <option value="4287157293">Intel Atom SoC</option>
  1163. <option value="4289861791">Intel Celeron</option>
  1164. <option value="4289861771">Intel Celeron D</option>
  1165. <option value="4289861823">Intel Celeron Dual-Core</option>
  1166. <option value="4287157365">Intel Celeron Dual-Core SoC</option>
  1167. <option value="4289861790">Intel Celeron M</option>
  1168. <option value="4272965413">Intel Celeron Quad-Core</option>
  1169. <option value="4287157357">Intel Celeron Quad-Core SoC</option>
  1170. <option value="4289434508">Intel Core 2</option>
  1171. <option value="4289861793">Intel Core 2 Duo</option>
  1172. <option value="4289861792">Intel Core 2 Quad</option>
  1173. <option value="4289861769">Intel Core Duo</option>
  1174. <option value="4289861824">Intel Core i3</option>
  1175. <option value="4289861825">Intel Core i5</option>
  1176. <option value="4289861826">Intel Core i7</option>
  1177. <option value="4274213413">Intel Core M</option>
  1178. <option value="4289861794">Intel Itanium</option>
  1179. <option value="4289861768">Intel Pentium</option>
  1180. <option value="4289861822">Intel Pentium Dual-Core</option>
  1181. <option value="4289861770">Intel Pentium M</option>
  1182. <option value="4272965404">Intel Pentium Quad-Core</option>
  1183. <option value="4287157359">Intel Pentium Quad-Core SoC</option>
  1184. <option value="4287766288">Intel Quark SoC</option>
  1185. <option value="4289861827">Intel Xeon</option>
  1186. </select>
  1187. </td>
  1188. </tr>
  1189. <tr>
  1190. <td>
  1191. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1192. </td>
  1193. </tr>
  1194. </table>
  1195. </td>
  1196. <td valign="bottom" style="width: 15px;">
  1197. &nbsp;
  1198. </td>
  1199. </tr>
  1200. </table>
  1201. </td><td>
  1202. <table cellpadding="0" cellspacing="0">
  1203. <tr>
  1204. <td>
  1205. <table>
  1206. <tr>
  1207. <td>
  1208. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">代码名称</span>
  1209. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1210. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1211. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1212. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1213. sorted parametric attributes from an endeca attribute group --->
  1214. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1215. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000000861" />
  1216. </div>
  1217. </td>
  1218. </tr>
  1219. <tr>
  1220. <td>
  1221. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000861" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000000861">
  1222. <option value="4289575044">Arrandale</option>
  1223. <option value="4289434527">Bay Trail</option>
  1224. <option value="4289428502">Bay Trail-D (Valleyview)</option>
  1225. <option value="4287744777">Bay Trail-I</option>
  1226. <option value="4289656645">Bay Trail-M (Valleyview)</option>
  1227. <option value="4289434665">Bay Trail-T (Valleyview)</option>
  1228. <option value="4272965415">Braswell</option>
  1229. <option value="4282222148">Broadwell</option>
  1230. <option value="4290012203">Cedar Mill</option>
  1231. <option value="4290012365">Cedarview</option>
  1232. <option value="4273520703">Cherry Trail</option>
  1233. <option value="4288581825">Clanton</option>
  1234. <option value="4290012235">Clarkdale</option>
  1235. <option value="4290012200">Conroe</option>
  1236. <option value="4289510784">Crystal Well</option>
  1237. <option value="4286108888">Devil&#39;s Canyon</option>
  1238. <option value="4290012260">Diamondville</option>
  1239. <option value="4290012253">Dothan</option>
  1240. <option value="4290012452">Gladden</option>
  1241. <option value="4290012272">Harpertown</option>
  1242. <option value="4290012436">Haswell</option>
  1243. <option value="4290012449">Ivy Bridge</option>
  1244. <option value="4289569552">Ivy Bridge EP</option>
  1245. <option value="4290012404">Ivy Bridge-EP</option>
  1246. <option value="4290012268">Jasper Forest</option>
  1247. <option value="4289434643">Knights Landing</option>
  1248. <option value="4290012243">Lynnfield</option>
  1249. <option value="4290012191">Merom</option>
  1250. <option value="4290012498">Nehalem-EP</option>
  1251. <option value="4290012256">Penryn</option>
  1252. <option value="4289569577">Pineview</option>
  1253. <option value="4289580110">Rangeley</option>
  1254. <option value="4290012469">Sandy Bridge</option>
  1255. <option value="4289569531">Sandy Bridge EN</option>
  1256. <option value="4289569567">Sandy Bridge EP</option>
  1257. <option value="4290012429">Sandy Bridge-E</option>
  1258. <option value="4290012421">Sandy Bridge-EN</option>
  1259. <option value="4290012414">Sandy Bridge-EP</option>
  1260. <option value="4290012239">Silverthorne</option>
  1261. <option value="4290012171">Sossaman</option>
  1262. <option value="4290012169">Tolapai</option>
  1263. <option value="4290012348">Tukwila</option>
  1264. <option value="4290012222">Tunnel Creek</option>
  1265. <option value="4290012491">Westmere-EP</option>
  1266. <option value="4290012275">Wolfdale</option>
  1267. <option value="4290012201">Woodcrest</option>
  1268. <option value="4290012199">Yonah</option>
  1269. <option value="4290012270">Yorkfield</option>
  1270. </select>
  1271. </td>
  1272. </tr>
  1273. <tr>
  1274. <td>
  1275. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1276. </td>
  1277. </tr>
  1278. </table>
  1279. </td>
  1280. <td valign="bottom" style="width: 15px;">
  1281. &nbsp;
  1282. </td>
  1283. </tr>
  1284. </table>
  1285. </td><td>
  1286. <table cellpadding="0" cellspacing="0">
  1287. <tr>
  1288. <td>
  1289. <table>
  1290. <tr>
  1291. <td>
  1292. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">处理器系列</span>
  1293. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1294. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1295. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1296. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1297. sorted parametric attributes from an endeca attribute group --->
  1298. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1299. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="1000000657" />
  1300. </div>
  1301. </td>
  1302. </tr>
  1303. <tr>
  1304. <td>
  1305. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000000657" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_1000000657">
  1306. <option value="4290037309">352</option>
  1307. <option value="4290037180">370</option>
  1308. <option value="4290037272">373</option>
  1309. <option value="4290037250">423</option>
  1310. <option value="4290037292">440</option>
  1311. <option value="4290037202">530</option>
  1312. <option value="4290037200">550</option>
  1313. <option value="4290012172">575</option>
  1314. <option value="4290037524">722</option>
  1315. <option value="4290037519">723</option>
  1316. <option value="4290037275">738</option>
  1317. <option value="4290037278">745</option>
  1318. <option value="4289569537">760</option>
  1319. <option value="4290037490">827E</option>
  1320. <option value="4290037501">847E</option>
  1321. <option value="4290038389">987</option>
  1322. <option value="4290037464">1020E</option>
  1323. <option value="4290038173">1403</option>
  1324. <option value="4286547826">2000E</option>
  1325. <option value="4286547827">2002E</option>
  1326. <option value="4290037303">5138</option>
  1327. <option value="4290037761">9310</option>
  1328. <option value="4290037771">9320</option>
  1329. <option value="4289434504">9330</option>
  1330. <option value="4290037764">9340</option>
  1331. <option value="4290037768">9350</option>
  1332. <option value="4289569565">1047UE</option>
  1333. <option value="4289510776">2129Y</option>
  1334. <option value="4289434560">2950M</option>
  1335. <option value="4289434608">2955U</option>
  1336. <option value="4288525083">2957U</option>
  1337. <option value="4289434629">2980U</option>
  1338. <option value="4289434561">3550M</option>
  1339. <option value="4289434614">3556U</option>
  1340. <option value="4288525074">3558U</option>
  1341. <option value="4289434625">3560Y</option>
  1342. <option value="4288525080">3561Y</option>
  1343. <option value="4289434648">715C</option>
  1344. <option value="4289569494">725C</option>
  1345. <option value="4290037484">807UE</option>
  1346. <option value="4289434649">815C</option>
  1347. <option value="4289569544">927UE</option>
  1348. <option value="4290037318">B810</option>
  1349. <option value="4290037503">B810E</option>
  1350. <option value="4290037486">B915C</option>
  1351. <option value="4288348942">B925C</option>
  1352. <option value="4292827864">C2000</option>
  1353. <option value="4288348954">C2308</option>
  1354. <option value="4289569525">C2338</option>
  1355. <option value="4288348955">C2508</option>
  1356. <option value="4289569573">C2738</option>
  1357. <option value="4289434513">CE2210</option>
  1358. <option value="4289434606">CE4105</option>
  1359. <option value="4289434605">CE4110</option>
  1360. <option value="4289434604">CE4150</option>
  1361. <option value="4289434602">CE4160</option>
  1362. <option value="4289434600">CE4177</option>
  1363. <option value="4289434599">CE4215</option>
  1364. <option value="4289434598">CE4235</option>
  1365. <option value="4289434597">CE4255</option>
  1366. <option value="4289434596">CE4257</option>
  1367. <option value="4289434595">CE4270</option>
  1368. <option value="4289434594">CE4277</option>
  1369. <option value="4290037834">D2500</option>
  1370. <option value="4287744771">D2700</option>
  1371. <option value="4287744778">D400</option>
  1372. <option value="4287744779">D500</option>
  1373. <option value="4290037295">E1500</option>
  1374. <option value="4290037300">E2160</option>
  1375. <option value="4290037495">E3-1105C</option>
  1376. <option value="4288348945">E3-1105C v2</option>
  1377. <option value="4290037488">E3-1125C</option>
  1378. <option value="4288348946">E3-1125C v2</option>
  1379. <option value="4290038397">E3-1135C</option>
  1380. <option value="4290038004">E3-1220LV2</option>
  1381. <option value="4290037867">E3-1220Lv3</option>
  1382. <option value="4290037874">E3-1220V3</option>
  1383. <option value="4290037377">E3-1225</option>
  1384. <option value="4290037981">E3-1225V2</option>
  1385. <option value="4290037891">E3-1225V3</option>
  1386. <option value="4290037870">E3-1230LV3</option>
  1387. <option value="4273203190">E3-1258LV4</option>
  1388. <option value="4290037872">E3-1265LV3</option>
  1389. <option value="4289569532">E3-1268LV3</option>
  1390. <option value="4290037380">E3-1275</option>
  1391. <option value="4289569500">E3-1275 v3</option>
  1392. <option value="4286108906">E3-1275LV3</option>
  1393. <option value="4290038008">E3-1275V2</option>
  1394. <option value="4273203191">E3-1278LV4</option>
  1395. <option value="4290037637">E3400</option>
  1396. <option value="4284623640">E3805</option>
  1397. <option value="4289434516">E3810</option>
  1398. <option value="4289245972">E3815</option>
  1399. <option value="4289434519">E3822</option>
  1400. <option value="4289434520">E3823</option>
  1401. <option value="4289245973">E3825</option>
  1402. <option value="4289245971">E3826</option>
  1403. <option value="4289245976">E3827</option>
  1404. <option value="4289434521">E3840</option>
  1405. <option value="4289245969">E3845</option>
  1406. <option value="4290037297">E4300</option>
  1407. <option value="4289569523">E5-1405</option>
  1408. <option value="4290037411">E5-1408L</option>
  1409. <option value="4290038183">E5-1410</option>
  1410. <option value="4290037407">E5-1428L</option>
  1411. <option value="4273203214">E5-1428LV3</option>
  1412. <option value="4289510748">E5-1607V2</option>
  1413. <option value="4289510749">E5-1620V2</option>
  1414. <option value="4289510750">E5-1650V2</option>
  1415. <option value="4289826800">E5-1660 v2</option>
  1416. <option value="4289510751">E5-1680V2</option>
  1417. <option value="4289826798">E5-2403 v2</option>
  1418. <option value="4289826786">E5-2407 v2</option>
  1419. <option value="4273203215">E5-2408LV3</option>
  1420. <option value="4290037415">E5-2418L</option>
  1421. <option value="4287751559">E5-2418L v2</option>
  1422. <option value="4273203208">E5-2418LV3</option>
  1423. <option value="4289826766">E5-2420 v2</option>
  1424. <option value="4290037403">E5-2428L</option>
  1425. <option value="4273203216">E5-2428LV3</option>
  1426. <option value="4290037409">E5-2430</option>
  1427. <option value="4289826792">E5-2430 v2</option>
  1428. <option value="4290038194">E5-2430L</option>
  1429. <option value="4273203211">E5-2438LV3</option>
  1430. <option value="4289826768">E5-2440 v2</option>
  1431. <option value="4290037405">E5-2448L</option>
  1432. <option value="4289826784">E5-2450 v2</option>
  1433. <option value="4290038172">E5-2450L</option>
  1434. <option value="4289826790">E5-2470 v2</option>
  1435. <option value="4289826780">E5-2603 v2</option>
  1436. <option value="4284610721">E5-2608L v3</option>
  1437. <option value="4289826776">E5-2609 v2</option>
  1438. <option value="4284610725">E5-2609 v3</option>
  1439. <option value="4289569550">E5-2618L</option>
  1440. <option value="4290037395">E5-2620</option>
  1441. <option value="4289826794">E5-2620 v2</option>
  1442. <option value="4284610717">E5-2620 v3</option>
  1443. <option value="4289569499">E5-2628L</option>
  1444. <option value="4290038148">E5-2630</option>
  1445. <option value="4289826772">E5-2630 v2</option>
  1446. <option value="4290038109">E5-2630L</option>
  1447. <option value="4289510752">E5-2630LV2</option>
  1448. <option value="4289510754">E5-2637V2</option>
  1449. <option value="4290038159">E5-2640</option>
  1450. <option value="4289826778">E5-2640 v2</option>
  1451. <option value="4289826770">E5-2643 v2</option>
  1452. <option value="4290037400">E5-2648L</option>
  1453. <option value="4290038162">E5-2650</option>
  1454. <option value="4289826804">E5-2650 v2</option>
  1455. <option value="4290038112">E5-2650L</option>
  1456. <option value="4289510753">E5-2650LV2</option>
  1457. <option value="4290037397">E5-2658</option>
  1458. <option value="4290038114">E5-2660</option>
  1459. <option value="4289826802">E5-2660 v2</option>
  1460. <option value="4290038165">E5-2667</option>
  1461. <option value="4289510755">E5-2667V2</option>
  1462. <option value="4290038145">E5-2670</option>
  1463. <option value="4289826806">E5-2670 v2</option>
  1464. <option value="4290038116">E5-2680</option>
  1465. <option value="4289826774">E5-2680 v2</option>
  1466. <option value="4289826782">E5-2687W v2</option>
  1467. <option value="4290038140">E5-2690</option>
  1468. <option value="4289826808">E5-2690 v2</option>
  1469. <option value="4289826796">E5-2695 v2</option>
  1470. <option value="4290038047">E5-2695v2</option>
  1471. <option value="4289826788">E5-2697 v2</option>
  1472. <option value="4288348950">E5-4624L v2</option>
  1473. <option value="4290037630">E5220</option>
  1474. <option value="4290037628">E5240</option>
  1475. <option value="4290037644">E5300</option>
  1476. <option value="4290037618">E5440</option>
  1477. <option value="4290037606">E5504</option>
  1478. <option value="4290037609">E5540</option>
  1479. <option value="4290037564">E5620</option>
  1480. <option value="4290037567">E5645</option>
  1481. <option value="4290037344">E620</option>
  1482. <option value="4290037340">E620T</option>
  1483. <option value="4290037350">E640</option>
  1484. <option value="4289569508">E6400</option>
  1485. <option value="4290037347">E640T</option>
  1486. <option value="4290037639">E6500</option>
  1487. <option value="4290037358">E660</option>
  1488. <option value="4290037353">E660T</option>
  1489. <option value="4290037337">E680</option>
  1490. <option value="4290037333">E680T</option>
  1491. <option value="4290037641">E7400</option>
  1492. <option value="4290037647">E8400</option>
  1493. <option value="4289569560">EC3539</option>
  1494. <option value="4290037580">EC5509</option>
  1495. <option value="4290037583">EC5539</option>
  1496. <option value="4290037573">EC5549</option>
  1497. <option value="4290012167">EP80579</option>
  1498. <option value="4289569516">G1101</option>
  1499. <option value="4290037941">G1610</option>
  1500. <option value="4290037939">G1620</option>
  1501. <option value="4289434584">G1630</option>
  1502. <option value="4288881516">G1820</option>
  1503. <option value="4289569542">G1820TE</option>
  1504. <option value="4286108898">G1840</option>
  1505. <option value="4286108892">G1850</option>
  1506. <option value="4290037947">G2020T</option>
  1507. <option value="4290037375">G2120</option>
  1508. <option value="4289510785">G2120T</option>
  1509. <option value="4286108893">G3250</option>
  1510. <option value="4286108880">G3258</option>
  1511. <option value="4289569506">G3320TE</option>
  1512. <option value="4289569575">G3420</option>
  1513. <option value="4286108891">G3450</option>
  1514. <option value="4286108878">G3460</option>
  1515. <option value="4290037382">G540</option>
  1516. <option value="4290037418">G6950</option>
  1517. <option value="4290037384">G850</option>
  1518. <option value="4290038076">i3-2105</option>
  1519. <option value="4290037493">i3-2115C</option>
  1520. <option value="4290037386">i3-2120</option>
  1521. <option value="4289434650">i3-2165C</option>
  1522. <option value="4277079058">i3-2310E</option>
  1523. <option value="4290037804">i3-2330E</option>
  1524. <option value="4290037505">i3-2340UE</option>
  1525. <option value="4288348943">i3-3115C</option>
  1526. <option value="4290037475">i3-3120ME</option>
  1527. <option value="4290037466">i3-3217UE</option>
  1528. <option value="4290037373">i3-3220</option>
  1529. <option value="4290037994">i3-3225</option>
  1530. <option value="4289510775">i3-3229Y</option>
  1531. <option value="4289434571">i3-330E</option>
  1532. <option value="4289434567">i3-4000M</option>
  1533. <option value="4289434631">i3-4005U</option>
  1534. <option value="4290038232">i3-4010U</option>
  1535. <option value="4289510773">i3-4010Y</option>
  1536. <option value="4289434607">i3-4012Y</option>
  1537. <option value="4289434620">i3-4020Y</option>
  1538. <option value="4289434627">i3-4100E</option>
  1539. <option value="4289434562">i3-4100M</option>
  1540. <option value="4290038240">i3-4100U</option>
  1541. <option value="4289434616">i3-4102E</option>
  1542. <option value="4287758970">i3-4110E</option>
  1543. <option value="4287758972">i3-4112E</option>
  1544. <option value="4286108879">i3-4160</option>
  1545. <option value="4289569490">I3-4330</option>
  1546. <option value="4289569543">I3-4330TE</option>
  1547. <option value="4286547648">i3-4340TE</option>
  1548. <option value="4286547655">i3-4350T</option>
  1549. <option value="4286547649">i3-4360</option>
  1550. <option value="4286108882">i3-4370</option>
  1551. <option value="4282222137">i3-5010U</option>
  1552. <option value="4290037423">i3-540</option>
  1553. <option value="4290037392">i5-2400</option>
  1554. <option value="4289434591">i5-2500T</option>
  1555. <option value="4290037315">i5-2510E</option>
  1556. <option value="4290037498">i5-2515E</option>
  1557. <option value="4290038362">i5-3320M</option>
  1558. <option value="4289510769">i5-3339Y</option>
  1559. <option value="4290038278">i5-3340M</option>
  1560. <option value="4290038022">i5-3550S</option>
  1561. <option value="4290038025">i5-3570T</option>
  1562. <option value="4290037480">i5-3610ME</option>
  1563. <option value="4289434635">i5-4200H</option>
  1564. <option value="4289434563">i5-4200M</option>
  1565. <option value="4290038234">i5-4200U</option>
  1566. <option value="4289434613">i5-4202Y</option>
  1567. <option value="4289434612">i5-4210Y</option>
  1568. <option value="4290038244">i5-4250U</option>
  1569. <option value="4289434564">i5-4300M</option>
  1570. <option value="4289434633">i5-4300U</option>
  1571. <option value="4289434611">i5-4300Y</option>
  1572. <option value="4289434610">i5-4302Y</option>
  1573. <option value="4288289586">i5-4310M</option>
  1574. <option value="4289434565">i5-4330M</option>
  1575. <option value="4288289585">i5-4340M</option>
  1576. <option value="4290038246">i5-4350U</option>
  1577. <option value="4289434628">i5-4400E</option>
  1578. <option value="4289434617">i5-4402E</option>
  1579. <option value="4288348959">i5-4402EC</option>
  1580. <option value="4287758968">i5-4410E</option>
  1581. <option value="4285190339">i5-4422E</option>
  1582. <option value="4290037912">i5-4430</option>
  1583. <option value="4290037899">i5-4430S</option>
  1584. <option value="4289510791">i5-4440</option>
  1585. <option value="4289510790">i5-4440S</option>
  1586. <option value="4286108901">i5-4460</option>
  1587. <option value="4290037915">i5-4570</option>
  1588. <option value="4290037905">i5-4570S</option>
  1589. <option value="4290037893">i5-4570T</option>
  1590. <option value="4289569563">I5-4570TE</option>
  1591. <option value="4286108877">i5-4590</option>
  1592. <option value="4286547650">i5-4590S</option>
  1593. <option value="4286547653">i5-4590T</option>
  1594. <option value="4290037918">i5-4670</option>
  1595. <option value="4290037902">i5-4670S</option>
  1596. <option value="4289510792">i5-4670T</option>
  1597. <option value="4286108896">i5-4690</option>
  1598. <option value="4286108876">i5-4690K</option>
  1599. <option value="4286108883">i5-4690S</option>
  1600. <option value="4289434572">i5-520E</option>
  1601. <option value="4289569513">I5-520M</option>
  1602. <option value="4282222134">i5-5350U</option>
  1603. <option value="4290037420">i5-660</option>
  1604. <option value="4290037448">i5-750</option>
  1605. <option value="4290037389">i7-2600</option>
  1606. <option value="4290037508">i7-2610UE</option>
  1607. <option value="4290037511">i7-2655LE</option>
  1608. <option value="4290037320">i7-2710QE</option>
  1609. <option value="4290037514">i7-2715QE</option>
  1610. <option value="4290037784">i7-2760QM</option>
  1611. <option value="4290037786">i7-2860QM</option>
  1612. <option value="4290038351">i7-3517U</option>
  1613. <option value="4290037468">i7-3517UE</option>
  1614. <option value="4290038366">i7-3520M</option>
  1615. <option value="4290037477">i7-3555LE</option>
  1616. <option value="4290037459">i7-3610QE</option>
  1617. <option value="4290037470">i7-3612QE</option>
  1618. <option value="4290037472">i7-3615QE</option>
  1619. <option value="4290038284">i7-3630QM</option>
  1620. <option value="4290038310">i7-3632QM</option>
  1621. <option value="4290038338">i7-3635QM</option>
  1622. <option value="4289510760">i7-3689Y</option>
  1623. <option value="4290037370">i7-3770</option>
  1624. <option value="4290038208">i7-3960X</option>
  1625. <option value="4290038236">i7-4500U</option>
  1626. <option value="4289510759">i7-4550U</option>
  1627. <option value="4289434566">i7-4600M</option>
  1628. <option value="4289434634">i7-4600U</option>
  1629. <option value="4288289584">i7-4610M</option>
  1630. <option value="4289434621">i7-4610Y</option>
  1631. <option value="4290038252">i7-4650U</option>
  1632. <option value="4288348957">i7-4700EC</option>
  1633. <option value="4289569546">I7-4700EQ</option>
  1634. <option value="4288348958">i7-4702EC</option>
  1635. <option value="4290037896">i7-4765T</option>
  1636. <option value="4290037924">i7-4770</option>
  1637. <option value="4290037928">i7-4770K</option>
  1638. <option value="4290037908">i7-4770S</option>
  1639. <option value="4289434583">i7-4770T</option>
  1640. <option value="4289569557">I7-4770TE</option>
  1641. <option value="4289510793">i7-4771</option>
  1642. <option value="4286108881">i7-4790</option>
  1643. <option value="4286108886">i7-4790K</option>
  1644. <option value="4286547651">i7-4790S</option>
  1645. <option value="4288348962">i7-4810MQ</option>
  1646. <option value="4289434619">i7-4850EQ</option>
  1647. <option value="4289434618">i7-4860EQ</option>
  1648. <option value="4288348964">i7-4910MQ</option>
  1649. <option value="4288348961">i7-4940MX</option>
  1650. <option value="4282222141">i7-5650U</option>
  1651. <option value="4273203193">i7-5700EQ</option>
  1652. <option value="4286108889">i7-5820K</option>
  1653. <option value="4273203194">i7-5850EQ</option>
  1654. <option value="4286108890">i7-5930K</option>
  1655. <option value="4286108904">i7-5960X</option>
  1656. <option value="4289434569">i7-610E</option>
  1657. <option value="4289434575">i7-620LE</option>
  1658. <option value="4289569492">I7-620M</option>
  1659. <option value="4289434574">i7-620UE</option>
  1660. <option value="4289569534">I7-660UE</option>
  1661. <option value="4290037451">i7-860</option>
  1662. <option value="4289434490">IXP2350AD</option>
  1663. <option value="4288525076">J1800</option>
  1664. <option value="4288525073">J1900</option>
  1665. <option value="4289434529">J2850</option>
  1666. <option value="4288525089">J2900</option>
  1667. <option value="4290037243">L2400</option>
  1668. <option value="4289434653">L5215</option>
  1669. <option value="4290037633">L5238</option>
  1670. <option value="4289434652">L5248</option>
  1671. <option value="4290037625">L5408</option>
  1672. <option value="4290037622">L5410</option>
  1673. <option value="4290037602">L5508</option>
  1674. <option value="4290037604">L5518</option>
  1675. <option value="4290037559">L5618</option>
  1676. <option value="4290037569">L5638</option>
  1677. <option value="4290037260">L7400</option>
  1678. <option value="4290037257">L7500</option>
  1679. <option value="4290037589">LC3518</option>
  1680. <option value="4290037592">LC3528</option>
  1681. <option value="4290037597">LC5518</option>
  1682. <option value="4290037586">LC5528</option>
  1683. <option value="4290037326">N2600</option>
  1684. <option value="4290037550">N270</option>
  1685. <option value="4290037330">N2800</option>
  1686. <option value="4288525086">N2806</option>
  1687. <option value="4287156841">N2807</option>
  1688. <option value="4289799537">N2810</option>
  1689. <option value="4288525088">N2815</option>
  1690. <option value="4288525096">N2820</option>
  1691. <option value="4288171184">N2930</option>
  1692. <option value="4272965397">N3000</option>
  1693. <option value="4272965400">N3050</option>
  1694. <option value="4272965408">N3150</option>
  1695. <option value="4289799535">N3510</option>
  1696. <option value="4288525091">N3520</option>
  1697. <option value="4272965403">N3700</option>
  1698. <option value="4289569541">N450</option>
  1699. <option value="4289569576">N455</option>
  1700. <option value="4290037577">P1053</option>
  1701. <option value="4289569507">P4500</option>
  1702. <option value="4289434570">P4505</option>
  1703. <option value="4290037530">P8400</option>
  1704. <option value="4290037612">Q9400</option>
  1705. <option value="4290037539">SL9380</option>
  1706. <option value="4290037537">SL9400</option>
  1707. <option value="4290037535">SP9300</option>
  1708. <option value="4290037528">SU9300</option>
  1709. <option value="4290037247">T2500</option>
  1710. <option value="4290037532">T3100</option>
  1711. <option value="4289434506">T5500</option>
  1712. <option value="4290037267">T7400</option>
  1713. <option value="4290037262">T7500</option>
  1714. <option value="4290037542">T9400</option>
  1715. <option value="4290037240">U2500</option>
  1716. <option value="4289569553">U3405</option>
  1717. <option value="4290037253">U7500</option>
  1718. <option value="4288581819">X1000</option>
  1719. <option value="4287796252">X1001</option>
  1720. <option value="4288184675">X1010</option>
  1721. <option value="4287796251">X1011</option>
  1722. <option value="4287796253">X1020</option>
  1723. <option value="4288184676">X1020D</option>
  1724. <option value="4287796249">X1021</option>
  1725. <option value="4287796250">X1021D</option>
  1726. <option value="4290037443">X3430</option>
  1727. <option value="4290037445">X3450</option>
  1728. <option value="4273520695">x5-Z8300</option>
  1729. <option value="4273520687">x5-Z8500</option>
  1730. <option value="4273520690">x7-Z8700</option>
  1731. <option value="4289434523">Z3680</option>
  1732. <option value="4289434514">Z3680D</option>
  1733. <option value="4285911111">Z3735E</option>
  1734. <option value="4285911114">Z3735F</option>
  1735. <option value="4285911108">Z3735G</option>
  1736. <option value="4285910975">Z3736F</option>
  1737. <option value="4285910974">Z3736G</option>
  1738. <option value="4289569511">Z3740</option>
  1739. <option value="4285911116">Z3745</option>
  1740. <option value="4289569528">Z3770</option>
  1741. <option value="4289569510">Z3770D</option>
  1742. <option value="4285911112">Z3775</option>
  1743. <option value="4285911110">Z3775D</option>
  1744. <option value="4285911119">Z3795</option>
  1745. <option value="4290037162">Z510</option>
  1746. <option value="4290037434">Z510P</option>
  1747. <option value="4290037437">Z510PT</option>
  1748. <option value="4290037431">Z520PT</option>
  1749. <option value="4290037159">Z530</option>
  1750. <option value="4290037428">Z530P</option>
  1751. </select>
  1752. </td>
  1753. </tr>
  1754. <tr>
  1755. <td>
  1756. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1757. </td>
  1758. </tr>
  1759. </table>
  1760. </td>
  1761. <td valign="bottom" style="width: 15px;">
  1762. &nbsp;
  1763. </td>
  1764. </tr>
  1765. </table>
  1766. </td><td>
  1767. <table cellpadding="0" cellspacing="0">
  1768. <tr>
  1769. <td>
  1770. <table>
  1771. <tr>
  1772. <td>
  1773. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">嵌入式选项</span>
  1774. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  1775. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1776. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1777. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1778. sorted parametric attributes from an endeca attribute group --->
  1779. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  1780. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="1000000863" />
  1781. </div>
  1782. </td>
  1783. </tr>
  1784. <tr>
  1785. <td>
  1786. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000863" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_1000000863">
  1787. <option value="4289084374">Embedded</option>
  1788. <option value="4289084384">Non-Embedded</option>
  1789. </select>
  1790. </td>
  1791. </tr>
  1792. <tr>
  1793. <td>
  1794. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1795. </td>
  1796. </tr>
  1797. </table>
  1798. </td>
  1799. <td valign="bottom" style="width: 15px;">
  1800. &nbsp;
  1801. </td>
  1802. </tr>
  1803. </table>
  1804. </td><td>
  1805. <table cellpadding="0" cellspacing="0">
  1806. <tr>
  1807. <td>
  1808. <table>
  1809. <tr>
  1810. <td>
  1811. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lblheader" style="font-weight:bold;white-space:normal;">内核数量</span>
  1812. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_RangePnl">
  1813. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1814. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1815. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1816. sorted parametric attributes from an endeca attribute group --->
  1817. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnRange" />
  1818. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnDimId" value="1000000877" />
  1819. </div>
  1820. </td>
  1821. </tr>
  1822. <tr>
  1823. <td>
  1824. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1000000877" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_1000000877">
  1825. <option value="4290012451">1</option>
  1826. <option value="4290012505">2</option>
  1827. <option value="4282222145">2 Core</option>
  1828. <option value="4290012497">4</option>
  1829. <option value="4274213416">4 Core</option>
  1830. <option value="4290012512">6</option>
  1831. <option value="4273203210">6 Core</option>
  1832. <option value="4290012473">8</option>
  1833. <option value="4273203221">8 Core</option>
  1834. <option value="4290012479">10</option>
  1835. <option value="4273203213">10 Core</option>
  1836. <option value="4290012403">12</option>
  1837. <option value="4289434638">57</option>
  1838. <option value="4289434639">60</option>
  1839. <option value="4289434641">61</option>
  1840. </select>
  1841. </td>
  1842. </tr>
  1843. <tr>
  1844. <td>
  1845. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1846. </td>
  1847. </tr>
  1848. </table>
  1849. </td>
  1850. <td valign="bottom" style="width: 15px;">
  1851. &nbsp;
  1852. </td>
  1853. </tr>
  1854. </table>
  1855. </td><td>
  1856. <table cellpadding="0" cellspacing="0">
  1857. <tr>
  1858. <td>
  1859. <table>
  1860. <tr>
  1861. <td>
  1862. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lblheader" style="font-weight:bold;white-space:normal;">TDP - 最大</span>
  1863. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_RangePnl">
  1864. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1865. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1866. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1867. sorted parametric attributes from an endeca attribute group --->
  1868. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnRange" />
  1869. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnDimId" value="1000000874" />
  1870. </div>
  1871. </td>
  1872. </tr>
  1873. <tr>
  1874. <td>
  1875. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$1000000874" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_1000000874">
  1876. <option value="4290012153">2 W</option>
  1877. <option value="4290012238">2.2 W</option>
  1878. <option value="4290012174">2.3 W</option>
  1879. <option value="4290012257">2.5 W</option>
  1880. <option value="4289888184">3 W</option>
  1881. <option value="4290012213">3.3 W</option>
  1882. <option value="4290012205">3.5 W</option>
  1883. <option value="4290012294">3.6 W</option>
  1884. <option value="4272965396">4 W</option>
  1885. <option value="4289951866">4.3 W</option>
  1886. <option value="4290012210">4.5 W</option>
  1887. <option value="4290012251">5 W</option>
  1888. <option value="4290012254">5.5 W</option>
  1889. <option value="4290012080">6 W</option>
  1890. <option value="4290012207">6.5 W</option>
  1891. <option value="4290012193">7 W</option>
  1892. <option value="4288525095">7.5 W</option>
  1893. <option value="4290012317">8 W</option>
  1894. <option value="4290012187">9 W</option>
  1895. <option value="4290012114">9.5 W</option>
  1896. <option value="4290012362">10 W</option>
  1897. <option value="4289510772">11.5 W</option>
  1898. <option value="4290012313">12 W</option>
  1899. <option value="4289569569">13 W</option>
  1900. <option value="4288525093">14 W</option>
  1901. <option value="4290012432">15 W</option>
  1902. <option value="4290012455">17 W</option>
  1903. <option value="4290012166">18 W</option>
  1904. <option value="4290012165">19 W</option>
  1905. <option value="4290012405">20 W</option>
  1906. <option value="4290012192">21 W</option>
  1907. <option value="4290012266">23 W</option>
  1908. <option value="4290012374">25 W</option>
  1909. <option value="4290012198">27 W</option>
  1910. <option value="4290012178">28 W</option>
  1911. <option value="4290012262">30 W</option>
  1912. <option value="4290012188">31 W</option>
  1913. <option value="4290012189">34 W</option>
  1914. <option value="4290012461">35 W</option>
  1915. <option value="4290012370">37 W</option>
  1916. <option value="4290012269">38 W</option>
  1917. <option value="4290012486">40 W</option>
  1918. <option value="4286547657">43 W</option>
  1919. <option value="4290012463">45 W</option>
  1920. <option value="4290012372">47 W</option>
  1921. <option value="4290012267">48 W</option>
  1922. <option value="4290012271">50 W</option>
  1923. <option value="4284610719">52 W</option>
  1924. <option value="4286108897">53 W</option>
  1925. <option value="4289569574">54 W</option>
  1926. <option value="4290012438">55 W</option>
  1927. <option value="4290012494">60 W</option>
  1928. <option value="4290012406">65 W</option>
  1929. <option value="4290012415">70 W</option>
  1930. <option value="4290012234">73 W</option>
  1931. <option value="4290012400">77 W</option>
  1932. <option value="4290012493">80 W</option>
  1933. <option value="4290012383">84 W</option>
  1934. <option value="4290012264">85 W</option>
  1935. <option value="4290012202">86 W</option>
  1936. <option value="4286108885">88 W</option>
  1937. <option value="4290012487">95 W</option>
  1938. <option value="4290012412">115 W</option>
  1939. <option value="4290012508">130 W</option>
  1940. <option value="4290012411">135 W</option>
  1941. <option value="4286108903">140 W</option>
  1942. <option value="4290012423">150 W</option>
  1943. <option value="4290012346">155 W</option>
  1944. <option value="4290012345">185 W</option>
  1945. </select>
  1946. </td>
  1947. </tr>
  1948. <tr>
  1949. <td>
  1950. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1951. </td>
  1952. </tr>
  1953. </table>
  1954. </td>
  1955. <td valign="bottom" style="width: 15px;">
  1956. &nbsp;
  1957. </td>
  1958. </tr>
  1959. </table>
  1960. </td><td>
  1961. <table cellpadding="0" cellspacing="0">
  1962. <tr>
  1963. <td>
  1964. <table>
  1965. <tr>
  1966. <td>
  1967. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lblheader" style="font-weight:bold;white-space:normal;">最大时钟频率</span>
  1968. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_RangePnl">
  1969. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1970. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1971. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1972. sorted parametric attributes from an endeca attribute group --->
  1973. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnRange" />
  1974. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnDimId" value="1000000389" />
  1975. </div>
  1976. </td>
  1977. </tr>
  1978. <tr>
  1979. <td>
  1980. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$1000000389" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_1000000389">
  1981. <option value="4294601664">400 MHz</option>
  1982. <option value="4294594355">600 MHz</option>
  1983. <option value="4294406333">800 MHz</option>
  1984. <option value="4294590736">900 MHz</option>
  1985. <option value="4294588405">1 GHz</option>
  1986. <option value="4290037255">1.06 GHz</option>
  1987. <option value="4292476639">1.1 GHz</option>
  1988. <option value="4292856852">1.2 GHz</option>
  1989. <option value="4292566792">1.25 GHz</option>
  1990. <option value="4292476632">1.3 GHz</option>
  1991. <option value="4291256643">1.33 GHz</option>
  1992. <option value="4290998033">1.4 GHz</option>
  1993. <option value="4289656642">1.46 GHz</option>
  1994. <option value="4292797232">1.5 GHz</option>
  1995. <option value="4287157071">1.58 GHz</option>
  1996. <option value="4292476642">1.6 GHz</option>
  1997. <option value="4292476624">1.66 GHz</option>
  1998. <option value="4292512012">1.7 GHz</option>
  1999. <option value="4290038489">1.73 GHz</option>
  2000. <option value="4289452704">1.75 GHz</option>
  2001. <option value="4292476627">1.8 GHz</option>
  2002. <option value="4288171187">1.83 GHz</option>
  2003. <option value="4273520701">1.84 GHz</option>
  2004. <option value="4292744112">1.86 GHz</option>
  2005. <option value="4290037561">1.87 GHz</option>
  2006. <option value="4290038352">1.9 GHz</option>
  2007. <option value="4289434522">1.91 GHz</option>
  2008. <option value="4292476620">2 GHz</option>
  2009. <option value="4272965412">2.08 GHz</option>
  2010. <option value="4292476618">2.1 GHz</option>
  2011. <option value="4290038562">2.13 GHz</option>
  2012. <option value="4290037270">2.16 GHz</option>
  2013. <option value="4287157072">2.166 GHz</option>
  2014. <option value="4290038425">2.2 GHz</option>
  2015. <option value="4273520688">2.24 GHz</option>
  2016. <option value="4290038625">2.26 GHz</option>
  2017. <option value="4290037584">2.27 GHz</option>
  2018. <option value="4290038410">2.3 GHz</option>
  2019. <option value="4290037631">2.33 GHz</option>
  2020. <option value="4285911120">2.39 GHz</option>
  2021. <option value="4292582676">2.4 GHz</option>
  2022. <option value="4289434530">2.41 GHz</option>
  2023. <option value="4292488712">2.5 GHz</option>
  2024. <option value="4290038569">2.53 GHz</option>
  2025. <option value="4290038434">2.6 GHz</option>
  2026. <option value="4292744114">2.66 GHz</option>
  2027. <option value="4290038443">2.7 GHz</option>
  2028. <option value="4290038591">2.8 GHz</option>
  2029. <option value="4290037619">2.83 GHz</option>
  2030. <option value="4290038367">2.9 GHz</option>
  2031. <option value="4290038587">2.93 GHz</option>
  2032. <option value="4290038292">3 GHz</option>
  2033. <option value="4290038574">3.06 GHz</option>
  2034. <option value="4290038120">3.1 GHz</option>
  2035. <option value="4290038550">3.2 GHz</option>
  2036. <option value="4290038209">3.3 GHz</option>
  2037. <option value="4290038596">3.33 GHz</option>
  2038. <option value="4290038061">3.4 GHz</option>
  2039. <option value="4290038214">3.5 GHz</option>
  2040. <option value="4290038554">3.6 GHz</option>
  2041. <option value="4290038002">3.7 GHz</option>
  2042. <option value="4288348963">3.8 GHz</option>
  2043. <option value="4289575030">3.9 GHz</option>
  2044. <option value="4292755157">4 GHz</option>
  2045. </select>
  2046. </td>
  2047. </tr>
  2048. <tr>
  2049. <td>
  2050. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2051. </td>
  2052. </tr>
  2053. </table>
  2054. </td>
  2055. <td valign="bottom" style="width: 15px;">
  2056. &nbsp;
  2057. </td>
  2058. </tr>
  2059. </table>
  2060. </td><td>
  2061. <table cellpadding="0" cellspacing="0">
  2062. <tr>
  2063. <td>
  2064. <table>
  2065. <tr>
  2066. <td>
  2067. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lblheader" style="font-weight:bold;white-space:normal;">数据总线宽度</span>
  2068. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_RangePnl">
  2069. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  2070. of parametric ids sent on the query string after the seo url is generated and redirected to.
  2071. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  2072. sorted parametric attributes from an endeca attribute group --->
  2073. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_hdnRange" />
  2074. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_hdnDimId" value="1000000426" />
  2075. </div>
  2076. </td>
  2077. </tr>
  2078. <tr>
  2079. <td>
  2080. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$1000000426" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_1000000426">
  2081. <option value="4294602379">32 bit</option>
  2082. <option value="4294590068">64 bit</option>
  2083. </select>
  2084. </td>
  2085. </tr>
  2086. <tr>
  2087. <td>
  2088. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl10_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2089. </td>
  2090. </tr>
  2091. </table>
  2092. </td>
  2093. <td valign="bottom" style="width: 15px;">
  2094. &nbsp;
  2095. </td>
  2096. </tr>
  2097. </table>
  2098. </td><td>
  2099. <table cellpadding="0" cellspacing="0">
  2100. <tr>
  2101. <td>
  2102. <table>
  2103. <tr>
  2104. <td>
  2105. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_lblheader" style="font-weight:bold;white-space:normal;">存储容量</span>
  2106. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_RangePnl">
  2107. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  2108. of parametric ids sent on the query string after the seo url is generated and redirected to.
  2109. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  2110. sorted parametric attributes from an endeca attribute group --->
  2111. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_hdnRange" />
  2112. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_hdnDimId" value="688521" />
  2113. </div>
  2114. </td>
  2115. </tr>
  2116. <tr>
  2117. <td>
  2118. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$688521" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_688521">
  2119. <option value="4294600338">1 GB</option>
  2120. <option value="4294595616">2 GB</option>
  2121. <option value="4294595591">4 GB</option>
  2122. <option value="4294593832">8 GB</option>
  2123. <option value="4294593837">16 GB</option>
  2124. <option value="4294592461">32 GB</option>
  2125. <option value="4294591086">64 GB</option>
  2126. <option value="4290038624">144 GB</option>
  2127. <option value="4290038606">288 GB</option>
  2128. <option value="4290038204">375 GB</option>
  2129. <option value="4289824806">384 GB</option>
  2130. <option value="4290038167">750 GB</option>
  2131. <option value="4289510756">768 GB</option>
  2132. <option value="4288533452">-</option>
  2133. </select>
  2134. </td>
  2135. </tr>
  2136. <tr>
  2137. <td>
  2138. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl11_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2139. </td>
  2140. </tr>
  2141. </table>
  2142. </td>
  2143. <td valign="bottom" style="width: 15px;">
  2144. &nbsp;
  2145. </td>
  2146. </tr>
  2147. </table>
  2148. </td><td>
  2149. <table cellpadding="0" cellspacing="0">
  2150. <tr>
  2151. <td>
  2152. <table>
  2153. <tr>
  2154. <td>
  2155. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_lblheader" style="font-weight:bold;white-space:normal;">存储类型</span>
  2156. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_RangePnl">
  2157. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  2158. of parametric ids sent on the query string after the seo url is generated and redirected to.
  2159. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  2160. sorted parametric attributes from an endeca attribute group --->
  2161. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl12$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_hdnRange" />
  2162. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl12$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_hdnDimId" value="688522" />
  2163. </div>
  2164. </td>
  2165. </tr>
  2166. <tr>
  2167. <td>
  2168. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl12$688522" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_688522">
  2169. <option value="4288901883">-</option>
  2170. <option value="4289434496">DDR-300</option>
  2171. <option value="4291380867">DDR2, DDR3</option>
  2172. <option value="4290037190">DDR2-400 / DDR2-533 / DDR2-667 / DDR2-800</option>
  2173. <option value="4290037145">DDR2-667</option>
  2174. <option value="4290037224">DDR2-667, DDR2-800</option>
  2175. <option value="4289569572">DDR2-667, DDR2-800, DDR3-800</option>
  2176. <option value="4290037361">DDR2-800</option>
  2177. <option value="4292559711">DDR3</option>
  2178. <option value="4289457073">DDR3, 3L 1333</option>
  2179. <option value="4289457071">DDR3, 3L 1600</option>
  2180. <option value="4290038084">DDR3-1066</option>
  2181. <option value="4289569520">DDR3-1066, DDR3-1333</option>
  2182. <option value="4290038459">DDR3-1066/1333</option>
  2183. <option value="4290038227">DDR3-1066/1333/1600</option>
  2184. <option value="4284623641">DDR3-1067</option>
  2185. <option value="4290037473">DDR3-1067/1333/1600, DDR3L-1067/1333/1600</option>
  2186. <option value="4290037460">DDR3-1067/1333/1600, DDR3L-1333/1600</option>
  2187. <option value="4290037948">DDR3-1333</option>
  2188. <option value="4288525079">DDR3-1333, DDR3L-1333</option>
  2189. <option value="4290038041">DDR3-1333/1600</option>
  2190. <option value="4290037481">DDR3-1333/1600, DDR3L-1333/1600</option>
  2191. <option value="4290038373">DDR3-1333/1600, DDR3L-1333/1600, DDR3LRS-1333/1600</option>
  2192. <option value="4286674186">DDR3-1600</option>
  2193. <option value="4288525108">DDR3-1600, DDR3L-1600</option>
  2194. <option value="4290037607">DDR3-800</option>
  2195. <option value="4290038645">DDR3-800/1066</option>
  2196. <option value="4290038605">DDR3-800/1066/1333</option>
  2197. <option value="4290038203">DDR3-800/1066/1333/1600</option>
  2198. <option value="4288348944">DDR3/3L-1066/1333</option>
  2199. <option value="4288348948">DDR3/3L-1066/1333/1600</option>
  2200. <option value="4290038318">DDR3/L/-RS 1333/1600</option>
  2201. <option value="4288525100">DDR3L-1066</option>
  2202. <option value="4289245974">DDR3L-1067</option>
  2203. <option value="4289569529">DDR3L-1333</option>
  2204. <option value="4282222146">DDR3L-1333, 1600, LPDDR3-1333, 1600</option>
  2205. <option value="4290037864">DDR3L-1333,1600</option>
  2206. <option value="4289569549">DDR3L-1333/1600</option>
  2207. <option value="4290038237">DDR3L-1333/1600, LPDDR3-1333/1600</option>
  2208. <option value="4274213418">DDR3L-1333/1600, LPDDR3-1600/1866</option>
  2209. <option value="4274213417">DDR3L-1333/1600/1866</option>
  2210. <option value="4290038262">DDR3L-1333/1600; LPDDR3-1333/1600</option>
  2211. <option value="4286674080">DDR3L-1600</option>
  2212. <option value="4287157288">DDR3L-RS 1333</option>
  2213. <option value="4273520700">DDR3L-RS 1600</option>
  2214. <option value="4285911115">DDR3L-RS-1333</option>
  2215. <option value="4274213412">DDR3L/DDR3L-RS-1600, LPDDR3-1333/1600</option>
  2216. <option value="4284610729">DDR4-1600</option>
  2217. <option value="4284610722">DDR4-1600/1866</option>
  2218. <option value="4286108905">DDR4-2133</option>
  2219. <option value="4289434526">LPDDR3-1066</option>
  2220. <option value="4287157231">LPDDR3-1067</option>
  2221. <option value="4273520694">LPDDR3-1600</option>
  2222. </select>
  2223. </td>
  2224. </tr>
  2225. <tr>
  2226. <td>
  2227. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl12_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2228. </td>
  2229. </tr>
  2230. </table>
  2231. </td>
  2232. <td valign="bottom" style="width: 15px;">
  2233. &nbsp;
  2234. </td>
  2235. </tr>
  2236. </table>
  2237. </td><td>
  2238. <table cellpadding="0" cellspacing="0">
  2239. <tr>
  2240. <td>
  2241. <table>
  2242. <tr>
  2243. <td>
  2244. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl13_lblheader" style="font-weight:bold;white-space:normal;">系统总线类型</span>
  2245. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl13_RangePnl">
  2246. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  2247. of parametric ids sent on the query string after the seo url is generated and redirected to.
  2248. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  2249. sorted parametric attributes from an endeca attribute group --->
  2250. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl13$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl13_hdnRange" />
  2251. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl13$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl13_hdnDimId" value="1000000883" />
  2252. </div>
  2253. </td>
  2254. </tr>
  2255. <tr>
  2256. <td>
  2257. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl13$1000000883" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl13_1000000883">
  2258. <option value="4288525101">-</option>
  2259. <option value="4290012464">DMI</option>
  2260. <option value="4288525082">DMI2</option>
  2261. <option value="4290012509">FSB</option>
  2262. <option value="4290012218">PCI</option>
  2263. <option value="4290012501">QPI</option>
  2264. </select>
  2265. </td>
  2266. </tr>
  2267. <tr>
  2268. <td>
  2269. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl13_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2270. </td>
  2271. </tr>
  2272. </table>
  2273. </td>
  2274. <td valign="bottom" style="width: 15px;">
  2275. &nbsp;
  2276. </td>
  2277. </tr>
  2278. </table>
  2279. </td><td>
  2280. <table cellpadding="0" cellspacing="0">
  2281. <tr>
  2282. <td>
  2283. <table>
  2284. <tr>
  2285. <td>
  2286. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl14_lblheader" style="font-weight:bold;white-space:normal;">系统总线速度</span>
  2287. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl14_RangePnl">
  2288. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  2289. of parametric ids sent on the query string after the seo url is generated and redirected to.
  2290. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  2291. sorted parametric attributes from an endeca attribute group --->
  2292. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl14$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl14_hdnRange" />
  2293. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl14$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl14_hdnDimId" value="1000000882" />
  2294. </div>
  2295. </td>
  2296. </tr>
  2297. <tr>
  2298. <td>
  2299. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl14$1000000882" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl14_1000000882">
  2300. <option value="4290012263">0</option>
  2301. <option value="4290012418">0 GT/s</option>
  2302. <option value="4290012252">400 MHz</option>
  2303. <option value="4290012258">533 MHz</option>
  2304. <option value="4290012190">667 MHz</option>
  2305. <option value="4290012273">800 MHz</option>
  2306. <option value="4290012510">1066 MHz</option>
  2307. <option value="4290012274">1333 MHz</option>
  2308. <option value="4289590774">2130 MHz</option>
  2309. <option value="4290012363">2.5 GT/s</option>
  2310. <option value="4290012219">2500 MHz</option>
  2311. <option value="4290012502">4.8 GT/s</option>
  2312. <option value="4290012465">5 GT/s</option>
  2313. <option value="4290012495">5.86 GT/s</option>
  2314. <option value="4290012265">5.87 GT/s</option>
  2315. <option value="4290012488">6.4 GT/s</option>
  2316. <option value="4290012419">7.2 GT/s</option>
  2317. <option value="4290012420">8 GT/s</option>
  2318. <option value="4288525102">-</option>
  2319. </select>
  2320. </td>
  2321. </tr>
  2322. <tr>
  2323. <td>
  2324. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl14_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2325. </td>
  2326. </tr>
  2327. </table>
  2328. </td>
  2329. <td valign="bottom" style="width: 15px;">
  2330. &nbsp;
  2331. </td>
  2332. </tr>
  2333. </table>
  2334. </td><td>
  2335. <table cellpadding="0" cellspacing="0">
  2336. <tr>
  2337. <td>
  2338. <table>
  2339. <tr>
  2340. <td>
  2341. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl15_lblheader" style="font-weight:bold;white-space:normal;">高速缓冲存储器</span>
  2342. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl15_RangePnl">
  2343. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  2344. of parametric ids sent on the query string after the seo url is generated and redirected to.
  2345. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  2346. sorted parametric attributes from an endeca attribute group --->
  2347. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl15$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl15_hdnRange" />
  2348. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl15$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl15_hdnDimId" value="1000000990" />
  2349. </div>
  2350. </td>
  2351. </tr>
  2352. <tr>
  2353. <td>
  2354. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl15$1000000990" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl15_1000000990">
  2355. <option value="4274668575">2 x 32 kB</option>
  2356. <option value="4274668625">16 kB</option>
  2357. <option value="4274669433">256 kB</option>
  2358. <option value="4274669441">512 kB</option>
  2359. <option value="4274669440">1 MB</option>
  2360. <option value="4274669438">1.5 MB</option>
  2361. <option value="4274669460">2 MB</option>
  2362. <option value="4274669462">3 MB</option>
  2363. <option value="4274669468">4 MB</option>
  2364. <option value="4274669449">5 MB</option>
  2365. <option value="4274669461">6 MB</option>
  2366. <option value="4274669467">8 MB</option>
  2367. <option value="4274669452">10 MB</option>
  2368. <option value="4274669466">12 MB</option>
  2369. <option value="4274669451">15 MB</option>
  2370. <option value="4274669470">16 MB</option>
  2371. <option value="4274669450">20 MB</option>
  2372. <option value="4274669464">24 MB</option>
  2373. <option value="4274668531">25 MB</option>
  2374. <option value="4274669465">30 MB</option>
  2375. </select>
  2376. </td>
  2377. </tr>
  2378. <tr>
  2379. <td>
  2380. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl15_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2381. </td>
  2382. </tr>
  2383. </table>
  2384. </td>
  2385. <td valign="bottom" style="width: 15px;">
  2386. &nbsp;
  2387. </td>
  2388. </tr>
  2389. </table>
  2390. </td><td>
  2391. <table cellpadding="0" cellspacing="0">
  2392. <tr>
  2393. <td>
  2394. <table>
  2395. <tr>
  2396. <td>
  2397. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl16_lblheader" style="font-weight:bold;white-space:normal;">最大工作温度</span>
  2398. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl16_RangePnl">
  2399. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  2400. of parametric ids sent on the query string after the seo url is generated and redirected to.
  2401. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  2402. sorted parametric attributes from an endeca attribute group --->
  2403. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl16$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl16_hdnRange" />
  2404. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl16$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl16_hdnDimId" value="1000000314" />
  2405. </div>
  2406. </td>
  2407. </tr>
  2408. <tr>
  2409. <td>
  2410. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl16$1000000314" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl16_1000000314">
  2411. <option value="4290037623">+ 57 C</option>
  2412. <option value="4294574807">+ 60 C</option>
  2413. <option value="4290037298">+ 61 C</option>
  2414. <option value="4289569509">+ 61.4 C</option>
  2415. <option value="4290038506">+ 64 C</option>
  2416. <option value="4291675069">+ 66 C</option>
  2417. <option value="4289569564">+ 66.35 C</option>
  2418. <option value="4286547656">+ 66.4 C</option>
  2419. <option value="4290038228">+ 66.8 C</option>
  2420. <option value="4290038119">+ 67 C</option>
  2421. <option value="4290038042">+ 67.4 C</option>
  2422. <option value="4290038522">+ 69 C</option>
  2423. <option value="4290038097">+ 69.1 C</option>
  2424. <option value="4290038110">+ 69.8 C</option>
  2425. <option value="4294629996">+ 70 C</option>
  2426. <option value="4290037909">+ 71 C</option>
  2427. <option value="4289434624">+ 71.35 C</option>
  2428. <option value="4290037614">+ 71.4 C</option>
  2429. <option value="4289569558">+ 71.45 C</option>
  2430. <option value="4290038615">+ 72 C</option>
  2431. <option value="4290038066">+ 72.6 C</option>
  2432. <option value="4287759003">72.6 C</option>
  2433. <option value="4290037455">+ 72.7 C</option>
  2434. <option value="4286108902">+ 72.72 C</option>
  2435. <option value="4290038160">+ 73 C</option>
  2436. <option value="4292582478">+ 74 C</option>
  2437. <option value="4289569561">+ 74.6 C</option>
  2438. <option value="4294629984">+ 75 C</option>
  2439. <option value="4290037610">+ 76 C</option>
  2440. <option value="4290038539">+ 76.2 C</option>
  2441. <option value="4293981050">+ 77 C</option>
  2442. <option value="4290038163">+ 77.4 C</option>
  2443. <option value="4290038568">+ 77.6 C</option>
  2444. <option value="4290037593">+ 79 C</option>
  2445. <option value="4290038146">+ 81.8 C</option>
  2446. <option value="4294630005">+ 85 C</option>
  2447. <option value="4290037560">+ 87 C</option>
  2448. <option value="4290037398">+ 88 C</option>
  2449. <option value="4294575688">+ 90 C</option>
  2450. <option value="4287759006">+ 91 C</option>
  2451. <option value="4294031282">+ 95 C</option>
  2452. <option value="4292793911">+ 96 C</option>
  2453. <option value="4290037218">+ 97 C</option>
  2454. <option value="4288525070">+ 98 C</option>
  2455. <option value="4294629968">+ 100 C</option>
  2456. <option value="4294568129">+ 105 C</option>
  2457. <option value="4294592637">+ 110 C</option>
  2458. <option value="4289511885">-</option>
  2459. </select>
  2460. </td>
  2461. </tr>
  2462. <tr>
  2463. <td>
  2464. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl16_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2465. </td>
  2466. </tr>
  2467. </table>
  2468. </td>
  2469. <td valign="bottom" style="width: 15px;">
  2470. &nbsp;
  2471. </td>
  2472. </tr>
  2473. </table>
  2474. </td><td>
  2475. <table cellpadding="0" cellspacing="0">
  2476. <tr>
  2477. <td>
  2478. <table>
  2479. <tr>
  2480. <td>
  2481. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl17_lblheader" style="font-weight:bold;white-space:normal;">封装</span>
  2482. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl17_RangePnl">
  2483. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  2484. of parametric ids sent on the query string after the seo url is generated and redirected to.
  2485. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  2486. sorted parametric attributes from an endeca attribute group --->
  2487. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl17$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl17_hdnRange" />
  2488. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl17$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl17_hdnDimId" value="688610" />
  2489. </div>
  2490. </td>
  2491. </tr>
  2492. <tr>
  2493. <td>
  2494. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl17$688610" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl17_688610">
  2495. <option value="4294966193">Bulk</option>
  2496. <option value="4294966263">Reel</option>
  2497. <option value="4294965250">Tray</option>
  2498. </select>
  2499. </td>
  2500. </tr>
  2501. <tr>
  2502. <td>
  2503. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl17_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  2504. </td>
  2505. </tr>
  2506. </table>
  2507. </td>
  2508. <td valign="bottom" style="width: 15px;">
  2509. &nbsp;
  2510. </td>
  2511. </tr>
  2512. </table>
  2513. </td>
  2514. </tr>
  2515. </table>
  2516. <table class="ApplyFilter">
  2517. <tr>
  2518. <td class="ApplyFilterColumn1">
  2519. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  2520. </td>
  2521. <td class="ApplyFilterColumn2">
  2522. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  2523. </td>
  2524. <td class="ApplyFilterColumn2_5">
  2525. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  2526. </td>
  2527. <td class="ApplyFilterColumn3">
  2528. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  2529. </td>
  2530. </tr>
  2531. </table>
  2532. </td>
  2533. </tr>
  2534. </table>
  2535. </div>
  2536. </td>
  2537. </tr>
  2538. </table>
  2539. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  2540. height: 70px; display: none; background: white; border: 1px solid #000;'>
  2541. <br />
  2542. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  2543. <br />
  2544. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  2545. <!--Close Window-->
  2546. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  2547. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  2548. </a>&nbsp;&nbsp;</div>
  2549. </div>
  2550. <div id ="VisualAttributePopup" class="hidden" >
  2551. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  2552. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  2553. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  2554. </div>
  2555. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id= "loadingimgspinner" src="/Images/spinner2.gif" /></div>
  2556. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  2557. <table id="tblAttributes" >
  2558. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  2559. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  2560. <td class="visualAttributeImage">
  2561. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  2562. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  2563. </td>
  2564. <td>
  2565. <table class="visualAttValueDesc">
  2566. <tr>
  2567. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  2568. </tr>
  2569. <tr>
  2570. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  2571. </tr>
  2572. <tr data-bind="if: ImagePath1 ">
  2573. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs"/></div></td>
  2574. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  2575. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  2576. </tr>
  2577. </table>
  2578. </td>
  2579. </tr>
  2580. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  2581. </tbody>
  2582. </table>
  2583. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id= "Img1" src="/Images/spinner2.gif" />
  2584. <div data-bind="if: hasMoreOptions" align="center">
  2585. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  2586. </div>
  2587. </div>
  2588. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  2589. <div class="visualAttributesBtnDiv">
  2590. <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" />
  2591. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  2592. <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" />
  2593. </div>
  2594. </div>
  2595. <style type="text/css">
  2596. /* These styles are to customize "Visual Parametrics" modal window */
  2597. .ui-dialog { position: absolute; padding: 0px !important; width: 300px; overflow: hidden;}
  2598. .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .6em !important; background: none; overflow: auto; zoom: 1; max-height: 450px;}
  2599. .ui-dialog .ui-dialog-titlebar { padding: .4em .5em !important; position: relative; background: none repeat scroll 0 0 #E0E4E9; font-size:15px; }
  2600. .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border-bottom-right-radius: 0; }
  2601. .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-bottom-left-radius: 0; }
  2602. </style>
  2603. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2604. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  2605. </div>
  2606. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  2607. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  2608. <script src='../../../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  2609. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2610. <script type="text/javascript">
  2611. $().ready(function () {
  2612. ko.applyBindings(new DisplayAttributesModel());
  2613. ko.bindingHandlers.hoverToggle = {
  2614. update: function (element, valueAccessor) {
  2615. var css = valueAccessor();
  2616. var isSelected = $(element).hasClass("selectedAttribute");
  2617. if (!isSelected) {
  2618. ko.utils.registerEventHandler(element, "mouseenter", function () {
  2619. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  2620. });
  2621. ko.utils.registerEventHandler(element, "mouseleave", function () {
  2622. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  2623. });
  2624. }
  2625. }
  2626. };
  2627. });
  2628. </script>
  2629. </div>
  2630. <div id="refine-mfg-logo2">
  2631. </div>
  2632. </div>
  2633. <br />
  2634. <table border="0" width="100%">
  2635. <tr>
  2636. <td>
  2637. </td>
  2638. </tr>
  2639. <tr>
  2640. <td>
  2641. <!--- Search Features --->
  2642. </td>
  2643. </tr>
  2644. <tr>
  2645. <td>
  2646. <div id="refine-page">
  2647. </div>
  2648. </td>
  2649. </tr>
  2650. <tr>
  2651. <td class="refine-show-products">
  2652. <span class="redtextb">
  2653. </span> <span class="redtextb">
  2654. </span> <span class="redtextb">
  2655. </span> <span class="redtextb">
  2656. </span>
  2657. <span class="redtextb">
  2658. </span>
  2659. </td>
  2660. </tr>
  2661. <tr>
  2662. <td>
  2663. </td>
  2664. </tr>
  2665. <tr>
  2666. <td>
  2667. <!--- Special Order Parts New --->
  2668. <!-- SOP Section 1 -->
  2669. </td>
  2670. </tr>
  2671. </table>
  2672. <div id="searchResultsTbl">
  2673. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  2674. <tr>
  2675. <td class="tdSearchResultsPagingTop">
  2676. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  2677. <tr>
  2678. <td>
  2679. <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" />
  2680. </td>
  2681. <td>
  2682. <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" />
  2683. </td>
  2684. <td>
  2685. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  2686. </td>
  2687. <td style="padding-left: 40px;">
  2688. <div class="floatrightpager">
  2689. <span class="bold">
  2690. 页面:
  2691. </span>
  2692. <span id="ctl00_ContentMain_PagerTop"><span id="ctl00_ContentMain_PagerTop_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerTop_1" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_23" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=575">24</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=25">下一页</a></span>
  2693. </div>
  2694. </td>
  2695. </tr>
  2696. </table>
  2697. </td>
  2698. </tr>
  2699. <tr>
  2700. <td>
  2701. <div>
  2702. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  2703. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  2704. <th class="td-select" scope="col" style="width:35px;">
  2705. 选择
  2706. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  2707. </th><th scope="col">制造商 零件编号
  2708. </th><th scope="col">制造商
  2709. </th><th scope="col">描述
  2710. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../../Images/Search/pdf.gif" alt="文件" />
  2711. </th><th scope="col">供货情况
  2712. </th><th scope="col">单价(含17%增值税)
  2713. <br />
  2714. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  2715. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  2716. </th><th class="SearchResultParametricColumnHeading" scope="col">产品
  2717. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  2718. </th><th class="SearchResultParametricColumnHeading" scope="col">系列
  2719. </th><th class="SearchResultParametricColumnHeading" scope="col">代码名称
  2720. </th><th class="SearchResultParametricColumnHeading" scope="col">处理器系列
  2721. </th><th class="SearchResultParametricColumnHeading" scope="col">嵌入式选项
  2722. </th><th class="SearchResultParametricColumnHeading" scope="col">内核数量
  2723. </th><th class="SearchResultParametricColumnHeading" scope="col">TDP - 最大
  2724. </th><th class="SearchResultParametricColumnHeading" scope="col">最大时钟频率
  2725. </th><th class="SearchResultParametricColumnHeading" scope="col">数据总线宽度
  2726. </th><th class="SearchResultParametricColumnHeading" scope="col">存储容量
  2727. </th><th class="SearchResultParametricColumnHeading" scope="col">存储类型
  2728. </th><th class="SearchResultParametricColumnHeading" scope="col">系统总线类型
  2729. </th><th class="SearchResultParametricColumnHeading" scope="col">系统总线速度
  2730. </th><th class="SearchResultParametricColumnHeading" scope="col">高速缓冲存储器
  2731. </th><th class="SearchResultParametricColumnHeading" scope="col">最大工作温度
  2732. </th><th class="SearchResultParametricColumnHeading" scope="col">封装
  2733. </th>
  2734. </tr><tr class="SearchResultsSortCell">
  2735. <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$ctl28&#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$ctl30&#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_ctl32" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl32&#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$ctl34&#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$ctl36&#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$ctl38&#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$ctl40&#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$ctl42&#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$ctl44&#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$ctl46&#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$ctl48&#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$ctl50&#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$ctl52&#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$Family>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl54&#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$Family>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl56&#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$Code Name>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl58&#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$Code Name>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl60&#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$Processor Series>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl62&#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$Processor Series>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl64&#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$Embedded Options>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl66&#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$Embedded Options>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl68&#39;,&#39;&#39;)"><img title="按 嵌入式选项 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 嵌入式选项 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of Cores>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl70&#39;,&#39;&#39;)"><img title="按 内核数量 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 内核数量 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of Cores>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl72&#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$TDP - Max>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl74&#39;,&#39;&#39;)"><img title="按 TDP - 最大 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 TDP - 最大 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$TDP - Max>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl76&#39;,&#39;&#39;)"><img title="按 TDP - 最大 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 TDP - 最大 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Clock Frequency>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl78&#39;,&#39;&#39;)"><img title="按 最大时钟频率 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 最大时钟频率 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Clock Frequency>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl80&#39;,&#39;&#39;)"><img title="按 最大时钟频率 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 最大时钟频率 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Data Bus Width>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl82&#39;,&#39;&#39;)"><img title="按 数据总线宽度 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 数据总线宽度 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Data Bus Width>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl84&#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$Memory Size>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl86&#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$Memory Size>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl88&#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$Memory Type>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl90&#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$Memory Type>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl92&#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$System Bus Type>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl94&#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$System Bus Type>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl96&#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$System Bus Speed>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl98&#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$System Bus Speed>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl100&#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$Cache Memory>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl102&#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$Cache Memory>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl104&#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$ctl106&#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$ctl108&#39;,&#39;&#39;)"><img title="按 最大工作温度 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 最大工作温度 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Packaging>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl110&#39;,&#39;&#39;)"><img title="按 封装 Ascending 排序" src="../../../../../../Images/Search/btn_Sort_Up.gif" alt="按 封装 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Packaging>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl112&#39;,&#39;&#39;)"><img title="按 封装 Descending 排序" src="../../../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 Descending 排序" /></a></td>
  2736. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-FH8065348717SRX6" data-index="3">
  2737. <td class="td-select" align="center">
  2738. <div style="padding: 5px 5px 0 5px;">
  2739. <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>
  2740. </div>
  2741. </td><td><a href='/ProductDetail/Intel/FH8065301487717S-R1X6/?qs=sGAEpiMZZMvqxsBVy5ZiultGdN76vpg93BGsuZtdGmNHGzUWF76Wrw%3d%3d'><img title='Intel FH8065301487717S R1X6' alt='Intel FH8065301487717S R1X6' id=1309158893 src='/images/intel/sm/Atom_E3800_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/intel/images/Atom_E3800_SPL.jpg</div></a></td><td>
  2742. <div style="text-align:left;">
  2743. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/FH8065301487717S-R1X6/?qs=sGAEpiMZZMvqxsBVy5ZiultGdN76vpg93BGsuZtdGmNHGzUWF76Wrw%3d%3d">607-FH8065348717SRX6</a><br />
  2744. <br />
  2745. <br />
  2746. </div></td><td>
  2747. <div class="mfrDiv">
  2748. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/FH8065301487717S-R1X6/?qs=sGAEpiMZZMvqxsBVy5ZiultGdN76vpg93BGsuZtdGmNHGzUWF76Wrw%3d%3d">FH8065301487717S R1X6</a><br />
  2749. <br />
  2750. <div style="width: 100%; text-align: center;">
  2751. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2752. </div>
  2753. <div style="width: 100%; text-align: center;">
  2754. </div>
  2755. </div>
  2756. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  2757. </td><td>CPU - 中央处理器 Atom E3845 Quad CR 1.90GHz FCBGA1170
  2758. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2759. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-e3800-processor/">了解更多</a>
  2760. </div>
  2761. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2762. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  2763. </div>
  2764. </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;Intel&quot;,&quot;607-FH8065348717SRX6 | FH8065301487717S R1X6&quot;]);" href="http://www.mouser.com/ds/2/612/538136_538136_Atom_E3800_Family_Datasheet_r1p0-268965.pdf" target="_blank">数据表</a>
  2765. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">513<br/>有库存</span>
  2766. <table>
  2767. <tr align="center">
  2768. <td style="padding-top: 5px">
  2769. </td>
  2770. </tr>
  2771. <tr align="center">
  2772. <td style="padding-top: 5px; padding-bottom: 5px">
  2773. </td>
  2774. </tr>
  2775. </table></td><td>
  2776. <table class="PriceBreaks" cellspacing="0" border="0">
  2777. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2778. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2779. </td>
  2780. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2781. </td>
  2782. </tr>
  2783. <tr>
  2784. <td class="PriceBreakQuantity">
  2785. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  2786. </td>
  2787. <td class="PriceBreakPrice">
  2788. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥589.5864</span>
  2789. </td>
  2790. </tr>
  2791. <tr>
  2792. <td class="PriceBreakQuantity">
  2793. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,5);">5:</a>
  2794. </td>
  2795. <td class="PriceBreakPrice">
  2796. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥571.7205</span>
  2797. </td>
  2798. </tr>
  2799. <tr>
  2800. <td class="PriceBreakQuantity">
  2801. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  2802. </td>
  2803. <td class="PriceBreakPrice">
  2804. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥565.7067</span>
  2805. </td>
  2806. </tr>
  2807. <tr>
  2808. <td class="PriceBreakQuantity">
  2809. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  2810. </td>
  2811. <td class="PriceBreakPrice">
  2812. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥554.8491</span>
  2813. </td>
  2814. </tr>
  2815. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2816. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2817. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(1,50);">50:</a>
  2818. </td>
  2819. <td class="PriceBreakPrice">
  2820. <a title="单击查看其他价格间断。" href="../../../../../../ProductDetail/Intel/FH8065301487717S-R1X6/?qs=sGAEpiMZZMvqxsBVy5ZiultGdN76vpg93BGsuZtdGmNHGzUWF76Wrw%3d%3d">查看</a>
  2821. </td>
  2822. </tr>
  2823. <tr>
  2824. <td><br /></td>
  2825. </tr>
  2826. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2827. <td colspan="2" style="text-align: center;">
  2828. </td>
  2829. </tr>
  2830. </table>
  2831. </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;)">
  2832. <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 />
  2833. <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="购买 FH8065301487717S R1X6" class="buy-button" /><br />
  2834. <table cellspacing="0" border="0" style="width: 100%;">
  2835. <tr>
  2836. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2837. 最低:
  2838. </td>
  2839. <td style="padding-left: 2px; text-align: left;">
  2840. 1
  2841. </td>
  2842. </tr>
  2843. <tr>
  2844. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2845. 多个:
  2846. </td>
  2847. <td style="padding-left: 2px; text-align: left;">
  2848. 1
  2849. </td>
  2850. </tr>
  2851. </table>
  2852. </div>
  2853. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  2854. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2855. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=4zlHpOYdpSZw74uoimN54w%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=4zlHpOYdpSZw74uoimN54w%3d%3d" target="_blank">详细信息</a>
  2856. </div>
  2857. </td><td>Mobile Processors
  2858. </td><td>FCBGA-1170
  2859. </td><td>Intel Atom
  2860. </td><td>Bay Trail-I
  2861. </td><td>E3845
  2862. </td><td>
  2863. </td><td>4
  2864. </td><td>10 W
  2865. </td><td>1.91 GHz
  2866. </td><td>64 bit
  2867. </td><td>8 GB
  2868. </td><td>DDR3L-1333
  2869. </td><td>-
  2870. </td><td>-
  2871. </td><td>2 MB
  2872. </td><td>+ 110 C
  2873. </td><td>Tray
  2874. </td>
  2875. </tr><tr class="SearchResultsRowEven" data-partnumber="607-CM806460148430SZ" data-index="4">
  2876. <td class="td-select" align="center">
  2877. <div style="padding: 5px 5px 0 5px;">
  2878. <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>
  2879. </div>
  2880. </td><td><a href='/ProductDetail/Intel/CM8064601484301S-R17Z/?qs=sGAEpiMZZMvqxsBVy5ZiuuDG1H%2fs8prTXzg1ScxirhY%3d'><img title='Intel CM8064601484301S R17Z' alt='Intel CM8064601484301S R17Z' id=994403182 src='/images/intel/sm/icore-i5.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/intel/images/icore-i5.jpg</div></a></td><td>
  2881. <div style="text-align:left;">
  2882. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CM8064601484301S-R17Z/?qs=sGAEpiMZZMvqxsBVy5ZiuuDG1H%2fs8prTXzg1ScxirhY%3d">607-CM806460148430SZ</a><br />
  2883. <br />
  2884. <br />
  2885. </div></td><td>
  2886. <div class="mfrDiv">
  2887. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CM8064601484301S-R17Z/?qs=sGAEpiMZZMvqxsBVy5ZiuuDG1H%2fs8prTXzg1ScxirhY%3d">CM8064601484301S R17Z</a><br />
  2888. <br />
  2889. <div style="width: 100%; text-align: center;">
  2890. </div>
  2891. <div style="width: 100%; text-align: center;">
  2892. </div>
  2893. </div>
  2894. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  2895. </td><td>CPU - 中央处理器 Core i5-4570TE Dual CR 2.7GHz FCLGA1150
  2896. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2897. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i5-4570-4570s-4570t/">了解更多</a>
  2898. </div>
  2899. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2900. </div>
  2901. </td><td>
  2902. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">159<br/>有库存</span>
  2903. <table>
  2904. <tr align="center">
  2905. <td style="padding-top: 5px">
  2906. </td>
  2907. </tr>
  2908. <tr align="center">
  2909. <td style="padding-top: 5px; padding-bottom: 5px">
  2910. </td>
  2911. </tr>
  2912. </table></td><td>
  2913. <table class="PriceBreaks" cellspacing="0" border="0">
  2914. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2915. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2916. </td>
  2917. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2918. </td>
  2919. </tr>
  2920. <tr>
  2921. <td class="PriceBreakQuantity">
  2922. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  2923. </td>
  2924. <td class="PriceBreakPrice">
  2925. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,941.4863</span>
  2926. </td>
  2927. </tr>
  2928. <tr>
  2929. <td class="PriceBreakQuantity">
  2930. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,5);">5:</a>
  2931. </td>
  2932. <td class="PriceBreakPrice">
  2933. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1,862.7804</span>
  2934. </td>
  2935. </tr>
  2936. <tr>
  2937. <td class="PriceBreakQuantity">
  2938. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  2939. </td>
  2940. <td class="PriceBreakPrice">
  2941. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,778.6106</span>
  2942. </td>
  2943. </tr>
  2944. <tr>
  2945. <td class="PriceBreakQuantity">
  2946. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,50);">50:</a>
  2947. </td>
  2948. <td class="PriceBreakPrice">
  2949. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1,723.0824</span>
  2950. </td>
  2951. </tr>
  2952. <tr>
  2953. <td><br /></td>
  2954. </tr>
  2955. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2956. <td colspan="2" style="text-align: center;">
  2957. </td>
  2958. </tr>
  2959. </table>
  2960. </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;)">
  2961. <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 />
  2962. <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="购买 CM8064601484301S R17Z" class="buy-button" /><br />
  2963. <table cellspacing="0" border="0" style="width: 100%;">
  2964. <tr>
  2965. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2966. 最低:
  2967. </td>
  2968. <td style="padding-left: 2px; text-align: left;">
  2969. 1
  2970. </td>
  2971. </tr>
  2972. <tr>
  2973. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2974. 多个:
  2975. </td>
  2976. <td style="padding-left: 2px; text-align: left;">
  2977. 1
  2978. </td>
  2979. </tr>
  2980. </table>
  2981. </div>
  2982. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  2983. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2984. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=eW0nOKmBxAFaNopZ2lQQcg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=eW0nOKmBxAFaNopZ2lQQcg%3d%3d" target="_blank">详细信息</a>
  2985. </div>
  2986. </td><td>Desktop Processors
  2987. </td><td>FCLGA-1150
  2988. </td><td>Intel Core i5
  2989. </td><td>Haswell
  2990. </td><td>I5-4570TE
  2991. </td><td>Embedded
  2992. </td><td>2
  2993. </td><td>35 W
  2994. </td><td>2.7 GHz
  2995. </td><td>64 bit
  2996. </td><td>32 GB
  2997. </td><td>DDR3-1333/1600
  2998. </td><td>DMI
  2999. </td><td>5 GT/s
  3000. </td><td>4 MB
  3001. </td><td>+ 66.35 C
  3002. </td><td>Tray
  3003. </td>
  3004. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-CM806460154SR1QM" data-index="5">
  3005. <td class="td-select" align="center">
  3006. <div style="padding: 5px 5px 0 5px;">
  3007. <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>
  3008. </div>
  3009. </td><td><a href='/ProductDetail/Intel/CM8064601561014S-R1QM/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3IdTENJcBqSs7WTdrLRsrxA%3d%3d'><img title='Intel CM8064601561014S R1QM' alt='Intel CM8064601561014S R1QM' id=1208964933 src='/images/intel/sm/icore-i7.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/intel/images/icore-i7.jpg</div></a></td><td>
  3010. <div style="text-align:left;">
  3011. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CM8064601561014S-R1QM/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3IdTENJcBqSs7WTdrLRsrxA%3d%3d">607-CM806460154SR1QM</a><br />
  3012. <br />
  3013. <br />
  3014. </div></td><td>
  3015. <div class="mfrDiv">
  3016. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CM8064601561014S-R1QM/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3IdTENJcBqSs7WTdrLRsrxA%3d%3d">CM8064601561014S R1QM</a><br />
  3017. <br />
  3018. <div style="width: 100%; text-align: center;">
  3019. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3020. </div>
  3021. <div style="width: 100%; text-align: center;">
  3022. </div>
  3023. </div>
  3024. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  3025. </td><td>CPU - 中央处理器 Core i7-4790S Quad CR 4.0GHz FCLGA1150
  3026. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3027. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i7-4790s-processor/">了解更多</a>
  3028. </div>
  3029. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3030. </div>
  3031. </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;Intel&quot;,&quot;607-CM806460154SR1QM | CM8064601561014S R1QM&quot;]);" href="http://ark.intel.com/products/80808/Intel-Core-i7-4790S-Processor-8M-Cache-up-to-4_00-GHz?q=i7-4790S" target="_blank">数据表</a>
  3032. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">38<br/>有库存</span>
  3033. <table>
  3034. <tr align="center">
  3035. <td style="padding-top: 5px">
  3036. </td>
  3037. </tr>
  3038. <tr align="center">
  3039. <td style="padding-top: 5px; padding-bottom: 5px">
  3040. </td>
  3041. </tr>
  3042. </table></td><td>
  3043. <table class="PriceBreaks" cellspacing="0" border="0">
  3044. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3045. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3046. </td>
  3047. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3048. </td>
  3049. </tr>
  3050. <tr>
  3051. <td class="PriceBreakQuantity">
  3052. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  3053. </td>
  3054. <td class="PriceBreakPrice">
  3055. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥2,945.0655</span>
  3056. </td>
  3057. </tr>
  3058. <tr>
  3059. <td class="PriceBreakQuantity">
  3060. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,2);">2:</a>
  3061. </td>
  3062. <td class="PriceBreakPrice">
  3063. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥2,905.8003</span>
  3064. </td>
  3065. </tr>
  3066. <tr>
  3067. <td class="PriceBreakQuantity">
  3068. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,5);">5:</a>
  3069. </td>
  3070. <td class="PriceBreakPrice">
  3071. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2,812.0716</span>
  3072. </td>
  3073. </tr>
  3074. <tr>
  3075. <td class="PriceBreakQuantity">
  3076. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  3077. </td>
  3078. <td class="PriceBreakPrice">
  3079. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2,724.2046</span>
  3080. </td>
  3081. </tr>
  3082. <tr>
  3083. <td class="PriceBreakQuantity">
  3084. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  3085. </td>
  3086. <td class="PriceBreakPrice">
  3087. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2,690.5554</span>
  3088. </td>
  3089. </tr>
  3090. <tr>
  3091. <td><br /></td>
  3092. </tr>
  3093. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl06_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_ctl05_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_btnBuy&#39;)">
  3099. <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 />
  3100. <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="购买 CM8064601561014S R1QM" 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_ctl05_ctl10_pnlCompliant">
  3121. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3122. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=PRO81gJLs75Lm8a%252bumJCoQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=PRO81gJLs75Lm8a%252bumJCoQ%3d%3d" target="_blank">详细信息</a>
  3123. </div>
  3124. </td><td>Desktop Processors
  3125. </td><td>FCLGA-1150
  3126. </td><td>Intel Core i7
  3127. </td><td>Haswell
  3128. </td><td>i7-4790S
  3129. </td><td>Embedded
  3130. </td><td>4
  3131. </td><td>65 W
  3132. </td><td>3.2 GHz
  3133. </td><td>64 bit
  3134. </td><td>32 GB
  3135. </td><td>DDR3L-1333,1600
  3136. </td><td>DMI2
  3137. </td><td>5 GT/s
  3138. </td><td>8 MB
  3139. </td><td>+ 71.35 C
  3140. </td><td>Tray
  3141. </td>
  3142. </tr><tr class="SearchResultsRowEven" data-partnumber="607-AW8063801115901S" data-index="6">
  3143. <td class="td-select" align="center">
  3144. <div style="padding: 5px 5px 0 5px;">
  3145. <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>
  3146. </div>
  3147. </td><td><a href='/ProductDetail/Intel/AW8063801115901S-R0QJ/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imU%252bxp4l7c6aDE%3d'><img title='Intel AW8063801115901S R0QJ' alt='Intel AW8063801115901S R0QJ' id=959859783 src='/images/intel/sm/icore-i5.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/intel/images/icore-i5.jpg</div></a></td><td>
  3148. <div style="text-align:left;">
  3149. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/AW8063801115901S-R0QJ/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imU%252bxp4l7c6aDE%3d">607-AW8063801115901S</a><br />
  3150. <br />
  3151. <br />
  3152. </div></td><td>
  3153. <div class="mfrDiv">
  3154. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/AW8063801115901S-R0QJ/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imU%252bxp4l7c6aDE%3d">AW8063801115901S R0QJ</a><br />
  3155. <br />
  3156. <div style="width: 100%; text-align: center;">
  3157. </div>
  3158. <div style="width: 100%; text-align: center;">
  3159. </div>
  3160. </div>
  3161. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  3162. </td><td>CPU - 中央处理器 Core i5-3610ME Dual Core 2.7GHz FCPGA988
  3163. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3164. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i5-3610me/">了解更多</a>
  3165. </div>
  3166. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3167. </div>
  3168. </td><td>
  3169. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Catalog PDF Click&#39;,&quot;Intel&quot;,&quot;607-AW8063801115901S | AW8063801115901S R0QJ&quot;]);" href="/catalog/English/103/APAC/205.pdf" target="_blank">页面 205</a>
  3170. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">94<br/>有库存</span>
  3171. <table>
  3172. <tr align="center">
  3173. <td style="padding-top: 5px">
  3174. </td>
  3175. </tr>
  3176. <tr align="center">
  3177. <td style="padding-top: 5px; padding-bottom: 5px">
  3178. </td>
  3179. </tr>
  3180. </table></td><td>
  3181. <table class="PriceBreaks" cellspacing="0" border="0">
  3182. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3183. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3184. </td>
  3185. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3186. </td>
  3187. </tr>
  3188. <tr>
  3189. <td class="PriceBreakQuantity">
  3190. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  3191. </td>
  3192. <td class="PriceBreakPrice">
  3193. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥2,518.3665</span>
  3194. </td>
  3195. </tr>
  3196. <tr>
  3197. <td class="PriceBreakQuantity">
  3198. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,2);">2:</a>
  3199. </td>
  3200. <td class="PriceBreakPrice">
  3201. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥2,484.7875</span>
  3202. </td>
  3203. </tr>
  3204. <tr>
  3205. <td class="PriceBreakQuantity">
  3206. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,5);">5:</a>
  3207. </td>
  3208. <td class="PriceBreakPrice">
  3209. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2,404.6191</span>
  3210. </td>
  3211. </tr>
  3212. <tr>
  3213. <td class="PriceBreakQuantity">
  3214. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,10);">10:</a>
  3215. </td>
  3216. <td class="PriceBreakPrice">
  3217. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2,329.5402</span>
  3218. </td>
  3219. </tr>
  3220. <tr>
  3221. <td class="PriceBreakQuantity">
  3222. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(4,25);">25:</a>
  3223. </td>
  3224. <td class="PriceBreakPrice">
  3225. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2,300.7348</span>
  3226. </td>
  3227. </tr>
  3228. <tr>
  3229. <td><br /></td>
  3230. </tr>
  3231. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3232. <td colspan="2" style="text-align: center;">
  3233. </td>
  3234. </tr>
  3235. </table>
  3236. </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;)">
  3237. <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 />
  3238. <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="购买 AW8063801115901S R0QJ" class="buy-button" /><br />
  3239. <table cellspacing="0" border="0" style="width: 100%;">
  3240. <tr>
  3241. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3242. 最低:
  3243. </td>
  3244. <td style="padding-left: 2px; text-align: left;">
  3245. 1
  3246. </td>
  3247. </tr>
  3248. <tr>
  3249. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3250. 多个:
  3251. </td>
  3252. <td style="padding-left: 2px; text-align: left;">
  3253. 1
  3254. </td>
  3255. </tr>
  3256. </table>
  3257. </div>
  3258. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  3259. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3260. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuSzJBn1N%252b632A%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuSzJBn1N%252b632A%3d%3d" target="_blank">详细信息</a>
  3261. </div>
  3262. </td><td>Mobile Processors
  3263. </td><td>FCPGA-988
  3264. </td><td>Intel Core i5
  3265. </td><td>Ivy Bridge
  3266. </td><td>i5-3610ME
  3267. </td><td>Embedded
  3268. </td><td>2
  3269. </td><td>35 W
  3270. </td><td>2.7 GHz
  3271. </td><td>64 bit
  3272. </td><td>16 GB
  3273. </td><td>DDR3-1333/1600, DDR3L-1333/1600
  3274. </td><td>DMI
  3275. </td><td>5 GT/s
  3276. </td><td>3 MB
  3277. </td><td>
  3278. </td><td>Tray
  3279. </td>
  3280. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-CM806460153890S3" data-index="7">
  3281. <td class="td-select" align="center">
  3282. <div style="padding: 5px 5px 0 5px;">
  3283. <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>
  3284. </div>
  3285. </td><td><a href='/ProductDetail/Intel/CM8064601538900S-R183/?qs=sGAEpiMZZMvqxsBVy5ZiuuDG1H%2fs8prTqnEDYwFZtfk%3d'><img title='Intel CM8064601538900S R183' alt='Intel CM8064601538900S R183' id=994403192 src='/images/intel/sm/icore-i7.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/intel/images/icore-i7.jpg</div></a></td><td>
  3286. <div style="text-align:left;">
  3287. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CM8064601538900S-R183/?qs=sGAEpiMZZMvqxsBVy5ZiuuDG1H%2fs8prTqnEDYwFZtfk%3d">607-CM806460153890S3</a><br />
  3288. <br />
  3289. <br />
  3290. </div></td><td>
  3291. <div class="mfrDiv">
  3292. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CM8064601538900S-R183/?qs=sGAEpiMZZMvqxsBVy5ZiuuDG1H%2fs8prTqnEDYwFZtfk%3d">CM8064601538900S R183</a><br />
  3293. <br />
  3294. <div style="width: 100%; text-align: center;">
  3295. </div>
  3296. <div style="width: 100%; text-align: center;">
  3297. </div>
  3298. </div>
  3299. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  3300. </td><td>CPU - 中央处理器 Core i7-4770TE Quad CR 3.3GHz FCLGA1150
  3301. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3302. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i7-4770/">了解更多</a>
  3303. </div>
  3304. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3305. </div>
  3306. </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;Intel&quot;,&quot;607-CM806460153890S3 | CM8064601538900S R183&quot;]);" href="http://www.mouser.com/ds/2/612/4th-gen-core-family-desktop-vol-1-datasheet-263629.pdf" target="_blank">数据表</a>
  3307. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">53<br/>有库存</span>
  3308. <table>
  3309. <tr align="center">
  3310. <td style="padding-top: 5px">
  3311. </td>
  3312. </tr>
  3313. <tr align="center">
  3314. <td style="padding-top: 5px; padding-bottom: 5px">
  3315. </td>
  3316. </tr>
  3317. </table></td><td>
  3318. <table class="PriceBreaks" cellspacing="0" border="0">
  3319. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3320. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3321. </td>
  3322. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3323. </td>
  3324. </tr>
  3325. <tr>
  3326. <td class="PriceBreakQuantity">
  3327. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  3328. </td>
  3329. <td class="PriceBreakPrice">
  3330. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥2,945.0655</span>
  3331. </td>
  3332. </tr>
  3333. <tr>
  3334. <td class="PriceBreakQuantity">
  3335. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,2);">2:</a>
  3336. </td>
  3337. <td class="PriceBreakPrice">
  3338. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥2,905.8003</span>
  3339. </td>
  3340. </tr>
  3341. <tr>
  3342. <td class="PriceBreakQuantity">
  3343. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,5);">5:</a>
  3344. </td>
  3345. <td class="PriceBreakPrice">
  3346. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2,812.0716</span>
  3347. </td>
  3348. </tr>
  3349. <tr>
  3350. <td class="PriceBreakQuantity">
  3351. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  3352. </td>
  3353. <td class="PriceBreakPrice">
  3354. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2,724.2046</span>
  3355. </td>
  3356. </tr>
  3357. <tr>
  3358. <td class="PriceBreakQuantity">
  3359. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
  3360. </td>
  3361. <td class="PriceBreakPrice">
  3362. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2,690.5554</span>
  3363. </td>
  3364. </tr>
  3365. <tr>
  3366. <td><br /></td>
  3367. </tr>
  3368. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3369. <td colspan="2" style="text-align: center;">
  3370. </td>
  3371. </tr>
  3372. </table>
  3373. </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;)">
  3374. <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 />
  3375. <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="购买 CM8064601538900S R183" class="buy-button" /><br />
  3376. <table cellspacing="0" border="0" style="width: 100%;">
  3377. <tr>
  3378. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3379. 最低:
  3380. </td>
  3381. <td style="padding-left: 2px; text-align: left;">
  3382. 1
  3383. </td>
  3384. </tr>
  3385. <tr>
  3386. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3387. 多个:
  3388. </td>
  3389. <td style="padding-left: 2px; text-align: left;">
  3390. 1
  3391. </td>
  3392. </tr>
  3393. </table>
  3394. </div>
  3395. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  3396. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3397. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=eW0nOKmBxAGbwYeFazEg2Q%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=eW0nOKmBxAGbwYeFazEg2Q%3d%3d" target="_blank">详细信息</a>
  3398. </div>
  3399. </td><td>Desktop Processors
  3400. </td><td>FCLGA-1150
  3401. </td><td>Intel Core i7
  3402. </td><td>Haswell
  3403. </td><td>I7-4770TE
  3404. </td><td>Embedded
  3405. </td><td>4
  3406. </td><td>45 W
  3407. </td><td>2.3 GHz
  3408. </td><td>64 bit
  3409. </td><td>32 GB
  3410. </td><td>DDR3-1333/1600
  3411. </td><td>DMI
  3412. </td><td>5 GT/s
  3413. </td><td>8 MB
  3414. </td><td>+ 71.45 C
  3415. </td><td>Tray
  3416. </td>
  3417. </tr><tr class="SearchResultsRowEven" data-partnumber="607-CM806402350SR21P" data-index="8">
  3418. <td class="td-select" align="center">
  3419. <div style="padding: 5px 5px 0 5px;">
  3420. <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>
  3421. </div>
  3422. </td><td><a href='/ProductDetail/Intel/CM8064402033500S-R21P/?qs=sGAEpiMZZMvqxsBVy5Ziumn9eizWJj7FNaoCf%2foPtx3GAPP5vhBqow%3d%3d'><img title='Intel CM8064402033500S R21P' alt='Intel CM8064402033500S R21P' id=1327761275 src='/images/intel/sm/intel_FCLGA201_3_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/intel/images/intel_FCLGA201_3_SPL.jpg</div></a></td><td>
  3423. <div style="text-align:left;">
  3424. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CM8064402033500S-R21P/?qs=sGAEpiMZZMvqxsBVy5Ziumn9eizWJj7FNaoCf%2foPtx3GAPP5vhBqow%3d%3d">607-CM806402350SR21P</a><br />
  3425. <br />
  3426. <br />
  3427. </div></td><td>
  3428. <div class="mfrDiv">
  3429. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CM8064402033500S-R21P/?qs=sGAEpiMZZMvqxsBVy5Ziumn9eizWJj7FNaoCf%2foPtx3GAPP5vhBqow%3d%3d">CM8064402033500S R21P</a><br />
  3430. <br />
  3431. <div style="width: 100%; text-align: center;">
  3432. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3433. </div>
  3434. <div style="width: 100%; text-align: center;">
  3435. </div>
  3436. </div>
  3437. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  3438. </td><td>CPU - 中央处理器 Xeon E5-2608Lv3 6 CR 2.0GHz FCLGA-2011
  3439. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3440. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-e5-260x-v3-processor/">了解更多</a>
  3441. </div>
  3442. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3443. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  3444. </div>
  3445. </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;Intel&quot;,&quot;607-CM806402350SR21P | CM8064402033500S R21P&quot;]);" href="http://www.mouser.com/ds/2/612/xeon-e5-v3-datasheet-vol-1-465147.pdf" target="_blank">数据表</a>
  3446. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">56<br/>有库存</span>
  3447. <table>
  3448. <tr align="center">
  3449. <td style="padding-top: 5px">
  3450. </td>
  3451. </tr>
  3452. <tr align="center">
  3453. <td style="padding-top: 5px; padding-bottom: 5px">
  3454. </td>
  3455. </tr>
  3456. </table></td><td>
  3457. <table class="PriceBreaks" cellspacing="0" border="0">
  3458. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3459. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3460. </td>
  3461. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3462. </td>
  3463. </tr>
  3464. <tr>
  3465. <td class="PriceBreakQuantity">
  3466. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  3467. </td>
  3468. <td class="PriceBreakPrice">
  3469. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥3,783.4758</span>
  3470. </td>
  3471. </tr>
  3472. <tr>
  3473. <td class="PriceBreakQuantity">
  3474. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,2);">2:</a>
  3475. </td>
  3476. <td class="PriceBreakPrice">
  3477. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3,651.1722</span>
  3478. </td>
  3479. </tr>
  3480. <tr>
  3481. <td class="PriceBreakQuantity">
  3482. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,5);">5:</a>
  3483. </td>
  3484. <td class="PriceBreakPrice">
  3485. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3,576.1635</span>
  3486. </td>
  3487. </tr>
  3488. <tr>
  3489. <td class="PriceBreakQuantity">
  3490. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  3491. </td>
  3492. <td class="PriceBreakPrice">
  3493. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3,523.104</span>
  3494. </td>
  3495. </tr>
  3496. <tr>
  3497. <td class="PriceBreakQuantity">
  3498. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  3499. </td>
  3500. <td class="PriceBreakPrice">
  3501. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥3,471.507</span>
  3502. </td>
  3503. </tr>
  3504. <tr>
  3505. <td><br /></td>
  3506. </tr>
  3507. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  3508. <td colspan="2" style="text-align: center;">
  3509. </td>
  3510. </tr>
  3511. </table>
  3512. </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;)">
  3513. <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 />
  3514. <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="购买 CM8064402033500S R21P" class="buy-button" /><br />
  3515. <table cellspacing="0" border="0" style="width: 100%;">
  3516. <tr>
  3517. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3518. 最低:
  3519. </td>
  3520. <td style="padding-left: 2px; text-align: left;">
  3521. 1
  3522. </td>
  3523. </tr>
  3524. <tr>
  3525. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3526. 多个:
  3527. </td>
  3528. <td style="padding-left: 2px; text-align: left;">
  3529. 1
  3530. </td>
  3531. </tr>
  3532. </table>
  3533. </div>
  3534. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  3535. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3536. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Hg7hrAn%2f7%252bkIcmRVmgPGdQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=Hg7hrAn%2f7%252bkIcmRVmgPGdQ%3d%3d" target="_blank">详细信息</a>
  3537. </div>
  3538. </td><td>Server Processors
  3539. </td><td>FCLGA2011-3
  3540. </td><td>Intel Xeon
  3541. </td><td>Haswell
  3542. </td><td>E5-2608L v3
  3543. </td><td>Embedded
  3544. </td><td>6
  3545. </td><td>52 W
  3546. </td><td>2 GHz
  3547. </td><td>64 bit
  3548. </td><td>768 GB
  3549. </td><td>DDR4-1600/1866
  3550. </td><td>
  3551. </td><td>
  3552. </td><td>15 MB
  3553. </td><td>
  3554. </td><td>Tray
  3555. </td>
  3556. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-FH806589716SR267" data-index="9">
  3557. <td class="td-select" align="center">
  3558. <div style="padding: 5px 5px 0 5px;">
  3559. <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>
  3560. </div>
  3561. </td><td><a href='/ProductDetail/Intel/FH8065801974816S-R267/?qs=sGAEpiMZZMvqxsBVy5ZiugxpSLnYzIdVPZYnqvE%2fA71eFqT3OZTE7g%3d%3d'><img title='Intel FH8065801974816S R267' alt='Intel FH8065801974816S R267' id=1374432334 src='/images/intel/sm/I7_5650_U_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/intel/images/I7_5650_U_DSL.jpg</div></a></td><td>
  3562. <div style="text-align:left;">
  3563. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/FH8065801974816S-R267/?qs=sGAEpiMZZMvqxsBVy5ZiugxpSLnYzIdVPZYnqvE%2fA71eFqT3OZTE7g%3d%3d">607-FH806589716SR267</a><br />
  3564. <br />
  3565. <br />
  3566. </div></td><td>
  3567. <div class="mfrDiv">
  3568. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/FH8065801974816S-R267/?qs=sGAEpiMZZMvqxsBVy5ZiugxpSLnYzIdVPZYnqvE%2fA71eFqT3OZTE7g%3d%3d">FH8065801974816S R267</a><br />
  3569. <br />
  3570. <div style="width: 100%; text-align: center;">
  3571. <span title='用于最新设计的尖端技术。'><img src="/images/icon-lc-new-technology-sm.png" alt="新技术" /><br/>新技术</span><br/><br/>
  3572. </div>
  3573. <div style="width: 100%; text-align: center;">
  3574. </div>
  3575. </div>
  3576. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  3577. </td><td>CPU - 中央处理器 64BIT MPU
  3578. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3579. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i7-5600-processor/">了解更多</a>
  3580. </div>
  3581. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3582. </div>
  3583. </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;Intel&quot;,&quot;607-FH806589716SR267 | FH8065801974816S R267&quot;]);" href="http://ark.intel.com/products/84995/Intel-Core-i7-5650U-Processor-4M-Cache-up-to-3_20-GHz?q=i7-5650U#@specifications" target="_blank">数据表</a>
  3584. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">48<br/>有库存</span>
  3585. <table>
  3586. <tr align="center">
  3587. <td style="padding-top: 5px">
  3588. </td>
  3589. </tr>
  3590. <tr align="center">
  3591. <td style="padding-top: 5px; padding-bottom: 5px">
  3592. </td>
  3593. </tr>
  3594. </table></td><td>
  3595. <table class="PriceBreaks" cellspacing="0" border="0">
  3596. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3597. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3598. </td>
  3599. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3600. </td>
  3601. </tr>
  3602. <tr>
  3603. <td class="PriceBreakQuantity">
  3604. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  3605. </td>
  3606. <td class="PriceBreakPrice">
  3607. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥4,441.9752</span>
  3608. </td>
  3609. </tr>
  3610. <tr>
  3611. <td class="PriceBreakQuantity">
  3612. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,2);">2:</a>
  3613. </td>
  3614. <td class="PriceBreakPrice">
  3615. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥4,286.646</span>
  3616. </td>
  3617. </tr>
  3618. <tr>
  3619. <td class="PriceBreakQuantity">
  3620. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,5);">5:</a>
  3621. </td>
  3622. <td class="PriceBreakPrice">
  3623. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥4,198.5567</span>
  3624. </td>
  3625. </tr>
  3626. <tr>
  3627. <td class="PriceBreakQuantity">
  3628. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  3629. </td>
  3630. <td class="PriceBreakPrice">
  3631. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥4,136.2542</span>
  3632. </td>
  3633. </tr>
  3634. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3635. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3636. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,25);">25:</a>
  3637. </td>
  3638. <td class="PriceBreakPrice">
  3639. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=607-FH806589716SR267&amp;quantity=25&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Intel&quot;,&quot;607-FH806589716SR267&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  3640. </td>
  3641. </tr>
  3642. <tr>
  3643. <td><br /></td>
  3644. </tr>
  3645. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3646. <td colspan="2" style="text-align: center;">
  3647. </td>
  3648. </tr>
  3649. </table>
  3650. </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;)">
  3651. <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 />
  3652. <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="购买 FH8065801974816S R267" class="buy-button" /><br />
  3653. <table cellspacing="0" border="0" style="width: 100%;">
  3654. <tr>
  3655. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3656. 最低:
  3657. </td>
  3658. <td style="padding-left: 2px; text-align: left;">
  3659. 1
  3660. </td>
  3661. </tr>
  3662. <tr>
  3663. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3664. 多个:
  3665. </td>
  3666. <td style="padding-left: 2px; text-align: left;">
  3667. 1
  3668. </td>
  3669. </tr>
  3670. </table>
  3671. </div>
  3672. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  3673. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3674. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=fguncAprR%252btBtJHY9F%2fRKA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=fguncAprR%252btBtJHY9F%2fRKA%3d%3d" target="_blank">详细信息</a>
  3675. </div>
  3676. </td><td>Mobile Processors
  3677. </td><td>FCBGA-1168
  3678. </td><td>Intel Core i7
  3679. </td><td>Broadwell
  3680. </td><td>i7-5650U
  3681. </td><td>Embedded
  3682. </td><td>2 Core
  3683. </td><td>15 W
  3684. </td><td>2.2 GHz
  3685. </td><td>64 bit
  3686. </td><td>16 GB
  3687. </td><td>DDR3L-1333, 1600, LPDDR3-1333, 1600
  3688. </td><td>DMI2
  3689. </td><td>5 GT/s
  3690. </td><td>4 MB
  3691. </td><td>
  3692. </td><td>Tray
  3693. </td>
  3694. </tr><tr class="SearchResultsRowEven" data-partnumber="607-CM806460147SR1PA" data-index="10">
  3695. <td class="td-select" align="center">
  3696. <div style="padding: 5px 5px 0 5px;">
  3697. <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>
  3698. </div>
  3699. </td><td><a href='/ProductDetail/Intel/CM8064601481957S-R1PA/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3ztLvDiTW60EbZqrulOLuUQ%3d%3d'><img title='Intel CM8064601481957S R1PA' alt='Intel CM8064601481957S R1PA' id=1208964915 src='/images/intel/sm/icore-i3.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/intel/images/icore-i3.jpg</div></a></td><td>
  3700. <div style="text-align:left;">
  3701. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CM8064601481957S-R1PA/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3ztLvDiTW60EbZqrulOLuUQ%3d%3d">607-CM806460147SR1PA</a><br />
  3702. <br />
  3703. <br />
  3704. </div></td><td>
  3705. <div class="mfrDiv">
  3706. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CM8064601481957S-R1PA/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3ztLvDiTW60EbZqrulOLuUQ%3d%3d">CM8064601481957S R1PA</a><br />
  3707. <br />
  3708. <div style="width: 100%; text-align: center;">
  3709. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3710. </div>
  3711. <div style="width: 100%; text-align: center;">
  3712. </div>
  3713. </div>
  3714. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  3715. </td><td>CPU - 中央处理器 Core i3-4350T Dual CR 3.1GHz FCLGA1150
  3716. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3717. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i3-4340te-4350t-4360/">了解更多</a>
  3718. </div>
  3719. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3720. </div>
  3721. </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;Intel&quot;,&quot;607-CM806460147SR1PA | CM8064601481957S R1PA&quot;]);" href="http://ark.intel.com/products/77492/Intel-Core-i3-4350T-Processor-4M-Cache-3_10-GHz?q=i3-4350T" target="_blank">数据表</a>
  3722. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">152<br/>有库存</span>
  3723. <table>
  3724. <tr align="center">
  3725. <td style="padding-top: 5px">
  3726. </td>
  3727. </tr>
  3728. <tr align="center">
  3729. <td style="padding-top: 5px; padding-bottom: 5px">
  3730. </td>
  3731. </tr>
  3732. </table></td><td>
  3733. <table class="PriceBreaks" cellspacing="0" border="0">
  3734. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3735. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3736. </td>
  3737. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3738. </td>
  3739. </tr>
  3740. <tr>
  3741. <td class="PriceBreakQuantity">
  3742. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  3743. </td>
  3744. <td class="PriceBreakPrice">
  3745. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,399.1796</span>
  3746. </td>
  3747. </tr>
  3748. <tr>
  3749. <td class="PriceBreakQuantity">
  3750. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,5);">5:</a>
  3751. </td>
  3752. <td class="PriceBreakPrice">
  3753. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1,342.4229</span>
  3754. </td>
  3755. </tr>
  3756. <tr>
  3757. <td class="PriceBreakQuantity">
  3758. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,10);">10:</a>
  3759. </td>
  3760. <td class="PriceBreakPrice">
  3761. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,281.8169</span>
  3762. </td>
  3763. </tr>
  3764. <tr>
  3765. <td class="PriceBreakQuantity">
  3766. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,50);">50:</a>
  3767. </td>
  3768. <td class="PriceBreakPrice">
  3769. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1,241.7795</span>
  3770. </td>
  3771. </tr>
  3772. <tr>
  3773. <td><br /></td>
  3774. </tr>
  3775. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3776. <td colspan="2" style="text-align: center;">
  3777. </td>
  3778. </tr>
  3779. </table>
  3780. </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;)">
  3781. <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 />
  3782. <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="购买 CM8064601481957S R1PA" class="buy-button" /><br />
  3783. <table cellspacing="0" border="0" style="width: 100%;">
  3784. <tr>
  3785. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3786. 最低:
  3787. </td>
  3788. <td style="padding-left: 2px; text-align: left;">
  3789. 1
  3790. </td>
  3791. </tr>
  3792. <tr>
  3793. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3794. 多个:
  3795. </td>
  3796. <td style="padding-left: 2px; text-align: left;">
  3797. 1
  3798. </td>
  3799. </tr>
  3800. </table>
  3801. </div>
  3802. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  3803. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3804. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=PRO81gJLs77CDReCWru0Vg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=PRO81gJLs77CDReCWru0Vg%3d%3d" target="_blank">详细信息</a>
  3805. </div>
  3806. </td><td>Desktop Processors
  3807. </td><td>FCLGA-1150
  3808. </td><td>Intel Core i3
  3809. </td><td>Haswell
  3810. </td><td>i3-4350T
  3811. </td><td>Embedded
  3812. </td><td>2
  3813. </td><td>35 W
  3814. </td><td>3.1 GHz
  3815. </td><td>64 bit
  3816. </td><td>32 GB
  3817. </td><td>DDR3L-1333,1600
  3818. </td><td>DMI2
  3819. </td><td>5 GT/s
  3820. </td><td>4 MB
  3821. </td><td>+ 66.4 C
  3822. </td><td>
  3823. </td>
  3824. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-CM806418314SR207" data-index="11">
  3825. <td class="td-select" align="center">
  3826. <div style="padding: 5px 5px 0 5px;">
  3827. <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>
  3828. </div>
  3829. </td><td><a href='/ProductDetail/Intel/CM8064401831400S-R207/?qs=sGAEpiMZZMvqxsBVy5Ziumn9eizWJj7Fe8X3K%2ftjs6eKFRxbY2H8zw%3d%3d'><img title='Intel CM8064401831400S R207' alt='Intel CM8064401831400S R207' id=1327761277 src='/images/intel/sm/intel_FCLGA201_3_SPL.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/intel/images/intel_FCLGA201_3_SPL.jpg</div></a></td><td>
  3830. <div style="text-align:left;">
  3831. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CM8064401831400S-R207/?qs=sGAEpiMZZMvqxsBVy5Ziumn9eizWJj7Fe8X3K%2ftjs6eKFRxbY2H8zw%3d%3d">607-CM806418314SR207</a><br />
  3832. <br />
  3833. <br />
  3834. </div></td><td>
  3835. <div class="mfrDiv">
  3836. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CM8064401831400S-R207/?qs=sGAEpiMZZMvqxsBVy5Ziumn9eizWJj7Fe8X3K%2ftjs6eKFRxbY2H8zw%3d%3d">CM8064401831400S R207</a><br />
  3837. <br />
  3838. <div style="width: 100%; text-align: center;">
  3839. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3840. </div>
  3841. <div style="width: 100%; text-align: center;">
  3842. </div>
  3843. </div>
  3844. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  3845. </td><td>CPU - 中央处理器 Xeon E5-2620v3 6 CR 2.4GHz FCLGA-2011
  3846. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3847. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-e5-262x-v3-processor/">了解更多</a>
  3848. </div>
  3849. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3850. <img src="/Images/icon_EAR.gif" alt='此产品可能需要其他文件才能从美国出口。' title='此产品可能需要其他文件才能从美国出口。' />
  3851. </div>
  3852. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Intel&quot;,&quot;607-CM806418314SR207 | CM8064401831400S R207&quot;]);" href="http://www.mouser.com/ds/2/612/xeon-e5-v3-datasheet-vol-1-465147.pdf" target="_blank">数据表</a>
  3853. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">31<br/>有库存</span>
  3854. <table>
  3855. <tr align="center">
  3856. <td style="padding-top: 5px">
  3857. </td>
  3858. </tr>
  3859. <tr align="center">
  3860. <td style="padding-top: 5px; padding-bottom: 5px">
  3861. </td>
  3862. </tr>
  3863. </table></td><td>
  3864. <table class="PriceBreaks" cellspacing="0" border="0">
  3865. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3866. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3867. </td>
  3868. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3869. </td>
  3870. </tr>
  3871. <tr>
  3872. <td class="PriceBreakQuantity">
  3873. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  3874. </td>
  3875. <td class="PriceBreakPrice">
  3876. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥4,352.6457</span>
  3877. </td>
  3878. </tr>
  3879. <tr>
  3880. <td class="PriceBreakQuantity">
  3881. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,2);">2:</a>
  3882. </td>
  3883. <td class="PriceBreakPrice">
  3884. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥4,200.4755</span>
  3885. </td>
  3886. </tr>
  3887. <tr>
  3888. <td class="PriceBreakQuantity">
  3889. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,5);">5:</a>
  3890. </td>
  3891. <td class="PriceBreakPrice">
  3892. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥4,114.1529</span>
  3893. </td>
  3894. </tr>
  3895. <tr>
  3896. <td class="PriceBreakQuantity">
  3897. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
  3898. </td>
  3899. <td class="PriceBreakPrice">
  3900. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥4,053.0789</span>
  3901. </td>
  3902. </tr>
  3903. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3904. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3905. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  3906. </td>
  3907. <td class="PriceBreakPrice">
  3908. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=607-CM806418314SR207&amp;quantity=25&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Intel&quot;,&quot;607-CM806418314SR207&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  3909. </td>
  3910. </tr>
  3911. <tr>
  3912. <td><br /></td>
  3913. </tr>
  3914. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3915. <td colspan="2" style="text-align: center;">
  3916. </td>
  3917. </tr>
  3918. </table>
  3919. </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;)">
  3920. <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 />
  3921. <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="购买 CM8064401831400S R207" class="buy-button" /><br />
  3922. <table cellspacing="0" border="0" style="width: 100%;">
  3923. <tr>
  3924. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3925. 最低:
  3926. </td>
  3927. <td style="padding-left: 2px; text-align: left;">
  3928. 1
  3929. </td>
  3930. </tr>
  3931. <tr>
  3932. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3933. 多个:
  3934. </td>
  3935. <td style="padding-left: 2px; text-align: left;">
  3936. 1
  3937. </td>
  3938. </tr>
  3939. </table>
  3940. </div>
  3941. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  3942. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3943. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Hg7hrAn%2f7%252bnt%2fDWRJoHn9w%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=Hg7hrAn%2f7%252bnt%2fDWRJoHn9w%3d%3d" target="_blank">详细信息</a>
  3944. </div>
  3945. </td><td>Server Processors
  3946. </td><td>FCLGA2011-3
  3947. </td><td>Intel Xeon
  3948. </td><td>Haswell
  3949. </td><td>E5-2620 v3
  3950. </td><td>Embedded
  3951. </td><td>6
  3952. </td><td>85 W
  3953. </td><td>2.4 GHz
  3954. </td><td>64 bit
  3955. </td><td>768 GB
  3956. </td><td>DDR4-1600/1866
  3957. </td><td>
  3958. </td><td>
  3959. </td><td>15 MB
  3960. </td><td>
  3961. </td><td>Tray
  3962. </td>
  3963. </tr><tr class="SearchResultsRowEven" data-partnumber="607-LE80537GG0494MS" data-index="12">
  3964. <td class="td-select" align="center">
  3965. <div style="padding: 5px 5px 0 5px;">
  3966. <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>
  3967. </div>
  3968. </td><td><a href='/ProductDetail/Intel/LE80537GG0494MS-LADM/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUc9K%2fbnUj6To%3d'><img title='Intel LE80537GG0494MS LADM' alt='Intel LE80537GG0494MS LADM' id=959859921 src='/images/intel/sm/core2-duo.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/intel/images/core2-duo.jpg</div></a></td><td>
  3969. <div style="text-align:left;">
  3970. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/LE80537GG0494MS-LADM/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUc9K%2fbnUj6To%3d">607-LE80537GG0494MS</a><br />
  3971. <br />
  3972. <br />
  3973. </div></td><td>
  3974. <div class="mfrDiv">
  3975. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/LE80537GG0494MS-LADM/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUc9K%2fbnUj6To%3d">LE80537GG0494MS LADM</a><br />
  3976. <br />
  3977. <div style="width: 100%; text-align: center;">
  3978. </div>
  3979. <div style="width: 100%; text-align: center;">
  3980. </div>
  3981. </div>
  3982. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  3983. </td><td>CPU - 中央处理器 Core 2 T7500 Dual Core 2.2GHz PBGA479
  3984. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3985. </div>
  3986. </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;Intel&quot;,&quot;607-LE80537GG0494MS | LE80537GG0494MS LADM&quot;]);" href="http://download.intel.com/design/mobile/datashts/31674505.pdf" target="_blank">数据表<br /><br /></a>
  3987. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Catalog PDF Click&#39;,&quot;Intel&quot;,&quot;607-LE80537GG0494MS | LE80537GG0494MS LADM&quot;]);" href="/catalog/English/103/APAC/204.pdf" target="_blank">页面 204</a>
  3988. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">91<br/>有库存</span>
  3989. <table>
  3990. <tr align="center">
  3991. <td style="padding-top: 5px">
  3992. </td>
  3993. </tr>
  3994. <tr align="center">
  3995. <td style="padding-top: 5px; padding-bottom: 5px">
  3996. </td>
  3997. </tr>
  3998. </table></td><td>
  3999. <table class="PriceBreaks" cellspacing="0" border="0">
  4000. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4001. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4002. </td>
  4003. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4004. </td>
  4005. </tr>
  4006. <tr>
  4007. <td class="PriceBreakQuantity">
  4008. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  4009. </td>
  4010. <td class="PriceBreakPrice">
  4011. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥2,158.416</span>
  4012. </td>
  4013. </tr>
  4014. <tr>
  4015. <td class="PriceBreakQuantity">
  4016. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,5);">5:</a>
  4017. </td>
  4018. <td class="PriceBreakPrice">
  4019. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥2,070.8649</span>
  4020. </td>
  4021. </tr>
  4022. <tr>
  4023. <td class="PriceBreakQuantity">
  4024. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  4025. </td>
  4026. <td class="PriceBreakPrice">
  4027. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,977.3702</span>
  4028. </td>
  4029. </tr>
  4030. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  4031. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4032. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(10,50);">50:</a>
  4033. </td>
  4034. <td class="PriceBreakPrice">
  4035. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=607-LE80537GG0494MS&amp;quantity=50&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Intel&quot;,&quot;607-LE80537GG0494MS&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  4036. </td>
  4037. </tr>
  4038. <tr>
  4039. <td><br /></td>
  4040. </tr>
  4041. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  4042. <td colspan="2" style="text-align: center;">
  4043. </td>
  4044. </tr>
  4045. </table>
  4046. </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;)">
  4047. <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 />
  4048. <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="购买 LE80537GG0494MS LADM" class="buy-button" /><br />
  4049. <table cellspacing="0" border="0" style="width: 100%;">
  4050. <tr>
  4051. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4052. 最低:
  4053. </td>
  4054. <td style="padding-left: 2px; text-align: left;">
  4055. 1
  4056. </td>
  4057. </tr>
  4058. <tr>
  4059. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4060. 多个:
  4061. </td>
  4062. <td style="padding-left: 2px; text-align: left;">
  4063. 1
  4064. </td>
  4065. </tr>
  4066. </table>
  4067. </div>
  4068. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  4069. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4070. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuRgiQ%2fRd0BoWQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuRgiQ%2fRd0BoWQ%3d%3d" target="_blank">详细信息</a>
  4071. </div>
  4072. </td><td>Mobile Processors
  4073. </td><td>PBGA-479
  4074. </td><td>Intel Core 2 Duo
  4075. </td><td>Merom
  4076. </td><td>T7500
  4077. </td><td>Embedded
  4078. </td><td>2
  4079. </td><td>35 W
  4080. </td><td>2.2 GHz
  4081. </td><td>64 bit
  4082. </td><td>
  4083. </td><td>
  4084. </td><td>FSB
  4085. </td><td>800 MHz
  4086. </td><td>4 MB
  4087. </td><td>
  4088. </td><td>Tray
  4089. </td>
  4090. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-AV8063801149203S" data-index="13">
  4091. <td class="td-select" align="center">
  4092. <div style="padding: 5px 5px 0 5px;">
  4093. <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>
  4094. </div>
  4095. </td><td><a href='/ProductDetail/Intel/AV8063801149203S-R0ND/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUQH0ZrjiOJqQ%3d'><img title='Intel AV8063801149203S R0ND' alt='Intel AV8063801149203S R0ND' id=959859769 src='/images/intel/sm/icore-i7.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/intel/images/icore-i7.jpg</div></a></td><td>
  4096. <div style="text-align:left;">
  4097. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/AV8063801149203S-R0ND/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUQH0ZrjiOJqQ%3d">607-AV8063801149203S</a><br />
  4098. <br />
  4099. <br />
  4100. </div></td><td>
  4101. <div class="mfrDiv">
  4102. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/AV8063801149203S-R0ND/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUQH0ZrjiOJqQ%3d">AV8063801149203S R0ND</a><br />
  4103. <br />
  4104. <div style="width: 100%; text-align: center;">
  4105. </div>
  4106. <div style="width: 100%; text-align: center;">
  4107. </div>
  4108. </div>
  4109. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  4110. </td><td>CPU - 中央处理器 Core i7-3612QE Quad CR 2.1GHz FCBGA1023
  4111. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4112. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i7-3612qe/">了解更多</a>
  4113. </div>
  4114. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4115. </div>
  4116. </td><td>
  4117. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Catalog PDF Click&#39;,&quot;Intel&quot;,&quot;607-AV8063801149203S | AV8063801149203S R0ND&quot;]);" href="/catalog/English/103/APAC/205.pdf" target="_blank">页面 205</a>
  4118. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">17<br/>有库存</span>
  4119. <table>
  4120. <tr align="center">
  4121. <td style="padding-top: 5px">
  4122. </td>
  4123. </tr>
  4124. <tr align="center">
  4125. <td style="padding-top: 5px; padding-bottom: 5px">
  4126. </td>
  4127. </tr>
  4128. </table></td><td>
  4129. <table class="PriceBreaks" cellspacing="0" border="0">
  4130. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4131. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4132. </td>
  4133. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4134. </td>
  4135. </tr>
  4136. <tr>
  4137. <td class="PriceBreakQuantity">
  4138. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  4139. </td>
  4140. <td class="PriceBreakPrice">
  4141. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥3,871.2609</span>
  4142. </td>
  4143. </tr>
  4144. <tr>
  4145. <td class="PriceBreakQuantity">
  4146. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,2);">2:</a>
  4147. </td>
  4148. <td class="PriceBreakPrice">
  4149. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3,819.6639</span>
  4150. </td>
  4151. </tr>
  4152. <tr>
  4153. <td class="PriceBreakQuantity">
  4154. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,5);">5:</a>
  4155. </td>
  4156. <td class="PriceBreakPrice">
  4157. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3,696.4512</span>
  4158. </td>
  4159. </tr>
  4160. <tr>
  4161. <td class="PriceBreakQuantity">
  4162. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
  4163. </td>
  4164. <td class="PriceBreakPrice">
  4165. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3,580.9371</span>
  4166. </td>
  4167. </tr>
  4168. <tr>
  4169. <td class="PriceBreakQuantity">
  4170. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  4171. </td>
  4172. <td class="PriceBreakPrice">
  4173. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥3,536.6526</span>
  4174. </td>
  4175. </tr>
  4176. <tr>
  4177. <td><br /></td>
  4178. </tr>
  4179. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  4180. <td colspan="2" style="text-align: center;">
  4181. </td>
  4182. </tr>
  4183. </table>
  4184. </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;)">
  4185. <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 />
  4186. <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="购买 AV8063801149203S R0ND" class="buy-button" /><br />
  4187. <table cellspacing="0" border="0" style="width: 100%;">
  4188. <tr>
  4189. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4190. 最低:
  4191. </td>
  4192. <td style="padding-left: 2px; text-align: left;">
  4193. 1
  4194. </td>
  4195. </tr>
  4196. <tr>
  4197. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4198. 多个:
  4199. </td>
  4200. <td style="padding-left: 2px; text-align: left;">
  4201. 1
  4202. </td>
  4203. </tr>
  4204. </table>
  4205. </div>
  4206. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  4207. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4208. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuS3HWrnvJuOfg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuS3HWrnvJuOfg%3d%3d" target="_blank">详细信息</a>
  4209. </div>
  4210. </td><td>Mobile Processors
  4211. </td><td>FCBGA-1023
  4212. </td><td>Intel Core i7
  4213. </td><td>Ivy Bridge
  4214. </td><td>i7-3612QE
  4215. </td><td>Embedded
  4216. </td><td>4
  4217. </td><td>35 W
  4218. </td><td>2.1 GHz
  4219. </td><td>64 bit
  4220. </td><td>16 GB
  4221. </td><td>DDR3-1067/1333/1600, DDR3L-1067/1333/1600
  4222. </td><td>DMI
  4223. </td><td>5 GT/s
  4224. </td><td>6 MB
  4225. </td><td>
  4226. </td><td>Tray
  4227. </td>
  4228. </tr><tr class="SearchResultsRowEven" data-partnumber="607-CM8063701137502S" data-index="14">
  4229. <td class="td-select" align="center">
  4230. <div style="padding: 5px 5px 0 5px;">
  4231. <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>
  4232. </div>
  4233. </td><td><a href='/ProductDetail/Intel/CM8063701137502S-R0RG/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUxZ1EI6puniQ%3d'><img title='Intel CM8063701137502S R0RG' alt='Intel CM8063701137502S R0RG' id=959859849 src='/images/intel/sm/icore-i3.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/intel/images/icore-i3.jpg</div></a></td><td>
  4234. <div style="text-align:left;">
  4235. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CM8063701137502S-R0RG/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUxZ1EI6puniQ%3d">607-CM8063701137502S</a><br />
  4236. <br />
  4237. <br />
  4238. </div></td><td>
  4239. <div class="mfrDiv">
  4240. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CM8063701137502S-R0RG/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUxZ1EI6puniQ%3d">CM8063701137502S R0RG</a><br />
  4241. <br />
  4242. <div style="width: 100%; text-align: center;">
  4243. </div>
  4244. <div style="width: 100%; text-align: center;">
  4245. </div>
  4246. </div>
  4247. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  4248. </td><td>CPU - 中央处理器 Core i3-3220 Dual CR 3.3GHz FCLGA1155
  4249. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4250. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i3-3220/">了解更多</a>
  4251. </div>
  4252. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4253. </div>
  4254. </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;Intel&quot;,&quot;607-CM8063701137502S | CM8063701137502S R0RG&quot;]);" href="http://www.mouser.com/ds/2/612/3rd-gen-core-desktop-vol-1-datasheet-595637.pdf" target="_blank">数据表</a>
  4255. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">62<br/>有库存</span>
  4256. <table>
  4257. <tr align="center">
  4258. <td style="padding-top: 5px">
  4259. </td>
  4260. </tr>
  4261. <tr align="center">
  4262. <td style="padding-top: 5px; padding-bottom: 5px">
  4263. </td>
  4264. </tr>
  4265. </table></td><td>
  4266. <table class="PriceBreaks" cellspacing="0" border="0">
  4267. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4268. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4269. </td>
  4270. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4271. </td>
  4272. </tr>
  4273. <tr>
  4274. <td class="PriceBreakQuantity">
  4275. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  4276. </td>
  4277. <td class="PriceBreakPrice">
  4278. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,171.3923</span>
  4279. </td>
  4280. </tr>
  4281. <tr>
  4282. <td class="PriceBreakQuantity">
  4283. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,5);">5:</a>
  4284. </td>
  4285. <td class="PriceBreakPrice">
  4286. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1,123.8786</span>
  4287. </td>
  4288. </tr>
  4289. <tr>
  4290. <td class="PriceBreakQuantity">
  4291. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,10);">10:</a>
  4292. </td>
  4293. <td class="PriceBreakPrice">
  4294. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,073.124</span>
  4295. </td>
  4296. </tr>
  4297. <tr>
  4298. <td class="PriceBreakQuantity">
  4299. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,50);">50:</a>
  4300. </td>
  4301. <td class="PriceBreakPrice">
  4302. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1,039.6269</span>
  4303. </td>
  4304. </tr>
  4305. <tr>
  4306. <td><br /></td>
  4307. </tr>
  4308. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4309. <td colspan="2" style="text-align: center;">
  4310. </td>
  4311. </tr>
  4312. </table>
  4313. </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;)">
  4314. <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 />
  4315. <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="购买 CM8063701137502S R0RG" class="buy-button" /><br />
  4316. <table cellspacing="0" border="0" style="width: 100%;">
  4317. <tr>
  4318. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4319. 最低:
  4320. </td>
  4321. <td style="padding-left: 2px; text-align: left;">
  4322. 1
  4323. </td>
  4324. </tr>
  4325. <tr>
  4326. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4327. 多个:
  4328. </td>
  4329. <td style="padding-left: 2px; text-align: left;">
  4330. 1
  4331. </td>
  4332. </tr>
  4333. </table>
  4334. </div>
  4335. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  4336. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4337. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuTZRhCTGLrJRA%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuTZRhCTGLrJRA%3d%3d" target="_blank">详细信息</a>
  4338. </div>
  4339. </td><td>Desktop Processors
  4340. </td><td>FCLGA-1155
  4341. </td><td>Intel Core i3
  4342. </td><td>Ivy Bridge
  4343. </td><td>i3-3220
  4344. </td><td>Embedded
  4345. </td><td>2
  4346. </td><td>55 W
  4347. </td><td>3.3 GHz
  4348. </td><td>64 bit
  4349. </td><td>32 GB
  4350. </td><td>DDR3-1333/1600
  4351. </td><td>DMI
  4352. </td><td>5 GT/s
  4353. </td><td>3 MB
  4354. </td><td>
  4355. </td><td>Tray
  4356. </td>
  4357. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-AW8063801118306S" data-index="15">
  4358. <td class="td-select" align="center">
  4359. <div style="padding: 5px 5px 0 5px;">
  4360. <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>
  4361. </div>
  4362. </td><td><a href='/ProductDetail/Intel/AW8063801118306S-R0NP/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUSxBeolkCDuQ%3d'><img title='Intel AW8063801118306S R0NP' alt='Intel AW8063801118306S R0NP' id=959859789 src='/images/intel/sm/icore-i7.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/intel/images/icore-i7.jpg</div></a></td><td>
  4363. <div style="text-align:left;">
  4364. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/AW8063801118306S-R0NP/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUSxBeolkCDuQ%3d">607-AW8063801118306S</a><br />
  4365. <br />
  4366. <br />
  4367. </div></td><td>
  4368. <div class="mfrDiv">
  4369. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/AW8063801118306S-R0NP/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUSxBeolkCDuQ%3d">AW8063801118306S R0NP</a><br />
  4370. <br />
  4371. <div style="width: 100%; text-align: center;">
  4372. </div>
  4373. <div style="width: 100%; text-align: center;">
  4374. </div>
  4375. </div>
  4376. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  4377. </td><td>CPU - 中央处理器 Core i7-3610QE Quad Core 2.3GHz FCPGA988
  4378. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4379. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i7-3610q/">了解更多</a>
  4380. </div>
  4381. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4382. </div>
  4383. </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;Intel&quot;,&quot;607-AW8063801118306S | AW8063801118306S R0NP&quot;]);" href="http://ark.intel.com/products/65711/Intel-Core-i7-3610QE-Processor-6M-Cache-up-to-3_30-GHz" target="_blank">数据表<br /><br /></a>
  4384. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Catalog PDF Click&#39;,&quot;Intel&quot;,&quot;607-AW8063801118306S | AW8063801118306S R0NP&quot;]);" href="/catalog/English/103/APAC/205.pdf" target="_blank">页面 205</a>
  4385. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">22<br/>有库存</span>
  4386. <table>
  4387. <tr align="center">
  4388. <td style="padding-top: 5px">
  4389. </td>
  4390. </tr>
  4391. <tr align="center">
  4392. <td style="padding-top: 5px; padding-bottom: 5px">
  4393. </td>
  4394. </tr>
  4395. </table></td><td>
  4396. <table class="PriceBreaks" cellspacing="0" border="0">
  4397. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4398. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4399. </td>
  4400. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4401. </td>
  4402. </tr>
  4403. <tr>
  4404. <td class="PriceBreakQuantity">
  4405. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  4406. </td>
  4407. <td class="PriceBreakPrice">
  4408. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥3,559.0698</span>
  4409. </td>
  4410. </tr>
  4411. <tr>
  4412. <td class="PriceBreakQuantity">
  4413. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,2);">2:</a>
  4414. </td>
  4415. <td class="PriceBreakPrice">
  4416. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3,511.6263</span>
  4417. </td>
  4418. </tr>
  4419. <tr>
  4420. <td class="PriceBreakQuantity">
  4421. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,5);">5:</a>
  4422. </td>
  4423. <td class="PriceBreakPrice">
  4424. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3,398.3469</span>
  4425. </td>
  4426. </tr>
  4427. <tr>
  4428. <td class="PriceBreakQuantity">
  4429. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  4430. </td>
  4431. <td class="PriceBreakPrice">
  4432. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3,292.1577</span>
  4433. </td>
  4434. </tr>
  4435. <tr>
  4436. <td class="PriceBreakQuantity">
  4437. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(13,25);">25:</a>
  4438. </td>
  4439. <td class="PriceBreakPrice">
  4440. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥3,251.4885</span>
  4441. </td>
  4442. </tr>
  4443. <tr>
  4444. <td><br /></td>
  4445. </tr>
  4446. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  4447. <td colspan="2" style="text-align: center;">
  4448. </td>
  4449. </tr>
  4450. </table>
  4451. </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;)">
  4452. <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 />
  4453. <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="购买 AW8063801118306S R0NP" class="buy-button" /><br />
  4454. <table cellspacing="0" border="0" style="width: 100%;">
  4455. <tr>
  4456. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4457. 最低:
  4458. </td>
  4459. <td style="padding-left: 2px; text-align: left;">
  4460. 1
  4461. </td>
  4462. </tr>
  4463. <tr>
  4464. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4465. 多个:
  4466. </td>
  4467. <td style="padding-left: 2px; text-align: left;">
  4468. 1
  4469. </td>
  4470. </tr>
  4471. </table>
  4472. </div>
  4473. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  4474. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4475. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuRqR%252brqJ0mMEg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuRqR%252brqJ0mMEg%3d%3d" target="_blank">详细信息</a>
  4476. </div>
  4477. </td><td>Mobile Processors
  4478. </td><td>FCPGA-988
  4479. </td><td>Intel Core i7
  4480. </td><td>Ivy Bridge
  4481. </td><td>i7-3610QE
  4482. </td><td>Embedded
  4483. </td><td>4
  4484. </td><td>45 W
  4485. </td><td>2.3 GHz
  4486. </td><td>64 bit
  4487. </td><td>32 GB
  4488. </td><td>DDR3-1067/1333/1600, DDR3L-1333/1600
  4489. </td><td>DMI
  4490. </td><td>5 GT/s
  4491. </td><td>6 MB
  4492. </td><td>
  4493. </td><td>Tray
  4494. </td>
  4495. </tr><tr class="SearchResultsRowEven" data-partnumber="607-FH806550151676S8" data-index="16">
  4496. <td class="td-select" align="center">
  4497. <div style="padding: 5px 5px 0 5px;">
  4498. <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>
  4499. </div>
  4500. </td><td><a href='/ProductDetail/Intel/FH8065501516761S-R1S8/?qs=sGAEpiMZZMvqxsBVy5ZiuimN96%2fJsFkY45HAxaSPVQgvP8CHi%252bd4hg%3d%3d'><img title='Intel FH8065501516761S R1S8' alt='Intel FH8065501516761S R1S8' id=1041683870 src='/images/intel/sm/atom.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/intel/images/atom.jpg</div></a></td><td>
  4501. <div style="text-align:left;">
  4502. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/FH8065501516761S-R1S8/?qs=sGAEpiMZZMvqxsBVy5ZiuimN96%2fJsFkY45HAxaSPVQgvP8CHi%252bd4hg%3d%3d">607-FH806550151676S8</a><br />
  4503. <br />
  4504. <br />
  4505. </div></td><td>
  4506. <div class="mfrDiv">
  4507. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/FH8065501516761S-R1S8/?qs=sGAEpiMZZMvqxsBVy5ZiuimN96%2fJsFkY45HAxaSPVQgvP8CHi%252bd4hg%3d%3d">FH8065501516761S R1S8</a><br />
  4508. <br />
  4509. <div style="width: 100%; text-align: center;">
  4510. <span title='用于最新设计的尖端技术。'><img src="/images/icon-lc-new-technology-sm.png" alt="新技术" /><br/>新技术</span><br/><br/>
  4511. </div>
  4512. <div style="width: 100%; text-align: center;">
  4513. </div>
  4514. </div>
  4515. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  4516. </td><td>CPU - 中央处理器 Atom C2338 Dual Core 1.7GHz FCBGA1283
  4517. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4518. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-c2000-processors/">了解更多</a>
  4519. </div>
  4520. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4521. <img src="/Images/icon_ar_red.gif" alt='根据美国政府的出口法规规定,Mouser无法将此产品销售到您所在的国家。' title='根据美国政府的出口法规规定,Mouser无法将此产品销售到您所在的国家。' />
  4522. </div>
  4523. </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;Intel&quot;,&quot;607-FH806550151676S8 | FH8065501516761S R1S8&quot;]);" href="http://www.mouser.com/ds/2/612/atom-c2000-microserver-datasheet-334978.pdf" target="_blank">数据表</a>
  4524. </td><td>
  4525. <table>
  4526. <tr align="center">
  4527. <td style="padding-top: 5px">
  4528. </td>
  4529. </tr>
  4530. <tr align="center">
  4531. <td style="padding-top: 5px; padding-bottom: 5px">
  4532. </td>
  4533. </tr>
  4534. </table></td><td>
  4535. </td><td class="SearchResultsBuyColumn">
  4536. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlRestricted">
  4537. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=yes&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  4538. </div>
  4539. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  4540. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4541. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=JWGec4VjFE5uv75jOeFJEQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=JWGec4VjFE5uv75jOeFJEQ%3d%3d" target="_blank">详细信息</a>
  4542. </div>
  4543. </td><td>Server Processors
  4544. </td><td>FCBGA-1283
  4545. </td><td>Intel Atom
  4546. </td><td>Rangeley
  4547. </td><td>C2338
  4548. </td><td>Embedded
  4549. </td><td>2
  4550. </td><td>7 W
  4551. </td><td>1.7 GHz
  4552. </td><td>64 bit
  4553. </td><td>16 GB
  4554. </td><td>DDR3, 3L 1333
  4555. </td><td>
  4556. </td><td>
  4557. </td><td>1 MB
  4558. </td><td>
  4559. </td><td>Tray
  4560. </td>
  4561. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-CM806460154SR1QN" data-index="17">
  4562. <td class="td-select" align="center">
  4563. <div style="padding: 5px 5px 0 5px;">
  4564. <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>
  4565. </div>
  4566. </td><td><a href='/ProductDetail/Intel/CM8064601561214S-R1QN/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3TTjCRRMjOJi9cNm1IFX4Kw%3d%3d'><img title='Intel CM8064601561214S R1QN' alt='Intel CM8064601561214S R1QN' id=1208964935 src='/images/intel/sm/icore-i5.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/intel/images/icore-i5.jpg</div></a></td><td>
  4567. <div style="text-align:left;">
  4568. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CM8064601561214S-R1QN/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3TTjCRRMjOJi9cNm1IFX4Kw%3d%3d">607-CM806460154SR1QN</a><br />
  4569. <br />
  4570. <br />
  4571. </div></td><td>
  4572. <div class="mfrDiv">
  4573. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CM8064601561214S-R1QN/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3TTjCRRMjOJi9cNm1IFX4Kw%3d%3d">CM8064601561214S R1QN</a><br />
  4574. <br />
  4575. <div style="width: 100%; text-align: center;">
  4576. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  4577. </div>
  4578. <div style="width: 100%; text-align: center;">
  4579. </div>
  4580. </div>
  4581. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  4582. </td><td>CPU - 中央处理器 Core i5-4590S Quad CR 3.7GHz FCLGA1150
  4583. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4584. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i5-4590s-4590t-processor/">了解更多</a>
  4585. </div>
  4586. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4587. </div>
  4588. </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;Intel&quot;,&quot;607-CM806460154SR1QN | CM8064601561214S R1QN&quot;]);" href="http://ark.intel.com/products/80816/Intel-Core-i5-4590S-Processor-6M-Cache-up-to-3_70-GHz?q=i5-4590S" target="_blank">数据表</a>
  4589. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">46<br/>有库存</span>
  4590. <table>
  4591. <tr align="center">
  4592. <td style="padding-top: 5px">
  4593. </td>
  4594. </tr>
  4595. <tr align="center">
  4596. <td style="padding-top: 5px; padding-bottom: 5px">
  4597. </td>
  4598. </tr>
  4599. </table></td><td>
  4600. <table class="PriceBreaks" cellspacing="0" border="0">
  4601. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4602. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4603. </td>
  4604. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4605. </td>
  4606. </tr>
  4607. <tr>
  4608. <td class="PriceBreakQuantity">
  4609. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  4610. </td>
  4611. <td class="PriceBreakPrice">
  4612. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,941.4863</span>
  4613. </td>
  4614. </tr>
  4615. <tr>
  4616. <td class="PriceBreakQuantity">
  4617. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,5);">5:</a>
  4618. </td>
  4619. <td class="PriceBreakPrice">
  4620. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1,862.7804</span>
  4621. </td>
  4622. </tr>
  4623. <tr>
  4624. <td class="PriceBreakQuantity">
  4625. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,10);">10:</a>
  4626. </td>
  4627. <td class="PriceBreakPrice">
  4628. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,778.6106</span>
  4629. </td>
  4630. </tr>
  4631. <tr>
  4632. <td class="PriceBreakQuantity">
  4633. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,50);">50:</a>
  4634. </td>
  4635. <td class="PriceBreakPrice">
  4636. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1,723.0824</span>
  4637. </td>
  4638. </tr>
  4639. <tr>
  4640. <td><br /></td>
  4641. </tr>
  4642. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4643. <td colspan="2" style="text-align: center;">
  4644. </td>
  4645. </tr>
  4646. </table>
  4647. </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;)">
  4648. <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 />
  4649. <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="购买 CM8064601561214S R1QN" class="buy-button" /><br />
  4650. <table cellspacing="0" border="0" style="width: 100%;">
  4651. <tr>
  4652. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4653. 最低:
  4654. </td>
  4655. <td style="padding-left: 2px; text-align: left;">
  4656. 1
  4657. </td>
  4658. </tr>
  4659. <tr>
  4660. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4661. 多个:
  4662. </td>
  4663. <td style="padding-left: 2px; text-align: left;">
  4664. 1
  4665. </td>
  4666. </tr>
  4667. </table>
  4668. </div>
  4669. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  4670. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4671. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=PRO81gJLs755hcuhOfJ62Q%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=PRO81gJLs755hcuhOfJ62Q%3d%3d" target="_blank">详细信息</a>
  4672. </div>
  4673. </td><td>Desktop Processors
  4674. </td><td>FCLGA-1150
  4675. </td><td>Intel Core i5
  4676. </td><td>Haswell
  4677. </td><td>i5-4590S
  4678. </td><td>Embedded
  4679. </td><td>4
  4680. </td><td>65 W
  4681. </td><td>3 GHz
  4682. </td><td>64 bit
  4683. </td><td>32 GB
  4684. </td><td>DDR3L-1333,1600
  4685. </td><td>DMI2
  4686. </td><td>5 GT/s
  4687. </td><td>6 MB
  4688. </td><td>+ 71.35 C
  4689. </td><td>
  4690. </td>
  4691. </tr><tr class="SearchResultsRowEven" data-partnumber="607-FH806550151670SW" data-index="18">
  4692. <td class="td-select" align="center">
  4693. <div style="padding: 5px 5px 0 5px;">
  4694. <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>
  4695. </div>
  4696. </td><td><a href='/ProductDetail/Intel/FH8065501516702S-R1CW/?qs=sGAEpiMZZMvqxsBVy5ZiuuDG1H%2fs8prTD7oyxboEsXM%3d'><img title='Intel FH8065501516702S R1CW' alt='Intel FH8065501516702S R1CW' id=994403354 src='/images/intel/sm/AtomC2000_2.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/intel/images/AtomC2000_2.jpg</div></a></td><td>
  4697. <div style="text-align:left;">
  4698. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/FH8065501516702S-R1CW/?qs=sGAEpiMZZMvqxsBVy5ZiuuDG1H%2fs8prTD7oyxboEsXM%3d">607-FH806550151670SW</a><br />
  4699. <br />
  4700. <br />
  4701. </div></td><td>
  4702. <div class="mfrDiv">
  4703. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/FH8065501516702S-R1CW/?qs=sGAEpiMZZMvqxsBVy5ZiuuDG1H%2fs8prTD7oyxboEsXM%3d">FH8065501516702S R1CW</a><br />
  4704. <br />
  4705. <div style="width: 100%; text-align: center;">
  4706. </div>
  4707. <div style="width: 100%; text-align: center;">
  4708. </div>
  4709. </div>
  4710. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  4711. </td><td>CPU - 中央处理器 Atom C2758 Eight CR 2.4GHz FCBGA1283
  4712. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4713. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-c2000-processors/">了解更多</a>
  4714. </div>
  4715. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4716. <img src="/Images/icon_ar_red.gif" alt='根据美国政府的出口法规规定,Mouser无法将此产品销售到您所在的国家。' title='根据美国政府的出口法规规定,Mouser无法将此产品销售到您所在的国家。' />
  4717. </div>
  4718. </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;Intel&quot;,&quot;607-FH806550151670SW | FH8065501516702S R1CW&quot;]);" href="http://www.mouser.com/ds/2/612/atom-c2000-microserver-datasheet-334978.pdf" target="_blank">数据表</a>
  4719. </td><td>
  4720. <table>
  4721. <tr align="center">
  4722. <td style="padding-top: 5px">
  4723. </td>
  4724. </tr>
  4725. <tr align="center">
  4726. <td style="padding-top: 5px; padding-bottom: 5px">
  4727. </td>
  4728. </tr>
  4729. </table></td><td>
  4730. </td><td class="SearchResultsBuyColumn">
  4731. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlRestricted">
  4732. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=yes&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  4733. </div>
  4734. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  4735. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4736. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=eW0nOKmBxAEuwLlr%252bNDc9w%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=eW0nOKmBxAEuwLlr%252bNDc9w%3d%3d" target="_blank">详细信息</a>
  4737. </div>
  4738. </td><td>Server Processors
  4739. </td><td>FCBGA1283
  4740. </td><td>Intel Atom
  4741. </td><td>Rangeley
  4742. </td><td>C2000
  4743. </td><td>Embedded
  4744. </td><td>8
  4745. </td><td>20 W
  4746. </td><td>2.4 GHz
  4747. </td><td>64 bit
  4748. </td><td>64 GB
  4749. </td><td>DDR3, 3L 1600
  4750. </td><td>
  4751. </td><td>
  4752. </td><td>4 MB
  4753. </td><td>
  4754. </td><td>Tray
  4755. </td>
  4756. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-FH806550151670SY" data-index="19">
  4757. <td class="td-select" align="center">
  4758. <div style="padding: 5px 5px 0 5px;">
  4759. <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>
  4760. </div>
  4761. </td><td><a href='/ProductDetail/Intel/FH8065501516708S-R1CY/?qs=sGAEpiMZZMvqxsBVy5ZiuuDG1H%2fs8prTOVHF63BbXsw%3d'><img title='Intel FH8065501516708S R1CY' alt='Intel FH8065501516708S R1CY' id=994403384 src='/images/intel/sm/AtomC2000_2.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/intel/images/AtomC2000_2.jpg</div></a></td><td>
  4762. <div style="text-align:left;">
  4763. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/FH8065501516708S-R1CY/?qs=sGAEpiMZZMvqxsBVy5ZiuuDG1H%2fs8prTOVHF63BbXsw%3d">607-FH806550151670SY</a><br />
  4764. <br />
  4765. <br />
  4766. </div></td><td>
  4767. <div class="mfrDiv">
  4768. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/FH8065501516708S-R1CY/?qs=sGAEpiMZZMvqxsBVy5ZiuuDG1H%2fs8prTOVHF63BbXsw%3d">FH8065501516708S R1CY</a><br />
  4769. <br />
  4770. <div style="width: 100%; text-align: center;">
  4771. </div>
  4772. <div style="width: 100%; text-align: center;">
  4773. </div>
  4774. </div>
  4775. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  4776. </td><td>CPU - 中央处理器 Atom C2718 Eight CR 2.0GHz FCBGA1283
  4777. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4778. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-c2000-processors/">了解更多</a>
  4779. </div>
  4780. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4781. <img src="/Images/icon_ar_red.gif" alt='根据美国政府的出口法规规定,Mouser无法将此产品销售到您所在的国家。' title='根据美国政府的出口法规规定,Mouser无法将此产品销售到您所在的国家。' />
  4782. </div>
  4783. </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;Intel&quot;,&quot;607-FH806550151670SY | FH8065501516708S R1CY&quot;]);" href="http://www.mouser.com/ds/2/612/atom-c2000-microserver-datasheet-334978.pdf" target="_blank">数据表</a>
  4784. </td><td>
  4785. <table>
  4786. <tr align="center">
  4787. <td style="padding-top: 5px">
  4788. </td>
  4789. </tr>
  4790. <tr align="center">
  4791. <td style="padding-top: 5px; padding-bottom: 5px">
  4792. </td>
  4793. </tr>
  4794. </table></td><td>
  4795. </td><td class="SearchResultsBuyColumn">
  4796. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlRestricted">
  4797. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_lnkRestricted"><a href="javascript: void('0')" onclick='var restrictedwindow = window.open("/Search/RestrictedPopUpZeroPrice.aspx?country=China&ECCN_Restricted=yes&Language=zh-CN","restrictedwindow","scrollbars=1,height=488,width=454,resizable=1")'>受限供货情况</a></a>
  4798. </div>
  4799. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  4800. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4801. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=eW0nOKmBxAH5%2fl%252bG7WYUfQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=eW0nOKmBxAH5%2fl%252bG7WYUfQ%3d%3d" target="_blank">详细信息</a>
  4802. </div>
  4803. </td><td>Server Processors
  4804. </td><td>FCBGA1283
  4805. </td><td>Intel Atom
  4806. </td><td>Rangeley
  4807. </td><td>C2000
  4808. </td><td>Embedded
  4809. </td><td>8
  4810. </td><td>18 W
  4811. </td><td>2 GHz
  4812. </td><td>64 bit
  4813. </td><td>64 GB
  4814. </td><td>DDR3, 3L 1333
  4815. </td><td>
  4816. </td><td>
  4817. </td><td>4 MB
  4818. </td><td>
  4819. </td><td>Tray
  4820. </td>
  4821. </tr><tr class="SearchResultsRowEven" data-partnumber="607-CN8061704455ACSH" data-index="20">
  4822. <td class="td-select" align="center">
  4823. <div style="padding: 5px 5px 0 5px;">
  4824. <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>
  4825. </div>
  4826. </td><td><a href='/ProductDetail/Intel/CN80617004455ACS-LBXH/?qs=sGAEpiMZZMvqxsBVy5Ziumoy3pxo8ruq6hwpEapN0WunCXAB%2frokDg%3d%3d'><img title='Intel CN80617004455ACS LBXH' alt='Intel CN80617004455ACS LBXH' id=1006635305 src='/images/intel/sm/icore-i7.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/intel/images/icore-i7.jpg</div></a></td><td>
  4827. <div style="text-align:left;">
  4828. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CN80617004455ACS-LBXH/?qs=sGAEpiMZZMvqxsBVy5Ziumoy3pxo8ruq6hwpEapN0WunCXAB%2frokDg%3d%3d">607-CN8061704455ACSH</a><br />
  4829. <br />
  4830. <br />
  4831. </div></td><td>
  4832. <div class="mfrDiv">
  4833. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CN80617004455ACS-LBXH/?qs=sGAEpiMZZMvqxsBVy5Ziumoy3pxo8ruq6hwpEapN0WunCXAB%2frokDg%3d%3d">CN80617004455ACS LBXH</a><br />
  4834. <br />
  4835. <div style="width: 100%; text-align: center;">
  4836. </div>
  4837. <div style="width: 100%; text-align: center;">
  4838. </div>
  4839. </div>
  4840. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  4841. </td><td>CPU - 中央处理器 Core i7-620LE Dual CR 2.0GHz FCBGA1288
  4842. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4843. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i3-330e-i7-6xx-processors/">了解更多</a>
  4844. </div>
  4845. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4846. </div>
  4847. </td><td>
  4848. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">34<br/>有库存</span>
  4849. <table>
  4850. <tr align="center">
  4851. <td style="padding-top: 5px">
  4852. </td>
  4853. </tr>
  4854. <tr align="center">
  4855. <td style="padding-top: 5px; padding-bottom: 5px">
  4856. </td>
  4857. </tr>
  4858. </table></td><td>
  4859. <table class="PriceBreaks" cellspacing="0" border="0">
  4860. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4861. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4862. </td>
  4863. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4864. </td>
  4865. </tr>
  4866. <tr>
  4867. <td class="PriceBreakQuantity">
  4868. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  4869. </td>
  4870. <td class="PriceBreakPrice">
  4871. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥2,560.0185</span>
  4872. </td>
  4873. </tr>
  4874. <tr>
  4875. <td class="PriceBreakQuantity">
  4876. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,2);">2:</a>
  4877. </td>
  4878. <td class="PriceBreakPrice">
  4879. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥2,525.913</span>
  4880. </td>
  4881. </tr>
  4882. <tr>
  4883. <td class="PriceBreakQuantity">
  4884. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,5);">5:</a>
  4885. </td>
  4886. <td class="PriceBreakPrice">
  4887. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2,444.3523</span>
  4888. </td>
  4889. </tr>
  4890. <tr>
  4891. <td class="PriceBreakQuantity">
  4892. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,10);">10:</a>
  4893. </td>
  4894. <td class="PriceBreakPrice">
  4895. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2,368.0449</span>
  4896. </td>
  4897. </tr>
  4898. <tr>
  4899. <td class="PriceBreakQuantity">
  4900. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(18,25);">25:</a>
  4901. </td>
  4902. <td class="PriceBreakPrice">
  4903. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2,338.7715</span>
  4904. </td>
  4905. </tr>
  4906. <tr>
  4907. <td><br /></td>
  4908. </tr>
  4909. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  4910. <td colspan="2" style="text-align: center;">
  4911. </td>
  4912. </tr>
  4913. </table>
  4914. </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;)">
  4915. <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 />
  4916. <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="购买 CN80617004455ACS LBXH" class="buy-button" /><br />
  4917. <table cellspacing="0" border="0" style="width: 100%;">
  4918. <tr>
  4919. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4920. 最低:
  4921. </td>
  4922. <td style="padding-left: 2px; text-align: left;">
  4923. 1
  4924. </td>
  4925. </tr>
  4926. <tr>
  4927. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4928. 多个:
  4929. </td>
  4930. <td style="padding-left: 2px; text-align: left;">
  4931. 1
  4932. </td>
  4933. </tr>
  4934. </table>
  4935. </div>
  4936. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  4937. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4938. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=SpI%2fgGMKiU1iLwrgvMlRHg%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=SpI%2fgGMKiU1iLwrgvMlRHg%3d%3d" target="_blank">详细信息</a>
  4939. </div>
  4940. </td><td>Mobile Processors
  4941. </td><td>FCBGA-1288
  4942. </td><td>Intel Core i7
  4943. </td><td>Arrandale
  4944. </td><td>i7-620LE
  4945. </td><td>Embedded
  4946. </td><td>2
  4947. </td><td>25 W
  4948. </td><td>2 GHz
  4949. </td><td>64 bit
  4950. </td><td>8 GB
  4951. </td><td>DDR3-800/1066
  4952. </td><td>
  4953. </td><td>
  4954. </td><td>4 MB
  4955. </td><td>+ 105 C
  4956. </td><td>Tray
  4957. </td>
  4958. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-CM8062307262003S" data-index="21">
  4959. <td class="td-select" align="center">
  4960. <div style="padding: 5px 5px 0 5px;">
  4961. <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>
  4962. </div>
  4963. </td><td><a href='/ProductDetail/Intel/CM8062307262003S-R00P/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUnIgE7JEnbos%3d'><img title='Intel CM8062307262003S R00P' alt='Intel CM8062307262003S R00P' id=959859843 src='/images/intel/sm/xeon.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/intel/images/xeon.jpg</div></a></td><td>
  4964. <div style="text-align:left;">
  4965. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CM8062307262003S-R00P/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUnIgE7JEnbos%3d">607-CM8062307262003S</a><br />
  4966. <br />
  4967. <br />
  4968. </div></td><td>
  4969. <div class="mfrDiv">
  4970. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CM8062307262003S-R00P/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUnIgE7JEnbos%3d">CM8062307262003S R00P</a><br />
  4971. <br />
  4972. <div style="width: 100%; text-align: center;">
  4973. </div>
  4974. <div style="width: 100%; text-align: center;">
  4975. </div>
  4976. </div>
  4977. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  4978. </td><td>CPU - 中央处理器 Xeon E3-1275 Quad Core 3.4GHz LGA1155
  4979. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4980. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/Intel-Sandy-Bridge-Processors">了解更多</a>
  4981. </div>
  4982. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4983. </div>
  4984. </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;Intel&quot;,&quot;607-CM8062307262003S | CM8062307262003S R00P&quot;]);" href="http://www.mouser.com/ds/2/612/xeon-e3-1200-product-family-brief-269699.pdf" target="_blank">数据表</a>
  4985. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">20<br/>有库存</span>
  4986. <table>
  4987. <tr align="center">
  4988. <td style="padding-top: 5px">
  4989. </td>
  4990. </tr>
  4991. <tr align="center">
  4992. <td style="padding-top: 5px; padding-bottom: 5px">
  4993. </td>
  4994. </tr>
  4995. </table></td><td>
  4996. <table class="PriceBreaks" cellspacing="0" border="0">
  4997. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4998. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4999. </td>
  5000. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5001. </td>
  5002. </tr>
  5003. <tr>
  5004. <td class="PriceBreakQuantity">
  5005. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  5006. </td>
  5007. <td class="PriceBreakPrice">
  5008. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥3,205.2033</span>
  5009. </td>
  5010. </tr>
  5011. <tr>
  5012. <td class="PriceBreakQuantity">
  5013. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,2);">2:</a>
  5014. </td>
  5015. <td class="PriceBreakPrice">
  5016. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3,162.4632</span>
  5017. </td>
  5018. </tr>
  5019. <tr>
  5020. <td class="PriceBreakQuantity">
  5021. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,5);">5:</a>
  5022. </td>
  5023. <td class="PriceBreakPrice">
  5024. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3,060.4275</span>
  5025. </td>
  5026. </tr>
  5027. <tr>
  5028. <td class="PriceBreakQuantity">
  5029. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,10);">10:</a>
  5030. </td>
  5031. <td class="PriceBreakPrice">
  5032. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2,964.8619</span>
  5033. </td>
  5034. </tr>
  5035. <tr>
  5036. <td class="PriceBreakQuantity">
  5037. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(19,25);">25:</a>
  5038. </td>
  5039. <td class="PriceBreakPrice">
  5040. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2,928.2058</span>
  5041. </td>
  5042. </tr>
  5043. <tr>
  5044. <td><br /></td>
  5045. </tr>
  5046. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  5047. <td colspan="2" style="text-align: center;">
  5048. </td>
  5049. </tr>
  5050. </table>
  5051. </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;)">
  5052. <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 />
  5053. <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="购买 CM8062307262003S R00P" class="buy-button" /><br />
  5054. <table cellspacing="0" border="0" style="width: 100%;">
  5055. <tr>
  5056. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5057. 最低:
  5058. </td>
  5059. <td style="padding-left: 2px; text-align: left;">
  5060. 1
  5061. </td>
  5062. </tr>
  5063. <tr>
  5064. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5065. 多个:
  5066. </td>
  5067. <td style="padding-left: 2px; text-align: left;">
  5068. 1
  5069. </td>
  5070. </tr>
  5071. </table>
  5072. </div>
  5073. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  5074. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5075. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuS4fnOWJ9iC7A%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuS4fnOWJ9iC7A%3d%3d" target="_blank">详细信息</a>
  5076. </div>
  5077. </td><td>Server Processors
  5078. </td><td>LGA-1155
  5079. </td><td>Intel Xeon
  5080. </td><td>Sandy Bridge
  5081. </td><td>E3-1275
  5082. </td><td>Embedded
  5083. </td><td>4
  5084. </td><td>95 W
  5085. </td><td>3.4 GHz
  5086. </td><td>64 bit
  5087. </td><td>32 GB
  5088. </td><td>DDR3-1066/1333
  5089. </td><td>DMI
  5090. </td><td>5 GT/s
  5091. </td><td>8 MB
  5092. </td><td>+ 72.6 C
  5093. </td><td>Tray
  5094. </td>
  5095. </tr><tr class="SearchResultsRowEven" data-partnumber="607-AV8062700849508S" data-index="22">
  5096. <td class="td-select" align="center">
  5097. <div style="padding: 5px 5px 0 5px;">
  5098. <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>
  5099. </div>
  5100. </td><td><a href='/ProductDetail/Intel/AV8062700849508S-R078/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUhF14E8b3osI%3d'><img title='Intel AV8062700849508S R078' alt='Intel AV8062700849508S R078' id=959859737 src='/images/intel/sm/icore-i7.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/intel/images/icore-i7.jpg</div></a></td><td>
  5101. <div style="text-align:left;">
  5102. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/AV8062700849508S-R078/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUhF14E8b3osI%3d">607-AV8062700849508S</a><br />
  5103. <br />
  5104. <br />
  5105. </div></td><td>
  5106. <div class="mfrDiv">
  5107. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/AV8062700849508S-R078/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUhF14E8b3osI%3d">AV8062700849508S R078</a><br />
  5108. <br />
  5109. <div style="width: 100%; text-align: center;">
  5110. </div>
  5111. <div style="width: 100%; text-align: center;">
  5112. </div>
  5113. </div>
  5114. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  5115. </td><td>CPU - 中央处理器 Core i7-2655LE Dual CR 2.2GHz FCBGA1023
  5116. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5117. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/Intel-i7-2655LE/">了解更多</a>
  5118. </div>
  5119. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5120. </div>
  5121. </td><td>
  5122. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl05_lnkCatalog" title="单击查看此 Mouser PDF 目录页面。 需要 Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Catalog PDF Click&#39;,&quot;Intel&quot;,&quot;607-AV8062700849508S | AV8062700849508S R078&quot;]);" href="/catalog/English/103/APAC/205.pdf" target="_blank">页面 205</a>
  5123. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">27<br/>有库存</span>
  5124. <table>
  5125. <tr align="center">
  5126. <td style="padding-top: 5px">
  5127. </td>
  5128. </tr>
  5129. <tr align="center">
  5130. <td style="padding-top: 5px; padding-bottom: 5px">
  5131. </td>
  5132. </tr>
  5133. </table></td><td>
  5134. <table class="PriceBreaks" cellspacing="0" border="0">
  5135. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5136. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5137. </td>
  5138. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5139. </td>
  5140. </tr>
  5141. <tr>
  5142. <td class="PriceBreakQuantity">
  5143. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  5144. </td>
  5145. <td class="PriceBreakPrice">
  5146. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥3,163.6215</span>
  5147. </td>
  5148. </tr>
  5149. <tr>
  5150. <td class="PriceBreakQuantity">
  5151. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,2);">2:</a>
  5152. </td>
  5153. <td class="PriceBreakPrice">
  5154. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3,121.4196</span>
  5155. </td>
  5156. </tr>
  5157. <tr>
  5158. <td class="PriceBreakQuantity">
  5159. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,5);">5:</a>
  5160. </td>
  5161. <td class="PriceBreakPrice">
  5162. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3,020.6943</span>
  5163. </td>
  5164. </tr>
  5165. <tr>
  5166. <td class="PriceBreakQuantity">
  5167. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,10);">10:</a>
  5168. </td>
  5169. <td class="PriceBreakPrice">
  5170. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2,926.3572</span>
  5171. </td>
  5172. </tr>
  5173. <tr>
  5174. <td class="PriceBreakQuantity">
  5175. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(20,25);">25:</a>
  5176. </td>
  5177. <td class="PriceBreakPrice">
  5178. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2,890.1574</span>
  5179. </td>
  5180. </tr>
  5181. <tr>
  5182. <td><br /></td>
  5183. </tr>
  5184. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  5185. <td colspan="2" style="text-align: center;">
  5186. </td>
  5187. </tr>
  5188. </table>
  5189. </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;)">
  5190. <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 />
  5191. <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="购买 AV8062700849508S R078" class="buy-button" /><br />
  5192. <table cellspacing="0" border="0" style="width: 100%;">
  5193. <tr>
  5194. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5195. 最低:
  5196. </td>
  5197. <td style="padding-left: 2px; text-align: left;">
  5198. 1
  5199. </td>
  5200. </tr>
  5201. <tr>
  5202. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5203. 多个:
  5204. </td>
  5205. <td style="padding-left: 2px; text-align: left;">
  5206. 1
  5207. </td>
  5208. </tr>
  5209. </table>
  5210. </div>
  5211. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  5212. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5213. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuSCnQzQPdnwQw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuSCnQzQPdnwQw%3d%3d" target="_blank">详细信息</a>
  5214. </div>
  5215. </td><td>Mobile Processors
  5216. </td><td>FCBGA-1023
  5217. </td><td>Intel Core i7
  5218. </td><td>Sandy Bridge
  5219. </td><td>i7-2655LE
  5220. </td><td>Embedded
  5221. </td><td>2
  5222. </td><td>25 W
  5223. </td><td>2.2 GHz
  5224. </td><td>64 bit
  5225. </td><td>16 GB
  5226. </td><td>DDR3-1066/1333
  5227. </td><td>DMI
  5228. </td><td>5 GT/s
  5229. </td><td>4 MB
  5230. </td><td>
  5231. </td><td>Tray
  5232. </td>
  5233. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-CL806470180SR1VZ" data-index="23">
  5234. <td class="td-select" align="center">
  5235. <div style="padding: 5px 5px 0 5px;">
  5236. <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>
  5237. </div>
  5238. </td><td><a href='/ProductDetail/Intel/CL8064701830000S-R1VZ/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3bet0C0GjaZhME4k1BSioQw%3d%3d'><img title='Intel CL8064701830000S R1VZ' alt='Intel CL8064701830000S R1VZ' id=1208964909 src='/images/intel/sm/icore-i7.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/intel/images/icore-i7.jpg</div></a></td><td>
  5239. <div style="text-align:left;">
  5240. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CL8064701830000S-R1VZ/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3bet0C0GjaZhME4k1BSioQw%3d%3d">607-CL806470180SR1VZ</a><br />
  5241. <br />
  5242. <br />
  5243. </div></td><td>
  5244. <div class="mfrDiv">
  5245. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CL8064701830000S-R1VZ/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3bet0C0GjaZhME4k1BSioQw%3d%3d">CL8064701830000S R1VZ</a><br />
  5246. <br />
  5247. <div style="width: 100%; text-align: center;">
  5248. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  5249. </div>
  5250. <div style="width: 100%; text-align: center;">
  5251. </div>
  5252. </div>
  5253. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  5254. </td><td>CPU - 中央处理器 Core i7-4700EC Quad CR 2.7GHz FCBGA1364
  5255. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5256. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i7-4700ec-4702ec/">了解更多</a>
  5257. </div>
  5258. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5259. </div>
  5260. </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;Intel&quot;,&quot;607-CL806470180SR1VZ | CL8064701830000S R1VZ&quot;]);" href="http://ark.intel.com/products/75555/Intel-Core-i7-4700EC-Processor-8M-Cache-up-to-2_70-GHz?q=i7-4700EC" target="_blank">数据表</a>
  5261. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">15<br/>有库存</span>
  5262. <table>
  5263. <tr align="center">
  5264. <td style="padding-top: 5px">
  5265. </td>
  5266. </tr>
  5267. <tr align="center">
  5268. <td style="padding-top: 5px; padding-bottom: 5px">
  5269. </td>
  5270. </tr>
  5271. </table></td><td>
  5272. <table class="PriceBreaks" cellspacing="0" border="0">
  5273. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5274. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5275. </td>
  5276. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5277. </td>
  5278. </tr>
  5279. <tr>
  5280. <td class="PriceBreakQuantity">
  5281. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  5282. </td>
  5283. <td class="PriceBreakPrice">
  5284. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥3,673.5075</span>
  5285. </td>
  5286. </tr>
  5287. <tr>
  5288. <td class="PriceBreakQuantity">
  5289. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,2);">2:</a>
  5290. </td>
  5291. <td class="PriceBreakPrice">
  5292. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥3,624.5196</span>
  5293. </td>
  5294. </tr>
  5295. <tr>
  5296. <td class="PriceBreakQuantity">
  5297. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,5);">5:</a>
  5298. </td>
  5299. <td class="PriceBreakPrice">
  5300. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3,507.6249</span>
  5301. </td>
  5302. </tr>
  5303. <tr>
  5304. <td class="PriceBreakQuantity">
  5305. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  5306. </td>
  5307. <td class="PriceBreakPrice">
  5308. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3,398.0427</span>
  5309. </td>
  5310. </tr>
  5311. <tr>
  5312. <td class="PriceBreakQuantity">
  5313. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(21,25);">25:</a>
  5314. </td>
  5315. <td class="PriceBreakPrice">
  5316. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥3,356.0748</span>
  5317. </td>
  5318. </tr>
  5319. <tr>
  5320. <td><br /></td>
  5321. </tr>
  5322. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  5323. <td colspan="2" style="text-align: center;">
  5324. </td>
  5325. </tr>
  5326. </table>
  5327. </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;)">
  5328. <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 />
  5329. <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="购买 CL8064701830000S R1VZ" class="buy-button" /><br />
  5330. <table cellspacing="0" border="0" style="width: 100%;">
  5331. <tr>
  5332. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5333. 最低:
  5334. </td>
  5335. <td style="padding-left: 2px; text-align: left;">
  5336. 1
  5337. </td>
  5338. </tr>
  5339. <tr>
  5340. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5341. 多个:
  5342. </td>
  5343. <td style="padding-left: 2px; text-align: left;">
  5344. 1
  5345. </td>
  5346. </tr>
  5347. </table>
  5348. </div>
  5349. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  5350. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5351. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=PRO81gJLs76xxwxVF3yCoQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=PRO81gJLs76xxwxVF3yCoQ%3d%3d" target="_blank">详细信息</a>
  5352. </div>
  5353. </td><td>Mobile Processors
  5354. </td><td>FCBGA-1364
  5355. </td><td>Intel Core i7
  5356. </td><td>Haswell
  5357. </td><td>i7-4700EC
  5358. </td><td>Embedded
  5359. </td><td>4
  5360. </td><td>43 W
  5361. </td><td>2.7 GHz
  5362. </td><td>64 bit
  5363. </td><td>32 GB
  5364. </td><td>DDR3L-1333,1600
  5365. </td><td>DMI
  5366. </td><td>5 GT/s
  5367. </td><td>8 MB
  5368. </td><td>+ 100 C
  5369. </td><td>Tray
  5370. </td>
  5371. </tr><tr class="SearchResultsRowEven" data-partnumber="607-CM806460156SR1S6" data-index="24">
  5372. <td class="td-select" align="center">
  5373. <div style="padding: 5px 5px 0 5px;">
  5374. <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>
  5375. </div>
  5376. </td><td><a href='/ProductDetail/Intel/CM8064601561826S-R1S6/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3DtrtSLwr9CQUg331rBYKzA%3d%3d'><img title='Intel CM8064601561826S R1S6' alt='Intel CM8064601561826S R1S6' id=1208964923 src='/images/intel/sm/icore-i5.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/intel/images/icore-i5.jpg</div></a></td><td>
  5377. <div style="text-align:left;">
  5378. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CM8064601561826S-R1S6/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3DtrtSLwr9CQUg331rBYKzA%3d%3d">607-CM806460156SR1S6</a><br />
  5379. <br />
  5380. <br />
  5381. </div></td><td>
  5382. <div class="mfrDiv">
  5383. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CM8064601561826S-R1S6/?qs=sGAEpiMZZMvqxsBVy5Ziujb7paSHpnh3DtrtSLwr9CQUg331rBYKzA%3d%3d">CM8064601561826S R1S6</a><br />
  5384. <br />
  5385. <div style="width: 100%; text-align: center;">
  5386. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  5387. </div>
  5388. <div style="width: 100%; text-align: center;">
  5389. </div>
  5390. </div>
  5391. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  5392. </td><td>CPU - 中央处理器 Core i5-4590T Quad CR 3.0GHz FCLGA1150
  5393. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5394. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i5-4590s-4590t-processor/">了解更多</a>
  5395. </div>
  5396. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5397. </div>
  5398. </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;Intel&quot;,&quot;607-CM806460156SR1S6 | CM8064601561826S R1S6&quot;]);" href="http://ark.intel.com/products/78928/Intel-Core-i5-4590T-Processor-6M-Cache-up-to-3_00-GHz?q=i5-4590T" target="_blank">数据表</a>
  5399. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">48<br/>有库存</span>
  5400. <table>
  5401. <tr align="center">
  5402. <td style="padding-top: 5px">
  5403. </td>
  5404. </tr>
  5405. <tr align="center">
  5406. <td style="padding-top: 5px; padding-bottom: 5px">
  5407. </td>
  5408. </tr>
  5409. </table></td><td>
  5410. <table class="PriceBreaks" cellspacing="0" border="0">
  5411. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5412. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5413. </td>
  5414. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5415. </td>
  5416. </tr>
  5417. <tr>
  5418. <td class="PriceBreakQuantity">
  5419. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  5420. </td>
  5421. <td class="PriceBreakPrice">
  5422. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥1,941.4863</span>
  5423. </td>
  5424. </tr>
  5425. <tr>
  5426. <td class="PriceBreakQuantity">
  5427. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,5);">5:</a>
  5428. </td>
  5429. <td class="PriceBreakPrice">
  5430. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥1,862.7804</span>
  5431. </td>
  5432. </tr>
  5433. <tr>
  5434. <td class="PriceBreakQuantity">
  5435. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  5436. </td>
  5437. <td class="PriceBreakPrice">
  5438. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,778.6106</span>
  5439. </td>
  5440. </tr>
  5441. <tr>
  5442. <td class="PriceBreakQuantity">
  5443. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,50);">50:</a>
  5444. </td>
  5445. <td class="PriceBreakPrice">
  5446. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥1,723.0824</span>
  5447. </td>
  5448. </tr>
  5449. <tr>
  5450. <td><br /></td>
  5451. </tr>
  5452. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5453. <td colspan="2" style="text-align: center;">
  5454. </td>
  5455. </tr>
  5456. </table>
  5457. </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;)">
  5458. <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 />
  5459. <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="购买 CM8064601561826S R1S6" class="buy-button" /><br />
  5460. <table cellspacing="0" border="0" style="width: 100%;">
  5461. <tr>
  5462. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5463. 最低:
  5464. </td>
  5465. <td style="padding-left: 2px; text-align: left;">
  5466. 1
  5467. </td>
  5468. </tr>
  5469. <tr>
  5470. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5471. 多个:
  5472. </td>
  5473. <td style="padding-left: 2px; text-align: left;">
  5474. 1
  5475. </td>
  5476. </tr>
  5477. </table>
  5478. </div>
  5479. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  5480. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5481. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=PRO81gJLs76fsM470rVNrQ%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=PRO81gJLs76fsM470rVNrQ%3d%3d" target="_blank">详细信息</a>
  5482. </div>
  5483. </td><td>Desktop Processors
  5484. </td><td>FCLGA-1150
  5485. </td><td>Intel Core i5
  5486. </td><td>Haswell
  5487. </td><td>i5-4590T
  5488. </td><td>Embedded
  5489. </td><td>4
  5490. </td><td>35 W
  5491. </td><td>2 GHz
  5492. </td><td>64 bit
  5493. </td><td>32 GB
  5494. </td><td>DDR3L-1333,1600
  5495. </td><td>DMI2
  5496. </td><td>5 GT/s
  5497. </td><td>6 MB
  5498. </td><td>+ 66.35 C
  5499. </td><td>Tray
  5500. </td>
  5501. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-LE80537GF0484MS" data-index="25">
  5502. <td class="td-select" align="center">
  5503. <div style="padding: 5px 5px 0 5px;">
  5504. <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>
  5505. </div>
  5506. </td><td><a href='/ProductDetail/Intel/LE80537GF0484MS-LGFV/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUeje33oJDhPc%3d'><img title='Intel LE80537GF0484MS LGFV' alt='Intel LE80537GF0484MS LGFV' id=959859919 src='/images/intel/sm/core2-duo.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/intel/images/core2-duo.jpg</div></a></td><td>
  5507. <div style="text-align:left;">
  5508. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/LE80537GF0484MS-LGFV/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUeje33oJDhPc%3d">607-LE80537GF0484MS</a><br />
  5509. <br />
  5510. <br />
  5511. </div></td><td>
  5512. <div class="mfrDiv">
  5513. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/LE80537GF0484MS-LGFV/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUeje33oJDhPc%3d">LE80537GF0484MS LGFV</a><br />
  5514. <br />
  5515. <div style="width: 100%; text-align: center;">
  5516. </div>
  5517. <div style="width: 100%; text-align: center;">
  5518. </div>
  5519. </div>
  5520. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  5521. </td><td>CPU - 中央处理器 Core 2 T7400 Dual Core 2.16GHz PBGA479
  5522. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5523. </div>
  5524. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Intel&quot;,&quot;607-LE80537GF0484MS | LE80537GF0484MS LGFV&quot;]);" href="http://download.intel.com/design/mobile/datashts/31674505.pdf" target="_blank">数据表</a>
  5525. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">34<br/>有库存</span>
  5526. <table>
  5527. <tr align="center">
  5528. <td style="padding-top: 5px">
  5529. </td>
  5530. </tr>
  5531. <tr align="center">
  5532. <td style="padding-top: 5px; padding-bottom: 5px">
  5533. </td>
  5534. </tr>
  5535. </table></td><td>
  5536. <table class="PriceBreaks" cellspacing="0" border="0">
  5537. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5538. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5539. </td>
  5540. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5541. </td>
  5542. </tr>
  5543. <tr>
  5544. <td class="PriceBreakQuantity">
  5545. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  5546. </td>
  5547. <td class="PriceBreakPrice">
  5548. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥2,158.416</span>
  5549. </td>
  5550. </tr>
  5551. <tr>
  5552. <td class="PriceBreakQuantity">
  5553. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,5);">5:</a>
  5554. </td>
  5555. <td class="PriceBreakPrice">
  5556. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥2,070.8649</span>
  5557. </td>
  5558. </tr>
  5559. <tr>
  5560. <td class="PriceBreakQuantity">
  5561. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  5562. </td>
  5563. <td class="PriceBreakPrice">
  5564. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥1,977.3702</span>
  5565. </td>
  5566. </tr>
  5567. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_trViewMore">
  5568. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5569. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,50);">50:</a>
  5570. </td>
  5571. <td class="PriceBreakPrice">
  5572. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=607-LE80537GF0484MS&amp;quantity=50&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Intel&quot;,&quot;607-LE80537GF0484MS&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  5573. </td>
  5574. </tr>
  5575. <tr>
  5576. <td><br /></td>
  5577. </tr>
  5578. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  5579. <td colspan="2" style="text-align: center;">
  5580. </td>
  5581. </tr>
  5582. </table>
  5583. </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;)">
  5584. <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 />
  5585. <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="购买 LE80537GF0484MS LGFV" class="buy-button" /><br />
  5586. <table cellspacing="0" border="0" style="width: 100%;">
  5587. <tr>
  5588. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5589. 最低:
  5590. </td>
  5591. <td style="padding-left: 2px; text-align: left;">
  5592. 1
  5593. </td>
  5594. </tr>
  5595. <tr>
  5596. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5597. 多个:
  5598. </td>
  5599. <td style="padding-left: 2px; text-align: left;">
  5600. 1
  5601. </td>
  5602. </tr>
  5603. </table>
  5604. </div>
  5605. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  5606. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5607. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuTVaARRqqUS8Q%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuTVaARRqqUS8Q%3d%3d" target="_blank">详细信息</a>
  5608. </div>
  5609. </td><td>Mobile Processors
  5610. </td><td>PBGA-479
  5611. </td><td>Intel Core 2 Duo
  5612. </td><td>Merom
  5613. </td><td>T7400
  5614. </td><td>Embedded
  5615. </td><td>2
  5616. </td><td>34 W
  5617. </td><td>2.16 GHz
  5618. </td><td>64 bit
  5619. </td><td>
  5620. </td><td>
  5621. </td><td>FSB
  5622. </td><td>667 MHz
  5623. </td><td>4 MB
  5624. </td><td>
  5625. </td><td>Tray
  5626. </td>
  5627. </tr><tr class="SearchResultsRowEven" data-partnumber="607-CL806470151250SF" data-index="26">
  5628. <td class="td-select" align="center">
  5629. <div style="padding: 5px 5px 0 5px;">
  5630. <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>
  5631. </div>
  5632. </td><td><a href='/ProductDetail/Intel/CL8064701512503S-R18F/?qs=sGAEpiMZZMvqxsBVy5Zium1egUQEKa56F4hZo1WQmBk%3d'><img title='Intel CL8064701512503S R18F' alt='Intel CL8064701512503S R18F' id=998351909 src='/images/intel/sm/icore-i3.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/intel/images/icore-i3.jpg</div></a></td><td>
  5633. <div style="text-align:left;">
  5634. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/CL8064701512503S-R18F/?qs=sGAEpiMZZMvqxsBVy5Zium1egUQEKa56F4hZo1WQmBk%3d">607-CL806470151250SF</a><br />
  5635. <br />
  5636. <br />
  5637. </div></td><td>
  5638. <div class="mfrDiv">
  5639. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/CL8064701512503S-R18F/?qs=sGAEpiMZZMvqxsBVy5Zium1egUQEKa56F4hZo1WQmBk%3d">CL8064701512503S R18F</a><br />
  5640. <br />
  5641. <div style="width: 100%; text-align: center;">
  5642. </div>
  5643. <div style="width: 100%; text-align: center;">
  5644. </div>
  5645. </div>
  5646. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  5647. </td><td>CPU - 中央处理器 Core i3-4010Y Dual CR 1.3GHz FCBGA1168
  5648. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  5649. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../../new/Intel/intel-i3-4010u/">了解更多</a>
  5650. </div>
  5651. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5652. </div>
  5653. </td><td>
  5654. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">20<br/>有库存</span>
  5655. <table>
  5656. <tr align="center">
  5657. <td style="padding-top: 5px">
  5658. </td>
  5659. </tr>
  5660. <tr align="center">
  5661. <td style="padding-top: 5px; padding-bottom: 5px">
  5662. </td>
  5663. </tr>
  5664. </table></td><td>
  5665. <table class="PriceBreaks" cellspacing="0" border="0">
  5666. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5667. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5668. </td>
  5669. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5670. </td>
  5671. </tr>
  5672. <tr>
  5673. <td class="PriceBreakQuantity">
  5674. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  5675. </td>
  5676. <td class="PriceBreakPrice">
  5677. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥2,736.9108</span>
  5678. </td>
  5679. </tr>
  5680. <tr>
  5681. <td class="PriceBreakQuantity">
  5682. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,2);">2:</a>
  5683. </td>
  5684. <td class="PriceBreakPrice">
  5685. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥2,700.4068</span>
  5686. </td>
  5687. </tr>
  5688. <tr>
  5689. <td class="PriceBreakQuantity">
  5690. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,5);">5:</a>
  5691. </td>
  5692. <td class="PriceBreakPrice">
  5693. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥2,613.312</span>
  5694. </td>
  5695. </tr>
  5696. <tr>
  5697. <td class="PriceBreakQuantity">
  5698. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  5699. </td>
  5700. <td class="PriceBreakPrice">
  5701. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2,531.6811</span>
  5702. </td>
  5703. </tr>
  5704. <tr>
  5705. <td class="PriceBreakQuantity">
  5706. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(24,25);">25:</a>
  5707. </td>
  5708. <td class="PriceBreakPrice">
  5709. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2,500.4187</span>
  5710. </td>
  5711. </tr>
  5712. <tr>
  5713. <td><br /></td>
  5714. </tr>
  5715. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  5716. <td colspan="2" style="text-align: center;">
  5717. </td>
  5718. </tr>
  5719. </table>
  5720. </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;)">
  5721. <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 />
  5722. <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="购买 CL8064701512503S R18F" class="buy-button" /><br />
  5723. <table cellspacing="0" border="0" style="width: 100%;">
  5724. <tr>
  5725. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5726. 最低:
  5727. </td>
  5728. <td style="padding-left: 2px; text-align: left;">
  5729. 1
  5730. </td>
  5731. </tr>
  5732. <tr>
  5733. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5734. 多个:
  5735. </td>
  5736. <td style="padding-left: 2px; text-align: left;">
  5737. 1
  5738. </td>
  5739. </tr>
  5740. </table>
  5741. </div>
  5742. </td><td>
  5743. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlNotCompliant">
  5744. <br />
  5745. <br />
  5746. </div>
  5747. </td><td>Mobile Processors
  5748. </td><td>FCBGA-1168
  5749. </td><td>Intel Core i3
  5750. </td><td>Haswell
  5751. </td><td>i3-4010Y
  5752. </td><td>Non-Embedded
  5753. </td><td>2
  5754. </td><td>11.5 W
  5755. </td><td>1.3 GHz
  5756. </td><td>64 bit
  5757. </td><td>16 GB
  5758. </td><td>DDR3L-1333/1600, LPDDR3-1333/1600
  5759. </td><td>
  5760. </td><td>
  5761. </td><td>3 MB
  5762. </td><td>+ 100 C
  5763. </td><td>Tray
  5764. </td>
  5765. </tr><tr class="SearchResultsRowOdd" data-partnumber="607-LF80537NE0411MS" data-index="27">
  5766. <td class="td-select" align="center">
  5767. <div style="padding: 5px 5px 0 5px;">
  5768. <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>
  5769. </div>
  5770. </td><td><a href='/ProductDetail/Intel/LF80537NE0411MS-LAJ9/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUxvNmSfGzm8Q%3d'><img title='Intel LF80537NE0411MS LAJ9' alt='Intel LF80537NE0411MS LAJ9' id=959859957 src='/images/intel/sm/celeron.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/intel/images/celeron.jpg</div></a></td><td>
  5771. <div style="text-align:left;">
  5772. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../../ProductDetail/Intel/LF80537NE0411MS-LAJ9/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUxvNmSfGzm8Q%3d">607-LF80537NE0411MS</a><br />
  5773. <br />
  5774. <br />
  5775. </div></td><td>
  5776. <div class="mfrDiv">
  5777. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../../ProductDetail/Intel/LF80537NE0411MS-LAJ9/?qs=sGAEpiMZZMvqxsBVy5ZiuowErqth9imUxvNmSfGzm8Q%3d">LF80537NE0411MS LAJ9</a><br />
  5778. <br />
  5779. <div style="width: 100%; text-align: center;">
  5780. </div>
  5781. <div style="width: 100%; text-align: center;">
  5782. </div>
  5783. </div>
  5784. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../../Intel">Intel</a>
  5785. </td><td>CPU - 中央处理器 Celeron M 550 Sngl Core 2GHz PBGA478
  5786. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5787. </div>
  5788. </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;Intel&quot;,&quot;607-LF80537NE0411MS | LF80537NE0411MS LAJ9&quot;]);" href="http://ark.intel.com/products/31727/Intel-Celeron-Processor-550-1M-Cache-2_00-GHz-533-MHz-FSB" target="_blank">数据表</a>
  5789. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">100<br/>有库存</span>
  5790. <table>
  5791. <tr align="center">
  5792. <td style="padding-top: 5px">
  5793. </td>
  5794. </tr>
  5795. <tr align="center">
  5796. <td style="padding-top: 5px; padding-bottom: 5px">
  5797. </td>
  5798. </tr>
  5799. </table></td><td>
  5800. <table class="PriceBreaks" cellspacing="0" border="0">
  5801. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5802. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5803. </td>
  5804. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5805. </td>
  5806. </tr>
  5807. <tr>
  5808. <td class="PriceBreakQuantity">
  5809. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  5810. </td>
  5811. <td class="PriceBreakPrice">
  5812. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥553.1643</span>
  5813. </td>
  5814. </tr>
  5815. <tr>
  5816. <td class="PriceBreakQuantity">
  5817. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  5818. </td>
  5819. <td class="PriceBreakPrice">
  5820. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥537.9894</span>
  5821. </td>
  5822. </tr>
  5823. <tr>
  5824. <td class="PriceBreakQuantity">
  5825. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,50);">50:</a>
  5826. </td>
  5827. <td class="PriceBreakPrice">
  5828. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥516.8124</span>
  5829. </td>
  5830. </tr>
  5831. <tr>
  5832. <td class="PriceBreakQuantity">
  5833. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  5834. </td>
  5835. <td class="PriceBreakPrice">
  5836. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥506.7972</span>
  5837. </td>
  5838. </tr>
  5839. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5840. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5841. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,200);">200:</a>
  5842. </td>
  5843. <td class="PriceBreakPrice">
  5844. <a onclick="javascript:window.location=&quot;../../../../../../Quote/quote.aspx?mouserpartnumber=607-LF80537NE0411MS&amp;quantity=200&quot;;_gaq.push([&#39;_trackEvent&#39;,&#39;Quote Request&#39;,&quot;Intel&quot;,&quot;607-LF80537NE0411MS&quot;,1]);return false;" href="../../../../../../Quote/quote.aspx">报价</a>
  5845. </td>
  5846. </tr>
  5847. <tr>
  5848. <td><br /></td>
  5849. </tr>
  5850. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5851. <td colspan="2" style="text-align: center;">
  5852. </td>
  5853. </tr>
  5854. </table>
  5855. </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;)">
  5856. <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 />
  5857. <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="购买 LF80537NE0411MS LAJ9" class="buy-button" /><br />
  5858. <table cellspacing="0" border="0" style="width: 100%;">
  5859. <tr>
  5860. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5861. 最低:
  5862. </td>
  5863. <td style="padding-left: 2px; text-align: left;">
  5864. 1
  5865. </td>
  5866. </tr>
  5867. <tr>
  5868. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5869. 多个:
  5870. </td>
  5871. <td style="padding-left: 2px; text-align: left;">
  5872. 1
  5873. </td>
  5874. </tr>
  5875. </table>
  5876. </div>
  5877. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  5878. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5879. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuQQ%2fC2kpogwMw%3d%3d&#39;);return false;" href="../../../../../../Search/include/RoHSCompliant.aspx?qs=kN5F4WmgQuQQ%2fC2kpogwMw%3d%3d" target="_blank">详细信息</a>
  5880. </div>
  5881. </td><td>Mobile Processors
  5882. </td><td>PBGA-478
  5883. </td><td>Intel Celeron M
  5884. </td><td>Merom
  5885. </td><td>550
  5886. </td><td>Embedded
  5887. </td><td>1
  5888. </td><td>31 W
  5889. </td><td>2 GHz
  5890. </td><td>64 bit
  5891. </td><td>
  5892. </td><td>
  5893. </td><td>FSB
  5894. </td><td>533 MHz
  5895. </td><td>1 MB
  5896. </td><td>
  5897. </td><td>Tray
  5898. </td>
  5899. </tr>
  5900. </table>
  5901. </div>
  5902. </td>
  5903. </tr>
  5904. <tr>
  5905. <td class="tdSearchResultsPagingBottom">
  5906. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  5907. <tr>
  5908. <td>
  5909. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  5910. </td>
  5911. <td>
  5912. <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" />
  5913. </td>
  5914. <td>
  5915. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  5916. </td>
  5917. <td style="padding-left: 40px;">
  5918. <div class="floatrightpager">
  5919. <span class="bold">
  5920. 页面:
  5921. </span>
  5922. <span id="ctl00_ContentMain_PagerBottom"><span id="ctl00_ContentMain_PagerBottom_lblCurrent" class="paging-current">1</span><a id="ctl00_ContentMain_PagerBottom_1" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_23" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=575">24</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe/?No=25">下一页</a></span>
  5923. </div>
  5924. </td>
  5925. </tr>
  5926. </table>
  5927. </td>
  5928. </tr>
  5929. <tr>
  5930. <td>
  5931. <!--- Search Tips --->
  5932. </td>
  5933. </tr>
  5934. <tr>
  5935. <td>
  5936. <!-- SOP Section 2 -->
  5937. </td>
  5938. </tr>
  5939. </table>
  5940. </div>
  5941. </div><!-- #liProducts-->
  5942. <!-- Datasheets tab -->
  5943. <!-- #liDatasheets-->
  5944. <!-- Images tab -->
  5945. <!-- #liImages-->
  5946. <!-- Newest Products tab -->
  5947. <!-- #liProducts-->
  5948. </div>
  5949. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  5950. <div>
  5951. <span class="popular-searches-label">热门搜索:</span>
  5952. <span class="popular-searches-links"><a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe?P=1yy2mki&pop=7ndx' onclick="ga('send','event','Popular Search Refine Click','CPU - Central Processing Units','Intel Core i7 CPU - Central Processing Units')">Intel Core i7 CPU - 中央处理器</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/Intel-Xeon-Core/_/N-baqhe?P=1yy24fu&pop=hgg7' onclick="ga('send','event','Popular Search Refine Click','CPU - Central Processing Units','Intel Xeon CPU - Central Processing Units')">Intel Xeon CPU - 中央处理器</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe?P=1yocdof&pop=e411' onclick="ga('send','event','Popular Search Refine Click','CPU - Central Processing Units','Cherry Trail CPU - Central Processing Units')">Cherry Trail CPU - 中央处理器</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe?P=1yy3y2d&pop=55q3' onclick="ga('send','event','Popular Search Refine Click','CPU - Central Processing Units','Server Processors CPU - Central Processing Units')">Server Processors CPU - 中央处理器</a> , <a href='/Semi-conducteurs/Circuits-intégrés-CI/Processeurs-et-contrôleurs-intégrés/CPU-Processeurs/_/N-baqhe/?P=1yy6epaZ1yy2mkh&pop=nh9z&pop=wsn7' onclick="ga('send','event','Popular Search Refine Click','CPU - Central Processing Units','Intel Core i5 FCBGA-1168 CPU - Central Processing Units')">Intel Core i5 FCBGA-1168 CPU - 中央处理器</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units/_/N-baqhe?P=1yy2mkg&pop=bnc6' onclick="ga('send','event','Popular Search Refine Click','CPU - Central Processing Units','Intel Core i3 CPU - Central Processing Units')">Intel Core i3 CPU - 中央处理器</a></span>
  5953. </div>
  5954. </div>
  5955. <div style="visibility: hidden;">
  5956. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  5957. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  5958. <span id="SearchResultCount">589</span>
  5959. <div id="disclaimer">
  5960. 图像仅供参考<br/>请参阅产品规格</div>
  5961. </div>
  5962. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Integrated-Circuits-ICs/Embedded-Processors-Controllers/CPU-Central-Processing-Units" />
  5963. <script type="text/javascript" src='../../../../../../javascript/ProductImage.js'></script>
  5964. <script type="text/javascript" src='../../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  5965. <script type="text/javascript" src='../../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  5966. <!--[if gte IE 9]><!-->
  5967. <script type="text/javascript" src='../../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  5968. <!--<![endif]-->
  5969. <!--[if lt IE 9]>
  5970. <script type="text/javascript" src='../../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  5971. <![endif]-->
  5972. <script type="text/javascript" src='../../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  5973. <script type="text/javascript">
  5974. var subdomain = 'cn2';
  5975. </script>
  5976. </div>
  5977. <div class="aspNetHidden">
  5978. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  5979. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  5980. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  5981. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  5982. </div>
  5983. <script type="text/javascript">
  5984. //<![CDATA[
  5985. var mfrIDsArray = new Array;
  5986. //]]>
  5987. </script>
  5988. <script src='../../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  5989. <script type="text/javascript">
  5990. //<![CDATA[
  5991. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  5992. </script>
  5993. <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>
  5994. <script type="text/javascript">
  5995. //<![CDATA[
  5996. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  5997. <!-- Google Code for Conversion Page Remarketing List -->
  5998. <!--
  5999. var google_conversion_id = 1046090287;
  6000. var google_conversion_language = "en";
  6001. var google_conversion_format = "3";
  6002. var google_conversion_color = "666666";
  6003. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  6004. var google_conversion_value = 0;
  6005. //-->
  6006. </script>
  6007. <div class="ga-remarketing">
  6008. <script type="text/javascript"
  6009. src="http://www.googleadservices.com/pagead/conversion.js">
  6010. </script>
  6011. </div>
  6012. <noscript>
  6013. <div style="display:inline;">
  6014. <img height="1" width="1" style="border-style:none;" alt=""
  6015. src="http://www.googleadservices.com/pagead/conversion/1046090287/?label=9WmrCMOVxQEQr6To8gM&amp;guid=ON&amp;script=0"/>
  6016. </div>
  6017. </noscript>
  6018. <script type="text/javascript">
  6019. //]]>
  6020. </script>
  6021. <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>
  6022. <script type="text/javascript">
  6023. //<![CDATA[
  6024. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$688640^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688606^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688418^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000861^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000000657^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000863^ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1000000877^ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$1000000874^ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$1000000389^ctl00$ContentMain$uc5$AttributeCategoryList$ctl10$1000000426^ctl00$ContentMain$uc5$AttributeCategoryList$ctl11$688521^ctl00$ContentMain$uc5$AttributeCategoryList$ctl12$688522^ctl00$ContentMain$uc5$AttributeCategoryList$ctl13$1000000883^ctl00$ContentMain$uc5$AttributeCategoryList$ctl14$1000000882^ctl00$ContentMain$uc5$AttributeCategoryList$ctl15$1000000990^ctl00$ContentMain$uc5$AttributeCategoryList$ctl16$1000000314^ctl00$ContentMain$uc5$AttributeCategoryList$ctl17$688610';
  6025. theForm.oldSubmit = theForm.submit;
  6026. theForm.submit = WebForm_SaveScrollPositionSubmit;
  6027. theForm.oldOnSubmit = theForm.onsubmit;
  6028. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  6029. //]]>
  6030. </script>
  6031. </form>
  6032. <div id="content-container2" class="hidden">
  6033. <div id="content-fixed-width2" class="content-fixed-width">
  6034. </div>
  6035. </div>
  6036. <div id="wideFooter" class="wideFooter">
  6037. <div id="footer" class="container">
  6038. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB06|20160304.2" />
  6039. <div id="ft_table1">
  6040. <div class="row">
  6041. <div class="col-xs-12">
  6042. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  6043. <div class="floatleft padding5right">
  6044. <strong class="h3">
  6045. 快速电子邮件注册</strong>&nbsp;&nbsp;
  6046. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  6047. </div>
  6048. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  6049. 提交
  6050. </a>
  6051. </div>
  6052. <div id="ft_icons" class="ft_icons">
  6053. <div id="ft_social">
  6054. <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>
  6055. <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>
  6056. <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>
  6057. <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">
  6058. <div class="ico-social fb"></div>
  6059. </a>
  6060. <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">
  6061. <div class="ico-social tw"></div>
  6062. </a>
  6063. <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">
  6064. <div class="ico-social rss"></div>
  6065. </a>
  6066. <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">
  6067. <div class="ico-social yt"></div>
  6068. </a>
  6069. <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">
  6070. <div class="ico-social gp"></div>
  6071. </a>
  6072. <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">
  6073. <div class="ico-social ln"></div>
  6074. </a>
  6075. <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">
  6076. <div class="ico-social sb"></div>
  6077. </a>
  6078. <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">
  6079. <div class="ico-social blog"></div>
  6080. </a>
  6081. </div>
  6082. </div>
  6083. </div>
  6084. </div>
  6085. </div>
  6086. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  6087. <div class="ft_wrapper">
  6088. <div id="ft_links" class="row">
  6089. <div class="col-xs-3 paddingBtm10 hidden-xs">
  6090. <strong class="paddingTopBtm10 inline-block">
  6091. 公司</strong>
  6092. <ul>
  6093. <li>
  6094. <a id="ctl00_Footer1_lnk26" href="../../../../../../aboutus/">关于我们</a></li>
  6095. <li>
  6096. <a id="ctl00_Footer1_lnk28" href="../../../../../../educationalsales/">教育销售</a></li>
  6097. <li>
  6098. <a id="ctl00_Footer1_lnk31" href="../../../../../../pressroom/">新闻中心</a></li>
  6099. <li>
  6100. <a id="ctl00_Footer1_lnk32" href="../../../../../../careers/">Mouser 工作机会</a></li>
  6101. <li>
  6102. <a id="ctl00_Footer1_lnk29" href="../../../../../../quality/">品质保证</a></li>
  6103. <li>
  6104. <a id="ctl00_Footer1_lnk30" href="../../../../../../environmental/">环境保护</a></li>
  6105. </ul>
  6106. </div>
  6107. <div class="col-xs-3 hidden-xs">
  6108. <strong class="paddingTopBtm10 inline-block">
  6109. 快速链接</strong>
  6110. <ul>
  6111. <li><a id="A7" href="/blog">
  6112. Mouser博客</a></li>
  6113. <li>
  6114. <a id="ctl00_Footer1_hlnk1" href="../../../../../../new/">最新产品</a></li>
  6115. <li>
  6116. <a id="ctl00_Footer1_hlnk2" href="../../../../../../new/products/">新产品</a></li>
  6117. <li>
  6118. <a id="ctl00_Footer1_hlnk3" href="../../../../../../applications/">新技术</a></li>
  6119. </ul>
  6120. </div>
  6121. <div class="col-xs-12 col-sm-3">
  6122. <strong class="paddingTopBtm10 inline-block">
  6123. 支持</strong>
  6124. <ul>
  6125. <li><a id="A3" href="/feedback.aspx">
  6126. 反馈</a></li>
  6127. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  6128. 帮助</a></li>
  6129. <li>
  6130. <a id="ctl00_Footer1_lnk27" href="../../../../../../contact/">联系我们</a></li>
  6131. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  6132. 浏览器支持</a></li>
  6133. <li><a id="A6" href="/cookie-policy/">
  6134. Cookie政策</a></li>
  6135. </ul>
  6136. </div>
  6137. <div class="col-xs-12 col-sm-3">
  6138. <strong class="paddingTopBtm10 inline-block">
  6139. 昴氏(上海)电子贸易有限公司</strong>
  6140. <ul>
  6141. <li>
  6142. <h4>
  6143. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  6144. </li>
  6145. </ul>
  6146. </div>
  6147. </div>
  6148. </div>
  6149. </div>
  6150. <div class="row">
  6151. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  6152. <div id="ft_copy">
  6153. <span class="ft_terms">
  6154. <a id="A1" href="/privacypolicy/">
  6155. 隐私政策</a>
  6156. &nbsp;&nbsp;|&nbsp;&nbsp;
  6157. <a id="href3" href="/saleterms/">
  6158. 销售条款</a>
  6159. <br />
  6160. </span>
  6161. <span class="ft_copyright">
  6162. 版权所有©2016 Mouser Electronics, Inc
  6163. |
  6164. 沪ICP备15042575号-1
  6165. <br />
  6166. </span>
  6167. <span class="ft_trade">
  6168. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  6169. </span>
  6170. <span class="ft_hq">
  6171. Corporate headquarters and logistics center in Mansfield, Texas USA.
  6172. </span>
  6173. <br />
  6174. <span class="ft_ClassicMobile">
  6175. <strong>
  6176. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  6177. </span>
  6178. </div>
  6179. </div>
  6180. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  6181. <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>
  6182. <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>
  6183. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  6184. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  6185. </a>
  6186. <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>
  6187. <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;
  6188. </a>
  6189. </div>
  6190. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  6191. <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>
  6192. <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>
  6193. <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>
  6194. <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>
  6195. </div>
  6196. </div>
  6197. <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>
  6198. <script type="text/javascript">
  6199. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  6200. </script>
  6201. </div>
  6202. </div>
  6203. <script src="../../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  6204. <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>
  6205. </body>
  6206. </html>