22.html 410 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708
  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_7ba82f96-3da5-418f-8a16-68b4c05dc86d-45084-419099';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. 音频 IC | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应音频 IC 。Mouser提供音频 IC 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="音频 IC" /><meta name="verify-v1" content="bhrmPa5uloYbiuM+lDu4z+y0qUGeKGW5FfFMprQAqlU=" /><meta name="viewport" content="width=1000, initial-scale=1" /><meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
  38. <!-- BASE STYLE SHEET -->
  39. <link rel="shortcut icon" href="../../../../../favicon.ico" /><link rel="alternate" type="application/rss+xml" title="RSS" href="../../../../../rss/rss.xml" />
  40. <!--[if IE 7]>
  41. <link rel="stylesheet" type="text/css" href="../../../../../css/ie7.css" />
  42. <![endif]-->
  43. <!--[if IE 8]>
  44. <link rel="stylesheet" type="text/css" href="../../../../../css/ie8.css" />
  45. <![endif]-->
  46. <!--[if IE 9]>
  47. <link rel="stylesheet" type="text/css" href="../../../../../css/ie9.css" />
  48. <![endif]-->
  49. <script type="text/javascript">
  50. function OpenBackordered(URL) {
  51. var MsgWindow;
  52. MsgWindow = window.open(URL, "MsgWindow", "scrollbars=1,height=500,width=650,menubar=0,resizable=1");
  53. }
  54. </script>
  55. <script type="text/javascript"> var _gaq = _gaq || [];var pluginUrl ='//www.google-analytics.com/plugins/ga/inpage_linkid.js';_gaq.push(['_require', 'inpage_linkid', pluginUrl]); _gaq.push(['_setAccount', "UA-521079-1"]);_gaq.push(['_setDomainName', "mouser.cn"]);_gaq.push(['_setAllowLinker', true]);_gaq.push(['_setAllowAnchor', true]);_gaq.push(["_setCustomVar",1,"Language","zh-CN",3]);_gaq.push(["_setCustomVar",30,"s35h","cd4nWxsvc3rxRrsD8PyDkdksLqRY1Yx9VpmkTmEuXsg=",2]);_gaq.push(["_setCustomVar",31,"Cart","915c2dd0-4d07-4820-a0d4-ef67a1c747b8",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA126AA195",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '595-OPA1622IDRCT',
  65. 'name': 'Audio Amplifiers SoundPlus High-Performance, Low THD+N, Bipolar-Input Audio Operational Amplifier',
  66. 'category': 'Audio Amplifiers',
  67. 'brand': 'Texas Instruments',
  68. 'variant': 'OPA1622IDRCT',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '595-TPA3251D2DDV',
  74. 'name': 'Audio Amplifiers TPA3251D2 High Performance 175W Stereo (BTL) Feedback Class-D Audio 44-HTSSOP 0 to 70',
  75. 'category': 'Audio Amplifiers',
  76. 'brand': 'Texas Instruments',
  77. 'variant': 'TPA3251D2DDV',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '595-TPA3144D2PWPR',
  83. 'name': 'Audio Amplifiers 6-W Inductor Free Stereo (BTL) Class-D Audio Amplifier with Ultra Low EMI and AGL 28-HTSSOP -40 to 85',
  84. 'category': 'Audio Amplifiers',
  85. 'brand': 'Texas Instruments',
  86. 'variant': 'TPA3144D2PWPR',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '755-BD37534FV-E2',
  92. 'name': 'Audio DSPs Sound Processor For Car Audio 28-Pin SSOP-B T/R',
  93. 'category': 'Audio DSPs',
  94. 'brand': 'ROHM Semiconductor',
  95. 'variant': 'BD37534FV-E2',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '595-TAS2555YZT',
  101. 'name': 'Audio Amplifiers 5.7W Class-D Mono Audio Amplifier with Speaker Protection 42-DSBGA -40 to 85',
  102. 'category': 'Audio Amplifiers',
  103. 'brand': 'Texas Instruments',
  104. 'variant': 'TAS2555YZT',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '595-TPA3116D2QDADRQ1',
  110. 'name': 'Audio Amplifiers 2-Ch, 50-W Analog Input Class-D Audio Amplifier 32-HTSSOP -40 to 125',
  111. 'category': 'Audio Amplifiers',
  112. 'brand': 'Texas Instruments',
  113. 'variant': 'TPA3116D2QDADRQ1',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '595-TPA3140D2PWPR',
  119. 'name': 'Audio Amplifiers Inductor Free Stereo (BTL) 10W Class-D Audio Amplifier with ultra low EMI and Auto Gain Limiter 28-HTSSOP -40 to 85',
  120. 'category': 'Audio Amplifiers',
  121. 'brand': 'Texas Instruments',
  122. 'variant': 'TPA3140D2PWPR',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '595-TPA3118D2QDAPRQ1',
  128. 'name': 'Audio Amplifiers 2-Ch, 30-W Analog Input Class-D Audio Amplifier 32-HTSSOP -40 to 125',
  129. 'category': 'Audio Amplifiers',
  130. 'brand': 'Texas Instruments',
  131. 'variant': 'TPA3118D2QDAPRQ1',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '595-TPA3140D2PWP',
  137. 'name': 'Audio Amplifiers 10W Class-D Audio Amp',
  138. 'category': 'Audio Amplifiers',
  139. 'brand': 'Texas Instruments',
  140. 'variant': 'TPA3140D2PWP',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '621-PAM8905PZR',
  146. 'name': 'Audio Amplifiers Audio Low Volt Peizo Sounder Driver',
  147. 'category': 'Audio Amplifiers',
  148. 'brand': 'Diodes Incorporated',
  149. 'variant': 'PAM8905PZR',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '621-PAM8945PJR',
  155. 'name': 'Audio Amplifiers 4.0W Class-D Audio 4ohm 2.8 to 5.2V',
  156. 'category': 'Audio Amplifiers',
  157. 'brand': 'Diodes Incorporated',
  158. 'variant': 'PAM8945PJR',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '595-TPA3144D2PWP',
  164. 'name': 'Audio Amplifiers 6-W Inductor Free Stereo (BTL) Class-D Audio Amplifier with Ultra Low EMI and AGL 28-HTSSOP -40 to 85',
  165. 'category': 'Audio Amplifiers',
  166. 'brand': 'Texas Instruments',
  167. 'variant': 'TPA3144D2PWP',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '595-OPA2134UA/2K5',
  173. 'name': 'Audio Amplifiers SoundPlus Hi-Perf Aud Oper Amp',
  174. 'category': 'Audio Amplifiers',
  175. 'brand': 'Texas Instruments',
  176. 'variant': 'OPA2134UA/2K5',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '595-PCM5102APWR',
  182. 'name': 'Audio D/A Converter ICs 2VRMS DirectPath 112 dB Audio Stereo DAC',
  183. 'category': 'Audio D/A Converter ICs',
  184. 'brand': 'Texas Instruments',
  185. 'variant': 'PCM5102APWR',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '777-CS496112-CQZ',
  191. 'name': 'Audio DSPs 8x8 CobraNet Audio Network Processor',
  192. 'category': 'Audio DSPs',
  193. 'brand': 'Cirrus Logic',
  194. 'variant': 'CS496112-CQZ',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '238-WM8737CLGEFL',
  200. 'name': 'Audio A/D Converter ICs Stereo ADC Low Power',
  201. 'category': 'Audio A/D Converter ICs',
  202. 'brand': 'Cirrus Logic',
  203. 'variant': 'WM8737CLGEFL',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '584-AD1866RZ',
  209. 'name': 'Audio D/A Converter ICs IC +5V 116-Bit Audio',
  210. 'category': 'Audio D/A Converter ICs',
  211. 'brand': 'Analog Devices',
  212. 'variant': 'AD1866RZ',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '926-LM48511SQ/NOPB',
  218. 'name': 'Audio Amplifiers 3W Mono Class D Audio Pwr Amp',
  219. 'category': 'Audio Amplifiers',
  220. 'brand': 'Texas Instruments',
  221. 'variant': 'LM48511SQ/NOPB',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '595-TPA5050RSAR',
  227. 'name': 'Audio DSPs St Dig Aud Delay Proc',
  228. 'category': 'Audio DSPs',
  229. 'brand': 'Texas Instruments',
  230. 'variant': 'TPA5050RSAR',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '595-OPA2134PA',
  236. 'name': 'Audio Amplifiers SoundPlus(TM) Hi-Perf Aud Oper Amp',
  237. 'category': 'Audio Amplifiers',
  238. 'brand': 'Texas Instruments',
  239. 'variant': 'OPA2134PA',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '926-LM3886TF/NOPB',
  245. 'name': 'Audio Amplifiers HIGH-PERF 68W AUDIO PWR AMP',
  246. 'category': 'Audio Amplifiers',
  247. 'brand': 'Texas Instruments',
  248. 'variant': 'LM3886TF/NOPB',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '584-ADAU1701JSTZ',
  254. 'name': 'Audio DSPs 28-/56-Bit Audio Processor',
  255. 'category': 'Audio DSPs',
  256. 'brand': 'Analog Devices',
  257. 'variant': 'ADAU1701JSTZ',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '777-CS5368-CQZ',
  263. 'name': 'Audio A/D Converter ICs 114dB 192kHz 8-Ch ADC w/TDM Interface',
  264. 'category': 'Audio A/D Converter ICs',
  265. 'brand': 'Cirrus Logic',
  266. 'variant': 'CS5368-CQZ',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '926-LME49720HA/NOPB',
  272. 'name': 'Audio Amplifiers Dual Hi Fidelity Audio OP Amp',
  273. 'category': 'Audio Amplifiers',
  274. 'brand': 'Texas Instruments',
  275. 'variant': 'LME49720HA/NOPB',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '777-CS5364-CQZ',
  281. 'name': 'Audio A/D Converter ICs 114dB 192kHz 4-Ch ADC w/TDM Interface',
  282. 'category': 'Audio A/D Converter ICs',
  283. 'brand': 'Cirrus Logic',
  284. 'variant': 'CS5364-CQZ',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','cd4nWxsvc3rxRrsD8PyDkdksLqRY1Yx9VpmkTmEuXsg=');
  290. ga('set','dimension31','915c2dd0-4d07-4820-a0d4-ef67a1c747b8');
  291. ga('set','dimension13','163AA125AA126AA195');
  292. ga('set','metric2',3431);
  293. ga('set','dimension5','Audio ICs');
  294. ga('set','dimension48','6j740');
  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/Audio-ICs/_/N-6j740/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740" rel="canonical" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740" /><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/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/" /><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/Audio-ICs/_/N-6j740/" 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='10973376';
  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='10973376';var baseDomain = 'mouser.cn';var baseUrl = '/';function OpenRoHSPopup(url) {
  343. var left = (screen.width / 2) - (800 / 2);var top = (screen.height / 2) - (505 / 2); var msgWindow = window.open(url,'MsgWindow','height=505,width=800,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0');
  344. }
  345. function OpenPTCWindow(url) {var left = (screen.width / 2) - (542 / 2);var top = (screen.height / 2) - (531 / 2);
  346. window.open(url, "popup", "height=488,width=454,top="+top+",left="+left+",scrollbars=1,resizable=1,menubar=0");
  347. }
  348. function GenerateClientID(prefix, i, suffix) {
  349. if (i < 10) { return prefix + '0' + String(i) + suffix; }
  350. else { return prefix + String(i) + suffix; }
  351. }
  352. var checked = false;
  353. function SelectAll() {
  354. checked = !checked;
  355. var i = 3;
  356. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  357. while (i < 29) {
  358. if (chkSelect != null) chkSelect.checked = checked;
  359. i = i + 1;
  360. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  361. }
  362. }
  363. function IsAllChecked(checked) {
  364. var i = 3;
  365. var chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  366. while (i < 29) {
  367. if (chkSelect != null && chkSelect.checked != checked) return false;
  368. i = i + 1;
  369. chkSelect = document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', i, '_chkSelect'));
  370. }
  371. return true;
  372. }
  373. function IsAnyChecked(checked) {
  374. return !IsAllChecked(!checked);
  375. }
  376. function SelectRow(row, checked) {
  377. document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', row + 2, '_chkSelect')).checked = checked;
  378. }
  379. function RowSelected(index, checked) { }
  380. function GetQuantityTextboxByRow(row) {
  381. return GetQuantityTextboxByIndex(row + 2);
  382. }
  383. function GetQuantityTextboxByIndex(index) {
  384. return document.getElementById(GenerateClientID('ctl00_ContentMain_SearchResultsGrid_grid_ctl', index, '_ctl08_txtQuantity'));
  385. }
  386. function SelectQuantity(row, quantity) {
  387. txtQuantity = GetQuantityTextboxByRow(row);
  388. if (txtQuantity == null) { return; }
  389. txtQuantity.value = quantity;
  390. SelectRow(row, true);
  391. }
  392. var qtyRegEx = /^([0]|\s)*$/;
  393. function IsQuantityEmptyOrZero(quantity) {
  394. return qtyRegEx.test(quantity);
  395. }
  396. function QuantityChanged(row, quantity) {
  397. SelectRow(row, !IsQuantityEmptyOrZero(quantity));
  398. }
  399. var QuantityRowSelectedBase = RowSelected;
  400. function QuantityRowSelected(index, checked) {
  401. QuantityRowSelectedBase(index, checked);
  402. txtQuantity = GetQuantityTextboxByIndex(index);
  403. if (txtQuantity == null) { return; }
  404. if (checked && IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = '1'; }
  405. else if (!checked && !IsQuantityEmptyOrZero(txtQuantity.value)) { txtQuantity.value = ''; }
  406. }
  407. RowSelected = QuantityRowSelected;
  408. //]]>
  409. </script>
  410. <script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yLZiFX7sHlbDXYG7grp_ShaHv69VIAEOcpM4TN9lauhC0X7ygOmvbN9UoBDJp9Fxpp070ZuaWnHq0iGu2wrMiqeKRHSQRp1JtxMBc1rFMtqKP3k9luRsKE2zUCEe5vPEtaEcaYs1&amp;t=5f9d5645" type="text/javascript"></script>
  411. <script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadNDaKN5iB6DZajN3yaqKXlja_PtqFi29BLm2xLtzx_CFBg9ewsT8N0e16Y-T0mixPBOugHEUl7mcCpeiqN8QyENMYH_4VU249VWR4nBfm5bTbFpPAS0ObKbPyc9VIH6VCmU2vz81&amp;t=5f9d5645" type="text/javascript"></script>
  412. <div id="cookie-notification-bar">
  413. </div>
  414. <div id="zone34-banner" class="banmanzone" data-zone-id="34" data-kw="newVisitor"></div>
  415. <div id="wideGab" class="wideGab">
  416. <div id="ctl00_globalActionBar" class="global-action-bar">
  417. <div id="gab-container" class="container">
  418. <div id="contact" class="row">
  419. <div class="topPadding col-xs-6">
  420. <div class="inline-block">
  421. <a href="http://www.mouser.cn/contact/" id="ctl00_gab1_A1" class="smallgrey contactInfo" title="联系我们">
  422. <span id="ctl00_gab1_lbl2">联系Mouser (上海)</span>&nbsp;
  423. 400-821-6111</a><div style="display: none;"><a href="xxrrtbuu.html" id="yxezcaswaauztuaqaww" rel="file">ubqtbausacydzezvysubqtb</a></div>
  424. &nbsp;&nbsp;&nbsp;&nbsp;<span class="pipe">|</span>&nbsp;&nbsp;&nbsp;&nbsp;
  425. <a href="http://www.mouser.cn/feedback.aspx" id="ctl00_gab1_AF" class="smallgrey imgFeedBack" title="反馈">
  426. 反馈</a>
  427. </div>
  428. <span class="qqIcon inline-block">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script charset='utf-8' type='text/javascript' src='http://wpa.b.qq.com/cgi/wpa.php?key=XzkzODAwMTY0Nl83MDM1OV80MDA4MjE2MTExXw'></script>
  429. </span>&nbsp;&nbsp;
  430. </div>
  431. <div class="col-xs-6 align-right">
  432. <div id="tdImg" class="inline-block topPadding9px">
  433. <a href="http://www.mouser.cn/Cart/Cart.aspx" id="ctl00_gab1_A3" onclick="return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" class="smallgrey">
  434. <img src="/Images/global-cart-icon.png" class="visualAttributeImage" /></a>
  435. <a id="ctl00_gab1_miniCarthypLink" class="padding10Right" onclick="javascript:return MiniCart.ViewCartButton(&#39;Cart Hover&#39;,&#39;Global Action Bar&#39;);" href="http://www.mouser.cn/Cart/Cart.aspx">购物车</a>
  436. </div>
  437. <div class="topPadding inline-block">
  438. <span class="pipe">|</span>&nbsp;&nbsp;&nbsp;
  439. <a id="ctl00_gab1_A2" title="更改位置" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7DNi1Ndv7IX9WBLXG8XVVC08vjUTBOT%252btYjET22qwmIys%3d">更改国家</a>
  440. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7DNi1Ndv7IX9WBLXG8XVVC08vjUTBOT%252btYjET22qwmIys%3d"><img id="ctl00_gab1_img7" class="visualAttributeImage" src="../../../../../images/international/flags/cn2.gif" alt="更改位置" style="border-width: 1px;" /></a>
  441. <input type="hidden" name="ctl00$gab1$hidSelectedCurrency" id="ctl00_gab1_hidSelectedCurrency" value="-1" />
  442. <span id="ctl00_gab1_lbl1">RMB</span>
  443. </div>
  444. </div>
  445. </div>
  446. </div>
  447. <div style="clear: both;"></div>
  448. <a href="#TB_inline?height=440&width=400&inlineId=divCurrencyPopup&modal=true" id="tblink"
  449. class="thickbox"></a>
  450. <div id="divCurrencyPopup" class="currency-popup">
  451. <div class="currency-close">
  452. <a href="javascript:void(0)" title="Close Window" onclick="javascript:CloseCurrencyPopup();">&nbsp;</a>
  453. </div>
  454. <div>
  455. <div id="popupHeader" style="width:auto;"><img id="ctl00_gab1_uc1_imgFlag" src="../../../../../images/international/flags/cn2.gif" alt="中国" />&nbsp;<span id="ctl00_gab1_uc1_lblCountry">中国</span></div>
  456. <br/>
  457. <div style="padding: 0 20px 0 20px">
  458. <span id="ctl00_gab1_uc1_lblInstructions">请确认您选择的货币:</span><br />
  459. <br />
  460. <table width="95%">
  461. <tr>
  462. <td width="20%">
  463. <input type="submit" name="ctl00$gab1$uc1$rptCurrencies$ctl00$btnCurrency" value="RMB" id="ctl00_gab1_uc1_rptCurrencies_ctl00_btnCurrency" class="button" />
  464. </td>
  465. <td>
  466. <strong><span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblCurrencyPluralName">人民币</span></strong>
  467. <br/>
  468. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblIncoterms">国际贸易术语:DDP<br /></span>
  469. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblShippingTerms">All prices <u>include</u> duty and customs fees.<br /></span>
  470. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblFreeShipping"></span>
  471. <span id="ctl00_gab1_uc1_rptCurrencies_ctl00_lblPaymentTerms"></span>
  472. </td>
  473. </tr>
  474. </table>
  475. </div>
  476. </div>
  477. </div>
  478. <div id="cartDialog" class="CartDialog" style="display: none;">
  479. <table id="miniCartOnly">
  480. <tr id="divall">
  481. <td id="tdCart">
  482. <table style="width: 100%; padding: 0px; border: 0px">
  483. <tr>
  484. <td id="divCartSummText" style="width: 50%; padding-top: 3px; padding-bottom: 3px">
  485. <span id="ctl00_gab1_ucmini_lblCartSummary" class="summaryTxt">购物车小结</span>
  486. </td>
  487. <td id="tdSchedul" class="tdScheduleOrder" style="display: none">
  488. <span id="ctl00_gab1_ucmini_lblScheduledError" class="scheduleOrderTxt" style="float: left;">购物车包含定期发货商品</span>
  489. </td>
  490. </tr>
  491. </table>
  492. <table id="tableMiniCartItms">
  493. <tr id="trCart">
  494. <td>
  495. <hr id="ctl00_gab1_ucmini_hrSeparatorTop" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  496. <table id="tblMiniCart">
  497. <thead>
  498. <tr>
  499. <th class="miniCartColumn">制造商</th>
  500. <th class="miniCartColumn MiniCartHdBg">制造商。 编号:</th>
  501. <th class="miniCartColumn MiniCartHdBg">数量</th>
  502. <th class="MiniCartHdStyle MiniCartHdBg">总价(含17%增值税)</th>
  503. </tr>
  504. </thead>
  505. </table>
  506. <script type="text/javascript">
  507. var miniCartResources = {"YourCartIsEmpty":"您的购物车是空的。","CartSubTotal":"订单总计(含17%增值税)","lblCart":"购物车","SelectionRequiredToBuy":"请选择希望购买的产品。","AddedToCart":"添加至购物车","CartSummary":"购物车小结","items":"项目","item":"项目"};
  508. var currentGuid = '915c2dd0-4d07-4820-a0d4-ef67a1c747b8';
  509. var currentCountryCode = 'CN';
  510. var currentCurrencyCode= 'RMB';
  511. var currencyCulture = 'zh-CN';
  512. var cultureCode = 'zh-CN';
  513. var customerID = '';
  514. </script>
  515. <hr id="ctl00_gab1_ucmini_hrSeparatorBtm" style="padding: 0px; display: none; margin: 0px !important;"></hr>
  516. </td>
  517. </tr>
  518. </table>
  519. <div style="display: none; padding-top: 10px" id="divSingleItem">
  520. <table id="tblSingeItem">
  521. <tr>
  522. <!-- Here goes the single item -->
  523. <td style="padding-right: 15px">
  524. <img id="ctl00_gab1_ucmini_CarPDFSearch_miniCartImg" class="MiniCartMxImg" /></td>
  525. <td style="align: right; padding-right: 2px" id="tdSingleItms">
  526. <div id="divAll">
  527. <div id="wrapper">
  528. <div id="divLbl">
  529. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMFg" class="label">制造商 零件编号</span>
  530. </div>
  531. <div id="divHyp">
  532. </div>
  533. </div>
  534. <div id="divRest">
  535. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblMfr" class="label">制造商:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniMfrName"></span><br />
  536. <span id="ctl00_gab1_ucmini_CarPDFSearch_lblDes" class="label">描述:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniPartDes" class="MiniCartDescription"></span>
  537. <br />
  538. <span id="ctl00_gab1_ucmini_CarPDFSearch_LblQty" class="label">数量:</span><span id="ctl00_gab1_ucmini_CarPDFSearch_lblMiniCartQty"></span><br />
  539. </div>
  540. </div>
  541. </td>
  542. </tr>
  543. </table>
  544. </div>
  545. <div id="divForCart" class="divMsgLnkTotal" style="display: none">
  546. <hr id="ctl00_gab1_ucmini_hrSprCartSubtotal" style="padding: 0px; display: none;"></hr>
  547. <span id="ctl00_gab1_ucmini_lblCartTotalAmount" class="MiniCartSubTotal" style="display: none;">购物车小结</span><br />
  548. <span id="ctl00_gab1_ucmini_lblCartErorMsg" class="miniCartError" style="display: none">* 您的购物车包含错误。</span>
  549. <div style="display: none" class="CenterAll" id="divToCartAtMiniCart">
  550. <a onclick="javascript:return MiniCart.SendToCartPage(&#39;Cart Hover&#39;,&#39;View Cart Button&#39;);" id="ctl00_gab1_ucmini_linkToCartAtMiniCart" class="continue btn-Checkout" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$linkToCartAtMiniCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  551. </div>
  552. </div>
  553. </td>
  554. <td style="display: none" id="trCartSubTotal">
  555. <table class="tblMiniCartSub">
  556. <tr>
  557. <td align="right" style="padding-bottom: 5px; padding-top: 2px">
  558. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartItemTotal" class="label"></span>
  559. <hr id="ctl00_gab1_ucmini_MiniCartSubTotoal_hrSeparator" style="padding: 1px"></hr>
  560. </td>
  561. </tr>
  562. <tr>
  563. <td align="right" style="padding-bottom: 5px">
  564. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblMiniCartBalance">未结余额指根据您选择的付款方式目前应当支付而尚未支付的所有费用。</span>
  565. </td>
  566. </tr>
  567. <tr>
  568. <td align="left" style="padding-bottom: 5px">
  569. <span id="ctl00_gab1_ucmini_MiniCartSubTotoal_lblFreeShipping" class="miniCartFreeShipMsg"></span>
  570. </td>
  571. </tr>
  572. <tr>
  573. <td align="center" style="padding-top: 5px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">
  574. <a onclick="return MiniCart.ContinueShopping();" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnContune" class="blue-button showHorizontalMargin" href="javascript:__doPostBack(&#39;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnContune&#39;,&#39;&#39;)" style="color:White;text-decoration:none;">继续购物</a>
  575. <a onclick="return MiniCart.SendToCartPage(&#39;Add to Cart Modal&#39;,&#39;View Cart&#39;);" id="ctl00_gab1_ucmini_MiniCartSubTotoal_lnkBtnCart" class="continue btn-Checkout showHorizontal" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$gab1$ucmini$MiniCartSubTotoal$lnkBtnCart&quot;, &quot;&quot;, false, &quot;&quot;, &quot;http://www.mouser.cn/Cart/Cart.aspx&quot;, false, true))" style="color:White;text-decoration:none;">查看购物车</a>
  576. </td>
  577. </tr>
  578. </table>
  579. <span id="ctl00_gab1_ucmini_erorMsgSubtotal" class="miniCartError" style="display: none; float: right">* 您的购物车包含错误。</span>
  580. </td>
  581. </tr>
  582. <tr id="trHideModalCheckBox" style="display: none">
  583. <td colspan="2">
  584. <span class="cssChkhideModal"><input id="ctl00_gab1_ucmini_chkHideModal" type="checkbox" name="ctl00$gab1$ucmini$chkHideModal" /><label for="ctl00_gab1_ucmini_chkHideModal">不再显示,直接进入购物车。 </label></span>
  585. </td>
  586. </tr>
  587. </table>
  588. <script type="text/javascript">
  589. $(document).ready(function () {
  590. MiniCart.source = 'refine';
  591. });
  592. </script>
  593. </div>
  594. <script type="text/javascript">
  595. function OpenCurrencyPopup() {
  596. $("#tblink").trigger('click');
  597. }
  598. function CloseCurrencyPopup() {
  599. var ddlCurrency = document.getElementById('ctl00_gab1_ddlCurrencies');
  600. var hidCurrencyValue = document.getElementById('ctl00_gab1_hidSelectedCurrency');
  601. if (ddlCurrency != null && hidCurrencyValue != null) {
  602. ddlCurrency.selectedIndex = hidCurrencyValue.value;
  603. }
  604. window.location.reload();
  605. }
  606. </script>
  607. </div>
  608. </div>
  609. <div id="wideHeader" class="wideHeader">
  610. <div id="header" class="container" itemscope itemtype="http://schema.org/WPHeader">
  611. <div id="search" class="row">
  612. <div id="logo" class='col-xs-4'>
  613. <a id="ctl00_NavHeader_hlnk1" title="Mouser Electronics - 电子元器件分销商" href="../../../../../" target="_self">Mouser Electronics - 电子元器件分销商</a>
  614. </div>
  615. <div id="search-block" class="col-xs-4">
  616. <div id="search-title">
  617. 物料编号/关键字
  618. </div>
  619. <div id="search-bar">
  620. <div id="ctl00_NavHeader_pnl1" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_NavHeader_btn1&#39;)">
  621. <div id="searchPartNumberBox" class="search-box inline-block">
  622. <input name="ctl00$NavHeader$txt1" type="text" id="ctl00_NavHeader_txt1" title="物料编号/关键字" class="search-txt" />
  623. <input type="submit" name="ctl00$NavHeader$btn1" value="" id="ctl00_NavHeader_btn1" title="搜索" class="searchbutton" class="Empty" />
  624. </div>
  625. <div class="inline-block">
  626. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_NavHeader_chkStockedMouserHeader" type="checkbox" name="ctl00$NavHeader$chkStockedMouserHeader" /><label for="ctl00_NavHeader_chkStockedMouserHeader">有库存</label></span><br />
  627. <span title="选中时,搜索将只返回符合 RoHS 规范要求和 RoHS 豁免产品。"><input id="ctl00_NavHeader_chkRoHSCompliantMouserHeader" type="checkbox" name="ctl00$NavHeader$chkRoHSCompliantMouserHeader" /><label for="ctl00_NavHeader_chkRoHSCompliantMouserHeader">符合RoHS</label></span>
  628. </div>
  629. </div>
  630. </div>
  631. </div>
  632. <div id="account" class="col-xs-4 align-right">
  633. <ul>
  634. <li>
  635. </li>
  636. <li>
  637. <a id="ctl00_NavHeader_hlnk3" title="登录" href="https://www.mouser.cn/MyMouser/MouserLogin.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7DNi1Ndv7IX9WBLXG8XVVC08vjUTBOT%252btYjET22qwmIys%3d">登录</a>
  638. </li>
  639. <li>
  640. </li>
  641. <li>
  642. <a id="ctl00_NavHeader_hlnk5" title="新用户注册" href="https://www.mouser.cn/MyMouser/CreateAccount.aspx">新用户注册</a>
  643. </li>
  644. <li>
  645. <a id="ctl00_NavHeader_hlnk7" title="订单历史" href="http://www.mouser.cn/OrderHistory/OrderHistoryLogin.aspx">订单历史</a>
  646. </li>
  647. <li>
  648. <!-- Mush:TBC -->
  649. <a id="ctl00_NavHeader_hlnk6" title="订阅" onclick="javascript:return SaveSubscriptionURL();" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅</a>
  650. </li>
  651. </ul>
  652. </div>
  653. </div>
  654. <div id="navArea" class="row">
  655. <div class="col-xs-12">
  656. <div id="navMain" class="inline-block">
  657. <div class="navbar">
  658. <ul class="topnav">
  659. <li>
  660. <a id="ctl00_NavHeader_RepeaterNav_ctl00_hyperHeaderNav" href="/Electronic-Components/">产品</a>
  661. <ul class="subnav" id="subnav">
  662. <li>
  663. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/Electronic-Components/">所有产品</a>
  664. </li>
  665. <li>
  666. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/new/">最新产品</a>
  667. </li>
  668. <li>
  669. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/new/products">按类别划分的新产品</a>
  670. </li>
  671. <li>
  672. <a id="ctl00_NavHeader_RepeaterNav_ctl00_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/">新技术</a>
  673. </li>
  674. </ul>
  675. </li>
  676. <li>
  677. <a id="ctl00_NavHeader_RepeaterNav_ctl01_hyperHeaderNav" href="/supplierpage/">制造商</a>
  678. <ul class="subnav" id="subnav">
  679. <li>
  680. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/supplierpage/">所有制造商A-Z</a>
  681. </li>
  682. <li>
  683. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/newsuppliers/">新制造商</a>
  684. </li>
  685. <li>
  686. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/suppliercategory/">制造商(按产品类别分类)</a>
  687. </li>
  688. <li>
  689. <a id="ctl00_NavHeader_RepeaterNav_ctl01_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/catalogRequest/catalogdownloads.aspx">下载线卡</a>
  690. </li>
  691. </ul>
  692. </li>
  693. <li>
  694. <a id="ctl00_NavHeader_RepeaterNav_ctl02_hyperHeaderNav" href="/applications/">应用</a>
  695. <ul class="subnav" id="subnav">
  696. <li>
  697. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  698. </li>
  699. <li>
  700. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/applications/audio_applications">音频</a>
  701. </li>
  702. <li>
  703. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/applications/automotive-applications">汽车</a>
  704. </li>
  705. <li>
  706. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/applications/industrial_applications">工业</a>
  707. </li>
  708. <li>
  709. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/applications/internet-of-things">物联网</a>
  710. </li>
  711. <li>
  712. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/applications/lighting">照明</a>
  713. </li>
  714. <li>
  715. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/applications/open-source-hardware">开源硬件</a>
  716. </li>
  717. <li>
  718. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="/applications/rf-wireless-technology">无线射频</a>
  719. </li>
  720. <li>
  721. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/applications/sensor_technology">传感器技术</a>
  722. </li>
  723. <li>
  724. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/applications/usb-technology">USB技术</a>
  725. </li>
  726. <li>
  727. <a id="ctl00_NavHeader_RepeaterNav_ctl02_RepeaterNavChild_ctl11_hyperHeaderNavChild" href="/applications/">更多应用</a>
  728. </li>
  729. </ul>
  730. </li>
  731. <li>
  732. <a id="ctl00_NavHeader_RepeaterNav_ctl03_hyperHeaderNav" href="/servicesandtools/">服务和工具</a>
  733. <ul class="subnav" id="subnav">
  734. <li>
  735. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/MyMouser/AccountSummary.aspx">登录/创建账户</a>
  736. </li>
  737. <li>
  738. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/EZBuy/EZBuy.aspx">简易订购工具</a>
  739. </li>
  740. <li>
  741. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/OrderHistory/ProjectsView.aspx">项目管理器</a>
  742. </li>
  743. <li>
  744. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/bomtool/">BOM工具</a>
  745. </li>
  746. <li>
  747. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Tools/part-list-import.aspx">零件清单导入器</a>
  748. </li>
  749. <li>
  750. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl06_hyperHeaderNavChild" href="/accelerator/">搜索加速器</a>
  751. </li>
  752. <li>
  753. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl07_hyperHeaderNavChild" href="/Quote/Quote.aspx">请求报价</a>
  754. </li>
  755. <li>
  756. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl08_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">订阅电子邮件</a>
  757. </li>
  758. <li>
  759. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl09_hyperHeaderNavChild" href="/blog">Mouser博客</a>
  760. </li>
  761. <li>
  762. <a id="ctl00_NavHeader_RepeaterNav_ctl03_RepeaterNavChild_ctl10_hyperHeaderNavChild" href="/servicesandtools/">更多服务和工具</a>
  763. </li>
  764. </ul>
  765. </li>
  766. <li>
  767. <a id="ctl00_NavHeader_RepeaterNav_ctl04_hyperHeaderNav" href="/CatalogRequest/Catalog.aspx">目录</a>
  768. <ul class="subnav" id="subnav">
  769. <li>
  770. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/CatalogRequest/Catalog.aspx">所有目录选项</a>
  771. </li>
  772. <li>
  773. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/catalogviewer/default.aspx">在线目录</a>
  774. </li>
  775. <li>
  776. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/CatalogRequest/CatalogDownloads.aspx">下载 Mouser 目录</a>
  777. </li>
  778. <li>
  779. <a id="ctl00_NavHeader_RepeaterNav_ctl04_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="https://sub.info.mouser.com/subscription-newsletter-catalog-sc" target="_blank">目录订阅</a>
  780. </li>
  781. </ul>
  782. </li>
  783. <li>
  784. <a id="ctl00_NavHeader_RepeaterNav_ctl05_hyperHeaderNav" href="/Help/Help.aspx">帮助</a>
  785. <ul class="subnav" id="subnav">
  786. <li>
  787. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl01_hyperHeaderNavChild" href="/aboutus/">关于 Mouser</a>
  788. </li>
  789. <li>
  790. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl02_hyperHeaderNavChild" href="/contact/">联系我们</a>
  791. </li>
  792. <li>
  793. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl03_hyperHeaderNavChild" href="/feedback.aspx">反馈</a>
  794. </li>
  795. <li>
  796. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl04_hyperHeaderNavChild" href="/helppage/#FAQ">常见问题</a>
  797. </li>
  798. <li>
  799. <a id="ctl00_NavHeader_RepeaterNav_ctl05_RepeaterNavChild_ctl05_hyperHeaderNavChild" href="/Help/Help.aspx">更多幫助主題</a>
  800. </li>
  801. </ul>
  802. </li>
  803. </ul>
  804. </div>
  805. </div>
  806. <div class="onlineCatalog inline-block">
  807. <a href="/mobilecatalog.aspx" class="btnOnlineCatalog" title="在线目录"><span class="online-catalog-child inline-block">在线目录</span></a>
  808. </div>
  809. </div>
  810. </div>
  811. </div>
  812. <div style="visibility: hidden; height: 0px;">
  813. <input name="ctl00$NavHeader$lblTrdTerm" type="text" id="ctl00_NavHeader_lblTrdTerm" />
  814. <input name="ctl00$NavHeader$lblIsNewTerm" type="text" id="ctl00_NavHeader_lblIsNewTerm" />
  815. <input type="hidden" name="ctl00$NavHeader$hdQuickSingUpPage" id="ctl00_NavHeader_hdQuickSingUpPage" value="https://sub.info.mouser.com/quick-signup-sc" />
  816. </div>
  817. <script type="text/javascript">
  818. $(document).ready(function () {
  819. //* change to html5 catalog if javascript is enabled *
  820. $('a.btnOnlineCatalog').attr('href', '/catalogviewer/default.aspx');
  821. });
  822. </script>
  823. <script type="text/javascript" src='../../../../../javascript/genLib.js'></script>
  824. </div>
  825. <div id="ctl00_divWide" class="divWide">
  826. <link rel="stylesheet" type="text/css" href='../../../../../css/fontawesome/css/font-awesome.min.css' />
  827. <br />
  828. <strong></strong>
  829. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl00_lnkBreadcrumb" href="../../../../../Electronic-Components/" style="font-size: 9pt; font-weight: bold;">所有产品</a>
  830. <strong>></strong>
  831. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl01_lnkBreadcrumb" href="../../../../_/N-5gcb/" style="font-size: 9pt; font-weight: bold;">半导体</a>
  832. <strong>></strong>
  833. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl02_lnkBreadcrumb" itemprop="isPartOf" href="../../../_/N-6j73k/" style="font-size: 9pt; font-weight: bold;">集成电路 - IC</a>
  834. <strong>></strong>
  835. <a id="ctl00_ContentMain_bc_rptrBreadcrumbs_ctl03_lnkBreadcrumb" href="./" style="font-size: 9pt; font-weight: bold;">音频 IC</a>
  836. <hr />
  837. <div id="ctl00_ContentMain_categorySearchLimitsDiv" class="hidden">
  838. <div class="categorySearchLimits">
  839. <div id="ctl00_ContentMain_uc1_pnlCategorySearchLimits">
  840. </div>
  841. </div>
  842. </div>
  843. <table border="0" width="100%">
  844. <tr>
  845. <td>
  846. <div id="ctl00_ContentMain_pnl3">
  847. <div id="category-top" class="category-content">
  848. <a id="ctl00_ContentMain_lnkCategory" class="SearchResultsTopLevelCategory"><h1> 音频 IC</h1></a>
  849. <img id="ctl00_ContentMain_imageCat" class="category-img" src="../../../../../images/DisplayCategories/10973376.png" alt="音频 IC" />
  850. <!--Marketing Content-->
  851. <table id="ctl00_ContentMain_tbl5">
  852. <tr>
  853. <td>
  854. <div class="marketing-content2">
  855. <p style="margin: 0in 0in 10pt;"><strong><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">音频</span></strong><strong><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">IC</span></strong><strong><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">(</span></strong><strong><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">Audio ICs</span></strong><strong><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">)</span></strong><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">,应有尽有。</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">Mouser Electronics</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">(贸泽电子)提供多家业界顶尖制造商的音频</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">IC</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">。</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">Mouser Electronics</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">(贸泽电子)是众多音频</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">IC</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">原厂的授权分销商,其中包括</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">Cirrus Logic</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">、</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">Infineon</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">(英飞凌)、</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">Maxim Integrated</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">(美信)、</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">ON Semiconductor</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">(安森美半导体)、</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">STMicroelectronics</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">(意法半导体)、</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">Texas Instruments</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">(</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">TI/</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">德州仪器)、</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">Wolfson Microelectronics......</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">等多家知名厂商。想了解更多音频</span><span style="line-height: 115%; font-size: 10pt; font-family: arial, sans-serif; color: black;">IC</span><span style="line-height: 115%; font-size: 10pt; font-family: pmingliu, serif; color: black;">产品,请浏览下列产品分类</span><span style="line-height: 115%; font-size: 10pt; font-family: mingliu; color: black;">。</span></p>
  856. </div>
  857. </td>
  858. </tr>
  859. </table>
  860. <div id="ctl00_ContentMain_refinemfglogo">
  861. </div>
  862. </div><!--.category-content-->
  863. </div>
  864. </td>
  865. </tr>
  866. <tr>
  867. <td>
  868. </td>
  869. </tr>
  870. <tr>
  871. <td>
  872. <div id="refine-page2">
  873. </div>
  874. </td>
  875. </tr>
  876. </table>
  877. <div id="ctl00_ContentMain_divTabs" class="row">
  878. <div class="col-xs-12">
  879. <div id="tabsNavigation" >
  880. <ul>
  881. <li id="ctl00_ContentMain_liProductsTab" class="active">
  882. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(3,431)</span></a>
  883. </li>
  884. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  885. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Audio ICs&#39;);" href="../../Datasheets/_/N-6j740">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(1,476)</span></a>
  886. </li>
  887. <li id="ctl00_ContentMain_liImagesTab" class="">
  888. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Audio ICs&#39;);" href="../../Images/_/N-6j740">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(442)</span></a>
  889. </li>
  890. <li id="ctl00_ContentMain_liNewestTab" class="">
  891. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Audio ICs&#39;);" href="../../Newest-Products/_/N-6j740">最新产品</a>
  892. </li>
  893. </ul>
  894. </div>
  895. </div>
  896. </div>
  897. <div id="tabDivs" class="tab-divs">
  898. <!-- Hide the View links if javascript is disabled -->
  899. <noscript>
  900. <style type="text/css">
  901. .list-visual
  902. {
  903. display: none;
  904. }
  905. </style>
  906. </noscript>
  907. <div id="CategoryControlTop">
  908. <table class="table-categories">
  909. <tr><td valign="top">
  910. <input type="hidden" name="ctl00$ContentMain$uc6$listCategories$ctl01$hdnCatID" id="ctl00_ContentMain_uc6_listCategories_ctl01_hdnCatID" value="10973376" />
  911. <div class="topCatTitle">
  912. <div class="col-xs-8 no-left-pad">
  913. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkCategory" class="SearchResultsTopLevelCategory" href="./"><h2>音频 IC类型</h2></a>
  914. </div>
  915. <div class="text-right">
  916. <div class="list-visual">
  917. <ul>
  918. <li class="right-border active">
  919. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;List&#39;, &#39;Audio ICs&#39;); SwitchListView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkListView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkListView&#39;,&#39;&#39;)">
  920. <i class="fa fa-th-list"></i>&nbsp;列表</a>
  921. </li>
  922. <li>
  923. <a onclick="SendGATracking(&#39;Refine Category View Change&#39;, &#39;Visual&#39;, &#39;Audio ICs&#39;); SwitchVisualView(); return false;" id="ctl00_ContentMain_uc6_listCategories_ctl01_lnkVisualView" href="javascript:__doPostBack(&#39;ctl00$ContentMain$uc6$listCategories$ctl01$lnkVisualView&#39;,&#39;&#39;)">
  924. <i class="fa fa-th-large"></i>&nbsp;目视</a>
  925. </li>
  926. </ul>
  927. </div>
  928. </div>
  929. </div>
  930. <ul class="sub-cats">
  931. <table id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories" cellspacing="0" style="width:100%;border-collapse:collapse;">
  932. <tr>
  933. <td>
  934. <li class="sub-cat">
  935. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973382.png" alt="Audio A/D Converter ICs" /></div>
  936. <div class="div-cat-title">
  937. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Audio-A-D-Converter-ICs/_/N-6j746/"><h3>音频模/数转换器 IC</h3></a>
  938. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl00_lblRecordCount">171</span>)</span>
  939. </div>
  940. </li>
  941. </td><td>
  942. <li class="sub-cat">
  943. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973379.png" alt="Audio DSPs" /></div>
  944. <div class="div-cat-title">
  945. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Audio-DSPs/_/N-6j743/"><h3>音频 DSP</h3></a>
  946. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl03_lblRecordCount">306</span>)</span>
  947. </div>
  948. </li>
  949. </td><td>
  950. <li class="sub-cat">
  951. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973378.png" alt="Audio Transmitters, Receivers, Transceivers" /></div>
  952. <div class="div-cat-title">
  953. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Audio-Transmitters-Receivers-Transceivers/_/N-6j742/"><h3>音频发送器、接收器、收发器</h3></a>
  954. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl05_lblRecordCount">74</span>)</span>
  955. </div>
  956. </li>
  957. </td>
  958. </tr><tr>
  959. <td>
  960. <li class="sub-cat">
  961. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973380.png" alt="Audio Amplifiers" /></div>
  962. <div class="div-cat-title">
  963. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Audio-Amplifiers/_/N-6j744/"><h3>音频放大器</h3></a>
  964. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl01_lblRecordCount">2,368</span>)</span>
  965. </div>
  966. </li>
  967. </td><td>
  968. <li class="sub-cat">
  969. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973383.png" alt="Audio Sample Rate Converters" /></div>
  970. <div class="div-cat-title">
  971. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Audio-Sample-Rate-Converters/_/N-6j747/"><h3>音频采样频率转换器</h3></a>
  972. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl04_lblRecordCount">39</span>)</span>
  973. </div>
  974. </li>
  975. </td><td>
  976. <li class="sub-cat">
  977. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/11227393.png" alt="Microphone Preamplifiers" /></div>
  978. <div class="div-cat-title">
  979. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Microphone-Preamplifiers/_/N-6on41/"><h3>传声器前置放大器</h3></a>
  980. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl06_lblRecordCount">100</span>)</span>
  981. </div>
  982. </li>
  983. </td>
  984. </tr><tr>
  985. <td>
  986. <li class="sub-cat">
  987. <div id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_divCategoryImage" class="hide-cat-img"><img id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_imgCategory" class="category-image" onerror="this.style.display = &quot;none&quot;" src="../../../../../images/DisplayCategories/10973377.png" alt="Audio D/A Converter ICs" /></div>
  988. <div class="div-cat-title">
  989. <a id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lnkCategory" class="SearchResultsSubLevelCategory" itemprop="significantLink" href="../../Audio-D-A-Converter-ICs/_/N-6j741/"><h3>音频数/模转换器 IC</h3></a>
  990. <span id="spnCount">(<span id="ctl00_ContentMain_uc6_listCategories_ctl01_listSubCategories_ctl02_lblRecordCount">373</span>)</span>
  991. </div>
  992. </li>
  993. </td><td></td><td></td>
  994. </tr>
  995. </table></ul>
  996. </td></tr></table>
  997. <div id="search-left-col">
  998. </div>
  999. </div>
  1000. <script type="text/javascript">
  1001. //<![CDATA[
  1002. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  1003. //]]>
  1004. </script>
  1005. <div id="ctl00_ContentMain_liProducts">
  1006. <div id="refineSearchDiv">
  1007. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  1008. <div id="refine-keyword-search-2">
  1009. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  1010. <div id="boxPartSearch2">
  1011. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  1012. <tr>
  1013. <td rowspan="3" style="vertical-align: middle">
  1014. <div id="searchPartNumberBox" class="search-box" >
  1015. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  1016. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  1017. </div>
  1018. </td>
  1019. </tr>
  1020. <tr>
  1021. <td class="chk-Search">
  1022. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  1023. </td>
  1024. </tr>
  1025. <tr>
  1026. <td class="chk-Search">
  1027. <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>
  1028. </td>
  1029. </tr>
  1030. </table>
  1031. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  1032. </div>
  1033. <script type="text/javascript" src='../../../../../flash/js/Placeholders.min.js'></script>
  1034. <script type="text/javascript" src='../../../../../flash/js/watermark.js'></script>
  1035. </div>
  1036. </div>
  1037. <div id="refine-mfg-select-2">
  1038. </div>
  1039. <div class="clear">
  1040. </div>
  1041. <table class="SearchParametricTable2">
  1042. <tr>
  1043. <td>
  1044. <div id="AttributesDiv2">
  1045. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  1046. <div class="categorySearchLimits">
  1047. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  1048. <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_chkbx10973376|Audio ICs&#39;).checked = false;" /></span>&nbsp;<b>半导体</b>&nbsp;&#62;&nbsp;<span title="集成电路 - IC"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx10973360|Integrated Circuits - ICs" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973376|Audio ICs&#39;).checked = false;" /></span>&nbsp;<b>集成电路 - IC</b>&nbsp;&#62;&nbsp;<span title="音频 IC"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973376|Audio ICs" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx10973376|Audio ICs" checked="checked" onclick="document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx254459|Semiconductors&#39;).checked = true;document.getElementById(&#39;ctl00_ContentMain_uc5_CategorySearchLimits_chkbx10973360|Integrated Circuits - ICs&#39;).checked = true;" /></span>&nbsp;<b>音频 IC</b>
  1049. </div>
  1050. </div>
  1051. <hr/>
  1052. </div>
  1053. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  1054. <p class="applied-filter-lbl">
  1055. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  1056. <span id="ctl00_ContentMain_uc5_lblreccount">3,431 匹配</span>
  1057. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  1058. </p>
  1059. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  1060. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  1061. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  1062. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../../images/icon_tooltip.png" />
  1063. <br />
  1064. </div>
  1065. </div>
  1066. <table id="tb1" style="width: 100%;">
  1067. <tr>
  1068. <td>
  1069. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  1070. <tr>
  1071. <td>
  1072. <table cellpadding="0" cellspacing="0">
  1073. <tr>
  1074. <td>
  1075. <table>
  1076. <tr>
  1077. <td>
  1078. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  1079. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  1080. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1081. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1082. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1083. sorted parametric attributes from an endeca attribute group --->
  1084. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  1085. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  1086. </div>
  1087. </td>
  1088. </tr>
  1089. <tr>
  1090. <td>
  1091. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  1092. <option value="4291852130">ams</option>
  1093. <option value="4290538360">Analog Devices Inc.</option>
  1094. <option value="4294759229">Atmel</option>
  1095. <option value="4294449078">Cirrus Logic</option>
  1096. <option value="4294759215">Digital View</option>
  1097. <option value="4288463162">Diodes Incorporated</option>
  1098. <option value="4292828383">Epson</option>
  1099. <option value="4294759187">Fairchild Semiconductor</option>
  1100. <option value="4294759026">Infineon</option>
  1101. <option value="4292719627">International Rectifier</option>
  1102. <option value="4292499325">Intersil</option>
  1103. <option value="4294758587">ISSI</option>
  1104. <option value="4291596096">Maxim Integrated</option>
  1105. <option value="4292703012">Monolithic Power Systems (MPS)</option>
  1106. <option value="4294758758">NJR</option>
  1107. <option value="4292713435">Nordic Semiconductor</option>
  1108. <option value="4294758971">NXP</option>
  1109. <option value="4294759663">ON Semiconductor</option>
  1110. <option value="4292890524">Panasonic</option>
  1111. <option value="4294005660">ROHM Semiconductor</option>
  1112. <option value="4294763905">Silicon Laboratories</option>
  1113. <option value="4292402259">Skyworks</option>
  1114. <option value="4294764375">STMicroelectronics</option>
  1115. <option value="4294758695">Taiwan Semiconductor</option>
  1116. <option value="4287869701">Tempo Semiconductor</option>
  1117. <option value="4294759686">Texas Instruments</option>
  1118. <option value="4294758876">THAT Corporation</option>
  1119. <option value="4294758568">Toshiba</option>
  1120. </select>
  1121. </td>
  1122. </tr>
  1123. <tr>
  1124. <td>
  1125. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1126. </td>
  1127. </tr>
  1128. </table>
  1129. </td>
  1130. <td valign="bottom" style="width: 15px;">
  1131. &nbsp;
  1132. </td>
  1133. </tr>
  1134. </table>
  1135. </td><td>
  1136. <table cellpadding="0" cellspacing="0">
  1137. <tr>
  1138. <td>
  1139. <table>
  1140. <tr>
  1141. <td>
  1142. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">安装风格</span>
  1143. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1144. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1145. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1146. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1147. sorted parametric attributes from an endeca attribute group --->
  1148. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1149. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="1323044" />
  1150. </div>
  1151. </td>
  1152. </tr>
  1153. <tr>
  1154. <td>
  1155. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$1323044" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_1323044">
  1156. <option value="4294741457">SMD/SMT</option>
  1157. <option value="4294739373">Through Hole</option>
  1158. </select>
  1159. </td>
  1160. </tr>
  1161. <tr>
  1162. <td>
  1163. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1164. </td>
  1165. </tr>
  1166. </table>
  1167. </td>
  1168. <td valign="bottom" style="width: 15px;">
  1169. &nbsp;
  1170. </td>
  1171. </tr>
  1172. </table>
  1173. </td><td>
  1174. <table cellpadding="0" cellspacing="0">
  1175. <tr>
  1176. <td>
  1177. <table>
  1178. <tr>
  1179. <td>
  1180. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  1181. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1182. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1183. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1184. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1185. sorted parametric attributes from an endeca attribute group --->
  1186. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1187. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="688606" />
  1188. </div>
  1189. </td>
  1190. </tr>
  1191. <tr>
  1192. <td>
  1193. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_688606">
  1194. <option value="4287877879">BGA-15 Microstar Junior</option>
  1195. <option value="4294678016">BGA-16</option>
  1196. <option value="4287878210">BGA-48 Microstar Junior</option>
  1197. <option value="4287547262">BGA-8 Microstar Junior</option>
  1198. <option value="4287878236">BGA-80 Microstar Junior</option>
  1199. <option value="4292778557">BGA-9</option>
  1200. <option value="4294445450">Clipwatt</option>
  1201. <option value="4294671125">CSP-12</option>
  1202. <option value="4292800284">CSP-20</option>
  1203. <option value="4292787430">CSP-9</option>
  1204. <option value="4292757662">DBS-23P</option>
  1205. <option value="4294027882">DBS17P</option>
  1206. <option value="4294027880">DBS23P</option>
  1207. <option value="4292841421">DBS27P</option>
  1208. <option value="4294687858">DFN-10</option>
  1209. <option value="4294719883">DFN-10, 3 x 3</option>
  1210. <option value="4287226952">DFN-3030-8L</option>
  1211. <option value="4292721272">DFN-44</option>
  1212. <option value="4294680745">DFN-8</option>
  1213. <option value="4292786066">DFN-8 EP</option>
  1214. <option value="4294707472">DIP-14</option>
  1215. <option value="4294730147">DIP-16</option>
  1216. <option value="4294730330">DIP-8</option>
  1217. <option value="4294446359">DMP</option>
  1218. <option value="4294685984">DMP-14</option>
  1219. <option value="4294720897">DMP-16</option>
  1220. <option value="4294685947">DMP-24</option>
  1221. <option value="4294689540">DMP-8</option>
  1222. <option value="4294675599">DSBGA-12</option>
  1223. <option value="4287681896">DSBGA-14</option>
  1224. <option value="4294676951">DSBGA-16</option>
  1225. <option value="4291012519">DSBGA-18</option>
  1226. <option value="4292806384">DSBGA-20</option>
  1227. <option value="4294670563">DSBGA-24</option>
  1228. <option value="4294676876">DSBGA-25</option>
  1229. <option value="4292569103">DSBGA-30</option>
  1230. <option value="4292503008">DSBGA-36</option>
  1231. <option value="4294677072">DSBGA-4</option>
  1232. <option value="4292774877">DSBGA-42</option>
  1233. <option value="4294676954">DSBGA-9</option>
  1234. <option value="4294665241">DSO</option>
  1235. <option value="4294649760">DSO-8-1</option>
  1236. <option value="4294687011">EMP-8</option>
  1237. <option value="4292087216">Flexiwat27</option>
  1238. <option value="4292786430">FLEXIWATT- 27 H</option>
  1239. <option value="4292786439">FLEXIWATT-15</option>
  1240. <option value="4294675378">Flexiwatt-25</option>
  1241. <option value="4294683913">FLEXIWATT-25</option>
  1242. <option value="4292786396">FLEXIWATT-25 H</option>
  1243. <option value="4292786523">FLEXIWATT-25 V</option>
  1244. <option value="4289337376">Flexiwatt-27</option>
  1245. <option value="4294683127">FLEXIWATT-27</option>
  1246. <option value="4292786726">FLEXIWATT-27 V</option>
  1247. <option value="4294740653">Flip-Chip</option>
  1248. <option value="4292786935">Flip-Chip-12</option>
  1249. <option value="4285650049">Flip-Chip-16</option>
  1250. <option value="4292786934">Flip-Chip-9</option>
  1251. <option value="4292801062">FlipChip-16</option>
  1252. <option value="4292830553">HiQUAD-64</option>
  1253. <option value="4294677313">HLQFP-32</option>
  1254. <option value="4294668129">HSIP-15</option>
  1255. <option value="4294446381">HSOP</option>
  1256. <option value="4294686808">HSOP-20</option>
  1257. <option value="4294668118">HSOP-24</option>
  1258. <option value="4292831720">HSOP-36</option>
  1259. <option value="4294686644">HSOP-8</option>
  1260. <option value="4292686377">HSSOP-13</option>
  1261. <option value="4292686404">HSSOP-14</option>
  1262. <option value="4292831653">HSSOP-36</option>
  1263. <option value="4292785882">HSSOP-44</option>
  1264. <option value="4294686503">HTQFP-100</option>
  1265. <option value="4294677352">HTQFP-48</option>
  1266. <option value="4294677356">HTQFP-64</option>
  1267. <option value="4294721392">HTSSOP</option>
  1268. <option value="4294445583">HTSSOP EP</option>
  1269. <option value="4294686039">HTSSOP-16</option>
  1270. <option value="4294687558">HTSSOP-20</option>
  1271. <option value="4294686978">HTSSOP-24</option>
  1272. <option value="4294717754">HTSSOP-28</option>
  1273. <option value="4294719690">HTSSOP-32</option>
  1274. <option value="4294677336">HTSSOP-38</option>
  1275. <option value="4294677046">HTSSOP-44</option>
  1276. <option value="4294686921">HTSSOP-48</option>
  1277. <option value="4294677047">HTSSOP-56</option>
  1278. <option value="4292786050">HTSSOP-A-44</option>
  1279. <option value="4292786039">HTSSOP-B-24</option>
  1280. <option value="4294668065">HTSSOP-B24</option>
  1281. <option value="4293983375">HVQFN-20</option>
  1282. <option value="4292786152">HVQFN-8 EP</option>
  1283. <option value="4293983752">HVSON-10</option>
  1284. <option value="4287547345">HVSSOP-10</option>
  1285. <option value="4287547366">HVSSOP-8</option>
  1286. <option value="4292830532">HZIP-25</option>
  1287. <option value="4292582212">HZIP25-P1.00F</option>
  1288. <option value="4290563371">LFCSP-16</option>
  1289. <option value="4290563330">LFCSP-20</option>
  1290. <option value="4292880926">LFCSP-32</option>
  1291. <option value="4290563347">LFCSP-40</option>
  1292. <option value="4292805609">LFCSP-48</option>
  1293. <option value="4290562553">LFCSP-72</option>
  1294. <option value="4292755129">LFCSP-8</option>
  1295. <option value="4292724229">LLP EP</option>
  1296. <option value="4292716920">LLP-32</option>
  1297. <option value="4294689638">LQFP</option>
  1298. <option value="4294688832">LQFP-100</option>
  1299. <option value="4294685151">LQFP-128</option>
  1300. <option value="4294688778">LQFP-144</option>
  1301. <option value="4294689560">LQFP-32</option>
  1302. <option value="4294688772">LQFP-44</option>
  1303. <option value="4294689385">LQFP-48</option>
  1304. <option value="4294688791">LQFP-64</option>
  1305. <option value="4294686690">LQFP-80</option>
  1306. <option value="4294573831">MDIP</option>
  1307. <option value="4292723942">Micro SMD</option>
  1308. <option value="4292768881">Micro-10</option>
  1309. <option value="4292830601">MLP-48</option>
  1310. <option value="4286172931">MP7751GF</option>
  1311. <option value="4286172933">MP7751GF-Z</option>
  1312. <option value="4294680716">MSOP</option>
  1313. <option value="4294735476">MSOP-10</option>
  1314. <option value="4294677980">MSOP-10 (Micro10)</option>
  1315. <option value="4294738692">MSOP-8</option>
  1316. <option value="4294677976">MSOP-8 (Micro8)</option>
  1317. <option value="4294434782">MSOP-8L</option>
  1318. <option value="4294397425">MULTIWATT</option>
  1319. <option value="4294446263">MULTIWATT V</option>
  1320. <option value="4294683994">Multiwatt-11</option>
  1321. <option value="4292786394">MULTIWATT-11</option>
  1322. <option value="4294684738">Multiwatt-15</option>
  1323. <option value="4292786444">MULTIWATT-15 H</option>
  1324. <option value="4294684075">Multiwatt-8</option>
  1325. <option value="4294689850">PDIP-14</option>
  1326. <option value="4294736797">PDIP-16</option>
  1327. <option value="4294688827">PDIP-20</option>
  1328. <option value="4294741647">PDIP-8</option>
  1329. <option value="4294729354">PLCC-28</option>
  1330. <option value="4294720159">PowerSO-20</option>
  1331. <option value="4292786402">PowerSO-22</option>
  1332. <option value="4294684692">PowerSO-36</option>
  1333. <option value="4288318841">PowerSO-EPU- 36</option>
  1334. <option value="4292972625">PowerSSO EP</option>
  1335. <option value="4292861087">PowerSSO-24</option>
  1336. <option value="4292844955">PowerSSO-36</option>
  1337. <option value="4292786437">PowerSSO-36 EP</option>
  1338. <option value="4288319062">PowerSSO-EP-36</option>
  1339. <option value="4292755283">PQFN-22</option>
  1340. <option value="4292801016">PQFN-32</option>
  1341. <option value="4291392989">PQFN-44</option>
  1342. <option value="4294688805">PQFP-80</option>
  1343. <option value="4292775083">PQFP-P1-48</option>
  1344. <option value="4294719890">QFN</option>
  1345. <option value="4294671306">QFN EP</option>
  1346. <option value="4294673486">QFN-10</option>
  1347. <option value="4294687744">QFN-12</option>
  1348. <option value="4294719844">QFN-16</option>
  1349. <option value="4294719608">QFN-20</option>
  1350. <option value="4292793920">QFN-20 EP</option>
  1351. <option value="4294687848">QFN-24</option>
  1352. <option value="4294689635">QFN-28</option>
  1353. <option value="4294668017">QFN-28V</option>
  1354. <option value="4294719691">QFN-32</option>
  1355. <option value="4294686100">QFN-36</option>
  1356. <option value="4294718250">QFN-40</option>
  1357. <option value="4294685209">QFN-48</option>
  1358. <option value="4294688812">QFN-8</option>
  1359. <option value="4292898434">QFN-EP-16</option>
  1360. <option value="4292765147">QFN-EP-20</option>
  1361. <option value="4284637098">QFN-EP-24</option>
  1362. <option value="4284650200">QFN-EP-32</option>
  1363. <option value="4284637144">QFN-EP-68</option>
  1364. <option value="4287705094">QFN1515-9L</option>
  1365. <option value="4294707458">QSOP-16</option>
  1366. <option value="4292786049">SBGA-24</option>
  1367. <option value="4294738690">SC-70-5</option>
  1368. <option value="4294736799">SC-70-6</option>
  1369. <option value="4294685916">SDIP-30</option>
  1370. <option value="4294684133">SDIP-32</option>
  1371. <option value="4294685489">SDIP30</option>
  1372. <option value="4294685991">SDMP-30</option>
  1373. <option value="4294707467">SIP-12</option>
  1374. <option value="4292686420">SIP-13H</option>
  1375. <option value="4294707466">SIP-14</option>
  1376. <option value="4291962081">SIP-14H</option>
  1377. <option value="4292686412">SIP-14HZ</option>
  1378. <option value="4294706767">SIP-15</option>
  1379. <option value="4292715903">SIP-19</option>
  1380. <option value="4292331434">SIP-5H</option>
  1381. <option value="4294730169">SIP-8</option>
  1382. <option value="4292786192">SIP-M-12</option>
  1383. <option value="4294735404">SO</option>
  1384. <option value="4294689380">SO-14</option>
  1385. <option value="4294731118">SO-16</option>
  1386. <option value="4287705125">SO-16EP</option>
  1387. <option value="4292831770">SO-16L</option>
  1388. <option value="4294740776">SO-20</option>
  1389. <option value="4294719609">SO-24</option>
  1390. <option value="4294689423">SO-28</option>
  1391. <option value="4294684199">SO-32</option>
  1392. <option value="4294741803">SO-8</option>
  1393. <option value="4292580288">SOIC-10</option>
  1394. <option value="4294707481">SOIC-14</option>
  1395. <option value="4294738489">SOIC-16</option>
  1396. <option value="4294012949">SOIC-16 Narrow</option>
  1397. <option value="4294687554">SOIC-16 Wide</option>
  1398. <option value="4294729352">SOIC-20</option>
  1399. <option value="4294687576">SOIC-20 Wide</option>
  1400. <option value="4294687808">SOIC-24</option>
  1401. <option value="4294689807">SOIC-28</option>
  1402. <option value="4294741649">SOIC-8</option>
  1403. <option value="4294012959">SOIC-8 Narrow</option>
  1404. <option value="4284650519">SOIC-Narrow-16</option>
  1405. <option value="4284650430">SOIC-Narrow-8</option>
  1406. <option value="4284650329">SOIC-Wide-16</option>
  1407. <option value="4294719607">SON-8</option>
  1408. <option value="4294689678">SOP-14</option>
  1409. <option value="4294728964">SOP-16</option>
  1410. <option value="4294686940">SOP-18</option>
  1411. <option value="4294687437">SOP-28</option>
  1412. <option value="4294685556">SOP-40</option>
  1413. <option value="4294728957">SOP-8</option>
  1414. <option value="4294720802">SOT-23-8</option>
  1415. <option value="4292831709">SOT-26-6</option>
  1416. <option value="4294666996">SOT-369</option>
  1417. <option value="4292828232">SOT-616-3</option>
  1418. <option value="4292708367">SOT-878-1</option>
  1419. <option value="4294665928">SOT-909</option>
  1420. <option value="4294717713">SOT-96</option>
  1421. <option value="4285986562">SOT243-17</option>
  1422. <option value="4294688645">SQFP</option>
  1423. <option value="4292786191">SQFP-100</option>
  1424. <option value="4294680403">SQFP-48</option>
  1425. <option value="4294668107">SQFP-56</option>
  1426. <option value="4292786189">SQFP-80</option>
  1427. <option value="4294668066">SQFP-T52</option>
  1428. <option value="4294739669">SSOP</option>
  1429. <option value="4294720934">SSOP-10</option>
  1430. <option value="4294720938">SSOP-14</option>
  1431. <option value="4294687810">SSOP-16</option>
  1432. <option value="4294740937">SSOP-20</option>
  1433. <option value="4294687790">SSOP-24</option>
  1434. <option value="4294689666">SSOP-28</option>
  1435. <option value="4294680026">SSOP-32</option>
  1436. <option value="4294687035">SSOP-44</option>
  1437. <option value="4292686379">SSOP-44J</option>
  1438. <option value="4292331490">SSOP-44K</option>
  1439. <option value="4294689536">SSOP-8</option>
  1440. <option value="4294428210">SSOP-A</option>
  1441. <option value="4292786186">SSOP-A-24</option>
  1442. <option value="4292786187">SSOP-A-32</option>
  1443. <option value="4294668106">SSOP-A24</option>
  1444. <option value="4294668114">SSOP-A32</option>
  1445. <option value="4294031432">SSOP-B</option>
  1446. <option value="4292786188">SSOP-B-20</option>
  1447. <option value="4292778035">SSOP-B-24</option>
  1448. <option value="4292786185">SSOP-B-28</option>
  1449. <option value="4292786190">SSOP-B-40</option>
  1450. <option value="4294718072">SSOP-B16</option>
  1451. <option value="4292821585">SSOP-B28</option>
  1452. <option value="4294668105">SSOP-B40</option>
  1453. <option value="4292981909">TDFN-10</option>
  1454. <option value="4292972416">TDFN-14</option>
  1455. <option value="4294721306">TDFN-8</option>
  1456. <option value="4291513361">TDFN-EP-10</option>
  1457. <option value="4292858950">TDFN-EP-8</option>
  1458. <option value="4287869433">TLA-68</option>
  1459. <option value="4294740663">TO-220</option>
  1460. <option value="4287546614">TO-263-9</option>
  1461. <option value="4294675805">TO-99</option>
  1462. <option value="4294686671">TO-99-8</option>
  1463. <option value="4294671142">TQFN-12</option>
  1464. <option value="4294719121">TQFN-16</option>
  1465. <option value="4292979570">TQFN-20</option>
  1466. <option value="4294671072">TQFN-24</option>
  1467. <option value="4294671152">TQFN-28</option>
  1468. <option value="4294671083">TQFN-32</option>
  1469. <option value="4294671147">TQFN-36</option>
  1470. <option value="4294004486">TQFN-40</option>
  1471. <option value="4292803926">TQFN-44</option>
  1472. <option value="4294671148">TQFN-56</option>
  1473. <option value="4292748119">TQFN-EP-12</option>
  1474. <option value="4292765112">TQFN-EP-16</option>
  1475. <option value="4292858945">TQFN-EP-20</option>
  1476. <option value="4288653661">TQFN-EP-24</option>
  1477. <option value="4292882242">TQFN-EP-28</option>
  1478. <option value="4292870819">TQFN-EP-32</option>
  1479. <option value="4292686955">TQFN-EP-36</option>
  1480. <option value="4292714085">TQFN-EP-56</option>
  1481. <option value="4294718154">TQFP-100</option>
  1482. <option value="4294686246">TQFP-32</option>
  1483. <option value="4294686335">TQFP-44</option>
  1484. <option value="4294686753">TQFP-48</option>
  1485. <option value="4294677312">TQFP-52</option>
  1486. <option value="4294718155">TQFP-64</option>
  1487. <option value="4294685179">TQFP-80</option>
  1488. <option value="4294738676">TSOP-6</option>
  1489. <option value="4294405130">TSSOP EP</option>
  1490. <option value="4294671700">TSSOP-10</option>
  1491. <option value="4294720455">TSSOP-14</option>
  1492. <option value="4294719970">TSSOP-16</option>
  1493. <option value="4294740958">TSSOP-20</option>
  1494. <option value="4294719112">TSSOP-24</option>
  1495. <option value="4294687460">TSSOP-28</option>
  1496. <option value="4285985534">TSSOP-28 F</option>
  1497. <option value="4294686508">TSSOP-30</option>
  1498. <option value="4294735472">TSSOP-38</option>
  1499. <option value="4294741800">TSSOP-8</option>
  1500. <option value="4294685862">TVSP-10</option>
  1501. <option value="4294685998">TVSP-8</option>
  1502. <option value="4278465349">U-WLB1520-12</option>
  1503. <option value="4292723787">uArray</option>
  1504. <option value="4284694915">UCSP-12</option>
  1505. <option value="4292888077">UCSP-16</option>
  1506. <option value="4292870782">UCSP-30</option>
  1507. <option value="4292779930">UCSP-9</option>
  1508. <option value="4292843110">UDFN-10</option>
  1509. <option value="4294672976">UDFN-8</option>
  1510. <option value="4290813843">UFBGA-16</option>
  1511. <option value="4292479281">UFBGA-20</option>
  1512. <option value="4292555589">UMAX-10</option>
  1513. <option value="4292555613">UMAX-8</option>
  1514. <option value="4292795344">UQFN-28</option>
  1515. <option value="4292724017">uSMD</option>
  1516. <option value="4292086372">uSMD-36</option>
  1517. <option value="4292580852">uSMD-4</option>
  1518. <option value="4292723756">uSMDxt</option>
  1519. <option value="4284625216">USOP-10</option>
  1520. <option value="4292556553">UTQFN-12</option>
  1521. <option value="4292556558">UTQFN-9</option>
  1522. <option value="4292556552">UTQFN-9L</option>
  1523. <option value="4292786183">VBGA-63</option>
  1524. <option value="4292786040">VCSP-9</option>
  1525. <option value="4292821547">VCSP50L2</option>
  1526. <option value="4294687003">VFBGA-48</option>
  1527. <option value="4289555726">VFQFN-56</option>
  1528. <option value="4294675367">VFQFPN-10</option>
  1529. <option value="4294689411">VFQFPN-16</option>
  1530. <option value="4294720780">VFQFPN-8</option>
  1531. <option value="4294006089">VQFN-14</option>
  1532. <option value="4294676527">VQFN-16</option>
  1533. <option value="4292790005">VQFN-16 EP</option>
  1534. <option value="4294668015">VQFN-20</option>
  1535. <option value="4294575726">VQFN-24</option>
  1536. <option value="4294668079">VQFN-28</option>
  1537. <option value="4294572410">VQFN-32</option>
  1538. <option value="4294649696">VQFN-48</option>
  1539. <option value="4292792910">VQFN-48 EP</option>
  1540. <option value="4287547268">VQFNP-20</option>
  1541. <option value="4294009072">VSON-8</option>
  1542. <option value="4294685889">VSP-10</option>
  1543. <option value="4294720885">VSP-8</option>
  1544. <option value="4294675830">VSSOP-10</option>
  1545. <option value="4294687469">VSSOP-8</option>
  1546. <option value="4273550733">W-QFN3020-12</option>
  1547. <option value="4292983293">WCSP-16</option>
  1548. <option value="4289630081">WL-CSP-16</option>
  1549. <option value="4292857503">WLCSP-12</option>
  1550. <option value="4292882947">WLCSP-16</option>
  1551. <option value="4292824166">WLCSP-20</option>
  1552. <option value="4292857517">WLCSP-6</option>
  1553. <option value="4294456097">WLCSP-8</option>
  1554. <option value="4294677986">WLCSP-9</option>
  1555. <option value="4294700370">WLCSP-9 (Flip Chip)</option>
  1556. <option value="4292803018">WLP-12</option>
  1557. <option value="4294735538">WLP-16</option>
  1558. <option value="4292880933">WLP-20</option>
  1559. <option value="4292880936">WLP-25</option>
  1560. <option value="4292718111">WLP-9</option>
  1561. <option value="4294675158">WQFN-16</option>
  1562. <option value="4294438277">WQFN-20</option>
  1563. <option value="4292828963">WQFN-24</option>
  1564. <option value="4287546615">WQFN-8</option>
  1565. <option value="4292828960">WSON-10</option>
  1566. <option value="4292475195">WSON-14</option>
  1567. <option value="4294685235">WSON-8</option>
  1568. <option value="4290813860">XFBGA-6</option>
  1569. </select>
  1570. </td>
  1571. </tr>
  1572. <tr>
  1573. <td>
  1574. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1575. </td>
  1576. </tr>
  1577. </table>
  1578. </td>
  1579. <td valign="bottom" style="width: 15px;">
  1580. &nbsp;
  1581. </td>
  1582. </tr>
  1583. </table>
  1584. </td><td>
  1585. <table cellpadding="0" cellspacing="0">
  1586. <tr>
  1587. <td>
  1588. <table>
  1589. <tr>
  1590. <td>
  1591. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">产品</span>
  1592. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1593. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1594. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1595. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1596. sorted parametric attributes from an endeca attribute group --->
  1597. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1598. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="688640" />
  1599. </div>
  1600. </td>
  1601. </tr>
  1602. <tr>
  1603. <td>
  1604. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688640" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_688640">
  1605. <option value="4273472149">Audio ADCs</option>
  1606. <option value="4292907236">Audio Amplifiers</option>
  1607. <option value="4271599263">Audio DACs</option>
  1608. <option value="4271599946">Audio Decoders</option>
  1609. <option value="4273390204">Audio DSPs</option>
  1610. <option value="4293992939">Audio Line Drivers / Receivers</option>
  1611. <option value="4273388415">Audio Processors</option>
  1612. <option value="4271598492">Audio SRCs</option>
  1613. <option value="4284156158">Audio Subsystems</option>
  1614. <option value="4278935259">Audio Transceivers</option>
  1615. <option value="4284435006">Compandors</option>
  1616. <option value="4270081366">Digital Audio Delay Processors</option>
  1617. <option value="4271542182">Digital Audio Processors</option>
  1618. <option value="4271485753">Digital Audio PWM Processors</option>
  1619. <option value="4284364727">Headphone Amplifiers</option>
  1620. <option value="4284155290">Microphone Preamplifiers</option>
  1621. <option value="4269908731">Preamplifier Controllers</option>
  1622. <option value="4270143373">Stereo Modulators</option>
  1623. <option value="4284364418">Volume Controls</option>
  1624. </select>
  1625. </td>
  1626. </tr>
  1627. <tr>
  1628. <td>
  1629. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1630. </td>
  1631. </tr>
  1632. </table>
  1633. </td>
  1634. <td valign="bottom" style="width: 15px;">
  1635. &nbsp;
  1636. </td>
  1637. </tr>
  1638. </table>
  1639. </td><td>
  1640. <table cellpadding="0" cellspacing="0">
  1641. <tr>
  1642. <td>
  1643. <table>
  1644. <tr>
  1645. <td>
  1646. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">类</span>
  1647. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1648. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1649. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1650. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1651. sorted parametric attributes from an endeca attribute group --->
  1652. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1653. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000000729" />
  1654. </div>
  1655. </td>
  1656. </tr>
  1657. <tr>
  1658. <td>
  1659. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000729" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000000729">
  1660. <option value="4284417413">Class-A</option>
  1661. <option value="4284417510">Class-AB</option>
  1662. <option value="4284414404">Class-AB, Class-D</option>
  1663. <option value="4284417370">Class-B</option>
  1664. <option value="4284417484">Class-D</option>
  1665. <option value="4284412748">Class-D, Class-G</option>
  1666. <option value="4284415241">Class-G</option>
  1667. <option value="4284415810">Class-H</option>
  1668. <option value="4284417070">Other</option>
  1669. </select>
  1670. </td>
  1671. </tr>
  1672. <tr>
  1673. <td>
  1674. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1675. </td>
  1676. </tr>
  1677. </table>
  1678. </td>
  1679. <td valign="bottom" style="width: 15px;">
  1680. &nbsp;
  1681. </td>
  1682. </tr>
  1683. </table>
  1684. </td><td>
  1685. <table cellpadding="0" cellspacing="0">
  1686. <tr>
  1687. <td>
  1688. <table>
  1689. <tr>
  1690. <td>
  1691. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">类型</span>
  1692. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1693. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1694. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1695. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1696. sorted parametric attributes from an endeca attribute group --->
  1697. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1698. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="688755" />
  1699. </div>
  1700. </td>
  1701. </tr>
  1702. <tr>
  1703. <td>
  1704. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$688755" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_688755">
  1705. <option value="4288009802">2 Channel BTL</option>
  1706. <option value="4288011973">2 Channel Stereo</option>
  1707. <option value="4288010811">2 Channels Electronic Volume</option>
  1708. <option value="4288010506">2.1 Channel</option>
  1709. <option value="4288014019">2.1 Channel Stereo</option>
  1710. <option value="4294602062">3D Surround Audio Processor</option>
  1711. <option value="4294401728">4 Channel</option>
  1712. <option value="4273955724">6 Channel DAC</option>
  1713. <option value="4294675442"></option>
  1714. <option value="4286425213">1-Channel</option>
  1715. <option value="4286466874">1-Channel FET Input</option>
  1716. <option value="4283796565">1-Channel Line Driver</option>
  1717. <option value="4283798860">1-Channel Line Receiver</option>
  1718. <option value="4288015125">1-Channel Mono</option>
  1719. <option value="4284361493">1-Channel Mono Headphone</option>
  1720. <option value="4288015118">1-Channel Mono or 2-Channel Stereo</option>
  1721. <option value="4288015058">1-Channel Mono or 2-Channel Stereo or 4-Channel Stereo</option>
  1722. <option value="4284431340">1-Channel Piezo Driver</option>
  1723. <option value="4277367834">1-Channel Power Amplifier</option>
  1724. <option value="4283799322">1-Channel Programmable</option>
  1725. <option value="4286443880">1-Channel Rail-to-Rail</option>
  1726. <option value="4288014717">1-Channel Single End</option>
  1727. <option value="4288010674">1-Channel Speaker</option>
  1728. <option value="4284430716">1-Channel with Level Detector</option>
  1729. <option value="4284395945">1-Channel with Mono and Stereo Headphone</option>
  1730. <option value="4283772144">1-Channel with Mono Headphone</option>
  1731. <option value="4288012846">1-Channel, Rail to Rail</option>
  1732. <option value="4285985963">2- Channel Audio Power Amplifier</option>
  1733. <option value="4288009638">2-Channel</option>
  1734. <option value="4288014861">2-Channel Audio</option>
  1735. <option value="4288009601">2-Channel BTL</option>
  1736. <option value="4288009094">2-Channel Digital</option>
  1737. <option value="4286446157">2-Channel FET Input</option>
  1738. <option value="4288012305">2-Channel Headphone</option>
  1739. <option value="4288012302">2-Channel Headphone Driver</option>
  1740. <option value="4283676025">2-Channel Headphone with Noise Cancelling</option>
  1741. <option value="4283771514">2-Channel Line Driver</option>
  1742. <option value="4283683640">2-Channel Line Driver with Stereo Headphone</option>
  1743. <option value="4283798891">2-Channel Line Receiver</option>
  1744. <option value="4288012611">2-Channel Mono</option>
  1745. <option value="4277367839">2-Channel Power Amplifier</option>
  1746. <option value="4286443879">2-Channel Rail-to-Rail</option>
  1747. <option value="4288015122">2-Channel Stereo</option>
  1748. <option value="4288014552">2-Channel Stereo Audio Volume Control</option>
  1749. <option value="4288012318">2-Channel Stereo Headphone</option>
  1750. <option value="4288013603">2-Channel Stereo or 3-Channel Stereo</option>
  1751. <option value="4288015079">2-Channel Stereo or 4-Channel Stereo</option>
  1752. <option value="4284395944">2-Channel Stereo with Headphone</option>
  1753. <option value="4288011132">2-Channel Stereo with Headphone Amp</option>
  1754. <option value="4283782093">2-Channel Stereo with Stereo Headphone</option>
  1755. <option value="4288011099">2-Channel Volume</option>
  1756. <option value="4288014865">2-Channel, Compression or Expansion</option>
  1757. <option value="4288012080">2-Channel, Rail to Rail</option>
  1758. <option value="4285985967">3- Channel Stereo</option>
  1759. <option value="4286424688">3-Channel</option>
  1760. <option value="4288015095">3-Channel Stereo</option>
  1761. <option value="4288014032">3-Channel Stereo or 6-Channel Stereo</option>
  1762. <option value="4288014862">3-Channel, Compression or Expansion</option>
  1763. <option value="4288012137">4-Channel</option>
  1764. <option value="4288014551">4-Channel Audio</option>
  1765. <option value="4288009427">4-Channel BTL</option>
  1766. <option value="4286446156">4-Channel FET Input</option>
  1767. <option value="4286443878">4-Channel Rail-to-Rail</option>
  1768. <option value="4288015068">4-Channel Stereo</option>
  1769. <option value="4288010424">4-Channel, Rail to Rail</option>
  1770. <option value="4288015085">6-Channel Volume</option>
  1771. <option value="4284363806">6-Channel Volume Control</option>
  1772. <option value="4288014018">8-Channel Audio</option>
  1773. <option value="4292027183">Adjustable</option>
  1774. <option value="4292821131">ADPCM Processor</option>
  1775. <option value="4271598491">Asynchronous Audio SRC</option>
  1776. <option value="4294577228">Audio ADC</option>
  1777. <option value="4271868155">Audio ADCs With Universal Front End</option>
  1778. <option value="4294577260">Audio DAC</option>
  1779. <option value="4294684822">Audio Decoder</option>
  1780. <option value="4294444909">Audio DSP</option>
  1781. <option value="4273390203">Audio DSP DAC</option>
  1782. <option value="4273400396">Audio DSP with Analog Interface</option>
  1783. <option value="4294685843">Audio IC</option>
  1784. <option value="4294438668">Audio Networking Processor</option>
  1785. <option value="4287533342">Audio Operational Amplifier</option>
  1786. <option value="4294680287">Audio Power Amplifier</option>
  1787. <option value="4294685836">Audio Processor</option>
  1788. <option value="4273390199">Audio Signal Processing DAC</option>
  1789. <option value="4294673317">Audio Stereo DAC</option>
  1790. <option value="4273388414">Automotive Audio Processor</option>
  1791. <option value="4285258114">Bipolar Input Audio Operational Amplifier</option>
  1792. <option value="4294683886">Car Radio Diagnostic Processor</option>
  1793. <option value="4292902801">Car Radio Signal Processor</option>
  1794. <option value="4284432572">Click-Pop Suppressor</option>
  1795. <option value="4288013732">Configurable</option>
  1796. <option value="4294649311">Differential</option>
  1797. <option value="4292979896">Digital</option>
  1798. <option value="4271484541">Digital Audio Delay</option>
  1799. <option value="4294669852">Digital Audio Interface Receiver</option>
  1800. <option value="4294683478">Digital Audio Interface Transmitter</option>
  1801. <option value="4273400708">Digital Audio LIP-SYNC Delay</option>
  1802. <option value="4294675696">Digital Audio Processor</option>
  1803. <option value="4292810610">Digital Audio Receiver</option>
  1804. <option value="4294673224">Digital Audio Receivers</option>
  1805. <option value="4290998790">Digital Audio Transceivers</option>
  1806. <option value="4294438317">Digital Audio Transmitters</option>
  1807. <option value="4294685794">Double balanced modulation / Demodulator</option>
  1808. <option value="4289874369">Dual</option>
  1809. <option value="4293983058">Dual Operational Amplifier</option>
  1810. <option value="4292026829">Fixed</option>
  1811. <option value="4294685508">FM IF Demodulator IC</option>
  1812. <option value="4294685586">FM IF IC for Pager</option>
  1813. <option value="4292774853">Full Bridge</option>
  1814. <option value="4290998210">HD Radio Baseband Receivers</option>
  1815. <option value="4286229147">High Speed MOSFET</option>
  1816. <option value="4273088342">Inductor Free Stereo</option>
  1817. <option value="4273953454">Low-Power Mono Audio DAC with Embedded miniDSP</option>
  1818. <option value="4271588345">Microphone ADC</option>
  1819. <option value="4264830450">Microphone Processor</option>
  1820. <option value="4288012822">Mono</option>
  1821. <option value="4290998206">Mono Audio Streamers</option>
  1822. <option value="4288012306">Mono, Stereo</option>
  1823. <option value="4273390201">Multichannel Audio Processor</option>
  1824. <option value="4293981110">Network Controller &amp; Processor</option>
  1825. <option value="4277645858">Noise Reduction Amplifier with Microphone</option>
  1826. <option value="4286574850">Peizo Sounder Driver</option>
  1827. <option value="4294451546">Power Amplifier</option>
  1828. <option value="4292907481">Programmable Tone Gong</option>
  1829. <option value="4271587863">Quad Audio ADC</option>
  1830. <option value="4288014020">Rail-to-Rail</option>
  1831. <option value="4288010491">Single Ended Stereo</option>
  1832. <option value="4269912979">Sound Processor with EQ</option>
  1833. <option value="4278800118">Speakerphone</option>
  1834. <option value="4283787235">Speakerphone System</option>
  1835. <option value="4288012299">Stereo</option>
  1836. <option value="4271597600">Stereo ADC</option>
  1837. <option value="4294675795">Stereo Audio ADC</option>
  1838. <option value="4294667499">Stereo Audio DAC</option>
  1839. <option value="4288009286">Stereo BTL</option>
  1840. <option value="4294673450">Stereo DAC</option>
  1841. <option value="4273952175">Stereo DAC with 2Vrms</option>
  1842. <option value="4294671551">Stereo DACs</option>
  1843. <option value="4294680042">Stereo Headphone Amplifier</option>
  1844. <option value="4294685740">Stereo Modulator</option>
  1845. <option value="4264433807">Stereo Selector</option>
  1846. <option value="4292907669">Surround Processor</option>
  1847. <option value="4294679781">Three Bands Digitally controlled audio processor</option>
  1848. <option value="4294400759">Voice Band Audio Processor</option>
  1849. <option value="4279568162">Voltage Controlled Amplifier</option>
  1850. <option value="4290998207">Wireless Audio Streamers</option>
  1851. </select>
  1852. </td>
  1853. </tr>
  1854. <tr>
  1855. <td>
  1856. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1857. </td>
  1858. </tr>
  1859. </table>
  1860. </td>
  1861. <td valign="bottom" style="width: 15px;">
  1862. &nbsp;
  1863. </td>
  1864. </tr>
  1865. </table>
  1866. </td><td>
  1867. <table cellpadding="0" cellspacing="0">
  1868. <tr>
  1869. <td>
  1870. <table>
  1871. <tr>
  1872. <td>
  1873. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">通道数量</span>
  1874. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  1875. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1876. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1877. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1878. sorted parametric attributes from an endeca attribute group --->
  1879. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  1880. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="1826902" />
  1881. </div>
  1882. </td>
  1883. </tr>
  1884. <tr>
  1885. <td>
  1886. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1826902" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_1826902">
  1887. <option value="4292988712">1 Channel</option>
  1888. <option value="4292972354">2 Channel</option>
  1889. <option value="4292972352">3 Channel</option>
  1890. <option value="4292903166">4 Channel</option>
  1891. <option value="4282465441">4 Channel, 2 Channel</option>
  1892. <option value="4292903163">6 Channel</option>
  1893. <option value="4292972353">8 Channel</option>
  1894. <option value="4288418998">12 Channel</option>
  1895. <option value="4292903164">16 Channel</option>
  1896. </select>
  1897. </td>
  1898. </tr>
  1899. <tr>
  1900. <td>
  1901. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1902. </td>
  1903. </tr>
  1904. </table>
  1905. </td>
  1906. <td valign="bottom" style="width: 15px;">
  1907. &nbsp;
  1908. </td>
  1909. </tr>
  1910. </table>
  1911. </td><td>
  1912. <table cellpadding="0" cellspacing="0">
  1913. <tr>
  1914. <td>
  1915. <table>
  1916. <tr>
  1917. <td>
  1918. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lblheader" style="font-weight:bold;white-space:normal;">最大工作温度</span>
  1919. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_RangePnl">
  1920. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1921. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1922. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1923. sorted parametric attributes from an endeca attribute group --->
  1924. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnRange" />
  1925. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnDimId" value="1000000314" />
  1926. </div>
  1927. </td>
  1928. </tr>
  1929. <tr>
  1930. <td>
  1931. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1000000314" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_1000000314">
  1932. <option value="4294574807">+ 60 C</option>
  1933. <option value="4294629996">+ 70 C</option>
  1934. <option value="4294629984">+ 75 C</option>
  1935. <option value="4294631168">+ 80 C</option>
  1936. <option value="4294630005">+ 85 C</option>
  1937. <option value="4294575688">+ 90 C</option>
  1938. <option value="4294629968">+ 100 C</option>
  1939. <option value="4294568129">+ 105 C</option>
  1940. <option value="4294592637">+ 110 C</option>
  1941. <option value="4294441852">+ 115 C</option>
  1942. <option value="4294631245">+ 125 C</option>
  1943. <option value="4294630283">+ 150 C</option>
  1944. </select>
  1945. </td>
  1946. </tr>
  1947. <tr>
  1948. <td>
  1949. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1950. </td>
  1951. </tr>
  1952. </table>
  1953. </td>
  1954. <td valign="bottom" style="width: 15px;">
  1955. &nbsp;
  1956. </td>
  1957. </tr>
  1958. </table>
  1959. </td><td>
  1960. <table cellpadding="0" cellspacing="0">
  1961. <tr>
  1962. <td>
  1963. <table>
  1964. <tr>
  1965. <td>
  1966. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lblheader" style="font-weight:bold;white-space:normal;">封装</span>
  1967. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_RangePnl">
  1968. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1969. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1970. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1971. sorted parametric attributes from an endeca attribute group --->
  1972. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnRange" />
  1973. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnDimId" value="688610" />
  1974. </div>
  1975. </td>
  1976. </tr>
  1977. <tr>
  1978. <td>
  1979. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$688610" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_688610">
  1980. <option value="4294966129">Ammo Pack</option>
  1981. <option value="4294966193">Bulk</option>
  1982. <option value="4294966263">Reel</option>
  1983. <option value="4294965250">Tray</option>
  1984. <option value="4294966123">Tube</option>
  1985. </select>
  1986. </td>
  1987. </tr>
  1988. <tr>
  1989. <td>
  1990. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1991. </td>
  1992. </tr>
  1993. </table>
  1994. </td>
  1995. <td valign="bottom" style="width: 15px;">
  1996. &nbsp;
  1997. </td>
  1998. </tr>
  1999. </table>
  2000. </td>
  2001. </tr>
  2002. </table>
  2003. <table class="ApplyFilter">
  2004. <tr>
  2005. <td class="ApplyFilterColumn1">
  2006. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  2007. </td>
  2008. <td class="ApplyFilterColumn2">
  2009. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  2010. </td>
  2011. <td class="ApplyFilterColumn2_5">
  2012. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  2013. </td>
  2014. <td class="ApplyFilterColumn3">
  2015. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  2016. </td>
  2017. </tr>
  2018. </table>
  2019. </td>
  2020. </tr>
  2021. </table>
  2022. </div>
  2023. </td>
  2024. </tr>
  2025. </table>
  2026. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  2027. height: 70px; display: none; background: white; border: 1px solid #000;'>
  2028. <br />
  2029. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  2030. <br />
  2031. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  2032. <!--Close Window-->
  2033. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  2034. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  2035. </a>&nbsp;&nbsp;</div>
  2036. </div>
  2037. <div id ="VisualAttributePopup" class="hidden" >
  2038. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  2039. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  2040. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  2041. </div>
  2042. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id= "loadingimgspinner" src="/Images/spinner2.gif" /></div>
  2043. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  2044. <table id="tblAttributes" >
  2045. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  2046. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  2047. <td class="visualAttributeImage">
  2048. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  2049. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  2050. </td>
  2051. <td>
  2052. <table class="visualAttValueDesc">
  2053. <tr>
  2054. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  2055. </tr>
  2056. <tr>
  2057. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  2058. </tr>
  2059. <tr data-bind="if: ImagePath1 ">
  2060. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs"/></div></td>
  2061. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  2062. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  2063. </tr>
  2064. </table>
  2065. </td>
  2066. </tr>
  2067. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  2068. </tbody>
  2069. </table>
  2070. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id= "Img1" src="/Images/spinner2.gif" />
  2071. <div data-bind="if: hasMoreOptions" align="center">
  2072. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  2073. </div>
  2074. </div>
  2075. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  2076. <div class="visualAttributesBtnDiv">
  2077. <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" />
  2078. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  2079. <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" />
  2080. </div>
  2081. </div>
  2082. <style type="text/css">
  2083. /* These styles are to customize "Visual Parametrics" modal window */
  2084. .ui-dialog { position: absolute; padding: 0px !important; width: 300px; overflow: hidden;}
  2085. .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .6em !important; background: none; overflow: auto; zoom: 1; max-height: 450px;}
  2086. .ui-dialog .ui-dialog-titlebar { padding: .4em .5em !important; position: relative; background: none repeat scroll 0 0 #E0E4E9; font-size:15px; }
  2087. .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border-bottom-right-radius: 0; }
  2088. .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-bottom-left-radius: 0; }
  2089. </style>
  2090. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2091. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  2092. </div>
  2093. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  2094. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  2095. <script src='../../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  2096. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  2097. <script type="text/javascript">
  2098. $().ready(function () {
  2099. ko.applyBindings(new DisplayAttributesModel());
  2100. ko.bindingHandlers.hoverToggle = {
  2101. update: function (element, valueAccessor) {
  2102. var css = valueAccessor();
  2103. var isSelected = $(element).hasClass("selectedAttribute");
  2104. if (!isSelected) {
  2105. ko.utils.registerEventHandler(element, "mouseenter", function () {
  2106. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  2107. });
  2108. ko.utils.registerEventHandler(element, "mouseleave", function () {
  2109. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  2110. });
  2111. }
  2112. }
  2113. };
  2114. });
  2115. </script>
  2116. </div>
  2117. <div id="refine-mfg-logo2">
  2118. </div>
  2119. </div>
  2120. <br />
  2121. <table border="0" width="100%">
  2122. <tr>
  2123. <td>
  2124. </td>
  2125. </tr>
  2126. <tr>
  2127. <td>
  2128. <!--- Search Features --->
  2129. </td>
  2130. </tr>
  2131. <tr>
  2132. <td>
  2133. <div id="refine-page">
  2134. </div>
  2135. </td>
  2136. </tr>
  2137. <tr>
  2138. <td class="refine-show-products">
  2139. <span class="redtextb">
  2140. </span> <span class="redtextb">
  2141. </span> <span class="redtextb">
  2142. </span> <span class="redtextb">
  2143. </span>
  2144. <span class="redtextb">
  2145. </span>
  2146. </td>
  2147. </tr>
  2148. <tr>
  2149. <td>
  2150. </td>
  2151. </tr>
  2152. <tr>
  2153. <td>
  2154. <!--- Special Order Parts New --->
  2155. <!-- SOP Section 1 -->
  2156. </td>
  2157. </tr>
  2158. </table>
  2159. <div id="searchResultsTbl">
  2160. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  2161. <tr>
  2162. <td class="tdSearchResultsPagingTop">
  2163. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  2164. <tr>
  2165. <td>
  2166. <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" />
  2167. </td>
  2168. <td>
  2169. <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" />
  2170. </td>
  2171. <td>
  2172. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  2173. </td>
  2174. <td style="padding-left: 40px;">
  2175. <div class="floatrightpager">
  2176. <span class="bold">
  2177. 页面:
  2178. </span>
  2179. <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/Audio-ICs/_/N-6j740/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_137" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=3425">138</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=25">下一页</a></span>
  2180. </div>
  2181. </td>
  2182. </tr>
  2183. </table>
  2184. </td>
  2185. </tr>
  2186. <tr>
  2187. <td>
  2188. <div>
  2189. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  2190. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  2191. <th class="td-select" scope="col" style="width:35px;">
  2192. 选择
  2193. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  2194. </th><th scope="col">制造商 零件编号
  2195. </th><th scope="col">制造商
  2196. </th><th scope="col">描述
  2197. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../Images/Search/pdf.gif" alt="文件" />
  2198. </th><th scope="col">供货情况
  2199. </th><th scope="col">单价(含17%增值税)
  2200. <br />
  2201. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  2202. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  2203. </th><th class="SearchResultParametricColumnHeading" scope="col">安装风格
  2204. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  2205. </th><th class="SearchResultParametricColumnHeading" scope="col">产品
  2206. </th><th class="SearchResultParametricColumnHeading" scope="col">类
  2207. </th><th class="SearchResultParametricColumnHeading" scope="col">类型
  2208. </th><th class="SearchResultParametricColumnHeading" scope="col">通道数量
  2209. </th><th class="SearchResultParametricColumnHeading" scope="col">最大工作温度
  2210. </th><th class="SearchResultParametricColumnHeading" scope="col">封装
  2211. </th>
  2212. </tr><tr class="SearchResultsSortCell">
  2213. <td class="td-select" align="center"></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl19&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 Mouser 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$MouserPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl21&#39;,&#39;&#39;)"><img title="按 Mouser 零件编号 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 Mouser 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Ascending&#39;); return false;" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl02_ctl23" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl23&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 零件编号 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$ManufacturerPartNumber>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl25&#39;,&#39;&#39;)"><img title="按 制造商 零件编号 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 零件编号 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl27&#39;,&#39;&#39;)"><img title="按 制造商 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 制造商 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Brand>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl29&#39;,&#39;&#39;)"><img title="按 制造商 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 制造商 Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Default>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl31&#39;,&#39;&#39;)"><img title="按 供货情况 Ascending 排序" src="../../../../../Images/Search/btn_ActiveSort_Up.jpg" alt="按 供货情况 Ascending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl33&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 单价(含17%增值税) Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Pricing>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl35&#39;,&#39;&#39;)"><img title="按 单价(含17%增值税) Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 单价(含17%增值税) Descending 排序" /></a></td><td></td><td></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Mounting Style>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl37&#39;,&#39;&#39;)"><img title="按 安装风格 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 安装风格 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Mounting Style>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl39&#39;,&#39;&#39;)"><img title="按 安装风格 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 安装风格 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl41&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 封装 / 箱体 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl43&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 / 箱体 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Product>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl45&#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$ctl47&#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$Class>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl49&#39;,&#39;&#39;)"><img title="按 类 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 类 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Class>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl51&#39;,&#39;&#39;)"><img title="按 类 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 类 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Type>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl53&#39;,&#39;&#39;)"><img title="按 类型 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 类型 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Type>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl55&#39;,&#39;&#39;)"><img title="按 类型 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 类型 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of Channels>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl57&#39;,&#39;&#39;)"><img title="按 通道数量 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 通道数量 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Number of Channels>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl59&#39;,&#39;&#39;)"><img title="按 通道数量 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 通道数量 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Operating Temperature>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl61&#39;,&#39;&#39;)"><img title="按 最大工作温度 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 最大工作温度 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Operating Temperature>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl63&#39;,&#39;&#39;)"><img title="按 最大工作温度 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 最大工作温度 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Packaging>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl65&#39;,&#39;&#39;)"><img title="按 封装 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 封装 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Packaging>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl67&#39;,&#39;&#39;)"><img title="按 封装 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 Descending 排序" /></a></td>
  2214. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-OPA1622IDRCT" data-index="3">
  2215. <td class="td-select" align="center">
  2216. <div style="padding: 5px 5px 0 5px;">
  2217. <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>
  2218. </div>
  2219. </td><td></td><td>
  2220. <div style="text-align:left;">
  2221. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/OPA1622IDRCT/?qs=sGAEpiMZZMtuedWc5vOqGLPpWqAEQtxJ4FbOwyZk3xsbO1s0mvMPpA%3d%3d">595-OPA1622IDRCT</a><br />
  2222. <br />
  2223. <br />
  2224. 要购买完整 卷轴,请订购 250 的倍数:
  2225. </div></td><td>
  2226. <div class="mfrDiv">
  2227. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/OPA1622IDRCT/?qs=sGAEpiMZZMtuedWc5vOqGLPpWqAEQtxJ4FbOwyZk3xsbO1s0mvMPpA%3d%3d">OPA1622IDRCT</a><br />
  2228. <br />
  2229. <div style="width: 100%; text-align: center;">
  2230. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2231. </div>
  2232. <div style="width: 100%; text-align: center;">
  2233. </div>
  2234. </div>
  2235. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2236. </td><td>音频放大器 SoundPlus High-Performance, Low THD+N, Bipolar-Input Audio Operational Amplifier
  2237. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2238. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-opa1622-amplifier/">了解更多</a>
  2239. </div>
  2240. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2241. </div>
  2242. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-OPA1622IDRCT | OPA1622IDRCT&quot;]);" href="http://www.mouser.com/ds/2/405/opa1622-795697.pdf" target="_blank">数据表</a>
  2243. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">1,729<br/>有库存</span>
  2244. <table>
  2245. <tr align="center">
  2246. <td style="padding-top: 5px">
  2247. </td>
  2248. </tr>
  2249. <tr align="center">
  2250. <td style="padding-top: 5px; padding-bottom: 5px">
  2251. </td>
  2252. </tr>
  2253. </table></td><td>
  2254. <table class="PriceBreaks" cellspacing="0" border="0">
  2255. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2256. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2257. </td>
  2258. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2259. </td>
  2260. </tr>
  2261. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2262. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2263. 剪切带
  2264. </td>
  2265. </tr>
  2266. <tr>
  2267. <td class="PriceBreakQuantity">
  2268. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  2269. </td>
  2270. <td class="PriceBreakPrice">
  2271. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥54.99</span>
  2272. </td>
  2273. </tr>
  2274. <tr>
  2275. <td class="PriceBreakQuantity">
  2276. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  2277. </td>
  2278. <td class="PriceBreakPrice">
  2279. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥49.6665</span>
  2280. </td>
  2281. </tr>
  2282. <tr>
  2283. <td class="PriceBreakQuantity">
  2284. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,25);">25:</a>
  2285. </td>
  2286. <td class="PriceBreakPrice">
  2287. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥45.9693</span>
  2288. </td>
  2289. </tr>
  2290. <tr>
  2291. <td class="PriceBreakQuantity">
  2292. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,50);">50:</a>
  2293. </td>
  2294. <td class="PriceBreakPrice">
  2295. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥43.8984</span>
  2296. </td>
  2297. </tr>
  2298. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2299. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2300. 卷轴
  2301. </td>
  2302. </tr>
  2303. <tr>
  2304. <td class="PriceBreakQuantity">
  2305. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(1,250);">250:</a>
  2306. </td>
  2307. <td class="PriceBreakPrice">
  2308. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥39.2769</span>
  2309. </td>
  2310. </tr>
  2311. <tr>
  2312. <td class="PriceBreakQuantity">
  2313. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(1,500);">500:</a>
  2314. </td>
  2315. <td class="PriceBreakPrice">
  2316. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Texas-Instruments/OPA1622IDRCT/?qs=sGAEpiMZZMtuedWc5vOqGLPpWqAEQtxJ4FbOwyZk3xsbO1s0mvMPpA%3d%3d' >查看</a></span>
  2317. </td>
  2318. </tr>
  2319. <tr>
  2320. <td><br /></td>
  2321. </tr>
  2322. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  2323. <td colspan="2" style="text-align: center;">
  2324. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/OPA1622IDRCT/?qs=sGAEpiMZZMtuedWc5vOqGLPpWqAEQtxJ4FbOwyZk3xsbO1s0mvMPpA%3d%3d">MouseReel 提供服务支持</a>
  2325. </td>
  2326. </tr>
  2327. </table>
  2328. </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;)">
  2329. <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 />
  2330. <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="购买 OPA1622IDRCT" class="buy-button" /><br />
  2331. <table cellspacing="0" border="0" style="width: 100%;">
  2332. <tr>
  2333. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2334. 最低:
  2335. </td>
  2336. <td style="padding-left: 2px; text-align: left;">
  2337. 1
  2338. </td>
  2339. </tr>
  2340. <tr>
  2341. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2342. 多个:
  2343. </td>
  2344. <td style="padding-left: 2px; text-align: left;">
  2345. 1
  2346. </td>
  2347. </tr>
  2348. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_trReel">
  2349. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2350. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(1,250);">卷轴</a>:
  2351. </td>
  2352. <td style="padding-left: 2px; text-align: left;">
  2353. <em class="SearchResultsReel">
  2354. 250
  2355. </em>
  2356. </td>
  2357. </tr>
  2358. </table>
  2359. </div>
  2360. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  2361. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2362. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uHZ9byUtHCeZ8GiVRXzbuA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=uHZ9byUtHCeZ8GiVRXzbuA%3d%3d" target="_blank">详细信息</a>
  2363. </div>
  2364. </td><td>
  2365. </td><td>
  2366. </td><td>Audio Amplifiers
  2367. </td><td>
  2368. </td><td>
  2369. </td><td>
  2370. </td><td>
  2371. </td><td>Reel
  2372. </td>
  2373. </tr><tr class="SearchResultsRowEven" data-partnumber="595-TPA3251D2DDV" data-index="4">
  2374. <td class="td-select" align="center">
  2375. <div style="padding: 5px 5px 0 5px;">
  2376. <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>
  2377. </div>
  2378. </td><td><a href='/ProductDetail/Texas-Instruments/TPA3251D2DDV/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO8GFJl8G0ULBM6VmgEJP1xSg%3d%3d'><img title='Texas Instruments TPA3251D2DDV' alt='Texas Instruments TPA3251D2DDV' id=1484320822 src='/images/texasinstruments/sm/TI_HTSSOP_44.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_HTSSOP_44.jpg</div></a></td><td>
  2379. <div style="text-align:left;">
  2380. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TPA3251D2DDV/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO8GFJl8G0ULBM6VmgEJP1xSg%3d%3d">595-TPA3251D2DDV</a><br />
  2381. <br />
  2382. <br />
  2383. </div></td><td>
  2384. <div class="mfrDiv">
  2385. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TPA3251D2DDV/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO8GFJl8G0ULBM6VmgEJP1xSg%3d%3d">TPA3251D2DDV</a><br />
  2386. <br />
  2387. <div style="width: 100%; text-align: center;">
  2388. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2389. </div>
  2390. <div style="width: 100%; text-align: center;">
  2391. </div>
  2392. </div>
  2393. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2394. </td><td>音频放大器 TPA3251D2 High Performance 175W Stereo (BTL) Feedback Class-D Audio 44-HTSSOP 0 to 70
  2395. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2396. </div>
  2397. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-TPA3251D2DDV | TPA3251D2DDV&quot;]);" href="http://www.mouser.com/ds/2/405/tpa3251d2-710408.pdf" target="_blank">数据表</a>
  2398. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">352<br/>有库存</span>
  2399. <table>
  2400. <tr align="center">
  2401. <td style="padding-top: 5px">
  2402. </td>
  2403. </tr>
  2404. <tr align="center">
  2405. <td style="padding-top: 5px; padding-bottom: 5px">
  2406. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAlternativePackaging" title="备用包装 | 595-TPA3251D2DDV" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSF64MUX60ApPOC5E7ryEeDrQMPA%252bHQjQR4P9GKqTzAtFFbc1wS3c1LSIMXubBjPHQQWeGt0kRJnKM9FKNXWia95OV%2fbENdyc%2fblUbQv53ZL8evrV07VeXaFdbDarhf9ZI%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2407. </td>
  2408. </tr>
  2409. </table></td><td>
  2410. <table class="PriceBreaks" cellspacing="0" border="0">
  2411. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2412. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2413. </td>
  2414. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2415. </td>
  2416. </tr>
  2417. <tr>
  2418. <td class="PriceBreakQuantity">
  2419. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  2420. </td>
  2421. <td class="PriceBreakPrice">
  2422. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥86.4045</span>
  2423. </td>
  2424. </tr>
  2425. <tr>
  2426. <td class="PriceBreakQuantity">
  2427. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  2428. </td>
  2429. <td class="PriceBreakPrice">
  2430. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥79.3962</span>
  2431. </td>
  2432. </tr>
  2433. <tr>
  2434. <td class="PriceBreakQuantity">
  2435. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,25);">25:</a>
  2436. </td>
  2437. <td class="PriceBreakPrice">
  2438. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥75.3129</span>
  2439. </td>
  2440. </tr>
  2441. <tr>
  2442. <td class="PriceBreakQuantity">
  2443. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,50);">50:</a>
  2444. </td>
  2445. <td class="PriceBreakPrice">
  2446. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥73.2303</span>
  2447. </td>
  2448. </tr>
  2449. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2450. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2451. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  2452. </td>
  2453. <td class="PriceBreakPrice">
  2454. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/TPA3251D2DDV/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO8GFJl8G0ULBM6VmgEJP1xSg%3d%3d">查看</a>
  2455. </td>
  2456. </tr>
  2457. <tr>
  2458. <td><br /></td>
  2459. </tr>
  2460. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2461. <td colspan="2" style="text-align: center;">
  2462. </td>
  2463. </tr>
  2464. </table>
  2465. </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;)">
  2466. <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 />
  2467. <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="购买 TPA3251D2DDV" class="buy-button" /><br />
  2468. <table cellspacing="0" border="0" style="width: 100%;">
  2469. <tr>
  2470. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2471. 最低:
  2472. </td>
  2473. <td style="padding-left: 2px; text-align: left;">
  2474. 1
  2475. </td>
  2476. </tr>
  2477. <tr>
  2478. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2479. 多个:
  2480. </td>
  2481. <td style="padding-left: 2px; text-align: left;">
  2482. 1
  2483. </td>
  2484. </tr>
  2485. </table>
  2486. </div>
  2487. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  2488. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2489. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=i%252bJGd1dzdt%252bDncgc8UtCLQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=i%252bJGd1dzdt%252bDncgc8UtCLQ%3d%3d" target="_blank">详细信息</a>
  2490. </div>
  2491. </td><td>SMD/SMT
  2492. </td><td>HTSSOP-44
  2493. </td><td>Audio Amplifiers
  2494. </td><td>Class-D
  2495. </td><td>Mono, Stereo
  2496. </td><td>4 Channel
  2497. </td><td>+ 70 C
  2498. </td><td>Tube
  2499. </td>
  2500. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-TPA3144D2PWPR" data-index="5">
  2501. <td class="td-select" align="center">
  2502. <div style="padding: 5px 5px 0 5px;">
  2503. <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>
  2504. </div>
  2505. </td><td><a href='/ProductDetail/Texas-Instruments/TPA3144D2PWPR/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO8WaJdiy9p%2fnFRK15W1IUFoA%3d%3d'><img title='Texas Instruments TPA3144D2PWPR' alt='Texas Instruments TPA3144D2PWPR' id=1480438104 src='/images/texasinstruments/sm/TI_HTSSOP_28.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_HTSSOP_28.jpg</div></a></td><td>
  2506. <div style="text-align:left;">
  2507. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TPA3144D2PWPR/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO8WaJdiy9p%2fnFRK15W1IUFoA%3d%3d">595-TPA3144D2PWPR</a><br />
  2508. <br />
  2509. <br />
  2510. 要购买完整 卷轴,请订购 2000 的倍数:
  2511. </div></td><td>
  2512. <div class="mfrDiv">
  2513. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TPA3144D2PWPR/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO8WaJdiy9p%2fnFRK15W1IUFoA%3d%3d">TPA3144D2PWPR</a><br />
  2514. <br />
  2515. <div style="width: 100%; text-align: center;">
  2516. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2517. </div>
  2518. <div style="width: 100%; text-align: center;">
  2519. </div>
  2520. </div>
  2521. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2522. </td><td>音频放大器 6-W Inductor Free Stereo (BTL) Class-D Audio Amplifier with Ultra Low EMI and AGL 28-HTSSOP -40 to 85
  2523. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2524. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-tpa3144d2-amplifier/">了解更多</a>
  2525. </div>
  2526. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2527. </div>
  2528. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-TPA3144D2PWPR | TPA3144D2PWPR&quot;]);" href="http://www.mouser.com/ds/2/405/tpa3144d2-748918.pdf" target="_blank">数据表</a>
  2529. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">1,907<br/>有库存</span>
  2530. <table>
  2531. <tr align="center">
  2532. <td style="padding-top: 5px">
  2533. </td>
  2534. </tr>
  2535. <tr align="center">
  2536. <td style="padding-top: 5px; padding-bottom: 5px">
  2537. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAlternativePackaging" title="备用包装 | 595-TPA3144D2PWPR" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSF64MUX60ApI2gA4qiyrLCIwGsckm58O56XEIcSC3VGEhEY2qfjlfxDxY4JC7Rc67K2HcSQG2i%2fvAPBlJmy3lFBiPISxIv6BsUZb9jQta2yreEo%2fDin7UiL0WSTKIH1LknVPFwQu0MCQ%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2538. </td>
  2539. </tr>
  2540. </table></td><td>
  2541. <table class="PriceBreaks" cellspacing="0" border="0">
  2542. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2543. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2544. </td>
  2545. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2546. </td>
  2547. </tr>
  2548. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2549. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2550. 剪切带
  2551. </td>
  2552. </tr>
  2553. <tr>
  2554. <td class="PriceBreakQuantity">
  2555. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  2556. </td>
  2557. <td class="PriceBreakPrice">
  2558. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥22.9437</span>
  2559. </td>
  2560. </tr>
  2561. <tr>
  2562. <td class="PriceBreakQuantity">
  2563. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  2564. </td>
  2565. <td class="PriceBreakPrice">
  2566. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥20.5569</span>
  2567. </td>
  2568. </tr>
  2569. <tr>
  2570. <td class="PriceBreakQuantity">
  2571. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  2572. </td>
  2573. <td class="PriceBreakPrice">
  2574. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥19.1763</span>
  2575. </td>
  2576. </tr>
  2577. <tr>
  2578. <td class="PriceBreakQuantity">
  2579. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,50);">50:</a>
  2580. </td>
  2581. <td class="PriceBreakPrice">
  2582. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥18.1701</span>
  2583. </td>
  2584. </tr>
  2585. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2586. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2587. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  2588. </td>
  2589. <td class="PriceBreakPrice">
  2590. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/TPA3144D2PWPR/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO8WaJdiy9p%2fnFRK15W1IUFoA%3d%3d">查看</a>
  2591. </td>
  2592. </tr>
  2593. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2594. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2595. </td>
  2596. </tr>
  2597. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trReel">
  2598. <td class="PriceBreakQuantity">
  2599. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(3,2000);" style="white-space: nowrap">2,000:</a>
  2600. </td>
  2601. <td class="PriceBreakPrice">
  2602. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥10.7757</span>
  2603. </td>
  2604. </tr>
  2605. <tr>
  2606. <td><br /></td>
  2607. </tr>
  2608. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2609. <td colspan="2" style="text-align: center;">
  2610. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/TPA3144D2PWPR/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO8WaJdiy9p%2fnFRK15W1IUFoA%3d%3d">MouseReel 提供服务支持</a>
  2611. </td>
  2612. </tr>
  2613. </table>
  2614. </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;)">
  2615. <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 />
  2616. <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="购买 TPA3144D2PWPR" class="buy-button" /><br />
  2617. <table cellspacing="0" border="0" style="width: 100%;">
  2618. <tr>
  2619. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2620. 最低:
  2621. </td>
  2622. <td style="padding-left: 2px; text-align: left;">
  2623. 1
  2624. </td>
  2625. </tr>
  2626. <tr>
  2627. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2628. 多个:
  2629. </td>
  2630. <td style="padding-left: 2px; text-align: left;">
  2631. 1
  2632. </td>
  2633. </tr>
  2634. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_trReel">
  2635. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2636. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(3,2000);">卷轴</a>:
  2637. </td>
  2638. <td style="padding-left: 2px; text-align: left;">
  2639. <em class="SearchResultsReel">
  2640. 2,000
  2641. </em>
  2642. </td>
  2643. </tr>
  2644. </table>
  2645. </div>
  2646. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2647. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2648. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bVKWL46hcScmPsOQKz0bPQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=bVKWL46hcScmPsOQKz0bPQ%3d%3d" target="_blank">详细信息</a>
  2649. </div>
  2650. </td><td>
  2651. </td><td>
  2652. </td><td>Audio Amplifiers
  2653. </td><td>Class-D
  2654. </td><td>Audio Power Amplifier
  2655. </td><td>2 Channel
  2656. </td><td>+ 85 C
  2657. </td><td>Reel
  2658. </td>
  2659. </tr><tr class="SearchResultsRowEven" data-partnumber="755-BD37534FV-E2" data-index="6">
  2660. <td class="td-select" align="center">
  2661. <div style="padding: 5px 5px 0 5px;">
  2662. <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>
  2663. </div>
  2664. </td><td><a href='/ProductDetail/ROHM-Semiconductor/BD37534FV-E2/?qs=sGAEpiMZZMtuedWc5vOqGJUEQmK8DKAsrO5a%2fLiWEBMtwOtEWWvmnw%3d%3d'><img title='ROHM Semiconductor BD37534FV-E2' alt='ROHM Semiconductor BD37534FV-E2' id=1450111132 src='/images/mouserimages/sm/SSOP_28_t.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/SSOP_28_t.jpg</div></a></td><td>
  2665. <div style="text-align:left;">
  2666. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/ROHM-Semiconductor/BD37534FV-E2/?qs=sGAEpiMZZMtuedWc5vOqGJUEQmK8DKAsrO5a%2fLiWEBMtwOtEWWvmnw%3d%3d">755-BD37534FV-E2</a><br />
  2667. <br />
  2668. <br />
  2669. 要购买完整 卷轴,请订购 2000 的倍数:
  2670. </div></td><td>
  2671. <div class="mfrDiv">
  2672. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/ROHM-Semiconductor/BD37534FV-E2/?qs=sGAEpiMZZMtuedWc5vOqGJUEQmK8DKAsrO5a%2fLiWEBMtwOtEWWvmnw%3d%3d">BD37534FV-E2</a><br />
  2673. <br />
  2674. <div style="width: 100%; text-align: center;">
  2675. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2676. </div>
  2677. <div style="width: 100%; text-align: center;">
  2678. </div>
  2679. </div>
  2680. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../rohmsemiconductor">ROHM Semiconductor</a>
  2681. </td><td>音频 DSP Sound Processor For Car Audio 28-Pin SSOP-B T/R
  2682. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2683. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../rohm-bd37534fv-processor/">了解更多</a>
  2684. </div>
  2685. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2686. </div>
  2687. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;ROHM Semiconductor&quot;,&quot;755-BD37534FV-E2 | BD37534FV-E2&quot;]);" href="http://www.mouser.com/ds/2/348/bd37531fv-e-312721.pdf" target="_blank">数据表</a>
  2688. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">1,981<br/>有库存</span>
  2689. <table>
  2690. <tr align="center">
  2691. <td style="padding-top: 5px">
  2692. </td>
  2693. </tr>
  2694. <tr align="center">
  2695. <td style="padding-top: 5px; padding-bottom: 5px">
  2696. </td>
  2697. </tr>
  2698. </table></td><td>
  2699. <table class="PriceBreaks" cellspacing="0" border="0">
  2700. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2701. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2702. </td>
  2703. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2704. </td>
  2705. </tr>
  2706. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2707. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2708. 剪切带
  2709. </td>
  2710. </tr>
  2711. <tr>
  2712. <td class="PriceBreakQuantity">
  2713. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  2714. </td>
  2715. <td class="PriceBreakPrice">
  2716. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥31.1922</span>
  2717. </td>
  2718. </tr>
  2719. <tr>
  2720. <td class="PriceBreakQuantity">
  2721. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,10);">10:</a>
  2722. </td>
  2723. <td class="PriceBreakPrice">
  2724. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥26.4888</span>
  2725. </td>
  2726. </tr>
  2727. <tr>
  2728. <td class="PriceBreakQuantity">
  2729. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,100);">100:</a>
  2730. </td>
  2731. <td class="PriceBreakPrice">
  2732. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥22.9437</span>
  2733. </td>
  2734. </tr>
  2735. <tr>
  2736. <td class="PriceBreakQuantity">
  2737. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,250);">250:</a>
  2738. </td>
  2739. <td class="PriceBreakPrice">
  2740. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥21.7971</span>
  2741. </td>
  2742. </tr>
  2743. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2744. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2745. 卷轴
  2746. </td>
  2747. </tr>
  2748. <tr>
  2749. <td class="PriceBreakQuantity">
  2750. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(4,2000);">2,000:</a>
  2751. </td>
  2752. <td class="PriceBreakPrice">
  2753. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥15.561</span>
  2754. </td>
  2755. </tr>
  2756. <tr>
  2757. <td class="PriceBreakQuantity">
  2758. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(4,4000);">4,000:</a>
  2759. </td>
  2760. <td class="PriceBreakPrice">
  2761. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/ROHM-Semiconductor/BD37534FV-E2/?qs=sGAEpiMZZMtuedWc5vOqGJUEQmK8DKAsrO5a%2fLiWEBMtwOtEWWvmnw%3d%3d' >查看</a></span>
  2762. </td>
  2763. </tr>
  2764. <tr>
  2765. <td><br /></td>
  2766. </tr>
  2767. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  2768. <td colspan="2" style="text-align: center;">
  2769. </td>
  2770. </tr>
  2771. </table>
  2772. </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;)">
  2773. <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 />
  2774. <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="购买 BD37534FV-E2" class="buy-button" /><br />
  2775. <table cellspacing="0" border="0" style="width: 100%;">
  2776. <tr>
  2777. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2778. 最低:
  2779. </td>
  2780. <td style="padding-left: 2px; text-align: left;">
  2781. 1
  2782. </td>
  2783. </tr>
  2784. <tr>
  2785. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2786. 多个:
  2787. </td>
  2788. <td style="padding-left: 2px; text-align: left;">
  2789. 1
  2790. </td>
  2791. </tr>
  2792. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_trReel">
  2793. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2794. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(4,2000);">卷轴</a>:
  2795. </td>
  2796. <td style="padding-left: 2px; text-align: left;">
  2797. <em class="SearchResultsReel">
  2798. 2,000
  2799. </em>
  2800. </td>
  2801. </tr>
  2802. </table>
  2803. </div>
  2804. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  2805. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2806. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=ypBmGibUzIA2IKNyUZEDMA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=ypBmGibUzIA2IKNyUZEDMA%3d%3d" target="_blank">详细信息</a>
  2807. </div>
  2808. </td><td>SMD/SMT
  2809. </td><td>SSOP-B28
  2810. </td><td>Audio Processors
  2811. </td><td>
  2812. </td><td>Sound Processor with EQ
  2813. </td><td>
  2814. </td><td>+ 85 C
  2815. </td><td>Reel
  2816. </td>
  2817. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-TAS2555YZT" data-index="7">
  2818. <td class="td-select" align="center">
  2819. <div style="padding: 5px 5px 0 5px;">
  2820. <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>
  2821. </div>
  2822. </td><td><a href='/ProductDetail/Texas-Instruments/TAS2555YZT/?qs=sGAEpiMZZMtuedWc5vOqGDERLqo0mwxZzx1mPb1qFzNCe5mQOsTB1A%3d%3d'><img title='Texas Instruments TAS2555YZT' alt='Texas Instruments TAS2555YZT' id=1587629667 src='/images/texasinstruments/sm/TI_DSBGA_42.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_DSBGA_42.jpg</div></a></td><td>
  2823. <div style="text-align:left;">
  2824. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TAS2555YZT/?qs=sGAEpiMZZMtuedWc5vOqGDERLqo0mwxZzx1mPb1qFzNCe5mQOsTB1A%3d%3d">595-TAS2555YZT</a><br />
  2825. <br />
  2826. <br />
  2827. 要购买完整 卷轴,请订购 250 的倍数:
  2828. </div></td><td>
  2829. <div class="mfrDiv">
  2830. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TAS2555YZT/?qs=sGAEpiMZZMtuedWc5vOqGDERLqo0mwxZzx1mPb1qFzNCe5mQOsTB1A%3d%3d">TAS2555YZT</a><br />
  2831. <br />
  2832. <div style="width: 100%; text-align: center;">
  2833. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2834. </div>
  2835. <div style="width: 100%; text-align: center;">
  2836. </div>
  2837. </div>
  2838. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2839. </td><td>音频放大器 5.7W Class-D Mono Audio Amplifier with Speaker Protection 42-DSBGA -40 to 85
  2840. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2841. </div>
  2842. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-TAS2555YZT | TAS2555YZT&quot;]);" href="http://www.mouser.com/ds/2/405/tas2555-768600.pdf" target="_blank">数据表</a>
  2843. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">420<br/>有库存</span>
  2844. <table>
  2845. <tr align="center">
  2846. <td style="padding-top: 5px">
  2847. </td>
  2848. </tr>
  2849. <tr align="center">
  2850. <td style="padding-top: 5px; padding-bottom: 5px">
  2851. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAlternativePackaging" title="备用包装 | 595-TAS2555YZT" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSaPPQApPDDD%2f40uua6aR5R7gzuzhyajdzDJocAW1GZeT6K2A593O8WpFYXRDheI7eLYiomFSwgxBLQ%252b5u8WbAkX9NFDV4d77K5mCT7ILplpC24Li%252bNktvSrGXvYXlVMGE%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2852. </td>
  2853. </tr>
  2854. </table></td><td>
  2855. <table class="PriceBreaks" cellspacing="0" border="0">
  2856. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2857. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2858. </td>
  2859. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2860. </td>
  2861. </tr>
  2862. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  2863. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2864. 剪切带
  2865. </td>
  2866. </tr>
  2867. <tr>
  2868. <td class="PriceBreakQuantity">
  2869. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  2870. </td>
  2871. <td class="PriceBreakPrice">
  2872. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥47.4435</span>
  2873. </td>
  2874. </tr>
  2875. <tr>
  2876. <td class="PriceBreakQuantity">
  2877. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  2878. </td>
  2879. <td class="PriceBreakPrice">
  2880. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥42.822</span>
  2881. </td>
  2882. </tr>
  2883. <tr>
  2884. <td class="PriceBreakQuantity">
  2885. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
  2886. </td>
  2887. <td class="PriceBreakPrice">
  2888. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥39.663</span>
  2889. </td>
  2890. </tr>
  2891. <tr>
  2892. <td class="PriceBreakQuantity">
  2893. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,50);">50:</a>
  2894. </td>
  2895. <td class="PriceBreakPrice">
  2896. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥37.8144</span>
  2897. </td>
  2898. </tr>
  2899. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  2900. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  2901. 卷轴
  2902. </td>
  2903. </tr>
  2904. <tr>
  2905. <td class="PriceBreakQuantity">
  2906. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(5,250);">250:</a>
  2907. </td>
  2908. <td class="PriceBreakPrice">
  2909. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥33.8832</span>
  2910. </td>
  2911. </tr>
  2912. <tr>
  2913. <td class="PriceBreakQuantity">
  2914. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(5,500);">500:</a>
  2915. </td>
  2916. <td class="PriceBreakPrice">
  2917. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Texas-Instruments/TAS2555YZT/?qs=sGAEpiMZZMtuedWc5vOqGDERLqo0mwxZzx1mPb1qFzNCe5mQOsTB1A%3d%3d' >查看</a></span>
  2918. </td>
  2919. </tr>
  2920. <tr>
  2921. <td><br /></td>
  2922. </tr>
  2923. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  2924. <td colspan="2" style="text-align: center;">
  2925. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/TAS2555YZT/?qs=sGAEpiMZZMtuedWc5vOqGDERLqo0mwxZzx1mPb1qFzNCe5mQOsTB1A%3d%3d">MouseReel 提供服务支持</a>
  2926. </td>
  2927. </tr>
  2928. </table>
  2929. </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;)">
  2930. <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 />
  2931. <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="购买 TAS2555YZT" class="buy-button" /><br />
  2932. <table cellspacing="0" border="0" style="width: 100%;">
  2933. <tr>
  2934. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2935. 最低:
  2936. </td>
  2937. <td style="padding-left: 2px; text-align: left;">
  2938. 1
  2939. </td>
  2940. </tr>
  2941. <tr>
  2942. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2943. 多个:
  2944. </td>
  2945. <td style="padding-left: 2px; text-align: left;">
  2946. 1
  2947. </td>
  2948. </tr>
  2949. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_trReel">
  2950. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2951. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(5,250);">卷轴</a>:
  2952. </td>
  2953. <td style="padding-left: 2px; text-align: left;">
  2954. <em class="SearchResultsReel">
  2955. 250
  2956. </em>
  2957. </td>
  2958. </tr>
  2959. </table>
  2960. </div>
  2961. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2962. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2963. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=p8nhlIi%2fPVp9qrimFwwjtg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=p8nhlIi%2fPVp9qrimFwwjtg%3d%3d" target="_blank">详细信息</a>
  2964. </div>
  2965. </td><td>
  2966. </td><td>
  2967. </td><td>Audio Amplifiers
  2968. </td><td>Class-D
  2969. </td><td>Mono
  2970. </td><td>1 Channel
  2971. </td><td>+ 85 C
  2972. </td><td>Reel
  2973. </td>
  2974. </tr><tr class="SearchResultsRowEven" data-partnumber="595-TPA3116D2QDADRQ1" data-index="8">
  2975. <td class="td-select" align="center">
  2976. <div style="padding: 5px 5px 0 5px;">
  2977. <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>
  2978. </div>
  2979. </td><td><a href='/ProductDetail/Texas-Instruments/TPA3116D2QDADRQ1/?qs=sGAEpiMZZMtuedWc5vOqGAg5VU%252bNMTktkpTrvCIhDc2eJ3lP3uEbUg%3d%3d'><img title='Texas Instruments TPA3116D2QDADRQ1' alt='Texas Instruments TPA3116D2QDADRQ1' id=1568103080 src='/images/mouserimages/sm/SSOP_32_t.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/SSOP_32_t.jpg</div></a></td><td>
  2980. <div style="text-align:left;">
  2981. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TPA3116D2QDADRQ1/?qs=sGAEpiMZZMtuedWc5vOqGAg5VU%252bNMTktkpTrvCIhDc2eJ3lP3uEbUg%3d%3d">595-TPA3116D2QDADRQ1</a><br />
  2982. <br />
  2983. <br />
  2984. 要购买完整 卷轴,请订购 2000 的倍数:
  2985. </div></td><td>
  2986. <div class="mfrDiv">
  2987. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TPA3116D2QDADRQ1/?qs=sGAEpiMZZMtuedWc5vOqGAg5VU%252bNMTktkpTrvCIhDc2eJ3lP3uEbUg%3d%3d">TPA3116D2QDADRQ1</a><br />
  2988. <br />
  2989. <div style="width: 100%; text-align: center;">
  2990. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  2991. </div>
  2992. <div style="width: 100%; text-align: center;">
  2993. </div>
  2994. </div>
  2995. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2996. </td><td>音频放大器 2-Ch, 50-W Analog Input Class-D Audio Amplifier 32-HTSSOP -40 to 125
  2997. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2998. </div>
  2999. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-TPA3116D2QDADRQ1 | TPA3116D2QDADRQ1&quot;]);" href="http://www.mouser.com/ds/2/405/tpa3116d2-q1-768602.pdf" target="_blank">数据表</a>
  3000. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">1,971<br/>有库存</span>
  3001. <table>
  3002. <tr align="center">
  3003. <td style="padding-top: 5px">
  3004. </td>
  3005. </tr>
  3006. <tr align="center">
  3007. <td style="padding-top: 5px; padding-bottom: 5px">
  3008. </td>
  3009. </tr>
  3010. </table></td><td>
  3011. <table class="PriceBreaks" cellspacing="0" border="0">
  3012. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3013. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3014. </td>
  3015. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3016. </td>
  3017. </tr>
  3018. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3019. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3020. 剪切带
  3021. </td>
  3022. </tr>
  3023. <tr>
  3024. <td class="PriceBreakQuantity">
  3025. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  3026. </td>
  3027. <td class="PriceBreakPrice">
  3028. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥43.0443</span>
  3029. </td>
  3030. </tr>
  3031. <tr>
  3032. <td class="PriceBreakQuantity">
  3033. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  3034. </td>
  3035. <td class="PriceBreakPrice">
  3036. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥38.6568</span>
  3037. </td>
  3038. </tr>
  3039. <tr>
  3040. <td class="PriceBreakQuantity">
  3041. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,25);">25:</a>
  3042. </td>
  3043. <td class="PriceBreakPrice">
  3044. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥36.1179</span>
  3045. </td>
  3046. </tr>
  3047. <tr>
  3048. <td class="PriceBreakQuantity">
  3049. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,50);">50:</a>
  3050. </td>
  3051. <td class="PriceBreakPrice">
  3052. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥34.1172</span>
  3053. </td>
  3054. </tr>
  3055. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3056. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3057. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  3058. </td>
  3059. <td class="PriceBreakPrice">
  3060. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/TPA3116D2QDADRQ1/?qs=sGAEpiMZZMtuedWc5vOqGAg5VU%252bNMTktkpTrvCIhDc2eJ3lP3uEbUg%3d%3d">查看</a>
  3061. </td>
  3062. </tr>
  3063. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3064. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3065. </td>
  3066. </tr>
  3067. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trReel">
  3068. <td class="PriceBreakQuantity">
  3069. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(6,2000);" style="white-space: nowrap">2,000:</a>
  3070. </td>
  3071. <td class="PriceBreakPrice">
  3072. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥20.3346</span>
  3073. </td>
  3074. </tr>
  3075. <tr>
  3076. <td><br /></td>
  3077. </tr>
  3078. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3079. <td colspan="2" style="text-align: center;">
  3080. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/TPA3116D2QDADRQ1/?qs=sGAEpiMZZMtuedWc5vOqGAg5VU%252bNMTktkpTrvCIhDc2eJ3lP3uEbUg%3d%3d">MouseReel 提供服务支持</a>
  3081. </td>
  3082. </tr>
  3083. </table>
  3084. </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;)">
  3085. <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 />
  3086. <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="购买 TPA3116D2QDADRQ1" class="buy-button" /><br />
  3087. <table cellspacing="0" border="0" style="width: 100%;">
  3088. <tr>
  3089. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3090. 最低:
  3091. </td>
  3092. <td style="padding-left: 2px; text-align: left;">
  3093. 1
  3094. </td>
  3095. </tr>
  3096. <tr>
  3097. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3098. 多个:
  3099. </td>
  3100. <td style="padding-left: 2px; text-align: left;">
  3101. 1
  3102. </td>
  3103. </tr>
  3104. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_trReel">
  3105. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3106. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(6,2000);">卷轴</a>:
  3107. </td>
  3108. <td style="padding-left: 2px; text-align: left;">
  3109. <em class="SearchResultsReel">
  3110. 2,000
  3111. </em>
  3112. </td>
  3113. </tr>
  3114. </table>
  3115. </div>
  3116. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  3117. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3118. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=MrlkMOVdBbyKy18XIR0TBA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=MrlkMOVdBbyKy18XIR0TBA%3d%3d" target="_blank">详细信息</a>
  3119. </div>
  3120. </td><td>
  3121. </td><td>
  3122. </td><td>Audio Amplifiers
  3123. </td><td>Class-D
  3124. </td><td>Stereo
  3125. </td><td>2 Channel
  3126. </td><td>+ 125 C
  3127. </td><td>Reel
  3128. </td>
  3129. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-TPA3140D2PWPR" data-index="9">
  3130. <td class="td-select" align="center">
  3131. <div style="padding: 5px 5px 0 5px;">
  3132. <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>
  3133. </div>
  3134. </td><td></td><td>
  3135. <div style="text-align:left;">
  3136. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TPA3140D2PWPR/?qs=sGAEpiMZZMtuedWc5vOqGBzr7LVeCKuBbCQ8YADTDm1YyHIo8OSi3A%3d%3d">595-TPA3140D2PWPR</a><br />
  3137. <br />
  3138. <br />
  3139. 要购买完整 卷轴,请订购 2000 的倍数:
  3140. </div></td><td>
  3141. <div class="mfrDiv">
  3142. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TPA3140D2PWPR/?qs=sGAEpiMZZMtuedWc5vOqGBzr7LVeCKuBbCQ8YADTDm1YyHIo8OSi3A%3d%3d">TPA3140D2PWPR</a><br />
  3143. <br />
  3144. <div style="width: 100%; text-align: center;">
  3145. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3146. </div>
  3147. <div style="width: 100%; text-align: center;">
  3148. </div>
  3149. </div>
  3150. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  3151. </td><td>音频放大器 Inductor Free Stereo (BTL) 10W Class-D Audio Amplifier with ultra low EMI and Auto Gain Limiter 28-HTSSOP -40 to 85
  3152. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3153. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-tpa3140d2-amplifier/">了解更多</a>
  3154. </div>
  3155. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3156. </div>
  3157. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-TPA3140D2PWPR | TPA3140D2PWPR&quot;]);" href="http://www.mouser.com/ds/2/405/tpa3140d2-558212.pdf" target="_blank">数据表</a>
  3158. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">1,970<br/>有库存</span>
  3159. <table>
  3160. <tr align="center">
  3161. <td style="padding-top: 5px">
  3162. </td>
  3163. </tr>
  3164. <tr align="center">
  3165. <td style="padding-top: 5px; padding-bottom: 5px">
  3166. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAlternativePackaging" title="备用包装 | 595-TPA3140D2PWPR" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSF64MUX60ApGdLhdW1cuxNw0O7lVf%252byo0AdR3axvxUYyR%252bfn67Km%252bmIrLnHP8mOtrZnvub0TXV1wqQfyNecmFTUB9n4LZrlpWwfRDNXNTTpZ4LL6orZ2RS1JG618RovWSQTQGM4tfZaQ%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3167. </td>
  3168. </tr>
  3169. </table></td><td>
  3170. <table class="PriceBreaks" cellspacing="0" border="0">
  3171. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3172. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3173. </td>
  3174. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3175. </td>
  3176. </tr>
  3177. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3178. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3179. 剪切带
  3180. </td>
  3181. </tr>
  3182. <tr>
  3183. <td class="PriceBreakQuantity">
  3184. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  3185. </td>
  3186. <td class="PriceBreakPrice">
  3187. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥23.7978</span>
  3188. </td>
  3189. </tr>
  3190. <tr>
  3191. <td class="PriceBreakQuantity">
  3192. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  3193. </td>
  3194. <td class="PriceBreakPrice">
  3195. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥21.411</span>
  3196. </td>
  3197. </tr>
  3198. <tr>
  3199. <td class="PriceBreakQuantity">
  3200. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,25);">25:</a>
  3201. </td>
  3202. <td class="PriceBreakPrice">
  3203. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥19.9485</span>
  3204. </td>
  3205. </tr>
  3206. <tr>
  3207. <td class="PriceBreakQuantity">
  3208. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,50);">50:</a>
  3209. </td>
  3210. <td class="PriceBreakPrice">
  3211. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥18.8721</span>
  3212. </td>
  3213. </tr>
  3214. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3215. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3216. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  3217. </td>
  3218. <td class="PriceBreakPrice">
  3219. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/TPA3140D2PWPR/?qs=sGAEpiMZZMtuedWc5vOqGBzr7LVeCKuBbCQ8YADTDm1YyHIo8OSi3A%3d%3d">查看</a>
  3220. </td>
  3221. </tr>
  3222. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3223. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3224. </td>
  3225. </tr>
  3226. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trReel">
  3227. <td class="PriceBreakQuantity">
  3228. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(7,2000);" style="white-space: nowrap">2,000:</a>
  3229. </td>
  3230. <td class="PriceBreakPrice">
  3231. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥11.2437</span>
  3232. </td>
  3233. </tr>
  3234. <tr>
  3235. <td><br /></td>
  3236. </tr>
  3237. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3238. <td colspan="2" style="text-align: center;">
  3239. </td>
  3240. </tr>
  3241. </table>
  3242. </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;)">
  3243. <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 />
  3244. <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="购买 TPA3140D2PWPR" class="buy-button" /><br />
  3245. <table cellspacing="0" border="0" style="width: 100%;">
  3246. <tr>
  3247. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3248. 最低:
  3249. </td>
  3250. <td style="padding-left: 2px; text-align: left;">
  3251. 1
  3252. </td>
  3253. </tr>
  3254. <tr>
  3255. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3256. 多个:
  3257. </td>
  3258. <td style="padding-left: 2px; text-align: left;">
  3259. 1
  3260. </td>
  3261. </tr>
  3262. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_trReel">
  3263. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3264. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(7,2000);">卷轴</a>:
  3265. </td>
  3266. <td style="padding-left: 2px; text-align: left;">
  3267. <em class="SearchResultsReel">
  3268. 2,000
  3269. </em>
  3270. </td>
  3271. </tr>
  3272. </table>
  3273. </div>
  3274. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  3275. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3276. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=SW4rGtQQFfEp%2fIhE89JgUA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=SW4rGtQQFfEp%2fIhE89JgUA%3d%3d" target="_blank">详细信息</a>
  3277. </div>
  3278. </td><td>
  3279. </td><td>
  3280. </td><td>Audio Amplifiers
  3281. </td><td>
  3282. </td><td>
  3283. </td><td>
  3284. </td><td>
  3285. </td><td>Reel
  3286. </td>
  3287. </tr><tr class="SearchResultsRowEven" data-partnumber="595-TPA3118D2QDAPRQ1" data-index="10">
  3288. <td class="td-select" align="center">
  3289. <div style="padding: 5px 5px 0 5px;">
  3290. <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>
  3291. </div>
  3292. </td><td><a href='/ProductDetail/Texas-Instruments/TPA3118D2QDAPRQ1/?qs=sGAEpiMZZMtuedWc5vOqGFABIVakzOvhrj092el55CkA3p%252bUC7MXeQ%3d%3d'><img title='Texas Instruments TPA3118D2QDAPRQ1' alt='Texas Instruments TPA3118D2QDAPRQ1' id=1578397157 src='/images/mouserimages/sm/SSOP_32_t.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/SSOP_32_t.jpg</div></a></td><td>
  3293. <div style="text-align:left;">
  3294. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TPA3118D2QDAPRQ1/?qs=sGAEpiMZZMtuedWc5vOqGFABIVakzOvhrj092el55CkA3p%252bUC7MXeQ%3d%3d">595-TPA3118D2QDAPRQ1</a><br />
  3295. <br />
  3296. <br />
  3297. 要购买完整 卷轴,请订购 2000 的倍数:
  3298. </div></td><td>
  3299. <div class="mfrDiv">
  3300. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TPA3118D2QDAPRQ1/?qs=sGAEpiMZZMtuedWc5vOqGFABIVakzOvhrj092el55CkA3p%252bUC7MXeQ%3d%3d">TPA3118D2QDAPRQ1</a><br />
  3301. <br />
  3302. <div style="width: 100%; text-align: center;">
  3303. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3304. </div>
  3305. <div style="width: 100%; text-align: center;">
  3306. </div>
  3307. </div>
  3308. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  3309. </td><td>音频放大器 2-Ch, 30-W Analog Input Class-D Audio Amplifier 32-HTSSOP -40 to 125
  3310. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3311. </div>
  3312. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-TPA3118D2QDAPRQ1 | TPA3118D2QDAPRQ1&quot;]);" href="http://www.mouser.com/ds/2/405/tpa3118d2-q1-768618.pdf" target="_blank">数据表</a>
  3313. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">1,998<br/>有库存</span>
  3314. <table>
  3315. <tr align="center">
  3316. <td style="padding-top: 5px">
  3317. </td>
  3318. </tr>
  3319. <tr align="center">
  3320. <td style="padding-top: 5px; padding-bottom: 5px">
  3321. </td>
  3322. </tr>
  3323. </table></td><td>
  3324. <table class="PriceBreaks" cellspacing="0" border="0">
  3325. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3326. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3327. </td>
  3328. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3329. </td>
  3330. </tr>
  3331. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3332. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3333. 剪切带
  3334. </td>
  3335. </tr>
  3336. <tr>
  3337. <td class="PriceBreakQuantity">
  3338. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  3339. </td>
  3340. <td class="PriceBreakPrice">
  3341. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥39.8151</span>
  3342. </td>
  3343. </tr>
  3344. <tr>
  3345. <td class="PriceBreakQuantity">
  3346. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,10);">10:</a>
  3347. </td>
  3348. <td class="PriceBreakPrice">
  3349. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥35.8137</span>
  3350. </td>
  3351. </tr>
  3352. <tr>
  3353. <td class="PriceBreakQuantity">
  3354. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,25);">25:</a>
  3355. </td>
  3356. <td class="PriceBreakPrice">
  3357. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥33.345</span>
  3358. </td>
  3359. </tr>
  3360. <tr>
  3361. <td class="PriceBreakQuantity">
  3362. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,50);">50:</a>
  3363. </td>
  3364. <td class="PriceBreakPrice">
  3365. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥31.5783</span>
  3366. </td>
  3367. </tr>
  3368. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3369. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3370. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(8,100);">100:</a>
  3371. </td>
  3372. <td class="PriceBreakPrice">
  3373. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/TPA3118D2QDAPRQ1/?qs=sGAEpiMZZMtuedWc5vOqGFABIVakzOvhrj092el55CkA3p%252bUC7MXeQ%3d%3d">查看</a>
  3374. </td>
  3375. </tr>
  3376. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3377. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3378. </td>
  3379. </tr>
  3380. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trReel">
  3381. <td class="PriceBreakQuantity">
  3382. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(8,2000);" style="white-space: nowrap">2,000:</a>
  3383. </td>
  3384. <td class="PriceBreakPrice">
  3385. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥18.7902</span>
  3386. </td>
  3387. </tr>
  3388. <tr>
  3389. <td><br /></td>
  3390. </tr>
  3391. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3392. <td colspan="2" style="text-align: center;">
  3393. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/TPA3118D2QDAPRQ1/?qs=sGAEpiMZZMtuedWc5vOqGFABIVakzOvhrj092el55CkA3p%252bUC7MXeQ%3d%3d">MouseReel 提供服务支持</a>
  3394. </td>
  3395. </tr>
  3396. </table>
  3397. </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;)">
  3398. <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 />
  3399. <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="购买 TPA3118D2QDAPRQ1" class="buy-button" /><br />
  3400. <table cellspacing="0" border="0" style="width: 100%;">
  3401. <tr>
  3402. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3403. 最低:
  3404. </td>
  3405. <td style="padding-left: 2px; text-align: left;">
  3406. 1
  3407. </td>
  3408. </tr>
  3409. <tr>
  3410. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3411. 多个:
  3412. </td>
  3413. <td style="padding-left: 2px; text-align: left;">
  3414. 1
  3415. </td>
  3416. </tr>
  3417. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_trReel">
  3418. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3419. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(8,2000);">卷轴</a>:
  3420. </td>
  3421. <td style="padding-left: 2px; text-align: left;">
  3422. <em class="SearchResultsReel">
  3423. 2,000
  3424. </em>
  3425. </td>
  3426. </tr>
  3427. </table>
  3428. </div>
  3429. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  3430. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3431. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=4JX%252bDTWxeKKbBJLoDnbQXA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=4JX%252bDTWxeKKbBJLoDnbQXA%3d%3d" target="_blank">详细信息</a>
  3432. </div>
  3433. </td><td>
  3434. </td><td>
  3435. </td><td>Audio Amplifiers
  3436. </td><td>Class-D
  3437. </td><td>Stereo
  3438. </td><td>2 Channel
  3439. </td><td>+ 125 C
  3440. </td><td>Reel
  3441. </td>
  3442. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-TPA3140D2PWP" data-index="11">
  3443. <td class="td-select" align="center">
  3444. <div style="padding: 5px 5px 0 5px;">
  3445. <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>
  3446. </div>
  3447. </td><td><a href='/ProductDetail/Texas-Instruments/TPA3140D2PWP/?qs=sGAEpiMZZMtuedWc5vOqGBzr7LVeCKuBERL5EWeSFWCC0F%252bsEidTZA%3d%3d'><img title='Texas Instruments TPA3140D2PWP' alt='Texas Instruments TPA3140D2PWP' id=1394539575 src='/images/mouserimages/sm/SSOP_28_t.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/SSOP_28_t.jpg</div></a></td><td>
  3448. <div style="text-align:left;">
  3449. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TPA3140D2PWP/?qs=sGAEpiMZZMtuedWc5vOqGBzr7LVeCKuBERL5EWeSFWCC0F%252bsEidTZA%3d%3d">595-TPA3140D2PWP</a><br />
  3450. <br />
  3451. <br />
  3452. </div></td><td>
  3453. <div class="mfrDiv">
  3454. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TPA3140D2PWP/?qs=sGAEpiMZZMtuedWc5vOqGBzr7LVeCKuBERL5EWeSFWCC0F%252bsEidTZA%3d%3d">TPA3140D2PWP</a><br />
  3455. <br />
  3456. <div style="width: 100%; text-align: center;">
  3457. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3458. </div>
  3459. <div style="width: 100%; text-align: center;">
  3460. </div>
  3461. </div>
  3462. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  3463. </td><td>音频放大器 10W Class-D Audio Amp
  3464. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3465. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-tpa3140d2-amplifier/">了解更多</a>
  3466. </div>
  3467. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3468. </div>
  3469. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-TPA3140D2PWP | TPA3140D2PWP&quot;]);" href="http://www.mouser.com/ds/2/405/tpa3140d2-558212.pdf" target="_blank">数据表</a>
  3470. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">450<br/>有库存</span>
  3471. <table>
  3472. <tr align="center">
  3473. <td style="padding-top: 5px">
  3474. </td>
  3475. </tr>
  3476. <tr align="center">
  3477. <td style="padding-top: 5px; padding-bottom: 5px">
  3478. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAlternativePackaging" title="备用包装 | 595-TPA3140D2PWP" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSF64MUX60ApGdLhdW1cuxNfr9%2fE70GPihf1wdMCvUvvtScl8YAf51OEEsCp5UVwxz2F0m6BzbTHgri2izCUpoXKoKIgfjtp2ACbeFQoJO1RMxMMZkbCpO4c4%2fl3P3Ento%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3479. </td>
  3480. </tr>
  3481. </table></td><td>
  3482. <table class="PriceBreaks" cellspacing="0" border="0">
  3483. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3484. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3485. </td>
  3486. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3487. </td>
  3488. </tr>
  3489. <tr>
  3490. <td class="PriceBreakQuantity">
  3491. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  3492. </td>
  3493. <td class="PriceBreakPrice">
  3494. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥28.5714</span>
  3495. </td>
  3496. </tr>
  3497. <tr>
  3498. <td class="PriceBreakQuantity">
  3499. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,10);">10:</a>
  3500. </td>
  3501. <td class="PriceBreakPrice">
  3502. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥25.7166</span>
  3503. </td>
  3504. </tr>
  3505. <tr>
  3506. <td class="PriceBreakQuantity">
  3507. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  3508. </td>
  3509. <td class="PriceBreakPrice">
  3510. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥23.9499</span>
  3511. </td>
  3512. </tr>
  3513. <tr>
  3514. <td class="PriceBreakQuantity">
  3515. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,50);">50:</a>
  3516. </td>
  3517. <td class="PriceBreakPrice">
  3518. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥22.6395</span>
  3519. </td>
  3520. </tr>
  3521. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3522. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3523. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(9,100);">100:</a>
  3524. </td>
  3525. <td class="PriceBreakPrice">
  3526. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/TPA3140D2PWP/?qs=sGAEpiMZZMtuedWc5vOqGBzr7LVeCKuBERL5EWeSFWCC0F%252bsEidTZA%3d%3d">查看</a>
  3527. </td>
  3528. </tr>
  3529. <tr>
  3530. <td><br /></td>
  3531. </tr>
  3532. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3533. <td colspan="2" style="text-align: center;">
  3534. </td>
  3535. </tr>
  3536. </table>
  3537. </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;)">
  3538. <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 />
  3539. <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="购买 TPA3140D2PWP" class="buy-button" /><br />
  3540. <table cellspacing="0" border="0" style="width: 100%;">
  3541. <tr>
  3542. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3543. 最低:
  3544. </td>
  3545. <td style="padding-left: 2px; text-align: left;">
  3546. 1
  3547. </td>
  3548. </tr>
  3549. <tr>
  3550. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3551. 多个:
  3552. </td>
  3553. <td style="padding-left: 2px; text-align: left;">
  3554. 1
  3555. </td>
  3556. </tr>
  3557. </table>
  3558. </div>
  3559. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  3560. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3561. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=SW4rGtQQFfGUzEzCuJHSNw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=SW4rGtQQFfGUzEzCuJHSNw%3d%3d" target="_blank">详细信息</a>
  3562. </div>
  3563. </td><td>SMD/SMT
  3564. </td><td>HTSSOP-28
  3565. </td><td>Audio Amplifiers
  3566. </td><td>Class-D
  3567. </td><td>Inductor Free Stereo
  3568. </td><td>1 Channel
  3569. </td><td>+ 85 C
  3570. </td><td>Tube
  3571. </td>
  3572. </tr><tr class="SearchResultsRowEven" data-partnumber="621-PAM8905PZR" data-index="12">
  3573. <td class="td-select" align="center">
  3574. <div style="padding: 5px 5px 0 5px;">
  3575. <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>
  3576. </div>
  3577. </td><td><a href='/ProductDetail/Diodes-Incorporated/PAM8905PZR/?qs=sGAEpiMZZMtuedWc5vOqGDOJdCg8JKcTZclrM6aP%252bBrDelpPRi0yog%3d%3d'><img title='Diodes Incorporated PAM8905PZR' alt='Diodes Incorporated PAM8905PZR' id=1446728870 src='/images/mouserimages/sm/BGA_12_t.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/mouserimages/images/BGA_12_t.jpg</div></a></td><td>
  3578. <div style="text-align:left;">
  3579. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Diodes-Incorporated/PAM8905PZR/?qs=sGAEpiMZZMtuedWc5vOqGDOJdCg8JKcTZclrM6aP%252bBrDelpPRi0yog%3d%3d">621-PAM8905PZR</a><br />
  3580. <br />
  3581. <br />
  3582. 要购买完整 卷轴,请订购 3000 的倍数:
  3583. </div></td><td>
  3584. <div class="mfrDiv">
  3585. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Diodes-Incorporated/PAM8905PZR/?qs=sGAEpiMZZMtuedWc5vOqGDOJdCg8JKcTZclrM6aP%252bBrDelpPRi0yog%3d%3d">PAM8905PZR</a><br />
  3586. <br />
  3587. <div style="width: 100%; text-align: center;">
  3588. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3589. </div>
  3590. <div style="width: 100%; text-align: center;">
  3591. </div>
  3592. </div>
  3593. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../Diodes-Inc">Diodes Incorporated</a>
  3594. </td><td>音频放大器 Audio Low Volt Peizo Sounder Driver
  3595. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3596. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../diodes-pam8905-amplifier">了解更多</a>
  3597. </div>
  3598. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3599. </div>
  3600. </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;Diodes Incorporated&quot;,&quot;621-PAM8905PZR | PAM8905PZR&quot;]);" href="http://www.mouser.com/ds/2/115/PAM8905-553074.pdf" target="_blank">数据表</a>
  3601. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">2,990<br/>有库存</span>
  3602. <table>
  3603. <tr align="center">
  3604. <td style="padding-top: 5px">
  3605. </td>
  3606. </tr>
  3607. <tr align="center">
  3608. <td style="padding-top: 5px; padding-bottom: 5px">
  3609. </td>
  3610. </tr>
  3611. </table></td><td>
  3612. <table class="PriceBreaks" cellspacing="0" border="0">
  3613. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3614. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3615. </td>
  3616. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3617. </td>
  3618. </tr>
  3619. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3620. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3621. 剪切带
  3622. </td>
  3623. </tr>
  3624. <tr>
  3625. <td class="PriceBreakQuantity">
  3626. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  3627. </td>
  3628. <td class="PriceBreakPrice">
  3629. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥6.9264</span>
  3630. </td>
  3631. </tr>
  3632. <tr>
  3633. <td class="PriceBreakQuantity">
  3634. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,10);">10:</a>
  3635. </td>
  3636. <td class="PriceBreakPrice">
  3637. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.6043</span>
  3638. </td>
  3639. </tr>
  3640. <tr>
  3641. <td class="PriceBreakQuantity">
  3642. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,100);">100:</a>
  3643. </td>
  3644. <td class="PriceBreakPrice">
  3645. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥4.3056</span>
  3646. </td>
  3647. </tr>
  3648. <tr>
  3649. <td class="PriceBreakQuantity">
  3650. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,500);">500:</a>
  3651. </td>
  3652. <td class="PriceBreakPrice">
  3653. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥3.8025</span>
  3654. </td>
  3655. </tr>
  3656. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3657. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3658. 卷轴
  3659. </td>
  3660. </tr>
  3661. <tr>
  3662. <td class="PriceBreakQuantity">
  3663. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(10,3000);">3,000:</a>
  3664. </td>
  3665. <td class="PriceBreakPrice">
  3666. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.6676</span>
  3667. </td>
  3668. </tr>
  3669. <tr>
  3670. <td class="PriceBreakQuantity">
  3671. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(10,24000);">24,000:</a>
  3672. </td>
  3673. <td class="PriceBreakPrice">
  3674. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Diodes-Incorporated/PAM8905PZR/?qs=sGAEpiMZZMtuedWc5vOqGDOJdCg8JKcTZclrM6aP%252bBrDelpPRi0yog%3d%3d' >查看</a></span>
  3675. </td>
  3676. </tr>
  3677. <tr>
  3678. <td><br /></td>
  3679. </tr>
  3680. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3681. <td colspan="2" style="text-align: center;">
  3682. </td>
  3683. </tr>
  3684. </table>
  3685. </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;)">
  3686. <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 />
  3687. <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="购买 PAM8905PZR" class="buy-button" /><br />
  3688. <table cellspacing="0" border="0" style="width: 100%;">
  3689. <tr>
  3690. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3691. 最低:
  3692. </td>
  3693. <td style="padding-left: 2px; text-align: left;">
  3694. 1
  3695. </td>
  3696. </tr>
  3697. <tr>
  3698. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3699. 多个:
  3700. </td>
  3701. <td style="padding-left: 2px; text-align: left;">
  3702. 1
  3703. </td>
  3704. </tr>
  3705. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_trReel">
  3706. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3707. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(10,3000);">卷轴</a>:
  3708. </td>
  3709. <td style="padding-left: 2px; text-align: left;">
  3710. <em class="SearchResultsReel">
  3711. 3,000
  3712. </em>
  3713. </td>
  3714. </tr>
  3715. </table>
  3716. </div>
  3717. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  3718. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3719. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=vGm92laWp3YOKQpVakNL%252bQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=vGm92laWp3YOKQpVakNL%252bQ%3d%3d" target="_blank">详细信息</a>
  3720. </div>
  3721. </td><td>SMD/SMT
  3722. </td><td>U-WLB1520-12
  3723. </td><td>Audio Amplifiers
  3724. </td><td>Class-D, Class-G
  3725. </td><td>1-Channel Mono
  3726. </td><td>1 Channel
  3727. </td><td>+ 85 C
  3728. </td><td>Reel
  3729. </td>
  3730. </tr><tr class="SearchResultsRowOdd" data-partnumber="621-PAM8945PJR" data-index="13">
  3731. <td class="td-select" align="center">
  3732. <div style="padding: 5px 5px 0 5px;">
  3733. <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>
  3734. </div>
  3735. </td><td><a href='/ProductDetail/Diodes-Incorporated/PAM8945PJR/?qs=sGAEpiMZZMtuedWc5vOqGI6iMFfIcPG6CRX1PhQ%2faMYr9aBdaeUXPg%3d%3d'><img title='Diodes Incorporated PAM8945PJR' alt='Diodes Incorporated PAM8945PJR' id=1637806805 src='/images/diodesinc/sm/W-QFN3020-12_2_DSL.JPG'/></a></td><td>
  3736. <div style="text-align:left;">
  3737. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Diodes-Incorporated/PAM8945PJR/?qs=sGAEpiMZZMtuedWc5vOqGI6iMFfIcPG6CRX1PhQ%2faMYr9aBdaeUXPg%3d%3d">621-PAM8945PJR</a><br />
  3738. <br />
  3739. <br />
  3740. 要购买完整 卷轴,请订购 3000 的倍数:
  3741. </div></td><td>
  3742. <div class="mfrDiv">
  3743. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Diodes-Incorporated/PAM8945PJR/?qs=sGAEpiMZZMtuedWc5vOqGI6iMFfIcPG6CRX1PhQ%2faMYr9aBdaeUXPg%3d%3d">PAM8945PJR</a><br />
  3744. <br />
  3745. <div style="width: 100%; text-align: center;">
  3746. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3747. </div>
  3748. <div style="width: 100%; text-align: center;">
  3749. </div>
  3750. </div>
  3751. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../Diodes-Inc">Diodes Incorporated</a>
  3752. </td><td>音频放大器 4.0W Class-D Audio 4ohm 2.8 to 5.2V
  3753. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3754. </div>
  3755. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Diodes Incorporated&quot;,&quot;621-PAM8945PJR | PAM8945PJR&quot;]);" href="http://www.mouser.com/ds/2/115/PAM8945-784726.pdf" target="_blank">数据表</a>
  3756. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">2,900<br/>有库存</span>
  3757. <table>
  3758. <tr align="center">
  3759. <td style="padding-top: 5px">
  3760. </td>
  3761. </tr>
  3762. <tr align="center">
  3763. <td style="padding-top: 5px; padding-bottom: 5px">
  3764. </td>
  3765. </tr>
  3766. </table></td><td>
  3767. <table class="PriceBreaks" cellspacing="0" border="0">
  3768. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3769. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3770. </td>
  3771. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3772. </td>
  3773. </tr>
  3774. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3775. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3776. 剪切带
  3777. </td>
  3778. </tr>
  3779. <tr>
  3780. <td class="PriceBreakQuantity">
  3781. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  3782. </td>
  3783. <td class="PriceBreakPrice">
  3784. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥8.9388</span>
  3785. </td>
  3786. </tr>
  3787. <tr>
  3788. <td class="PriceBreakQuantity">
  3789. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
  3790. </td>
  3791. <td class="PriceBreakPrice">
  3792. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥7.2189</span>
  3793. </td>
  3794. </tr>
  3795. <tr>
  3796. <td class="PriceBreakQuantity">
  3797. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,100);">100:</a>
  3798. </td>
  3799. <td class="PriceBreakPrice">
  3800. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥5.5458</span>
  3801. </td>
  3802. </tr>
  3803. <tr>
  3804. <td class="PriceBreakQuantity">
  3805. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,500);">500:</a>
  3806. </td>
  3807. <td class="PriceBreakPrice">
  3808. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥4.9023</span>
  3809. </td>
  3810. </tr>
  3811. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3812. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3813. 卷轴
  3814. </td>
  3815. </tr>
  3816. <tr>
  3817. <td class="PriceBreakQuantity">
  3818. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(11,3000);">3,000:</a>
  3819. </td>
  3820. <td class="PriceBreakPrice">
  3821. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥3.4164</span>
  3822. </td>
  3823. </tr>
  3824. <tr>
  3825. <td class="PriceBreakQuantity">
  3826. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(11,6000);">6,000:</a>
  3827. </td>
  3828. <td class="PriceBreakPrice">
  3829. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Diodes-Incorporated/PAM8945PJR/?qs=sGAEpiMZZMtuedWc5vOqGI6iMFfIcPG6CRX1PhQ%2faMYr9aBdaeUXPg%3d%3d' >查看</a></span>
  3830. </td>
  3831. </tr>
  3832. <tr>
  3833. <td><br /></td>
  3834. </tr>
  3835. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3836. <td colspan="2" style="text-align: center;">
  3837. </td>
  3838. </tr>
  3839. </table>
  3840. </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;)">
  3841. <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 />
  3842. <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="购买 PAM8945PJR" class="buy-button" /><br />
  3843. <table cellspacing="0" border="0" style="width: 100%;">
  3844. <tr>
  3845. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3846. 最低:
  3847. </td>
  3848. <td style="padding-left: 2px; text-align: left;">
  3849. 1
  3850. </td>
  3851. </tr>
  3852. <tr>
  3853. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3854. 多个:
  3855. </td>
  3856. <td style="padding-left: 2px; text-align: left;">
  3857. 1
  3858. </td>
  3859. </tr>
  3860. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_trReel">
  3861. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3862. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(11,3000);">卷轴</a>:
  3863. </td>
  3864. <td style="padding-left: 2px; text-align: left;">
  3865. <em class="SearchResultsReel">
  3866. 3,000
  3867. </em>
  3868. </td>
  3869. </tr>
  3870. </table>
  3871. </div>
  3872. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  3873. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3874. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=JJiWKdq8XVa4fVlBcJ77JQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=JJiWKdq8XVa4fVlBcJ77JQ%3d%3d" target="_blank">详细信息</a>
  3875. </div>
  3876. </td><td>SMD/SMT
  3877. </td><td>W-QFN3020-12
  3878. </td><td>Audio Amplifiers
  3879. </td><td>Class-G
  3880. </td><td>Audio Power Amplifier
  3881. </td><td>1 Channel
  3882. </td><td>+ 85 C
  3883. </td><td>Reel
  3884. </td>
  3885. </tr><tr class="SearchResultsRowEven" data-partnumber="595-TPA3144D2PWP" data-index="14">
  3886. <td class="td-select" align="center">
  3887. <div style="padding: 5px 5px 0 5px;">
  3888. <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>
  3889. </div>
  3890. </td><td><a href='/ProductDetail/Texas-Instruments/TPA3144D2PWP/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO84SjDQyCYa419DtBGcxgjLQ%3d%3d'><img title='Texas Instruments TPA3144D2PWP' alt='Texas Instruments TPA3144D2PWP' id=1480438102 src='/images/texasinstruments/sm/TI_HTSSOP_28.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_HTSSOP_28.jpg</div></a></td><td>
  3891. <div style="text-align:left;">
  3892. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TPA3144D2PWP/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO84SjDQyCYa419DtBGcxgjLQ%3d%3d">595-TPA3144D2PWP</a><br />
  3893. <br />
  3894. <br />
  3895. </div></td><td>
  3896. <div class="mfrDiv">
  3897. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TPA3144D2PWP/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO84SjDQyCYa419DtBGcxgjLQ%3d%3d">TPA3144D2PWP</a><br />
  3898. <br />
  3899. <div style="width: 100%; text-align: center;">
  3900. <span title='此制造商的新产品。'><img src="/images/icon-lc-new-product-sm.png" alt="新产品" /><br/>新产品</span><br/><br/>
  3901. </div>
  3902. <div style="width: 100%; text-align: center;">
  3903. </div>
  3904. </div>
  3905. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  3906. </td><td>音频放大器 6-W Inductor Free Stereo (BTL) Class-D Audio Amplifier with Ultra Low EMI and AGL 28-HTSSOP -40 to 85
  3907. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3908. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../ti-tpa3144d2-amplifier/">了解更多</a>
  3909. </div>
  3910. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3911. </div>
  3912. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-TPA3144D2PWP | TPA3144D2PWP&quot;]);" href="http://www.mouser.com/ds/2/405/tpa3144d2-748918.pdf" target="_blank">数据表</a>
  3913. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">189<br/>有库存</span>
  3914. <table>
  3915. <tr align="center">
  3916. <td style="padding-top: 5px">
  3917. </td>
  3918. </tr>
  3919. <tr align="center">
  3920. <td style="padding-top: 5px; padding-bottom: 5px">
  3921. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAlternativePackaging" title="备用包装 | 595-TPA3144D2PWP" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSF64MUX60ApI2gA4qiyrLCUVTF7ps%2fw3iieJDDfiGZM%252bb6yyL9Aim0tBwI0MnERfkaduh7RCupFVkBE7iZnYj6bKp5OAHvZChc14E8etlh4OsAEdX0mkCcBW5esJvP%2fV4%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3922. </td>
  3923. </tr>
  3924. </table></td><td>
  3925. <table class="PriceBreaks" cellspacing="0" border="0">
  3926. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3927. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3928. </td>
  3929. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3930. </td>
  3931. </tr>
  3932. <tr>
  3933. <td class="PriceBreakQuantity">
  3934. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  3935. </td>
  3936. <td class="PriceBreakPrice">
  3937. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥27.495</span>
  3938. </td>
  3939. </tr>
  3940. <tr>
  3941. <td class="PriceBreakQuantity">
  3942. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,10);">10:</a>
  3943. </td>
  3944. <td class="PriceBreakPrice">
  3945. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥24.7221</span>
  3946. </td>
  3947. </tr>
  3948. <tr>
  3949. <td class="PriceBreakQuantity">
  3950. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  3951. </td>
  3952. <td class="PriceBreakPrice">
  3953. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥23.0256</span>
  3954. </td>
  3955. </tr>
  3956. <tr>
  3957. <td class="PriceBreakQuantity">
  3958. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,50);">50:</a>
  3959. </td>
  3960. <td class="PriceBreakPrice">
  3961. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥21.7971</span>
  3962. </td>
  3963. </tr>
  3964. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3965. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3966. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  3967. </td>
  3968. <td class="PriceBreakPrice">
  3969. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/TPA3144D2PWP/?qs=sGAEpiMZZMtuedWc5vOqGOjrJP0iGZO84SjDQyCYa419DtBGcxgjLQ%3d%3d">查看</a>
  3970. </td>
  3971. </tr>
  3972. <tr>
  3973. <td><br /></td>
  3974. </tr>
  3975. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3976. <td colspan="2" style="text-align: center;">
  3977. </td>
  3978. </tr>
  3979. </table>
  3980. </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;)">
  3981. <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 />
  3982. <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="购买 TPA3144D2PWP" class="buy-button" /><br />
  3983. <table cellspacing="0" border="0" style="width: 100%;">
  3984. <tr>
  3985. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3986. 最低:
  3987. </td>
  3988. <td style="padding-left: 2px; text-align: left;">
  3989. 1
  3990. </td>
  3991. </tr>
  3992. <tr>
  3993. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3994. 多个:
  3995. </td>
  3996. <td style="padding-left: 2px; text-align: left;">
  3997. 1
  3998. </td>
  3999. </tr>
  4000. </table>
  4001. </div>
  4002. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  4003. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4004. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bVKWL46hcScs8ibmq6CnGg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=bVKWL46hcScs8ibmq6CnGg%3d%3d" target="_blank">详细信息</a>
  4005. </div>
  4006. </td><td>
  4007. </td><td>
  4008. </td><td>Audio Amplifiers
  4009. </td><td>Class-D
  4010. </td><td>Audio Power Amplifier
  4011. </td><td>2 Channel
  4012. </td><td>+ 85 C
  4013. </td><td>Tube
  4014. </td>
  4015. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-OPA2134UA/2K5" data-index="15">
  4016. <td class="td-select" align="center">
  4017. <div style="padding: 5px 5px 0 5px;">
  4018. <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>
  4019. </div>
  4020. </td><td><a href='/ProductDetail/Texas-Instruments/OPA2134UA-2K5/?qs=sGAEpiMZZMtuedWc5vOqGFBtakhIEhLhEpz9UHPTbZ0%3d'><img title='Texas Instruments OPA2134UA/2K5' alt='Texas Instruments OPA2134UA/2K5' id=14670219 src='/images/texasinstruments/sm/TI_SOIC_8.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_SOIC_8.jpg</div></a></td><td>
  4021. <div style="text-align:left;">
  4022. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/OPA2134UA-2K5/?qs=sGAEpiMZZMtuedWc5vOqGFBtakhIEhLhEpz9UHPTbZ0%3d">595-OPA2134UA/2K5</a><br />
  4023. <br />
  4024. <br />
  4025. 要购买完整 卷轴,请订购 2500 的倍数:
  4026. </div></td><td>
  4027. <div class="mfrDiv">
  4028. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/OPA2134UA-2K5/?qs=sGAEpiMZZMtuedWc5vOqGFBtakhIEhLhEpz9UHPTbZ0%3d">OPA2134UA/2K5</a><br />
  4029. <br />
  4030. <div style="width: 100%; text-align: center;">
  4031. </div>
  4032. <div style="width: 100%; text-align: center;">
  4033. </div>
  4034. </div>
  4035. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  4036. </td><td>音频放大器 SoundPlus Hi-Perf Aud Oper Amp
  4037. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4038. </div>
  4039. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-OPA2134UA/2K5 | OPA2134UA/2K5&quot;]);" href="http://www.mouser.com/ds/2/405/opa2134-445535.pdf" target="_blank">数据表</a>
  4040. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">13,684<br/>有库存</span>
  4041. <table>
  4042. <tr align="center">
  4043. <td style="padding-top: 5px">
  4044. </td>
  4045. </tr>
  4046. <tr align="center">
  4047. <td style="padding-top: 5px; padding-bottom: 5px">
  4048. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAlternativePackaging" title="备用包装 | 595-OPA2134UA/2K5" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRaN0Yb%252bsiRgdJCreOlIfhDJYrZR%2fBLjCVpy2NDbdSTB1QcPfhwLjXXFxl8MzIiJX45OLH6x25zuV8a5XCI%252bp7ygEgleFKXcYMKjKjTPQIK7zMBC%252b5xOmnEJwPGGpHlg3I%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4049. </td>
  4050. </tr>
  4051. </table></td><td>
  4052. <table class="PriceBreaks" cellspacing="0" border="0">
  4053. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4054. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4055. </td>
  4056. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4057. </td>
  4058. </tr>
  4059. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4060. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4061. 剪切带
  4062. </td>
  4063. </tr>
  4064. <tr>
  4065. <td class="PriceBreakQuantity">
  4066. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  4067. </td>
  4068. <td class="PriceBreakPrice">
  4069. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥25.6464</span>
  4070. </td>
  4071. </tr>
  4072. <tr>
  4073. <td class="PriceBreakQuantity">
  4074. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  4075. </td>
  4076. <td class="PriceBreakPrice">
  4077. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥21.7971</span>
  4078. </td>
  4079. </tr>
  4080. <tr>
  4081. <td class="PriceBreakQuantity">
  4082. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  4083. </td>
  4084. <td class="PriceBreakPrice">
  4085. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥18.8721</span>
  4086. </td>
  4087. </tr>
  4088. <tr>
  4089. <td class="PriceBreakQuantity">
  4090. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,250);">250:</a>
  4091. </td>
  4092. <td class="PriceBreakPrice">
  4093. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥17.7138</span>
  4094. </td>
  4095. </tr>
  4096. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4097. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4098. 卷轴
  4099. </td>
  4100. </tr>
  4101. <tr>
  4102. <td class="PriceBreakQuantity">
  4103. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(13,2500);">2,500:</a>
  4104. </td>
  4105. <td class="PriceBreakPrice">
  4106. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥12.8583</span>
  4107. </td>
  4108. </tr>
  4109. <tr>
  4110. <td class="PriceBreakQuantity">
  4111. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(13,5000);">5,000:</a>
  4112. </td>
  4113. <td class="PriceBreakPrice">
  4114. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Texas-Instruments/OPA2134UA-2K5/?qs=sGAEpiMZZMtuedWc5vOqGFBtakhIEhLhEpz9UHPTbZ0%3d' >查看</a></span>
  4115. </td>
  4116. </tr>
  4117. <tr>
  4118. <td><br /></td>
  4119. </tr>
  4120. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4121. <td colspan="2" style="text-align: center;">
  4122. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/OPA2134UA-2K5/?qs=sGAEpiMZZMtuedWc5vOqGFBtakhIEhLhEpz9UHPTbZ0%3d">MouseReel 提供服务支持</a>
  4123. </td>
  4124. </tr>
  4125. </table>
  4126. </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;)">
  4127. <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 />
  4128. <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="购买 OPA2134UA/2K5" class="buy-button" /><br />
  4129. <table cellspacing="0" border="0" style="width: 100%;">
  4130. <tr>
  4131. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4132. 最低:
  4133. </td>
  4134. <td style="padding-left: 2px; text-align: left;">
  4135. 1
  4136. </td>
  4137. </tr>
  4138. <tr>
  4139. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4140. 多个:
  4141. </td>
  4142. <td style="padding-left: 2px; text-align: left;">
  4143. 1
  4144. </td>
  4145. </tr>
  4146. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_trReel">
  4147. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4148. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(13,2500);">卷轴</a>:
  4149. </td>
  4150. <td style="padding-left: 2px; text-align: left;">
  4151. <em class="SearchResultsReel">
  4152. 2,500
  4153. </em>
  4154. </td>
  4155. </tr>
  4156. </table>
  4157. </div>
  4158. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  4159. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4160. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Za9EoTVo1W5Wi4D2%2fBDEjA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Za9EoTVo1W5Wi4D2%2fBDEjA%3d%3d" target="_blank">详细信息</a>
  4161. </div>
  4162. </td><td>SMD/SMT
  4163. </td><td>SOIC-8
  4164. </td><td>Audio Amplifiers
  4165. </td><td>
  4166. </td><td>2-Channel FET Input
  4167. </td><td>2 Channel
  4168. </td><td>+ 85 C
  4169. </td><td>Reel
  4170. </td>
  4171. </tr><tr class="SearchResultsRowEven" data-partnumber="595-PCM5102APWR" data-index="16">
  4172. <td class="td-select" align="center">
  4173. <div style="padding: 5px 5px 0 5px;">
  4174. <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>
  4175. </div>
  4176. </td><td><a href='/ProductDetail/Texas-Instruments/PCM5102APWR/?qs=sGAEpiMZZMtuedWc5vOqGAPwtAAr0CKQuKj6i5a%2fceg%3d'><img title='Texas Instruments PCM5102APWR' alt='Texas Instruments PCM5102APWR' id=876132125 src='/images/texasinstruments/sm/TI_SOP_20.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_SOP_20.jpg</div></a></td><td>
  4177. <div style="text-align:left;">
  4178. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/PCM5102APWR/?qs=sGAEpiMZZMtuedWc5vOqGAPwtAAr0CKQuKj6i5a%2fceg%3d">595-PCM5102APWR</a><br />
  4179. <br />
  4180. <br />
  4181. 要购买完整 卷轴,请订购 2000 的倍数:
  4182. </div></td><td>
  4183. <div class="mfrDiv">
  4184. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/PCM5102APWR/?qs=sGAEpiMZZMtuedWc5vOqGAPwtAAr0CKQuKj6i5a%2fceg%3d">PCM5102APWR</a><br />
  4185. <br />
  4186. <div style="width: 100%; text-align: center;">
  4187. </div>
  4188. <div style="width: 100%; text-align: center;">
  4189. </div>
  4190. </div>
  4191. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  4192. </td><td>音频数/模转换器 IC 2VRMS DirectPath 112 dB Audio Stereo DAC
  4193. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4194. </div>
  4195. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-PCM5102APWR | PCM5102APWR&quot;]);" href="http://www.mouser.com/ds/2/405/pcm5102a-556888.pdf" target="_blank">数据表</a>
  4196. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">5,678<br/>有库存</span>
  4197. <table>
  4198. <tr align="center">
  4199. <td style="padding-top: 5px">
  4200. </td>
  4201. </tr>
  4202. <tr align="center">
  4203. <td style="padding-top: 5px; padding-bottom: 5px">
  4204. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAlternativePackaging" title="备用包装 | 595-PCM5102APWR" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSB3eUDLmGgWFkC4WqUdgKGgtzgTZpxBkgxN2fOg1%2ff3d18vjuviFaUuIQSW3vY60XLwfmd5IEH%252b93ksDV7y5Xt7uoIx3jLQKLiUXbLlX5w9NHSW5Nr0fn%252bO9bi9ee0okU%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4205. </td>
  4206. </tr>
  4207. </table></td><td>
  4208. <table class="PriceBreaks" cellspacing="0" border="0">
  4209. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4210. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4211. </td>
  4212. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4213. </td>
  4214. </tr>
  4215. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4216. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4217. 剪切带
  4218. </td>
  4219. </tr>
  4220. <tr>
  4221. <td class="PriceBreakQuantity">
  4222. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  4223. </td>
  4224. <td class="PriceBreakPrice">
  4225. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥38.5047</span>
  4226. </td>
  4227. </tr>
  4228. <tr>
  4229. <td class="PriceBreakQuantity">
  4230. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,10);">10:</a>
  4231. </td>
  4232. <td class="PriceBreakPrice">
  4233. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥34.5735</span>
  4234. </td>
  4235. </tr>
  4236. <tr>
  4237. <td class="PriceBreakQuantity">
  4238. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,25);">25:</a>
  4239. </td>
  4240. <td class="PriceBreakPrice">
  4241. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥32.2686</span>
  4242. </td>
  4243. </tr>
  4244. <tr>
  4245. <td class="PriceBreakQuantity">
  4246. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,50);">50:</a>
  4247. </td>
  4248. <td class="PriceBreakPrice">
  4249. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥30.4902</span>
  4250. </td>
  4251. </tr>
  4252. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4253. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4254. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
  4255. </td>
  4256. <td class="PriceBreakPrice">
  4257. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/PCM5102APWR/?qs=sGAEpiMZZMtuedWc5vOqGAPwtAAr0CKQuKj6i5a%2fceg%3d">查看</a>
  4258. </td>
  4259. </tr>
  4260. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4261. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4262. </td>
  4263. </tr>
  4264. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trReel">
  4265. <td class="PriceBreakQuantity">
  4266. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(14,2000);" style="white-space: nowrap">2,000:</a>
  4267. </td>
  4268. <td class="PriceBreakPrice">
  4269. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥18.1701</span>
  4270. </td>
  4271. </tr>
  4272. <tr>
  4273. <td><br /></td>
  4274. </tr>
  4275. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4276. <td colspan="2" style="text-align: center;">
  4277. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/PCM5102APWR/?qs=sGAEpiMZZMtuedWc5vOqGAPwtAAr0CKQuKj6i5a%2fceg%3d">MouseReel 提供服务支持</a>
  4278. </td>
  4279. </tr>
  4280. </table>
  4281. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy&#39;)">
  4282. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(14,this.value);" /><br />
  4283. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl16$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 14);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_btnBuy" title="购买 PCM5102APWR" class="buy-button" /><br />
  4284. <table cellspacing="0" border="0" style="width: 100%;">
  4285. <tr>
  4286. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4287. 最低:
  4288. </td>
  4289. <td style="padding-left: 2px; text-align: left;">
  4290. 1
  4291. </td>
  4292. </tr>
  4293. <tr>
  4294. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4295. 多个:
  4296. </td>
  4297. <td style="padding-left: 2px; text-align: left;">
  4298. 1
  4299. </td>
  4300. </tr>
  4301. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_trReel">
  4302. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4303. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(14,2000);">卷轴</a>:
  4304. </td>
  4305. <td style="padding-left: 2px; text-align: left;">
  4306. <em class="SearchResultsReel">
  4307. 2,000
  4308. </em>
  4309. </td>
  4310. </tr>
  4311. </table>
  4312. </div>
  4313. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  4314. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4315. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=htH9Jw7cvr%2fhZF95EpcXMQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=htH9Jw7cvr%2fhZF95EpcXMQ%3d%3d" target="_blank">详细信息</a>
  4316. </div>
  4317. </td><td>
  4318. </td><td>TSSOP-20
  4319. </td><td>Audio DACs
  4320. </td><td>
  4321. </td><td>
  4322. </td><td>
  4323. </td><td>+ 85 C
  4324. </td><td>Reel
  4325. </td>
  4326. </tr><tr class="SearchResultsRowOdd" data-partnumber="777-CS496112-CQZ" data-index="17">
  4327. <td class="td-select" align="center">
  4328. <div style="padding: 5px 5px 0 5px;">
  4329. <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>
  4330. </div>
  4331. </td><td><a href='/ProductDetail/Cirrus-Logic/CS496112-CQZ/?qs=sGAEpiMZZMtuedWc5vOqGEBe3NOErmL8pWsNSWzIKIc%3d'><img title='Cirrus Logic CS496112-CQZ' alt='Cirrus Logic CS496112-CQZ' id=191621544 src='/images/cirruslogic/sm/cs.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/cirruslogic/images/cs.jpg</div></a></td><td>
  4332. <div style="text-align:left;">
  4333. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Cirrus-Logic/CS496112-CQZ/?qs=sGAEpiMZZMtuedWc5vOqGEBe3NOErmL8pWsNSWzIKIc%3d">777-CS496112-CQZ</a><br />
  4334. <br />
  4335. <br />
  4336. </div></td><td>
  4337. <div class="mfrDiv">
  4338. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Cirrus-Logic/CS496112-CQZ/?qs=sGAEpiMZZMtuedWc5vOqGEBe3NOErmL8pWsNSWzIKIc%3d">CS496112-CQZ</a><br />
  4339. <br />
  4340. <div style="width: 100%; text-align: center;">
  4341. </div>
  4342. <div style="width: 100%; text-align: center;">
  4343. </div>
  4344. </div>
  4345. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../Cirrus-Logic">Cirrus Logic</a>
  4346. </td><td>音频 DSP 8x8 CobraNet Audio Network Processor
  4347. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4348. </div>
  4349. </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;Cirrus Logic&quot;,&quot;777-CS496112-CQZ | CS496112-CQZ&quot;]);" href="http://www.mouser.com/ds/2/76/CS1810xx_CS4961xx_and_CM2_Hardware_Users_Manual_UM-25935.pdf" target="_blank">数据表</a>
  4350. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">1,070<br/>有库存</span>
  4351. <table>
  4352. <tr align="center">
  4353. <td style="padding-top: 5px">
  4354. </td>
  4355. </tr>
  4356. <tr align="center">
  4357. <td style="padding-top: 5px; padding-bottom: 5px">
  4358. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAlternativePackaging" title="备用包装 | 777-CS496112-CQZ" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSC0i3JKpogPOnjO0jvyhcpQu74%2fO66c9X1U8ZH8hq1r9HrLlfTZH8D3lqCIfAwRL02L%252bi0Aux%252b1G7Ah0ZyLGHUYqjZXd8c026Ph1WB8SQRUXlbYJmnuyrPPMp72TqpJwo%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4359. </td>
  4360. </tr>
  4361. </table></td><td>
  4362. <table class="PriceBreaks" cellspacing="0" border="0">
  4363. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4364. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4365. </td>
  4366. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4367. </td>
  4368. </tr>
  4369. <tr>
  4370. <td class="PriceBreakQuantity">
  4371. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  4372. </td>
  4373. <td class="PriceBreakPrice">
  4374. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥200.304</span>
  4375. </td>
  4376. </tr>
  4377. <tr>
  4378. <td class="PriceBreakQuantity">
  4379. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,5);">5:</a>
  4380. </td>
  4381. <td class="PriceBreakPrice">
  4382. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥191.295</span>
  4383. </td>
  4384. </tr>
  4385. <tr>
  4386. <td class="PriceBreakQuantity">
  4387. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,10);">10:</a>
  4388. </td>
  4389. <td class="PriceBreakPrice">
  4390. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥185.3631</span>
  4391. </td>
  4392. </tr>
  4393. <tr>
  4394. <td class="PriceBreakQuantity">
  4395. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,25);">25:</a>
  4396. </td>
  4397. <td class="PriceBreakPrice">
  4398. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥170.2701</span>
  4399. </td>
  4400. </tr>
  4401. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4402. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4403. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(15,50);">50:</a>
  4404. </td>
  4405. <td class="PriceBreakPrice">
  4406. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Cirrus-Logic/CS496112-CQZ/?qs=sGAEpiMZZMtuedWc5vOqGEBe3NOErmL8pWsNSWzIKIc%3d">查看</a>
  4407. </td>
  4408. </tr>
  4409. <tr>
  4410. <td><br /></td>
  4411. </tr>
  4412. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4413. <td colspan="2" style="text-align: center;">
  4414. </td>
  4415. </tr>
  4416. </table>
  4417. </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;)">
  4418. <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 />
  4419. <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="购买 CS496112-CQZ" class="buy-button" /><br />
  4420. <table cellspacing="0" border="0" style="width: 100%;">
  4421. <tr>
  4422. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4423. 最低:
  4424. </td>
  4425. <td style="padding-left: 2px; text-align: left;">
  4426. 1
  4427. </td>
  4428. </tr>
  4429. <tr>
  4430. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4431. 多个:
  4432. </td>
  4433. <td style="padding-left: 2px; text-align: left;">
  4434. 1
  4435. </td>
  4436. </tr>
  4437. </table>
  4438. </div>
  4439. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  4440. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4441. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Hwv0XqVZLZ6h9cZr76Tpig%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Hwv0XqVZLZ6h9cZr76Tpig%3d%3d" target="_blank">详细信息</a>
  4442. </div>
  4443. </td><td>SMD/SMT
  4444. </td><td>LQFP-144
  4445. </td><td>Audio DSPs
  4446. </td><td>
  4447. </td><td>Audio Processor
  4448. </td><td>
  4449. </td><td>+ 70 C
  4450. </td><td>Tube
  4451. </td>
  4452. </tr><tr class="SearchResultsRowEven" data-partnumber="238-WM8737CLGEFL" data-index="18">
  4453. <td class="td-select" align="center">
  4454. <div style="padding: 5px 5px 0 5px;">
  4455. <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>
  4456. </div>
  4457. </td><td><a href='/ProductDetail/Cirrus-Logic/WM8737CLGEFL/?qs=sGAEpiMZZMtuedWc5vOqGISp9SW53A9kcaMlrRk1lb0%3d'><img title='Cirrus Logic WM8737CLGEFL' alt='Cirrus Logic WM8737CLGEFL' id=771102524 src='/images/cirruslogic/sm/qfn32.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/cirruslogic/images/qfn32.jpg</div></a></td><td>
  4458. <div style="text-align:left;">
  4459. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Cirrus-Logic/WM8737CLGEFL/?qs=sGAEpiMZZMtuedWc5vOqGISp9SW53A9kcaMlrRk1lb0%3d">238-WM8737CLGEFL</a><br />
  4460. <br />
  4461. <br />
  4462. </div></td><td>
  4463. <div class="mfrDiv">
  4464. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Cirrus-Logic/WM8737CLGEFL/?qs=sGAEpiMZZMtuedWc5vOqGISp9SW53A9kcaMlrRk1lb0%3d">WM8737CLGEFL</a><br />
  4465. <br />
  4466. <div style="width: 100%; text-align: center;">
  4467. </div>
  4468. <div style="width: 100%; text-align: center;">
  4469. </div>
  4470. </div>
  4471. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../Cirrus-Logic">Cirrus Logic</a>
  4472. </td><td>音频模/数转换器 IC Stereo ADC Low Power
  4473. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4474. </div>
  4475. </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;Cirrus Logic&quot;,&quot;238-WM8737CLGEFL | WM8737CLGEFL&quot;]);" href="http://www.mouser.com/ds/2/76/WM8737L_v4.4-532394.pdf" target="_blank">数据表</a>
  4476. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">9,384<br/>有库存</span>
  4477. <table>
  4478. <tr align="center">
  4479. <td style="padding-top: 5px">
  4480. </td>
  4481. </tr>
  4482. <tr align="center">
  4483. <td style="padding-top: 5px; padding-bottom: 5px">
  4484. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAlternativePackaging" title="备用包装 | 238-WM8737CLGEFL" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRJQo4xmKOC8i%2fbKhQ9bXp1pf01%2fbHmGG0WMnbsAoIuvMOCldgUJZj5fS32HauHhqhMjyuaZFc85Lt80tikSRFSGdNlrJ7ZQtiJfrVTJ0SsnWqTmj2LTIIfbYZqDd0ezqo%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4485. </td>
  4486. </tr>
  4487. </table></td><td>
  4488. <table class="PriceBreaks" cellspacing="0" border="0">
  4489. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4490. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4491. </td>
  4492. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4493. </td>
  4494. </tr>
  4495. <tr>
  4496. <td class="PriceBreakQuantity">
  4497. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  4498. </td>
  4499. <td class="PriceBreakPrice">
  4500. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥30.5721</span>
  4501. </td>
  4502. </tr>
  4503. <tr>
  4504. <td class="PriceBreakQuantity">
  4505. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  4506. </td>
  4507. <td class="PriceBreakPrice">
  4508. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥24.57</span>
  4509. </td>
  4510. </tr>
  4511. <tr>
  4512. <td class="PriceBreakQuantity">
  4513. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,100);">100:</a>
  4514. </td>
  4515. <td class="PriceBreakPrice">
  4516. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥22.4055</span>
  4517. </td>
  4518. </tr>
  4519. <tr>
  4520. <td class="PriceBreakQuantity">
  4521. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,250);">250:</a>
  4522. </td>
  4523. <td class="PriceBreakPrice">
  4524. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥20.1708</span>
  4525. </td>
  4526. </tr>
  4527. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4528. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4529. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(16,500);">500:</a>
  4530. </td>
  4531. <td class="PriceBreakPrice">
  4532. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Cirrus-Logic/WM8737CLGEFL/?qs=sGAEpiMZZMtuedWc5vOqGISp9SW53A9kcaMlrRk1lb0%3d">查看</a>
  4533. </td>
  4534. </tr>
  4535. <tr>
  4536. <td><br /></td>
  4537. </tr>
  4538. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4539. <td colspan="2" style="text-align: center;">
  4540. </td>
  4541. </tr>
  4542. </table>
  4543. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_btnBuy&#39;)">
  4544. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(16,this.value);" /><br />
  4545. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl18$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 16);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl08_btnBuy" title="购买 WM8737CLGEFL" class="buy-button" /><br />
  4546. <table cellspacing="0" border="0" style="width: 100%;">
  4547. <tr>
  4548. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4549. 最低:
  4550. </td>
  4551. <td style="padding-left: 2px; text-align: left;">
  4552. 1
  4553. </td>
  4554. </tr>
  4555. <tr>
  4556. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4557. 多个:
  4558. </td>
  4559. <td style="padding-left: 2px; text-align: left;">
  4560. 1
  4561. </td>
  4562. </tr>
  4563. </table>
  4564. </div>
  4565. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  4566. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4567. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=YnHiZAHArM07lQxQjGxZ8Q%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=YnHiZAHArM07lQxQjGxZ8Q%3d%3d" target="_blank">详细信息</a>
  4568. </div>
  4569. </td><td>SMD/SMT
  4570. </td><td>QFN-32
  4571. </td><td>Audio ADCs
  4572. </td><td>
  4573. </td><td>
  4574. </td><td>2 Channel
  4575. </td><td>+ 85 C
  4576. </td><td>Tube
  4577. </td>
  4578. </tr><tr class="SearchResultsRowOdd" data-partnumber="584-AD1866RZ" data-index="19">
  4579. <td class="td-select" align="center">
  4580. <div style="padding: 5px 5px 0 5px;">
  4581. <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>
  4582. </div>
  4583. </td><td><a href='/ProductDetail/Analog-Devices/AD1866RZ/?qs=sGAEpiMZZMtuedWc5vOqGGNYYmZoSJ2UM1HWTzJJYT0%3d'><img title='Analog Devices AD1866RZ' alt='Analog Devices AD1866RZ' id=940102191 src='/images/adi/sm/ADI_SOIC_16.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/adi/images/ADI_SOIC_16.jpg</div></a></td><td>
  4584. <div style="text-align:left;">
  4585. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/AD1866RZ/?qs=sGAEpiMZZMtuedWc5vOqGGNYYmZoSJ2UM1HWTzJJYT0%3d">584-AD1866RZ</a><br />
  4586. <br />
  4587. <br />
  4588. </div></td><td>
  4589. <div class="mfrDiv">
  4590. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/AD1866RZ/?qs=sGAEpiMZZMtuedWc5vOqGGNYYmZoSJ2UM1HWTzJJYT0%3d">AD1866RZ</a><br />
  4591. <br />
  4592. <div style="width: 100%; text-align: center;">
  4593. </div>
  4594. <div style="width: 100%; text-align: center;">
  4595. </div>
  4596. </div>
  4597. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  4598. </td><td>音频数/模转换器 IC IC +5V 116-Bit Audio
  4599. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4600. </div>
  4601. </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;Analog Devices&quot;,&quot;584-AD1866RZ | AD1866RZ&quot;]);" href="http://www.mouser.com/ds/2/609/AD1866-876991.pdf" target="_blank">数据表</a>
  4602. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">1,011<br/>有库存</span>
  4603. <table>
  4604. <tr align="center">
  4605. <td style="padding-top: 5px">
  4606. </td>
  4607. </tr>
  4608. <tr align="center">
  4609. <td style="padding-top: 5px; padding-bottom: 5px">
  4610. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAlternativePackaging" title="备用包装 | 584-AD1866RZ" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRHJ5S0Kp85X8N%2fMsjbeP8xUyW8eVHMSpYdDU3uW7qeZ%2foj%2fN88IoiGtDrrM9IwxR7mk8i9XoRZ7fTHM8TXZ12xCENq8XnvbCrCw6nB9HJfUV3sXrTVR5%252br&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4611. </td>
  4612. </tr>
  4613. </table></td><td>
  4614. <table class="PriceBreaks" cellspacing="0" border="0">
  4615. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4616. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4617. </td>
  4618. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4619. </td>
  4620. </tr>
  4621. <tr>
  4622. <td class="PriceBreakQuantity">
  4623. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  4624. </td>
  4625. <td class="PriceBreakPrice">
  4626. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥147.8529</span>
  4627. </td>
  4628. </tr>
  4629. <tr>
  4630. <td class="PriceBreakQuantity">
  4631. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,5);">5:</a>
  4632. </td>
  4633. <td class="PriceBreakPrice">
  4634. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥141.2307</span>
  4635. </td>
  4636. </tr>
  4637. <tr>
  4638. <td class="PriceBreakQuantity">
  4639. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,10);">10:</a>
  4640. </td>
  4641. <td class="PriceBreakPrice">
  4642. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥136.773</span>
  4643. </td>
  4644. </tr>
  4645. <tr>
  4646. <td class="PriceBreakQuantity">
  4647. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,25);">25:</a>
  4648. </td>
  4649. <td class="PriceBreakPrice">
  4650. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥125.6814</span>
  4651. </td>
  4652. </tr>
  4653. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4654. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4655. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(17,50);">50:</a>
  4656. </td>
  4657. <td class="PriceBreakPrice">
  4658. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Analog-Devices/AD1866RZ/?qs=sGAEpiMZZMtuedWc5vOqGGNYYmZoSJ2UM1HWTzJJYT0%3d">查看</a>
  4659. </td>
  4660. </tr>
  4661. <tr>
  4662. <td><br /></td>
  4663. </tr>
  4664. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4665. <td colspan="2" style="text-align: center;">
  4666. </td>
  4667. </tr>
  4668. </table>
  4669. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_btnBuy&#39;)">
  4670. <input name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$ctl08$txtQuantity" type="text" maxlength="9" size="8" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_txtQuantity" onkeyup="javascript:QuantityChanged(17,this.value);" /><br />
  4671. <input type="submit" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl19$ctl08$btnBuy" value="购买" onclick="javascript:return MiniCart.AddToCartNShowCart(&#39;search&#39;, 17);" id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl08_btnBuy" title="购买 AD1866RZ" class="buy-button" /><br />
  4672. <table cellspacing="0" border="0" style="width: 100%;">
  4673. <tr>
  4674. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4675. 最低:
  4676. </td>
  4677. <td style="padding-left: 2px; text-align: left;">
  4678. 1
  4679. </td>
  4680. </tr>
  4681. <tr>
  4682. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4683. 多个:
  4684. </td>
  4685. <td style="padding-left: 2px; text-align: left;">
  4686. 1
  4687. </td>
  4688. </tr>
  4689. </table>
  4690. </div>
  4691. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  4692. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4693. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=uLVZnZTI8SCzdLZ9pi6jUw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=uLVZnZTI8SCzdLZ9pi6jUw%3d%3d" target="_blank">详细信息</a>
  4694. </div>
  4695. </td><td>SMD/SMT
  4696. </td><td>SOIC-16
  4697. </td><td>Audio DACs
  4698. </td><td>
  4699. </td><td>
  4700. </td><td>2 Channel
  4701. </td><td>+ 85 C
  4702. </td><td>Tube
  4703. </td>
  4704. </tr><tr class="SearchResultsRowEven" data-partnumber="926-LM48511SQ/NOPB" data-index="20">
  4705. <td class="td-select" align="center">
  4706. <div style="padding: 5px 5px 0 5px;">
  4707. <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>
  4708. </div>
  4709. </td><td><a href='/ProductDetail/Texas-Instruments/LM48511SQ-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2fMF6P5lSWQSA%3d'><img title='Texas Instruments LM48511SQ/NOPB' alt='Texas Instruments LM48511SQ/NOPB' id=584594597 src='/images/texasinstruments/sm/TI_WQFN_24.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_WQFN_24.jpg</div></a></td><td>
  4710. <div style="text-align:left;">
  4711. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/LM48511SQ-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2fMF6P5lSWQSA%3d">926-LM48511SQ/NOPB</a><br />
  4712. <br />
  4713. <br />
  4714. 要购买完整 卷轴,请订购 1000 的倍数:
  4715. </div></td><td>
  4716. <div class="mfrDiv">
  4717. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/LM48511SQ-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2fMF6P5lSWQSA%3d">LM48511SQ/NOPB</a><br />
  4718. <br />
  4719. <div style="width: 100%; text-align: center;">
  4720. </div>
  4721. <div style="width: 100%; text-align: center;">
  4722. </div>
  4723. </div>
  4724. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  4725. </td><td>音频放大器 3W Mono Class D Audio Pwr Amp
  4726. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4727. </div>
  4728. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;926-LM48511SQ/NOPB | LM48511SQ/NOPB&quot;]);" href="http://www.mouser.com/ds/2/405/lm48511-487386.pdf" target="_blank">数据表<br /><br /></a>
  4729. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-1011-12&#39;);return false;" rel="nofollow" href="../../../../../Cart/AdditionalProductInfo.aspx?part=5-1011-12" target="_blank">产品信息</a>
  4730. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">8,971<br/>有库存</span>
  4731. <table>
  4732. <tr align="center">
  4733. <td style="padding-top: 5px">
  4734. </td>
  4735. </tr>
  4736. <tr align="center">
  4737. <td style="padding-top: 5px; padding-bottom: 5px">
  4738. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAlternativePackaging" title="备用包装 | 926-LM48511SQ/NOPB" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YRO5J4vKY7L8xPxdrb%2fJI2ndbaxYON9SjS58ICWEbtdLCLIA9QSFC2JZoUlJzL%2fMcbI2IUqHxsk%2fIrtbg%252bnscbKB1gm91qnl%2fJRCbxQ%252btltLdQPcZu0r2FEgsJZ%252bsIN3wycSC%252bU676yHw%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4739. </td>
  4740. </tr>
  4741. </table></td><td>
  4742. <table class="PriceBreaks" cellspacing="0" border="0">
  4743. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4744. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4745. </td>
  4746. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4747. </td>
  4748. </tr>
  4749. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4750. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4751. 剪切带
  4752. </td>
  4753. </tr>
  4754. <tr>
  4755. <td class="PriceBreakQuantity">
  4756. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  4757. </td>
  4758. <td class="PriceBreakPrice">
  4759. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥23.7978</span>
  4760. </td>
  4761. </tr>
  4762. <tr>
  4763. <td class="PriceBreakQuantity">
  4764. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,10);">10:</a>
  4765. </td>
  4766. <td class="PriceBreakPrice">
  4767. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥21.411</span>
  4768. </td>
  4769. </tr>
  4770. <tr>
  4771. <td class="PriceBreakQuantity">
  4772. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,25);">25:</a>
  4773. </td>
  4774. <td class="PriceBreakPrice">
  4775. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥19.9485</span>
  4776. </td>
  4777. </tr>
  4778. <tr>
  4779. <td class="PriceBreakQuantity">
  4780. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,50);">50:</a>
  4781. </td>
  4782. <td class="PriceBreakPrice">
  4783. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥18.8721</span>
  4784. </td>
  4785. </tr>
  4786. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4787. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4788. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  4789. </td>
  4790. <td class="PriceBreakPrice">
  4791. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/LM48511SQ-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2fMF6P5lSWQSA%3d">查看</a>
  4792. </td>
  4793. </tr>
  4794. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4795. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4796. </td>
  4797. </tr>
  4798. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trReel">
  4799. <td class="PriceBreakQuantity">
  4800. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(18,1000);" style="white-space: nowrap">1,000:</a>
  4801. </td>
  4802. <td class="PriceBreakPrice">
  4803. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥11.2437</span>
  4804. </td>
  4805. </tr>
  4806. <tr>
  4807. <td><br /></td>
  4808. </tr>
  4809. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4810. <td colspan="2" style="text-align: center;">
  4811. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/LM48511SQ-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2fMF6P5lSWQSA%3d">MouseReel 提供服务支持</a>
  4812. </td>
  4813. </tr>
  4814. </table>
  4815. </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;)">
  4816. <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 />
  4817. <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="购买 LM48511SQ/NOPB" class="buy-button" /><br />
  4818. <table cellspacing="0" border="0" style="width: 100%;">
  4819. <tr>
  4820. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4821. 最低:
  4822. </td>
  4823. <td style="padding-left: 2px; text-align: left;">
  4824. 1
  4825. </td>
  4826. </tr>
  4827. <tr>
  4828. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4829. 多个:
  4830. </td>
  4831. <td style="padding-left: 2px; text-align: left;">
  4832. 1
  4833. </td>
  4834. </tr>
  4835. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_trReel">
  4836. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4837. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(18,1000);">卷轴</a>:
  4838. </td>
  4839. <td style="padding-left: 2px; text-align: left;">
  4840. <em class="SearchResultsReel">
  4841. 1,000
  4842. </em>
  4843. </td>
  4844. </tr>
  4845. </table>
  4846. </div>
  4847. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  4848. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4849. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bR09rJAa5DUKYnqTJ%2fBECg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=bR09rJAa5DUKYnqTJ%2fBECg%3d%3d" target="_blank">详细信息</a>
  4850. </div>
  4851. </td><td>SMD/SMT
  4852. </td><td>WQFN-24
  4853. </td><td>Audio Amplifiers
  4854. </td><td>Class-D
  4855. </td><td>1-Channel Mono
  4856. </td><td>1 Channel
  4857. </td><td>+ 85 C
  4858. </td><td>Reel
  4859. </td>
  4860. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-TPA5050RSAR" data-index="21">
  4861. <td class="td-select" align="center">
  4862. <div style="padding: 5px 5px 0 5px;">
  4863. <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>
  4864. </div>
  4865. </td><td><a href='/ProductDetail/Texas-Instruments/TPA5050RSAR/?qs=sGAEpiMZZMtuedWc5vOqGKhPtKduKTXe54B2QYi2f8A%3d'><img title='Texas Instruments TPA5050RSAR' alt='Texas Instruments TPA5050RSAR' id=43131471 src='/images/texasinstruments/sm/TI_VQFN_16.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_VQFN_16.jpg</div></a></td><td>
  4866. <div style="text-align:left;">
  4867. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TPA5050RSAR/?qs=sGAEpiMZZMtuedWc5vOqGKhPtKduKTXe54B2QYi2f8A%3d">595-TPA5050RSAR</a><br />
  4868. <br />
  4869. <br />
  4870. 要购买完整 卷轴,请订购 3000 的倍数:
  4871. </div></td><td>
  4872. <div class="mfrDiv">
  4873. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TPA5050RSAR/?qs=sGAEpiMZZMtuedWc5vOqGKhPtKduKTXe54B2QYi2f8A%3d">TPA5050RSAR</a><br />
  4874. <br />
  4875. <div style="width: 100%; text-align: center;">
  4876. </div>
  4877. <div style="width: 100%; text-align: center;">
  4878. </div>
  4879. </div>
  4880. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  4881. </td><td>音频 DSP St Dig Aud Delay Proc
  4882. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4883. </div>
  4884. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-TPA5050RSAR | TPA5050RSAR&quot;]);" href="http://www.mouser.com/ds/2/405/tpa5050-447537.pdf" target="_blank">数据表</a>
  4885. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">2,990<br/>有库存</span>
  4886. <table>
  4887. <tr align="center">
  4888. <td style="padding-top: 5px">
  4889. </td>
  4890. </tr>
  4891. <tr align="center">
  4892. <td style="padding-top: 5px; padding-bottom: 5px">
  4893. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAlternativePackaging" title="备用包装 | 595-TPA5050RSAR" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSF64MUX60ApNNWFNgOW7MF6paholnuKgrwbvQK9JP5NNfH%2fda8jygil5Igmt6kXlBZtYpXXvTN156ZRlKEoY83rqKN08WCyNBZb5hYoTwSohsF0clQVuj2kI4zEY0WVXY%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4894. </td>
  4895. </tr>
  4896. </table></td><td>
  4897. <table class="PriceBreaks" cellspacing="0" border="0">
  4898. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4899. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4900. </td>
  4901. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4902. </td>
  4903. </tr>
  4904. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4905. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4906. 剪切带
  4907. </td>
  4908. </tr>
  4909. <tr>
  4910. <td class="PriceBreakQuantity">
  4911. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  4912. </td>
  4913. <td class="PriceBreakPrice">
  4914. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥61.7643</span>
  4915. </td>
  4916. </tr>
  4917. <tr>
  4918. <td class="PriceBreakQuantity">
  4919. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,10);">10:</a>
  4920. </td>
  4921. <td class="PriceBreakPrice">
  4922. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥55.7505</span>
  4923. </td>
  4924. </tr>
  4925. <tr>
  4926. <td class="PriceBreakQuantity">
  4927. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,25);">25:</a>
  4928. </td>
  4929. <td class="PriceBreakPrice">
  4930. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥51.597</span>
  4931. </td>
  4932. </tr>
  4933. <tr>
  4934. <td class="PriceBreakQuantity">
  4935. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,50);">50:</a>
  4936. </td>
  4937. <td class="PriceBreakPrice">
  4938. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥49.2804</span>
  4939. </td>
  4940. </tr>
  4941. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4942. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4943. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  4944. </td>
  4945. <td class="PriceBreakPrice">
  4946. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/TPA5050RSAR/?qs=sGAEpiMZZMtuedWc5vOqGKhPtKduKTXe54B2QYi2f8A%3d">查看</a>
  4947. </td>
  4948. </tr>
  4949. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4950. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4951. </td>
  4952. </tr>
  4953. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trReel">
  4954. <td class="PriceBreakQuantity">
  4955. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkReelQuantity" href="javascript:SelectQuantity(19,3000);" style="white-space: nowrap">3,000:</a>
  4956. </td>
  4957. <td class="PriceBreakPrice">
  4958. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lblReelPrice" style="white-space: nowrap">¥32.4207</span>
  4959. </td>
  4960. </tr>
  4961. <tr>
  4962. <td><br /></td>
  4963. </tr>
  4964. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4965. <td colspan="2" style="text-align: center;">
  4966. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/TPA5050RSAR/?qs=sGAEpiMZZMtuedWc5vOqGKhPtKduKTXe54B2QYi2f8A%3d">MouseReel 提供服务支持</a>
  4967. </td>
  4968. </tr>
  4969. </table>
  4970. </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;)">
  4971. <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 />
  4972. <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="购买 TPA5050RSAR" class="buy-button" /><br />
  4973. <table cellspacing="0" border="0" style="width: 100%;">
  4974. <tr>
  4975. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4976. 最低:
  4977. </td>
  4978. <td style="padding-left: 2px; text-align: left;">
  4979. 1
  4980. </td>
  4981. </tr>
  4982. <tr>
  4983. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4984. 多个:
  4985. </td>
  4986. <td style="padding-left: 2px; text-align: left;">
  4987. 1
  4988. </td>
  4989. </tr>
  4990. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_trReel">
  4991. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4992. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(19,3000);">卷轴</a>:
  4993. </td>
  4994. <td style="padding-left: 2px; text-align: left;">
  4995. <em class="SearchResultsReel">
  4996. 3,000
  4997. </em>
  4998. </td>
  4999. </tr>
  5000. </table>
  5001. </div>
  5002. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  5003. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5004. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=J%2fp6cgnwCIUI%2fRH8uRZDVA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=J%2fp6cgnwCIUI%2fRH8uRZDVA%3d%3d" target="_blank">详细信息</a>
  5005. </div>
  5006. </td><td>SMD/SMT
  5007. </td><td>VQFN-16
  5008. </td><td>Audio Processors
  5009. </td><td>
  5010. </td><td>Digital Audio Delay
  5011. </td><td>
  5012. </td><td>+ 85 C
  5013. </td><td>Reel
  5014. </td>
  5015. </tr><tr class="SearchResultsRowEven" data-partnumber="595-OPA2134PA" data-index="22">
  5016. <td class="td-select" align="center">
  5017. <div style="padding: 5px 5px 0 5px;">
  5018. <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>
  5019. </div>
  5020. </td><td><a href='/ProductDetail/Texas-Instruments/OPA2134PA/?qs=sGAEpiMZZMtuedWc5vOqGFBtakhIEhLhgcRDtBZr0YY%3d'><img title='Texas Instruments OPA2134PA' alt='Texas Instruments OPA2134PA' id=14670217 src='/images/texasinstruments/sm/TI_PDIP_8.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_PDIP_8.jpg</div></a></td><td>
  5021. <div style="text-align:left;">
  5022. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/OPA2134PA/?qs=sGAEpiMZZMtuedWc5vOqGFBtakhIEhLhgcRDtBZr0YY%3d">595-OPA2134PA</a><br />
  5023. <br />
  5024. <br />
  5025. </div></td><td>
  5026. <div class="mfrDiv">
  5027. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/OPA2134PA/?qs=sGAEpiMZZMtuedWc5vOqGFBtakhIEhLhgcRDtBZr0YY%3d">OPA2134PA</a><br />
  5028. <br />
  5029. <div style="width: 100%; text-align: center;">
  5030. </div>
  5031. <div style="width: 100%; text-align: center;">
  5032. </div>
  5033. </div>
  5034. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  5035. </td><td>音频放大器 SoundPlus(TM) Hi-Perf Aud Oper Amp
  5036. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5037. </div>
  5038. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-OPA2134PA | OPA2134PA&quot;]);" href="http://www.mouser.com/ds/2/405/opa2134-445535.pdf" target="_blank">数据表</a>
  5039. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">6,565<br/>有库存</span>
  5040. <table>
  5041. <tr align="center">
  5042. <td style="padding-top: 5px">
  5043. </td>
  5044. </tr>
  5045. <tr align="center">
  5046. <td style="padding-top: 5px; padding-bottom: 5px">
  5047. </td>
  5048. </tr>
  5049. </table></td><td>
  5050. <table class="PriceBreaks" cellspacing="0" border="0">
  5051. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5052. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5053. </td>
  5054. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5055. </td>
  5056. </tr>
  5057. <tr>
  5058. <td class="PriceBreakQuantity">
  5059. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  5060. </td>
  5061. <td class="PriceBreakPrice">
  5062. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥29.952</span>
  5063. </td>
  5064. </tr>
  5065. <tr>
  5066. <td class="PriceBreakQuantity">
  5067. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,10);">10:</a>
  5068. </td>
  5069. <td class="PriceBreakPrice">
  5070. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥25.4124</span>
  5071. </td>
  5072. </tr>
  5073. <tr>
  5074. <td class="PriceBreakQuantity">
  5075. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,100);">100:</a>
  5076. </td>
  5077. <td class="PriceBreakPrice">
  5078. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥22.0194</span>
  5079. </td>
  5080. </tr>
  5081. <tr>
  5082. <td class="PriceBreakQuantity">
  5083. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,250);">250:</a>
  5084. </td>
  5085. <td class="PriceBreakPrice">
  5086. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥20.7207</span>
  5087. </td>
  5088. </tr>
  5089. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5090. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5091. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(20,500);">500:</a>
  5092. </td>
  5093. <td class="PriceBreakPrice">
  5094. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/OPA2134PA/?qs=sGAEpiMZZMtuedWc5vOqGFBtakhIEhLhgcRDtBZr0YY%3d">查看</a>
  5095. </td>
  5096. </tr>
  5097. <tr>
  5098. <td><br /></td>
  5099. </tr>
  5100. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5101. <td colspan="2" style="text-align: center;">
  5102. </td>
  5103. </tr>
  5104. </table>
  5105. </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;)">
  5106. <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 />
  5107. <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="购买 OPA2134PA" class="buy-button" /><br />
  5108. <table cellspacing="0" border="0" style="width: 100%;">
  5109. <tr>
  5110. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5111. 最低:
  5112. </td>
  5113. <td style="padding-left: 2px; text-align: left;">
  5114. 1
  5115. </td>
  5116. </tr>
  5117. <tr>
  5118. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5119. 多个:
  5120. </td>
  5121. <td style="padding-left: 2px; text-align: left;">
  5122. 1
  5123. </td>
  5124. </tr>
  5125. </table>
  5126. </div>
  5127. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  5128. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5129. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Za9EoTVo1W7VWheU26fG2g%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Za9EoTVo1W7VWheU26fG2g%3d%3d" target="_blank">详细信息</a>
  5130. </div>
  5131. </td><td>Through Hole
  5132. </td><td>PDIP-8
  5133. </td><td>Audio Amplifiers
  5134. </td><td>
  5135. </td><td>2-Channel FET Input
  5136. </td><td>2 Channel
  5137. </td><td>+ 125 C
  5138. </td><td>Tube
  5139. </td>
  5140. </tr><tr class="SearchResultsRowOdd" data-partnumber="926-LM3886TF/NOPB" data-index="23">
  5141. <td class="td-select" align="center">
  5142. <div style="padding: 5px 5px 0 5px;">
  5143. <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>
  5144. </div>
  5145. </td><td><a href='/ProductDetail/Texas-Instruments/LM3886TF-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2f4kHy9RtRBis%3d'><img title='Texas Instruments LM3886TF/NOPB' alt='Texas Instruments LM3886TF/NOPB' id=584591860 src='/images/texasinstruments/sm/TI_TO_220_11.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_TO_220_11.jpg</div></a></td><td>
  5146. <div style="text-align:left;">
  5147. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/LM3886TF-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2f4kHy9RtRBis%3d">926-LM3886TF/NOPB</a><br />
  5148. <br />
  5149. <br />
  5150. </div></td><td>
  5151. <div class="mfrDiv">
  5152. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/LM3886TF-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2f4kHy9RtRBis%3d">LM3886TF/NOPB</a><br />
  5153. <br />
  5154. <div style="width: 100%; text-align: center;">
  5155. </div>
  5156. <div style="width: 100%; text-align: center;">
  5157. </div>
  5158. </div>
  5159. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  5160. </td><td>音频放大器 HIGH-PERF 68W AUDIO PWR AMP
  5161. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5162. </div>
  5163. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;926-LM3886TF/NOPB | LM3886TF/NOPB&quot;]);" href="http://www.mouser.com/ds/2/405/lm3886-443927.pdf" target="_blank">数据表<br /><br /></a>
  5164. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-1011-12&#39;);return false;" rel="nofollow" href="../../../../../Cart/AdditionalProductInfo.aspx?part=5-1011-12" target="_blank">产品信息</a>
  5165. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">1,842<br/>有库存</span>
  5166. <table>
  5167. <tr align="center">
  5168. <td style="padding-top: 5px">
  5169. </td>
  5170. </tr>
  5171. <tr align="center">
  5172. <td style="padding-top: 5px; padding-bottom: 5px">
  5173. </td>
  5174. </tr>
  5175. </table></td><td>
  5176. <table class="PriceBreaks" cellspacing="0" border="0">
  5177. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5178. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5179. </td>
  5180. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5181. </td>
  5182. </tr>
  5183. <tr>
  5184. <td class="PriceBreakQuantity">
  5185. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  5186. </td>
  5187. <td class="PriceBreakPrice">
  5188. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥50.6727</span>
  5189. </td>
  5190. </tr>
  5191. <tr>
  5192. <td class="PriceBreakQuantity">
  5193. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  5194. </td>
  5195. <td class="PriceBreakPrice">
  5196. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥45.8172</span>
  5197. </td>
  5198. </tr>
  5199. <tr>
  5200. <td class="PriceBreakQuantity">
  5201. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,25);">25:</a>
  5202. </td>
  5203. <td class="PriceBreakPrice">
  5204. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥42.354</span>
  5205. </td>
  5206. </tr>
  5207. <tr>
  5208. <td class="PriceBreakQuantity">
  5209. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,100);">100:</a>
  5210. </td>
  5211. <td class="PriceBreakPrice">
  5212. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥37.8846</span>
  5213. </td>
  5214. </tr>
  5215. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5216. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5217. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(21,250);">250:</a>
  5218. </td>
  5219. <td class="PriceBreakPrice">
  5220. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/LM3886TF-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2f4kHy9RtRBis%3d">查看</a>
  5221. </td>
  5222. </tr>
  5223. <tr>
  5224. <td><br /></td>
  5225. </tr>
  5226. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5227. <td colspan="2" style="text-align: center;">
  5228. </td>
  5229. </tr>
  5230. </table>
  5231. </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;)">
  5232. <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 />
  5233. <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="购买 LM3886TF/NOPB" class="buy-button" /><br />
  5234. <table cellspacing="0" border="0" style="width: 100%;">
  5235. <tr>
  5236. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5237. 最低:
  5238. </td>
  5239. <td style="padding-left: 2px; text-align: left;">
  5240. 1
  5241. </td>
  5242. </tr>
  5243. <tr>
  5244. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5245. 多个:
  5246. </td>
  5247. <td style="padding-left: 2px; text-align: left;">
  5248. 1
  5249. </td>
  5250. </tr>
  5251. </table>
  5252. </div>
  5253. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  5254. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="RoHS 合规性豁免" src="../../../../../Images/Search/icon_rohs.gif" alt="RoHS 合规性豁免" style="padding: 5px 15px;" /><br />
  5255. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/CompliantByExemption.aspx?qs=Td8wy7qlCwp3hQr8kmZkwg%3d%3d&#39;);return false;" href="../../../../../Search/include/CompliantByExemption.aspx?qs=Td8wy7qlCwp3hQr8kmZkwg%3d%3d" target="_blank">详细信息</a>
  5256. </div>
  5257. </td><td>Through Hole
  5258. </td><td>TO-220
  5259. </td><td>Audio Amplifiers
  5260. </td><td>Class-AB
  5261. </td><td>
  5262. </td><td>
  5263. </td><td>+ 85 C
  5264. </td><td>Tube
  5265. </td>
  5266. </tr><tr class="SearchResultsRowEven" data-partnumber="584-ADAU1701JSTZ" data-index="24">
  5267. <td class="td-select" align="center">
  5268. <div style="padding: 5px 5px 0 5px;">
  5269. <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>
  5270. </div>
  5271. </td><td><a href='/ProductDetail/Analog-Devices/ADAU1701JSTZ/?qs=sGAEpiMZZMtuedWc5vOqGGNYYmZoSJ2UFOLFpcwZVX8%3d'><img title='Analog Devices ADAU1701JSTZ' alt='Analog Devices ADAU1701JSTZ' id=940122550 src='/images/adi/sm/ADI_LQFP_48.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/adi/images/ADI_LQFP_48.jpg</div></a></td><td>
  5272. <div style="text-align:left;">
  5273. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Analog-Devices/ADAU1701JSTZ/?qs=sGAEpiMZZMtuedWc5vOqGGNYYmZoSJ2UFOLFpcwZVX8%3d">584-ADAU1701JSTZ</a><br />
  5274. <br />
  5275. <br />
  5276. </div></td><td>
  5277. <div class="mfrDiv">
  5278. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Analog-Devices/ADAU1701JSTZ/?qs=sGAEpiMZZMtuedWc5vOqGGNYYmZoSJ2UFOLFpcwZVX8%3d">ADAU1701JSTZ</a><br />
  5279. <br />
  5280. <div style="width: 100%; text-align: center;">
  5281. </div>
  5282. <div style="width: 100%; text-align: center;">
  5283. </div>
  5284. </div>
  5285. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../Analog-Devices">Analog Devices</a>
  5286. </td><td>音频 DSP 28-/56-Bit Audio Processor
  5287. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5288. </div>
  5289. </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;Analog Devices&quot;,&quot;584-ADAU1701JSTZ | ADAU1701JSTZ&quot;]);" href="http://www.mouser.com/ds/2/609/ADAU1701-878266.pdf" target="_blank">数据表</a>
  5290. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">1,805<br/>有库存</span>
  5291. <table>
  5292. <tr align="center">
  5293. <td style="padding-top: 5px">
  5294. </td>
  5295. </tr>
  5296. <tr align="center">
  5297. <td style="padding-top: 5px; padding-bottom: 5px">
  5298. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAlternativePackaging" title="备用包装 | 584-ADAU1701JSTZ" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YToKKgMxOB46oSSZaYCHUb494yqSBahut2yd3Ct1lOPBGo8u1kuMnalL3bB1bZHiiVdAdN6nFIYaP2Og%2f3rQ1zPZABpVbiDk%2fQlgMb9XL6iE94BHITXpK6bjmWXjZcxnMpswPOV%2flHyag%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  5299. </td>
  5300. </tr>
  5301. </table></td><td>
  5302. <table class="PriceBreaks" cellspacing="0" border="0">
  5303. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5304. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5305. </td>
  5306. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5307. </td>
  5308. </tr>
  5309. <tr>
  5310. <td class="PriceBreakQuantity">
  5311. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  5312. </td>
  5313. <td class="PriceBreakPrice">
  5314. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥78.3198</span>
  5315. </td>
  5316. </tr>
  5317. <tr>
  5318. <td class="PriceBreakQuantity">
  5319. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,10);">10:</a>
  5320. </td>
  5321. <td class="PriceBreakPrice">
  5322. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥70.4691</span>
  5323. </td>
  5324. </tr>
  5325. <tr>
  5326. <td class="PriceBreakQuantity">
  5327. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,25);">25:</a>
  5328. </td>
  5329. <td class="PriceBreakPrice">
  5330. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥64.1511</span>
  5331. </td>
  5332. </tr>
  5333. <tr>
  5334. <td class="PriceBreakQuantity">
  5335. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,50);">50:</a>
  5336. </td>
  5337. <td class="PriceBreakPrice">
  5338. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥59.8338</span>
  5339. </td>
  5340. </tr>
  5341. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5342. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5343. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  5344. </td>
  5345. <td class="PriceBreakPrice">
  5346. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Analog-Devices/ADAU1701JSTZ/?qs=sGAEpiMZZMtuedWc5vOqGGNYYmZoSJ2UFOLFpcwZVX8%3d">查看</a>
  5347. </td>
  5348. </tr>
  5349. <tr>
  5350. <td><br /></td>
  5351. </tr>
  5352. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5353. <td colspan="2" style="text-align: center;">
  5354. </td>
  5355. </tr>
  5356. </table>
  5357. </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;)">
  5358. <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 />
  5359. <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="购买 ADAU1701JSTZ" class="buy-button" /><br />
  5360. <table cellspacing="0" border="0" style="width: 100%;">
  5361. <tr>
  5362. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5363. 最低:
  5364. </td>
  5365. <td style="padding-left: 2px; text-align: left;">
  5366. 1
  5367. </td>
  5368. </tr>
  5369. <tr>
  5370. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5371. 多个:
  5372. </td>
  5373. <td style="padding-left: 2px; text-align: left;">
  5374. 1
  5375. </td>
  5376. </tr>
  5377. </table>
  5378. </div>
  5379. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  5380. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5381. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=%2fJBHqmuXNL5ykDIs2nNfZg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=%2fJBHqmuXNL5ykDIs2nNfZg%3d%3d" target="_blank">详细信息</a>
  5382. </div>
  5383. </td><td>SMD/SMT
  5384. </td><td>LQFP-48
  5385. </td><td>Audio DSPs
  5386. </td><td>
  5387. </td><td>
  5388. </td><td>
  5389. </td><td>+ 70 C
  5390. </td><td>Tray
  5391. </td>
  5392. </tr><tr class="SearchResultsRowOdd" data-partnumber="777-CS5368-CQZ" data-index="25">
  5393. <td class="td-select" align="center">
  5394. <div style="padding: 5px 5px 0 5px;">
  5395. <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>
  5396. </div>
  5397. </td><td><a href='/ProductDetail/Cirrus-Logic/CS5368-CQZ/?qs=sGAEpiMZZMtuedWc5vOqGEBe3NOErmL86DfD5wt0tLI%3d'><img title='Cirrus Logic CS5368-CQZ' alt='Cirrus Logic CS5368-CQZ' id=191621736 src='/images/cirruslogic/sm/qfp48.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/cirruslogic/images/qfp48.jpg</div></a></td><td>
  5398. <div style="text-align:left;">
  5399. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Cirrus-Logic/CS5368-CQZ/?qs=sGAEpiMZZMtuedWc5vOqGEBe3NOErmL86DfD5wt0tLI%3d">777-CS5368-CQZ</a><br />
  5400. <br />
  5401. <br />
  5402. </div></td><td>
  5403. <div class="mfrDiv">
  5404. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Cirrus-Logic/CS5368-CQZ/?qs=sGAEpiMZZMtuedWc5vOqGEBe3NOErmL86DfD5wt0tLI%3d">CS5368-CQZ</a><br />
  5405. <br />
  5406. <div style="width: 100%; text-align: center;">
  5407. </div>
  5408. <div style="width: 100%; text-align: center;">
  5409. </div>
  5410. </div>
  5411. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../Cirrus-Logic">Cirrus Logic</a>
  5412. </td><td>音频模/数转换器 IC 114dB 192kHz 8-Ch ADC w/TDM Interface
  5413. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5414. </div>
  5415. </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;Cirrus Logic&quot;,&quot;777-CS5368-CQZ | CS5368-CQZ&quot;]);" href="http://www.mouser.com/ds/2/76/CirrusLogic_CS5368_F5-356402.pdf" target="_blank">数据表</a>
  5416. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">615<br/>有库存</span>
  5417. <table>
  5418. <tr align="center">
  5419. <td style="padding-top: 5px">
  5420. </td>
  5421. </tr>
  5422. <tr align="center">
  5423. <td style="padding-top: 5px; padding-bottom: 5px">
  5424. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAlternativePackaging" title="备用包装 | 777-CS5368-CQZ" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YS498M3hkSpOAxVdbzWZoCCAT6m4%2for0fdvxEMyacjRpcXO9VYMHcDwgxmhrUXoCeP5Y19KMfavvsDCZed2AEbX3K2Zp4hc0hzJnWGLy4hNKR1tRwXLSW9eLjbuxfmOFMY%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  5425. </td>
  5426. </tr>
  5427. </table></td><td>
  5428. <table class="PriceBreaks" cellspacing="0" border="0">
  5429. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5430. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5431. </td>
  5432. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5433. </td>
  5434. </tr>
  5435. <tr>
  5436. <td class="PriceBreakQuantity">
  5437. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  5438. </td>
  5439. <td class="PriceBreakPrice">
  5440. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥170.118</span>
  5441. </td>
  5442. </tr>
  5443. <tr>
  5444. <td class="PriceBreakQuantity">
  5445. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,5);">5:</a>
  5446. </td>
  5447. <td class="PriceBreakPrice">
  5448. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥162.4896</span>
  5449. </td>
  5450. </tr>
  5451. <tr>
  5452. <td class="PriceBreakQuantity">
  5453. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  5454. </td>
  5455. <td class="PriceBreakPrice">
  5456. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥157.4118</span>
  5457. </td>
  5458. </tr>
  5459. <tr>
  5460. <td class="PriceBreakQuantity">
  5461. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,25);">25:</a>
  5462. </td>
  5463. <td class="PriceBreakPrice">
  5464. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥144.6237</span>
  5465. </td>
  5466. </tr>
  5467. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5468. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5469. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(23,50);">50:</a>
  5470. </td>
  5471. <td class="PriceBreakPrice">
  5472. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Cirrus-Logic/CS5368-CQZ/?qs=sGAEpiMZZMtuedWc5vOqGEBe3NOErmL86DfD5wt0tLI%3d">查看</a>
  5473. </td>
  5474. </tr>
  5475. <tr>
  5476. <td><br /></td>
  5477. </tr>
  5478. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5479. <td colspan="2" style="text-align: center;">
  5480. </td>
  5481. </tr>
  5482. </table>
  5483. </td><td class="SearchResultsBuyColumn"><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_pnlQuantity" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_btnBuy&#39;)">
  5484. <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 />
  5485. <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="购买 CS5368-CQZ" class="buy-button" /><br />
  5486. <table cellspacing="0" border="0" style="width: 100%;">
  5487. <tr>
  5488. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5489. 最低:
  5490. </td>
  5491. <td style="padding-left: 2px; text-align: left;">
  5492. 1
  5493. </td>
  5494. </tr>
  5495. <tr>
  5496. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5497. 多个:
  5498. </td>
  5499. <td style="padding-left: 2px; text-align: left;">
  5500. 1
  5501. </td>
  5502. </tr>
  5503. </table>
  5504. </div>
  5505. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  5506. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5507. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Hwv0XqVZLZ6y3iuf9kcOeg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Hwv0XqVZLZ6y3iuf9kcOeg%3d%3d" target="_blank">详细信息</a>
  5508. </div>
  5509. </td><td>SMD/SMT
  5510. </td><td>LQFP-48
  5511. </td><td>Audio ADCs
  5512. </td><td>
  5513. </td><td>Audio ADC
  5514. </td><td>
  5515. </td><td>+ 85 C
  5516. </td><td>Tube
  5517. </td>
  5518. </tr><tr class="SearchResultsRowEven" data-partnumber="926-LME49720HA/NOPB" data-index="26">
  5519. <td class="td-select" align="center">
  5520. <div style="padding: 5px 5px 0 5px;">
  5521. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl26$chkSelect" onclick="javascript:RowSelected(26, this.checked);" /></span>
  5522. </div>
  5523. </td><td><a href='/ProductDetail/Texas-Instruments/LME49720HA-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2fAl%252bFN6HrTxQ%3d'><img title='Texas Instruments LME49720HA/NOPB' alt='Texas Instruments LME49720HA/NOPB' id=584600106 src='/images/texasinstruments/sm/TI_TO_99_8.jpg'/></a><br><a href="javascript:void(0);" class="EnlargeImage" ><div style="padding:11px 5px 0px 0px;"><i class="fa fa-search-plus"></i>&nbsp;扩大</div><div class="hiddendiv" style="display:none" />/images/texasinstruments/images/TI_TO_99_8.jpg</div></a></td><td>
  5524. <div style="text-align:left;">
  5525. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/LME49720HA-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2fAl%252bFN6HrTxQ%3d">926-LME49720HA/NOPB</a><br />
  5526. <br />
  5527. <br />
  5528. </div></td><td>
  5529. <div class="mfrDiv">
  5530. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/LME49720HA-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2fAl%252bFN6HrTxQ%3d">LME49720HA/NOPB</a><br />
  5531. <br />
  5532. <div style="width: 100%; text-align: center;">
  5533. </div>
  5534. <div style="width: 100%; text-align: center;">
  5535. </div>
  5536. </div>
  5537. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  5538. </td><td>音频放大器 Dual Hi Fidelity Audio OP Amp
  5539. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5540. </div>
  5541. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;926-LME49720HA/NOPB | LME49720HA/NOPB&quot;]);" href="http://www.mouser.com/ds/2/405/lme49720-443019.pdf" target="_blank">数据表<br /><br /></a>
  5542. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl05_lnkComments" title="Click to view product comments." onclick="javascript:OpenPTCWindow(&#39;/Cart/AdditionalProductInfo.aspx?part=5-1011-12&#39;);return false;" rel="nofollow" href="../../../../../Cart/AdditionalProductInfo.aspx?part=5-1011-12" target="_blank">产品信息</a>
  5543. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">2,673<br/>有库存</span>
  5544. <table>
  5545. <tr align="center">
  5546. <td style="padding-top: 5px">
  5547. </td>
  5548. </tr>
  5549. <tr align="center">
  5550. <td style="padding-top: 5px; padding-bottom: 5px">
  5551. </td>
  5552. </tr>
  5553. </table></td><td>
  5554. <table class="PriceBreaks" cellspacing="0" border="0">
  5555. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5556. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5557. </td>
  5558. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5559. </td>
  5560. </tr>
  5561. <tr>
  5562. <td class="PriceBreakQuantity">
  5563. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  5564. </td>
  5565. <td class="PriceBreakPrice">
  5566. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥57.681</span>
  5567. </td>
  5568. </tr>
  5569. <tr>
  5570. <td class="PriceBreakQuantity">
  5571. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  5572. </td>
  5573. <td class="PriceBreakPrice">
  5574. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥52.1352</span>
  5575. </td>
  5576. </tr>
  5577. <tr>
  5578. <td class="PriceBreakQuantity">
  5579. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,25);">25:</a>
  5580. </td>
  5581. <td class="PriceBreakPrice">
  5582. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥48.204</span>
  5583. </td>
  5584. </tr>
  5585. <tr>
  5586. <td class="PriceBreakQuantity">
  5587. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(24,50);">50:</a>
  5588. </td>
  5589. <td class="PriceBreakPrice">
  5590. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥46.0512</span>
  5591. </td>
  5592. </tr>
  5593. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5594. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5595. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(24,100);">100:</a>
  5596. </td>
  5597. <td class="PriceBreakPrice">
  5598. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/LME49720HA-NOPB/?qs=sGAEpiMZZMtuedWc5vOqGKncPRfweEd%2fAl%252bFN6HrTxQ%3d">查看</a>
  5599. </td>
  5600. </tr>
  5601. <tr>
  5602. <td><br /></td>
  5603. </tr>
  5604. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5605. <td colspan="2" style="text-align: center;">
  5606. </td>
  5607. </tr>
  5608. </table>
  5609. </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;)">
  5610. <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 />
  5611. <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="购买 LME49720HA/NOPB" class="buy-button" /><br />
  5612. <table cellspacing="0" border="0" style="width: 100%;">
  5613. <tr>
  5614. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5615. 最低:
  5616. </td>
  5617. <td style="padding-left: 2px; text-align: left;">
  5618. 1
  5619. </td>
  5620. </tr>
  5621. <tr>
  5622. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5623. 多个:
  5624. </td>
  5625. <td style="padding-left: 2px; text-align: left;">
  5626. 1
  5627. </td>
  5628. </tr>
  5629. </table>
  5630. </div>
  5631. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  5632. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5633. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=d6TVy%252bs7%2f2%2fXrspgJltKig%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=d6TVy%252bs7%2f2%2fXrspgJltKig%3d%3d" target="_blank">详细信息</a>
  5634. </div>
  5635. </td><td>Through Hole
  5636. </td><td>TO-99
  5637. </td><td>Audio Amplifiers
  5638. </td><td>
  5639. </td><td>Dual
  5640. </td><td>2 Channel
  5641. </td><td>+ 85 C
  5642. </td><td>Tray
  5643. </td>
  5644. </tr><tr class="SearchResultsRowOdd" data-partnumber="777-CS5364-CQZ" data-index="27">
  5645. <td class="td-select" align="center">
  5646. <div style="padding: 5px 5px 0 5px;">
  5647. <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>
  5648. </div>
  5649. </td><td><a href='/ProductDetail/Cirrus-Logic/CS5364-CQZ/?qs=sGAEpiMZZMtuedWc5vOqGEBe3NOErmL82G2%2fdSDPEQM%3d'><img title='Cirrus Logic CS5364-CQZ' alt='Cirrus Logic CS5364-CQZ' id=191621720 src='/images/cirruslogic/sm/qfp48.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/cirruslogic/images/qfp48.jpg</div></a></td><td>
  5650. <div style="text-align:left;">
  5651. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Cirrus-Logic/CS5364-CQZ/?qs=sGAEpiMZZMtuedWc5vOqGEBe3NOErmL82G2%2fdSDPEQM%3d">777-CS5364-CQZ</a><br />
  5652. <br />
  5653. <br />
  5654. </div></td><td>
  5655. <div class="mfrDiv">
  5656. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Cirrus-Logic/CS5364-CQZ/?qs=sGAEpiMZZMtuedWc5vOqGEBe3NOErmL82G2%2fdSDPEQM%3d">CS5364-CQZ</a><br />
  5657. <br />
  5658. <div style="width: 100%; text-align: center;">
  5659. </div>
  5660. <div style="width: 100%; text-align: center;">
  5661. </div>
  5662. </div>
  5663. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../Cirrus-Logic">Cirrus Logic</a>
  5664. </td><td>音频模/数转换器 IC 114dB 192kHz 4-Ch ADC w/TDM Interface
  5665. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  5666. </div>
  5667. </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;Cirrus Logic&quot;,&quot;777-CS5364-CQZ | CS5364-CQZ&quot;]);" href="http://www.mouser.com/ds/2/76/CirrusLogic_CS5364_F5-355926.pdf" target="_blank">数据表</a>
  5668. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">1,616<br/>有库存</span>
  5669. <table>
  5670. <tr align="center">
  5671. <td style="padding-top: 5px">
  5672. </td>
  5673. </tr>
  5674. <tr align="center">
  5675. <td style="padding-top: 5px; padding-bottom: 5px">
  5676. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAlternativePackaging" title="备用包装 | 777-CS5364-CQZ" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YS498M3hkSpOGG4zMZllx1AfVx8PPae5arUFxwcslw4XVV5v2aZcnqIxpVsOcZhL7mHkt%2f1cp99Ay99k5wxrFXPHOabyFu1mo14WrZAtXl1TabsgM7otvJMH35Cxy%252bsysU%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  5677. </td>
  5678. </tr>
  5679. </table></td><td>
  5680. <table class="PriceBreaks" cellspacing="0" border="0">
  5681. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  5682. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5683. </td>
  5684. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  5685. </td>
  5686. </tr>
  5687. <tr>
  5688. <td class="PriceBreakQuantity">
  5689. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  5690. </td>
  5691. <td class="PriceBreakPrice">
  5692. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥97.5663</span>
  5693. </td>
  5694. </tr>
  5695. <tr>
  5696. <td class="PriceBreakQuantity">
  5697. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  5698. </td>
  5699. <td class="PriceBreakPrice">
  5700. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥88.7094</span>
  5701. </td>
  5702. </tr>
  5703. <tr>
  5704. <td class="PriceBreakQuantity">
  5705. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
  5706. </td>
  5707. <td class="PriceBreakPrice">
  5708. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥82.017</span>
  5709. </td>
  5710. </tr>
  5711. <tr>
  5712. <td class="PriceBreakQuantity">
  5713. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,50);">50:</a>
  5714. </td>
  5715. <td class="PriceBreakPrice">
  5716. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥77.6295</span>
  5717. </td>
  5718. </tr>
  5719. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  5720. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  5721. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  5722. </td>
  5723. <td class="PriceBreakPrice">
  5724. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Cirrus-Logic/CS5364-CQZ/?qs=sGAEpiMZZMtuedWc5vOqGEBe3NOErmL82G2%2fdSDPEQM%3d">查看</a>
  5725. </td>
  5726. </tr>
  5727. <tr>
  5728. <td><br /></td>
  5729. </tr>
  5730. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  5731. <td colspan="2" style="text-align: center;">
  5732. </td>
  5733. </tr>
  5734. </table>
  5735. </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;)">
  5736. <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 />
  5737. <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="购买 CS5364-CQZ" class="buy-button" /><br />
  5738. <table cellspacing="0" border="0" style="width: 100%;">
  5739. <tr>
  5740. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5741. 最低:
  5742. </td>
  5743. <td style="padding-left: 2px; text-align: left;">
  5744. 1
  5745. </td>
  5746. </tr>
  5747. <tr>
  5748. <td style="padding-right: 2px; text-align: right; width: 50%;">
  5749. 多个:
  5750. </td>
  5751. <td style="padding-left: 2px; text-align: left;">
  5752. 1
  5753. </td>
  5754. </tr>
  5755. </table>
  5756. </div>
  5757. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  5758. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  5759. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Hwv0XqVZLZ6UDyF5dpYnbw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Hwv0XqVZLZ6UDyF5dpYnbw%3d%3d" target="_blank">详细信息</a>
  5760. </div>
  5761. </td><td>SMD/SMT
  5762. </td><td>LQFP-48
  5763. </td><td>Audio ADCs
  5764. </td><td>
  5765. </td><td>Audio ADC
  5766. </td><td>
  5767. </td><td>+ 85 C
  5768. </td><td>Tube
  5769. </td>
  5770. </tr>
  5771. </table>
  5772. </div>
  5773. </td>
  5774. </tr>
  5775. <tr>
  5776. <td class="tdSearchResultsPagingBottom">
  5777. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  5778. <tr>
  5779. <td>
  5780. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  5781. </td>
  5782. <td>
  5783. <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" />
  5784. </td>
  5785. <td>
  5786. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  5787. </td>
  5788. <td style="padding-left: 40px;">
  5789. <div class="floatrightpager">
  5790. <span class="bold">
  5791. 页面:
  5792. </span>
  5793. <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/Audio-ICs/_/N-6j740/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_137" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=3425">138</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740/?No=25">下一页</a></span>
  5794. </div>
  5795. </td>
  5796. </tr>
  5797. </table>
  5798. </td>
  5799. </tr>
  5800. <tr>
  5801. <td>
  5802. <!--- Search Tips --->
  5803. </td>
  5804. </tr>
  5805. <tr>
  5806. <td>
  5807. <!-- SOP Section 2 -->
  5808. </td>
  5809. </tr>
  5810. </table>
  5811. </div>
  5812. </div><!-- #liProducts-->
  5813. <!-- Datasheets tab -->
  5814. <!-- #liDatasheets-->
  5815. <!-- Images tab -->
  5816. <!-- #liImages-->
  5817. <!-- Newest Products tab -->
  5818. <!-- #liProducts-->
  5819. </div>
  5820. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  5821. <div>
  5822. <span class="popular-searches-label">热门搜索:</span>
  5823. <span class="popular-searches-links"><a href='/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/Audio-Amplifiers/_/N-6j744?P=1yzvwf8Z1yutxpiZ1z0z63xZ1ywz1n9&pop=tafa' onclick="ga('send','event','Popular Search Refine Click','Audio ICs','Audio Amplifiers 1-Channel Mono Through Hole Class-AB Audio Amplifiers')">Audio Amplifiers 1-Channel Mono Through Hole Class-AB 音频放大器</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/Audio-Amplifiers/_/N-6j744?P=1ywyzgx&pop=p2zq' onclick="ga('send','event','Popular Search Refine Click','Audio ICs','2-Channel Headphone Audio Amplifiers')">2-Channel Headphone 音频放大器</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/Audio-Amplifiers/_/N-6j744?P=1ywyxeu&pop=n5c7' onclick="ga('send','event','Popular Search Refine Click','Audio ICs','2-Channel Audio Amplifiers')">2-Channel 音频放大器</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740?P=1yzvta6&pop=lqe7' onclick="ga('send','event','Popular Search Refine Click','Audio ICs','4 Channel Audio ICs')">4 Channel 音频 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740?P=1yn77m2&pop=h3h1' onclick="ga('send','event','Popular Search Refine Click','Audio ICs','Audio Decoders Audio ICs')">Audio Decoders 音频 IC</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Audio-ICs/_/N-6j740?P=1z0z7ptZ1yo9jlr&pop=u39h' onclick="ga('send','event','Popular Search Refine Click','Audio ICs','Audio Processors SMD/SMT Audio ICs')">Audio Processors SMD/SMT 音频 IC</a></span>
  5824. </div>
  5825. </div>
  5826. <div style="visibility: hidden;">
  5827. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  5828. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  5829. <span id="SearchResultCount">3431</span>
  5830. <div id="disclaimer">
  5831. 图像仅供参考<br/>请参阅产品规格</div>
  5832. </div>
  5833. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Integrated-Circuits-ICs/Audio-ICs" />
  5834. <script type="text/javascript" src='../../../../../javascript/ProductImage.js'></script>
  5835. <script type="text/javascript" src='../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  5836. <script type="text/javascript" src='../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  5837. <!--[if gte IE 9]><!-->
  5838. <script type="text/javascript" src='../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  5839. <!--<![endif]-->
  5840. <!--[if lt IE 9]>
  5841. <script type="text/javascript" src='../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  5842. <![endif]-->
  5843. <script type="text/javascript" src='../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  5844. <script type="text/javascript">
  5845. var subdomain = 'cn2';
  5846. </script>
  5847. </div>
  5848. <div class="aspNetHidden">
  5849. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  5850. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  5851. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  5852. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  5853. </div>
  5854. <script type="text/javascript">
  5855. //<![CDATA[
  5856. var mfrIDsArray = new Array;
  5857. //]]>
  5858. </script>
  5859. <script src='../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  5860. <script type="text/javascript">
  5861. //<![CDATA[
  5862. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  5863. </script>
  5864. <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>
  5865. <script type="text/javascript">
  5866. //<![CDATA[
  5867. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  5868. <!-- Google Code for Conversion Page Remarketing List -->
  5869. <!--
  5870. var google_conversion_id = 1046090287;
  5871. var google_conversion_language = "en";
  5872. var google_conversion_format = "3";
  5873. var google_conversion_color = "666666";
  5874. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  5875. var google_conversion_value = 0;
  5876. //-->
  5877. </script>
  5878. <div class="ga-remarketing">
  5879. <script type="text/javascript"
  5880. src="http://www.googleadservices.com/pagead/conversion.js">
  5881. </script>
  5882. </div>
  5883. <noscript>
  5884. <div style="display:inline;">
  5885. <img height="1" width="1" style="border-style:none;" alt=""
  5886. src="http://www.googleadservices.com/pagead/conversion/1046090287/?label=9WmrCMOVxQEQr6To8gM&amp;guid=ON&amp;script=0"/>
  5887. </div>
  5888. </noscript>
  5889. <script type="text/javascript">
  5890. //]]>
  5891. </script>
  5892. <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>
  5893. <script type="text/javascript">
  5894. //<![CDATA[
  5895. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$1323044^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$688606^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688640^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000729^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$688755^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1826902^ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1000000314^ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$688610';
  5896. theForm.oldSubmit = theForm.submit;
  5897. theForm.submit = WebForm_SaveScrollPositionSubmit;
  5898. theForm.oldOnSubmit = theForm.onsubmit;
  5899. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  5900. //]]>
  5901. </script>
  5902. </form>
  5903. <div id="content-container2" class="hidden">
  5904. <div id="content-fixed-width2" class="content-fixed-width">
  5905. </div>
  5906. </div>
  5907. <div id="wideFooter" class="wideFooter">
  5908. <div id="footer" class="container">
  5909. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB09|20160304.2" />
  5910. <div id="ft_table1">
  5911. <div class="row">
  5912. <div class="col-xs-12">
  5913. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  5914. <div class="floatleft padding5right">
  5915. <strong class="h3">
  5916. 快速电子邮件注册</strong>&nbsp;&nbsp;
  5917. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  5918. </div>
  5919. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  5920. 提交
  5921. </a>
  5922. </div>
  5923. <div id="ft_icons" class="ft_icons">
  5924. <div id="ft_social">
  5925. <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>
  5926. <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>
  5927. <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>
  5928. <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">
  5929. <div class="ico-social fb"></div>
  5930. </a>
  5931. <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">
  5932. <div class="ico-social tw"></div>
  5933. </a>
  5934. <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">
  5935. <div class="ico-social rss"></div>
  5936. </a>
  5937. <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">
  5938. <div class="ico-social yt"></div>
  5939. </a>
  5940. <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">
  5941. <div class="ico-social gp"></div>
  5942. </a>
  5943. <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">
  5944. <div class="ico-social ln"></div>
  5945. </a>
  5946. <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">
  5947. <div class="ico-social sb"></div>
  5948. </a>
  5949. <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">
  5950. <div class="ico-social blog"></div>
  5951. </a>
  5952. </div>
  5953. </div>
  5954. </div>
  5955. </div>
  5956. </div>
  5957. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  5958. <div class="ft_wrapper">
  5959. <div id="ft_links" class="row">
  5960. <div class="col-xs-3 paddingBtm10 hidden-xs">
  5961. <strong class="paddingTopBtm10 inline-block">
  5962. 公司</strong>
  5963. <ul>
  5964. <li>
  5965. <a id="ctl00_Footer1_lnk26" href="../../../../../aboutus/">关于我们</a></li>
  5966. <li>
  5967. <a id="ctl00_Footer1_lnk28" href="../../../../../educationalsales/">教育销售</a></li>
  5968. <li>
  5969. <a id="ctl00_Footer1_lnk31" href="../../../../../pressroom/">新闻中心</a></li>
  5970. <li>
  5971. <a id="ctl00_Footer1_lnk32" href="../../../../../careers/">Mouser 工作机会</a></li>
  5972. <li>
  5973. <a id="ctl00_Footer1_lnk29" href="../../../../../quality/">品质保证</a></li>
  5974. <li>
  5975. <a id="ctl00_Footer1_lnk30" href="../../../../../environmental/">环境保护</a></li>
  5976. </ul>
  5977. </div>
  5978. <div class="col-xs-3 hidden-xs">
  5979. <strong class="paddingTopBtm10 inline-block">
  5980. 快速链接</strong>
  5981. <ul>
  5982. <li><a id="A7" href="/blog">
  5983. Mouser博客</a></li>
  5984. <li>
  5985. <a id="ctl00_Footer1_hlnk1" href="../../../../../new/">最新产品</a></li>
  5986. <li>
  5987. <a id="ctl00_Footer1_hlnk2" href="../../../../../new/products/">新产品</a></li>
  5988. <li>
  5989. <a id="ctl00_Footer1_hlnk3" href="../../../../../applications/">新技术</a></li>
  5990. </ul>
  5991. </div>
  5992. <div class="col-xs-12 col-sm-3">
  5993. <strong class="paddingTopBtm10 inline-block">
  5994. 支持</strong>
  5995. <ul>
  5996. <li><a id="A3" href="/feedback.aspx">
  5997. 反馈</a></li>
  5998. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  5999. 帮助</a></li>
  6000. <li>
  6001. <a id="ctl00_Footer1_lnk27" href="../../../../../contact/">联系我们</a></li>
  6002. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  6003. 浏览器支持</a></li>
  6004. <li><a id="A6" href="/cookie-policy/">
  6005. Cookie政策</a></li>
  6006. </ul>
  6007. </div>
  6008. <div class="col-xs-12 col-sm-3">
  6009. <strong class="paddingTopBtm10 inline-block">
  6010. 昴氏(上海)电子贸易有限公司</strong>
  6011. <ul>
  6012. <li>
  6013. <h4>
  6014. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  6015. </li>
  6016. </ul>
  6017. </div>
  6018. </div>
  6019. </div>
  6020. </div>
  6021. <div class="row">
  6022. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  6023. <div id="ft_copy">
  6024. <span class="ft_terms">
  6025. <a id="A1" href="/privacypolicy/">
  6026. 隐私政策</a>
  6027. &nbsp;&nbsp;|&nbsp;&nbsp;
  6028. <a id="href3" href="/saleterms/">
  6029. 销售条款</a>
  6030. <br />
  6031. </span>
  6032. <span class="ft_copyright">
  6033. 版权所有©2016 Mouser Electronics, Inc
  6034. |
  6035. 沪ICP备15042575号-1
  6036. <br />
  6037. </span>
  6038. <span class="ft_trade">
  6039. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  6040. </span>
  6041. <span class="ft_hq">
  6042. Corporate headquarters and logistics center in Mansfield, Texas USA.
  6043. </span>
  6044. <br />
  6045. <span class="ft_ClassicMobile">
  6046. <strong>
  6047. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  6048. </span>
  6049. </div>
  6050. </div>
  6051. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  6052. <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>
  6053. <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>
  6054. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  6055. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  6056. </a>
  6057. <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>
  6058. <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;
  6059. </a>
  6060. </div>
  6061. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  6062. <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>
  6063. <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>
  6064. <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>
  6065. <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>
  6066. </div>
  6067. </div>
  6068. <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>
  6069. <script type="text/javascript">
  6070. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  6071. </script>
  6072. </div>
  6073. </div>
  6074. <script src="../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  6075. <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>
  6076. </body>
  6077. </html>