38.html 333 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759
  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_f072ee2c-2444-4f5a-aa89-93ab8c757d9e-40740-329082';</script>
  34. <!-- AppInternalsXpert BMX Integration End -->
  35. <title>
  36. 有源滤波器 | Mouser
  37. </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta id="ctl00_metaDesc" name="Description" content="目前,Mouser Electronics可供应有源滤波器 。Mouser提供有源滤波器 的库存、定价和数据表。" /><meta id="ctl00_metaKeywords" name="Keywords" content="有源滤波器" /><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","fyLE4SJ5Q/zir9DHhYvjzD0nzw7zIXbiVB0DtrWpGLQ=",2]);_gaq.push(["_setCustomVar",31,"Cart","c0d2cbbf-df78-4736-a584-8f4a9083c5b6",2]);
  56. _gaq.push(["_setCustomVar",15,"TriColor PO1010","163AA125AA96AA68",2]);
  57. _gaq.push(["_setCustomVar",3,"PageType","Refine",3]);
  58. _gaq.push(["_setSiteSpeedSampleRate", 10]);
  59. _gaq.push(["_trackPageview"]);
  60. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
  61. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-521079-20', {'cookieDomain': 'mouser.cn','allowLinker': true});
  62. ga('require', 'ec');
  63. ga('ec:addImpression', {
  64. 'id': '700-MAX7404ESA',
  65. 'name': 'Active Filters 8th-Order Lowpass Elliptic Filter',
  66. 'category': 'Active Filters',
  67. 'brand': 'Maxim Integrated',
  68. 'variant': 'MAX7404ESA+',
  69. 'list': 'Refine',
  70. 'position': '1'
  71. });
  72. ga('ec:addImpression', {
  73. 'id': '700-MAX7419EUA',
  74. 'name': 'Active Filters 5th-Order Lowpass Elliptic Filter',
  75. 'category': 'Active Filters',
  76. 'brand': 'Maxim Integrated',
  77. 'variant': 'MAX7419EUA+',
  78. 'list': 'Refine',
  79. 'position': '2'
  80. });
  81. ga('ec:addImpression', {
  82. 'id': '595-UAF42AU',
  83. 'name': 'Active Filters Universal Active Filter',
  84. 'category': 'Active Filters',
  85. 'brand': 'Texas Instruments',
  86. 'variant': 'UAF42AU',
  87. 'list': 'Refine',
  88. 'position': '3'
  89. });
  90. ga('ec:addImpression', {
  91. 'id': '595-UAF42AP',
  92. 'name': 'Active Filters Universal Active Filter',
  93. 'category': 'Active Filters',
  94. 'brand': 'Texas Instruments',
  95. 'variant': 'UAF42AP',
  96. 'list': 'Refine',
  97. 'position': '4'
  98. });
  99. ga('ec:addImpression', {
  100. 'id': '700-MAX291ESA',
  101. 'name': 'Active Filters 8th-Order Lowpass Switched-Cap',
  102. 'category': 'Active Filters',
  103. 'brand': 'Maxim Integrated',
  104. 'variant': 'MAX291ESA+',
  105. 'list': 'Refine',
  106. 'position': '5'
  107. });
  108. ga('ec:addImpression', {
  109. 'id': '700-MAX274AENG+',
  110. 'name': 'Active Filters 4th \u0026 8th Order Continuous-Time',
  111. 'category': 'Active Filters',
  112. 'brand': 'Maxim Integrated',
  113. 'variant': 'MAX274AENG+',
  114. 'list': 'Refine',
  115. 'position': '6'
  116. });
  117. ga('ec:addImpression', {
  118. 'id': '700-MAX7400ESA',
  119. 'name': 'Active Filters 8th-Order Lowpass Elliptic Filter',
  120. 'category': 'Active Filters',
  121. 'brand': 'Maxim Integrated',
  122. 'variant': 'MAX7400ESA+',
  123. 'list': 'Refine',
  124. 'position': '7'
  125. });
  126. ga('ec:addImpression', {
  127. 'id': '700-MAX7427EUA',
  128. 'name': 'Active Filters 5th-Order Lowpass Elliptic Filter',
  129. 'category': 'Active Filters',
  130. 'brand': 'Maxim Integrated',
  131. 'variant': 'MAX7427EUA+',
  132. 'list': 'Refine',
  133. 'position': '8'
  134. });
  135. ga('ec:addImpression', {
  136. 'id': '700-MAX291CPA',
  137. 'name': 'Active Filters 8th-Order Lowpass Switched-Cap',
  138. 'category': 'Active Filters',
  139. 'brand': 'Maxim Integrated',
  140. 'variant': 'MAX291CPA+',
  141. 'list': 'Refine',
  142. 'position': '9'
  143. });
  144. ga('ec:addImpression', {
  145. 'id': '700-MAX7414EUA',
  146. 'name': 'Active Filters 5th-Order Lowpass Elliptic Filter',
  147. 'category': 'Active Filters',
  148. 'brand': 'Maxim Integrated',
  149. 'variant': 'MAX7414EUA+',
  150. 'list': 'Refine',
  151. 'position': '10'
  152. });
  153. ga('ec:addImpression', {
  154. 'id': '700-MAX7424EUA',
  155. 'name': 'Active Filters 5th-Order Lowpass Elliptic Filter',
  156. 'category': 'Active Filters',
  157. 'brand': 'Maxim Integrated',
  158. 'variant': 'MAX7424EUA+',
  159. 'list': 'Refine',
  160. 'position': '11'
  161. });
  162. ga('ec:addImpression', {
  163. 'id': '700-MAX280CPA',
  164. 'name': 'Active Filters 5th-Order Zero-Error Butterworth',
  165. 'category': 'Active Filters',
  166. 'brand': 'Maxim Integrated',
  167. 'variant': 'MAX280CPA+',
  168. 'list': 'Refine',
  169. 'position': '12'
  170. });
  171. ga('ec:addImpression', {
  172. 'id': '700-MAX7407CSA',
  173. 'name': 'Active Filters 8th-Order Lowpass Elliptic Filter',
  174. 'category': 'Active Filters',
  175. 'brand': 'Maxim Integrated',
  176. 'variant': 'MAX7407CSA+',
  177. 'list': 'Refine',
  178. 'position': '13'
  179. });
  180. ga('ec:addImpression', {
  181. 'id': '512-FMS6406CSX',
  182. 'name': 'Active Filters S-Video Filter',
  183. 'category': 'Active Filters',
  184. 'brand': 'Fairchild Semiconductor',
  185. 'variant': 'FMS6406CSX',
  186. 'list': 'Refine',
  187. 'position': '14'
  188. });
  189. ga('ec:addImpression', {
  190. 'id': '700-MAX7409EUA',
  191. 'name': 'Active Filters 5th-Order Lowpass Elliptic Filter',
  192. 'category': 'Active Filters',
  193. 'brand': 'Maxim Integrated',
  194. 'variant': 'MAX7409EUA+',
  195. 'list': 'Refine',
  196. 'position': '15'
  197. });
  198. ga('ec:addImpression', {
  199. 'id': '700-MAX7408EUA',
  200. 'name': 'Active Filters 5th-Order Lowpass Elliptic Filter',
  201. 'category': 'Active Filters',
  202. 'brand': 'Maxim Integrated',
  203. 'variant': 'MAX7408EUA+',
  204. 'list': 'Refine',
  205. 'position': '16'
  206. });
  207. ga('ec:addImpression', {
  208. 'id': '700-MAX295ESA',
  209. 'name': 'Active Filters 8th-Order Lowpass Switched-Cap',
  210. 'category': 'Active Filters',
  211. 'brand': 'Maxim Integrated',
  212. 'variant': 'MAX295ESA+',
  213. 'list': 'Refine',
  214. 'position': '17'
  215. });
  216. ga('ec:addImpression', {
  217. 'id': '700-MAX7401CSA',
  218. 'name': 'Active Filters 8th-Order Lowpass Elliptic Filter',
  219. 'category': 'Active Filters',
  220. 'brand': 'Maxim Integrated',
  221. 'variant': 'MAX7401CSA+',
  222. 'list': 'Refine',
  223. 'position': '18'
  224. });
  225. ga('ec:addImpression', {
  226. 'id': '926-MF10CCWMX/NOPB',
  227. 'name': 'Active Filters Universal Monolithic Dual Switched Capacitor Filter 20-SOIC 0 to 70',
  228. 'category': 'Active Filters',
  229. 'brand': 'Texas Instruments',
  230. 'variant': 'MF10CCWMX/NOPB',
  231. 'list': 'Refine',
  232. 'position': '19'
  233. });
  234. ga('ec:addImpression', {
  235. 'id': '700-MAX7422EUA',
  236. 'name': 'Active Filters 5th-Order Lowpass Elliptic Filter',
  237. 'category': 'Active Filters',
  238. 'brand': 'Maxim Integrated',
  239. 'variant': 'MAX7422EUA+',
  240. 'list': 'Refine',
  241. 'position': '20'
  242. });
  243. ga('ec:addImpression', {
  244. 'id': '595-TLC14ID',
  245. 'name': 'Active Filters Butterworth',
  246. 'category': 'Active Filters',
  247. 'brand': 'Texas Instruments',
  248. 'variant': 'TLC14ID',
  249. 'list': 'Refine',
  250. 'position': '21'
  251. });
  252. ga('ec:addImpression', {
  253. 'id': '700-MAX7420EUA',
  254. 'name': 'Active Filters 5th-Order Lowpass Elliptic Filter',
  255. 'category': 'Active Filters',
  256. 'brand': 'Maxim Integrated',
  257. 'variant': 'MAX7420EUA+',
  258. 'list': 'Refine',
  259. 'position': '22'
  260. });
  261. ga('ec:addImpression', {
  262. 'id': '512-FMS6151L6X',
  263. 'name': 'Active Filters VIDEO MIXED SIGNAL Ultra Port',
  264. 'category': 'Active Filters',
  265. 'brand': 'Fairchild Semiconductor',
  266. 'variant': 'FMS6151L6X',
  267. 'list': 'Refine',
  268. 'position': '23'
  269. });
  270. ga('ec:addImpression', {
  271. 'id': '700-MAX296EPA',
  272. 'name': 'Active Filters 8th-Order Lowpass Switched-Cap',
  273. 'category': 'Active Filters',
  274. 'brand': 'Maxim Integrated',
  275. 'variant': 'MAX296EPA+',
  276. 'list': 'Refine',
  277. 'position': '24'
  278. });
  279. ga('ec:addImpression', {
  280. 'id': '700-MAX270EWP',
  281. 'name': 'Active Filters Digitally Prog Dual 2-ORD Cont Lowpass',
  282. 'category': 'Active Filters',
  283. 'brand': 'Maxim Integrated',
  284. 'variant': 'MAX270EWP+',
  285. 'list': 'Refine',
  286. 'position': '25'
  287. });
  288. ga('set','dimension1','zh-CN');
  289. ga('set','dimension30','fyLE4SJ5Q/zir9DHhYvjzD0nzw7zIXbiVB0DtrWpGLQ=');
  290. ga('set','dimension31','c0d2cbbf-df78-4736-a584-8f4a9083c5b6');
  291. ga('set','dimension13','163AA125AA96AA68');
  292. ga('set','metric2',382);
  293. ga('set','dimension5','Active Filter');
  294. ga('set','dimension48','6sh70');
  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/Active-Filter/_/N-6sh70/?No=25" rel="next" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=25" /><link href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70" rel="canonical" content="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70" /><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/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="de-AT" href="http://www.mouser.at/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-AU" href="http://au.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="fr-BE" href="http://www.mouser.be/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-BG" href="http://www.mouser.bg/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="pt-BR" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-CA" href="http://ca.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="de-CH" href="http://www.mouser.ch/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-CL" href="http://www.mouser.cl/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="zh-Hans-CN" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-CO" href="http://co.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-CR" href="http://www.mouser.co.cr/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="cs-CZ" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="de-DE" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-DK" href="http://www.mouser.dk/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-DO" href="http://www.mouser.do/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-EC" href="http://www.mouser.ec/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-EE" href="http://www.mouser.ee/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-ES" href="http://www.mouser.es/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-FI" href="http://www.mouser.fi/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="fr-FR" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-GB" href="http://www.mouser.co.uk/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-GR" href="http://gr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-GT" href="http://www.mouser.com.gt/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="zh-Hant-HK" href="http://www.mouser.hk/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-HN" href="http://www.mouser.hn/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-HR" href="http://hr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-HU" href="http://hu.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-ID" href="http://www.mouser.co.id/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-IE" href="http://www.mouser.ie/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-IL" href="http://www.mouser.co.il/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-IN" href="http://www.mouser.in/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="it-IT" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="ja-JP" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="ko-KR" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="de-LI" href="http://www.mouser.li/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="fr-LU" href="http://www.mouser.lu/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-MX" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-MY" href="http://my.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="nl-NL" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-NO" href="http://no.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-NZ" href="http://nz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-PE" href="http://www.mouser.pe/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-PH" href="http://www.mouser.ph/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-PL" href="http://pl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-PR" href="http://www.mouser.pr/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="pt-PT" href="http://pt.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-RO" href="http://ro.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="ru-RU" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="sv-SE" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-SG" href="http://www.mouser.sg/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-SK" href="http://www.mouser.sk/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="th-TH" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-TR" href="http://www.mouser.com.tr/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="zh-Hant-TW" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-UY" href="http://uy.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es-VE" href="http://ve.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-VN" href="http://www.mouser.vn/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-US" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en-ZA" href="http://www.mouser.co.za/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="pt" href="http://br.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="zh-Hans" href="http://www.mouser.cn/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="cs" href="http://cz.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="de" href="http://www.mouser.de/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="fr" href="http://www.mouser.fr/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="it" href="http://www.mouser.it/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="ja" href="http://www.mouser.jp/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="ko" href="http://kr.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="es" href="http://www.mouser.mx/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="nl" href="http://nl.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="ru" href="http://ru.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="sv" href="http://www.mouser.se/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="th" href="http://th.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="zh-Hant" href="http://www.mouser.tw/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><link rel="alternate" hreflang="en" href="http://www.mouser.com/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" /><style type="text/css">#d__fFH{position:absolute;top:-5000px;left:-5000px}#d__fF{font-family:serif;font-size:200px;visibility:hidden}#yxezcaswaauztuaqaww{display:none!important}</style><!-- Optimized for speed - Stingray Aptimizer --></head>
  300. <body id="ctl00_body" itemscope="" itemtype="http://schema.org/SearchResultsPage" class="widePage">
  301. <script src='../../../../../flash/js/jquery-1.11.1.min.js' type="text/javascript"></script>
  302. <script src='../../../../../flash/js/empty.file.js' type="text/javascript"></script>
  303. <script src='../../../../../flash/js/jquery-ui-1.11.1.min.js' type="text/javascript"></script>
  304. <script src='../../../../../flash/js/jquery.plugins2.js?v=3.0.20160304.2' type="text/javascript"></script>
  305. <script src='../../../../../flash/js/default.js?v=3.0.20160304.2' type="text/javascript"></script>
  306. <!--[if lt IE 9]>
  307. <script src='../../../../../flash/js/respond.min.js?v=3.0.20160304.2' type="text/javascript"></script>
  308. <![endif]-->
  309. <form method="post" action="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/" 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='11406348';
  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='11406348';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%2f4qc5ce9IXZBtQkqWv2G7DX%2fhVv5CZFQ2neUAzWPPo2mBLwTMdA1HiwZ7mixPoWz8%3d">更改国家</a>
  440. <a id="ctl00_gab1_A6" title="更改位置" class="tdFlag topPadding" href="http://www.mouser.cn/localsites.aspx?qs=0gZ0gv0KDwvP7WQAo8iqDRfsfSMqyvMLMMwfxyI2u5%2f4qc5ce9IXZBtQkqWv2G7DX%2fhVv5CZFQ2neUAzWPPo2mBLwTMdA1HiwZ7mixPoWz8%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 = 'c0d2cbbf-df78-4736-a584-8f4a9083c5b6';
  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%2f4qc5ce9IXZBtQkqWv2G7DX%2fhVv5CZFQ2neUAzWPPo2mBLwTMdA1HiwZ7mixPoWz8%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;">有源滤波器</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> 有源滤波器</h1></a>
  849. <!--Marketing Content-->
  850. <div id="ctl00_ContentMain_refinemfglogo">
  851. </div>
  852. </div><!--.category-content-->
  853. </div>
  854. </td>
  855. </tr>
  856. <tr>
  857. <td>
  858. </td>
  859. </tr>
  860. <tr>
  861. <td>
  862. <div id="refine-page2">
  863. </div>
  864. </td>
  865. </tr>
  866. </table>
  867. <div id="ctl00_ContentMain_divTabs" class="row">
  868. <div class="col-xs-12">
  869. <div id="tabsNavigation" >
  870. <ul>
  871. <li id="ctl00_ContentMain_liProductsTab" class="active">
  872. <a id="ctl00_ContentMain_liProductsLink" class="aspNetDisabled">产品<span id="ctl00_ContentMain_lblProductCount" class="item-counts">(382)</span></a>
  873. </li>
  874. <li id="ctl00_ContentMain_liDatasheetsTab" class="">
  875. <a id="ctl00_ContentMain_liDatasheetsLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Datasheets&#39;, &#39;Active Filter&#39;);" href="../../Datasheets/_/N-6sh70">数据表<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblDatasheetCount" class="item-counts">(39)</span></a>
  876. </li>
  877. <li id="ctl00_ContentMain_liImagesTab" class="">
  878. <a id="ctl00_ContentMain_liImagesLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Images&#39;, &#39;Active Filter&#39;);" href="../../Images/_/N-6sh70">图片<sup class="superscript">BETA</sup><span id="ctl00_ContentMain_lblImagesCount" class="item-counts">(30)</span></a>
  879. </li>
  880. <li id="ctl00_ContentMain_liNewestTab" class="">
  881. <a id="ctl00_ContentMain_liNewestProdLink" onclick="SendGATracking(&#39;Refine Tab Click&#39;, &#39;Newest Products&#39;, &#39;Active Filter&#39;);" href="../../Newest-Products/_/N-6sh70">最新产品</a>
  882. </li>
  883. </ul>
  884. </div>
  885. </div>
  886. </div>
  887. <div id="tabDivs" class="tab-divs">
  888. <script type="text/javascript">
  889. //<![CDATA[
  890. Sys.WebForms.PageRequestManager._initialize('ctl00$ContentMain$ScriptManager1', 'aspnetForm', [], [], [], 90, 'ctl00');
  891. //]]>
  892. </script>
  893. <div id="ctl00_ContentMain_liProducts">
  894. <div id="refineSearchDiv">
  895. <div id="ctl00_ContentMain_pnlRefineSearchBar" class="refine-search-bar-2">
  896. <div id="refine-keyword-search-2">
  897. <div id="ctl00_ContentMain_uc2_BoxSearch" onkeypress="javascript:return WebForm_FireDefaultButton(event, &#39;ctl00_ContentMain_uc2_btnSearch&#39;)">
  898. <div id="boxPartSearch2">
  899. <table id="ctl00_ContentMain_uc2_tblSearch" class="tblSearch2">
  900. <tr>
  901. <td rowspan="3" style="vertical-align: middle">
  902. <div id="searchPartNumberBox" class="search-box" >
  903. <input name="ctl00$ContentMain$uc2$txtPartKeywordSearch" type="text" id="ctl00_ContentMain_uc2_txtPartKeywordSearch" title="物料编号/关键字" class="search-txt" />
  904. <input type="submit" name="ctl00$ContentMain$uc2$btnSearch" value="" onclick="return attributecount();" id="ctl00_ContentMain_uc2_btnSearch" title="搜索" class="searchbutton" class="Empty" />
  905. </div>
  906. </td>
  907. </tr>
  908. <tr>
  909. <td class="chk-Search">
  910. <span title="选中时,搜索将只返回库存的产品。"><input id="ctl00_ContentMain_uc2_chkStocked" type="checkbox" name="ctl00$ContentMain$uc2$chkStocked" /><label for="ctl00_ContentMain_uc2_chkStocked">有库存</label></span>
  911. </td>
  912. </tr>
  913. <tr>
  914. <td class="chk-Search">
  915. <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>
  916. </td>
  917. </tr>
  918. </table>
  919. <input type="hidden" name="ctl00$ContentMain$uc2$searchWithinResults" id="ctl00_ContentMain_uc2_searchWithinResults" value="在结果中搜索" />
  920. </div>
  921. <script type="text/javascript" src='../../../../../flash/js/Placeholders.min.js'></script>
  922. <script type="text/javascript" src='../../../../../flash/js/watermark.js'></script>
  923. </div>
  924. </div>
  925. <div id="refine-mfg-select-2">
  926. </div>
  927. <div class="clear">
  928. </div>
  929. <table class="SearchParametricTable2">
  930. <tr>
  931. <td>
  932. <div id="AttributesDiv2">
  933. <div id="ctl00_ContentMain_uc5_categorySearchLimitsDiv" style="padding-top: 5px;">
  934. <div class="categorySearchLimits">
  935. <div id="ctl00_ContentMain_uc5_CategorySearchLimits_pnlCategorySearchLimits">
  936. <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_chkbx11406348|Active Filter&#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_chkbx11406348|Active Filter&#39;).checked = false;" /></span>&nbsp;<b>集成电路 - IC</b>&nbsp;&#62;&nbsp;<span title="有源滤波器"><input id="ctl00_ContentMain_uc5_CategorySearchLimits_chkbx11406348|Active Filter" type="checkbox" name="ctl00$ContentMain$uc5$CategorySearchLimits$chkbx11406348|Active Filter" 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>有源滤波器</b>
  937. </div>
  938. </div>
  939. <hr/>
  940. </div>
  941. <div id="ctl00_ContentMain_uc5_availableFiltersDiv">
  942. <p class="applied-filter-lbl">
  943. <span id="ctl00_ContentMain_uc5_lblAvailableFilters" class="availableFilters">可用过滤器</span>
  944. <span id="ctl00_ContentMain_uc5_lblreccount">382 匹配</span>
  945. &nbsp;<span id="ctl00_ContentMain_uc5_lblajaxcount" class="error"></span>
  946. </p>
  947. <div id="ctl00_ContentMain_uc5_SmartFilterDiv2" class="hidden">
  948. <input id="ctl00_ContentMain_uc5_ckSmartFilter" type="checkbox" name="ctl00$ContentMain$uc5$ckSmartFilter" />&nbsp;
  949. <span id="ctl00_ContentMain_uc5_lblSmartFilter">启用智能过滤</span>&nbsp;
  950. <img id="ctl00_ContentMain_uc5_imgSmartFilter" title="当您选择下述一个或多个参数过滤器时,智能过滤将即时禁用未选中的数值,可能导致查找不到相关结果。" class="smartFilterImg" src="../../../../../images/icon_tooltip.png" />
  951. <br />
  952. </div>
  953. </div>
  954. <table id="tb1" style="width: 100%;">
  955. <tr>
  956. <td>
  957. <table id="ctl00_ContentMain_uc5_AttributeCategoryList" class="bottom" cellspacing="0" style="border-collapse:collapse;">
  958. <tr>
  959. <td>
  960. <table cellpadding="0" cellspacing="0">
  961. <tr>
  962. <td>
  963. <table>
  964. <tr>
  965. <td>
  966. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lblheader" style="font-weight:bold;white-space:normal;">制造商</span>
  967. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_RangePnl">
  968. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  969. of parametric ids sent on the query string after the seo url is generated and redirected to.
  970. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  971. sorted parametric attributes from an endeca attribute group --->
  972. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnRange" />
  973. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_hdnDimId" value="1000000411" />
  974. &nbsp;
  975. </div>
  976. </td>
  977. </tr>
  978. <tr>
  979. <td>
  980. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_1000000411">
  981. <option value="4290538360">Analog Devices Inc.</option>
  982. <option value="4294449078">Cirrus Logic</option>
  983. <option value="4294759187">Fairchild Semiconductor</option>
  984. <option value="4292499325">Intersil</option>
  985. <option value="4291596096">Maxim Integrated</option>
  986. <option value="4294758758">NJR</option>
  987. <option value="4294759663">ON Semiconductor</option>
  988. <option value="4282285770">Qorvo</option>
  989. <option value="4294005660">ROHM Semiconductor</option>
  990. <option value="4294759686">Texas Instruments</option>
  991. </select>
  992. </td>
  993. </tr>
  994. <tr>
  995. <td>
  996. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl00_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  997. </td>
  998. </tr>
  999. </table>
  1000. </td>
  1001. <td valign="bottom" style="width: 15px;">
  1002. &nbsp;
  1003. </td>
  1004. </tr>
  1005. </table>
  1006. </td><td>
  1007. <table cellpadding="0" cellspacing="0">
  1008. <tr>
  1009. <td>
  1010. <table>
  1011. <tr>
  1012. <td>
  1013. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lblheader" style="font-weight:bold;white-space:normal;">通道数量</span>
  1014. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_RangePnl">
  1015. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1016. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1017. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1018. sorted parametric attributes from an endeca attribute group --->
  1019. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnRange" />
  1020. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_hdnDimId" value="1826902" />
  1021. &nbsp;
  1022. </div>
  1023. </td>
  1024. </tr>
  1025. <tr>
  1026. <td>
  1027. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$1826902" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_1826902">
  1028. <option value="4292988712">1 Channel</option>
  1029. <option value="4292972354">2 Channel</option>
  1030. <option value="4292972352">3 Channel</option>
  1031. <option value="4292903166">4 Channel</option>
  1032. </select>
  1033. </td>
  1034. </tr>
  1035. <tr>
  1036. <td>
  1037. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl01_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1038. </td>
  1039. </tr>
  1040. </table>
  1041. </td>
  1042. <td valign="bottom" style="width: 15px;">
  1043. &nbsp;
  1044. </td>
  1045. </tr>
  1046. </table>
  1047. </td><td>
  1048. <table cellpadding="0" cellspacing="0">
  1049. <tr>
  1050. <td>
  1051. <table>
  1052. <tr>
  1053. <td>
  1054. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lblheader" style="font-weight:bold;white-space:normal;">截止频率</span>
  1055. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_RangePnl">
  1056. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1057. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1058. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1059. sorted parametric attributes from an endeca attribute group --->
  1060. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnRange" />
  1061. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_hdnDimId" value="1000000507" />
  1062. &nbsp;
  1063. </div>
  1064. </td>
  1065. </tr>
  1066. <tr>
  1067. <td>
  1068. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000507" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_1000000507">
  1069. <option value="4290605637">2 kHz</option>
  1070. <option value="4290605643">5 kHz</option>
  1071. <option value="4290605301">7.5 kHz</option>
  1072. <option value="4290605639">9 kHz</option>
  1073. <option value="4290605930">10 kHz</option>
  1074. <option value="4290605638">12 kHz</option>
  1075. <option value="4290605642">15 kHz</option>
  1076. <option value="4290606936">20 kHz</option>
  1077. <option value="4290605645">25 kHz</option>
  1078. <option value="4294002915">30 KHz</option>
  1079. <option value="4294447950">40 KHz</option>
  1080. <option value="4290605640">45 kHz</option>
  1081. <option value="4290605644">50 kHz</option>
  1082. <option value="4290605374">57 kHz</option>
  1083. <option value="4290606221">100 kHz</option>
  1084. <option value="4290605302">140 kHz</option>
  1085. <option value="4291501270">150 kHz</option>
  1086. <option value="4290605646">300 kHz</option>
  1087. <option value="4292832876">7.6 MHz</option>
  1088. <option value="4294448104">8 MHz</option>
  1089. <option value="4288634346">50 MHz</option>
  1090. <option value="4284144708">72 MHz</option>
  1091. <option value="4288543276">3 GHz</option>
  1092. </select>
  1093. </td>
  1094. </tr>
  1095. <tr>
  1096. <td>
  1097. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl02_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1098. </td>
  1099. </tr>
  1100. </table>
  1101. </td>
  1102. <td valign="bottom" style="width: 15px;">
  1103. &nbsp;
  1104. </td>
  1105. </tr>
  1106. </table>
  1107. </td><td>
  1108. <table cellpadding="0" cellspacing="0">
  1109. <tr>
  1110. <td>
  1111. <table>
  1112. <tr>
  1113. <td>
  1114. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lblheader" style="font-weight:bold;white-space:normal;">过滤器类型</span>
  1115. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_RangePnl">
  1116. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1117. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1118. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1119. sorted parametric attributes from an endeca attribute group --->
  1120. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnRange" />
  1121. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_hdnDimId" value="688421" />
  1122. &nbsp;
  1123. </div>
  1124. </td>
  1125. </tr>
  1126. <tr>
  1127. <td>
  1128. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688421" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_688421">
  1129. <option value="4276171131">Band Pass</option>
  1130. <option value="4276171130">Band Pass, Low Pass</option>
  1131. <option value="4292744529">Low Pass</option>
  1132. <option value="4276172445">Programmable</option>
  1133. <option value="4276172816">Universal</option>
  1134. </select>
  1135. </td>
  1136. </tr>
  1137. <tr>
  1138. <td>
  1139. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl03_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1140. </td>
  1141. </tr>
  1142. </table>
  1143. </td>
  1144. <td valign="bottom" style="width: 15px;">
  1145. &nbsp;
  1146. </td>
  1147. </tr>
  1148. </table>
  1149. </td><td>
  1150. <table cellpadding="0" cellspacing="0">
  1151. <tr>
  1152. <td>
  1153. <table>
  1154. <tr>
  1155. <td>
  1156. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lblheader" style="font-weight:bold;white-space:normal;">电源电压-最大</span>
  1157. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_RangePnl">
  1158. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1159. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1160. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1161. sorted parametric attributes from an endeca attribute group --->
  1162. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnRange" />
  1163. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_hdnDimId" value="1000000808" />
  1164. &nbsp;
  1165. </div>
  1166. </td>
  1167. </tr>
  1168. <tr>
  1169. <td>
  1170. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000808" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_1000000808">
  1171. <option value="4292473475">3 V</option>
  1172. <option value="4292473759">3.5 V</option>
  1173. <option value="4292473865">3.6 V</option>
  1174. <option value="4292473827">5 V</option>
  1175. <option value="4292473860">5.25 V</option>
  1176. <option value="4292473868">5.5 V</option>
  1177. <option value="4292473871">6 V</option>
  1178. <option value="4292473670">6.3 V</option>
  1179. <option value="4292473789">7 V</option>
  1180. <option value="4292473776">11 V</option>
  1181. <option value="4292473873">12 V</option>
  1182. <option value="4292473574">12.6 V</option>
  1183. <option value="4292473856">16 V</option>
  1184. <option value="4292473833">18 V</option>
  1185. </select>
  1186. </td>
  1187. </tr>
  1188. <tr>
  1189. <td>
  1190. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl04_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1191. </td>
  1192. </tr>
  1193. </table>
  1194. </td>
  1195. <td valign="bottom" style="width: 15px;">
  1196. &nbsp;
  1197. </td>
  1198. </tr>
  1199. </table>
  1200. </td><td>
  1201. <table cellpadding="0" cellspacing="0">
  1202. <tr>
  1203. <td>
  1204. <table>
  1205. <tr>
  1206. <td>
  1207. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lblheader" style="font-weight:bold;white-space:normal;">电源电压-最小</span>
  1208. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_RangePnl">
  1209. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1210. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1211. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1212. sorted parametric attributes from an endeca attribute group --->
  1213. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnRange" />
  1214. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_hdnDimId" value="1000000809" />
  1215. &nbsp;
  1216. </div>
  1217. </td>
  1218. </tr>
  1219. <tr>
  1220. <td>
  1221. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000000809" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_1000000809">
  1222. <option value="4292473198">2.37 V</option>
  1223. <option value="4292473858">2.5 V</option>
  1224. <option value="4292473863">2.7 V</option>
  1225. <option value="4292473864">3 V</option>
  1226. <option value="4292473810">3.3 V</option>
  1227. <option value="4292473866">4.5 V</option>
  1228. <option value="4292473147">4.74 V</option>
  1229. <option value="4292473859">4.75 V</option>
  1230. <option value="4292473838">5 V</option>
  1231. <option value="4292473757">6 V</option>
  1232. <option value="4292473799">9 V</option>
  1233. </select>
  1234. </td>
  1235. </tr>
  1236. <tr>
  1237. <td>
  1238. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl05_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1239. </td>
  1240. </tr>
  1241. </table>
  1242. </td>
  1243. <td valign="bottom" style="width: 15px;">
  1244. &nbsp;
  1245. </td>
  1246. </tr>
  1247. </table>
  1248. </td><td>
  1249. <table cellpadding="0" cellspacing="0">
  1250. <tr>
  1251. <td>
  1252. <table>
  1253. <tr>
  1254. <td>
  1255. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lblheader" style="font-weight:bold;white-space:normal;">最大工作温度</span>
  1256. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_RangePnl">
  1257. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnklesseq" title="Select less or equal values." class="lesseq">&#8804;</a>
  1258. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkgreatereq" title="Select greater or equal values." class="greatereq">&#8805;</a>
  1259. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1260. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1261. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1262. sorted parametric attributes from an endeca attribute group --->
  1263. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnRange" />
  1264. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_hdnDimId" value="1000000314" />
  1265. </div>
  1266. </td>
  1267. </tr>
  1268. <tr>
  1269. <td>
  1270. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000314" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_1000000314">
  1271. <option value="4294629996">+ 70 C</option>
  1272. <option value="4294630005">+ 85 C</option>
  1273. <option value="4294568129">+ 105 C</option>
  1274. <option value="4294631245">+ 125 C</option>
  1275. </select>
  1276. </td>
  1277. </tr>
  1278. <tr>
  1279. <td>
  1280. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl06_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1281. </td>
  1282. </tr>
  1283. </table>
  1284. </td>
  1285. <td valign="bottom" style="width: 15px;">
  1286. &nbsp;
  1287. </td>
  1288. </tr>
  1289. </table>
  1290. </td><td>
  1291. <table cellpadding="0" cellspacing="0">
  1292. <tr>
  1293. <td>
  1294. <table>
  1295. <tr>
  1296. <td>
  1297. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lblheader" style="font-weight:bold;white-space:normal;">安装风格</span>
  1298. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_RangePnl">
  1299. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1300. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1301. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1302. sorted parametric attributes from an endeca attribute group --->
  1303. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnRange" />
  1304. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_hdnDimId" value="1323044" />
  1305. &nbsp;
  1306. </div>
  1307. </td>
  1308. </tr>
  1309. <tr>
  1310. <td>
  1311. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1323044" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_1323044">
  1312. <option value="4294741457">SMD/SMT</option>
  1313. <option value="4294739373">Through Hole</option>
  1314. </select>
  1315. </td>
  1316. </tr>
  1317. <tr>
  1318. <td>
  1319. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl07_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1320. </td>
  1321. </tr>
  1322. </table>
  1323. </td>
  1324. <td valign="bottom" style="width: 15px;">
  1325. &nbsp;
  1326. </td>
  1327. </tr>
  1328. </table>
  1329. </td><td>
  1330. <table cellpadding="0" cellspacing="0">
  1331. <tr>
  1332. <td>
  1333. <table>
  1334. <tr>
  1335. <td>
  1336. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lblheader" style="font-weight:bold;white-space:normal;">封装 / 箱体</span>
  1337. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_RangePnl">
  1338. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1339. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1340. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1341. sorted parametric attributes from an endeca attribute group --->
  1342. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnRange" />
  1343. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_hdnDimId" value="688606" />
  1344. &nbsp;
  1345. </div>
  1346. </td>
  1347. </tr>
  1348. <tr>
  1349. <td>
  1350. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$688606" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_688606">
  1351. <option value="4294680792">CDIP-8</option>
  1352. <option value="4294689540">DMP-8</option>
  1353. <option value="4294682863">MicroPak-6</option>
  1354. <option value="4294689850">PDIP-14</option>
  1355. <option value="4294688827">PDIP-20</option>
  1356. <option value="4294687493">PDIP-24</option>
  1357. <option value="4294688823">PDIP-28</option>
  1358. <option value="4294741647">PDIP-8</option>
  1359. <option value="4284650330">PDIP-Narrow-24</option>
  1360. <option value="4284650431">PDIP-Narrow-8</option>
  1361. <option value="4284571165">PDIP-Wide-28</option>
  1362. <option value="4294671306">QFN EP</option>
  1363. <option value="4294719844">QFN-16</option>
  1364. <option value="4294719691">QFN-32</option>
  1365. <option value="4294707458">QSOP-16</option>
  1366. <option value="4294738680">SC-70</option>
  1367. <option value="4294738489">SOIC-16</option>
  1368. <option value="4294729352">SOIC-20</option>
  1369. <option value="4294687808">SOIC-24</option>
  1370. <option value="4294689807">SOIC-28</option>
  1371. <option value="4294689289">SOIC-28 Wide</option>
  1372. <option value="4294741649">SOIC-8</option>
  1373. <option value="4294012959">SOIC-8 Narrow</option>
  1374. <option value="4284650430">SOIC-Narrow-8</option>
  1375. <option value="4268182874">SOIC-W-28</option>
  1376. <option value="4284650329">SOIC-Wide-16</option>
  1377. <option value="4284625363">SOIC-Wide-20</option>
  1378. <option value="4284650286">SOIC-Wide-24</option>
  1379. <option value="4284625361">SOIC-Wide-28</option>
  1380. <option value="4294718155">TQFP-64</option>
  1381. <option value="4294720455">TSSOP-14</option>
  1382. <option value="4292555613">UMAX-8</option>
  1383. <option value="4294572502">VQFN-40</option>
  1384. </select>
  1385. </td>
  1386. </tr>
  1387. <tr>
  1388. <td>
  1389. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl08_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1390. </td>
  1391. </tr>
  1392. </table>
  1393. </td>
  1394. <td valign="bottom" style="width: 15px;">
  1395. &nbsp;
  1396. </td>
  1397. </tr>
  1398. </table>
  1399. </td><td>
  1400. <table cellpadding="0" cellspacing="0">
  1401. <tr>
  1402. <td>
  1403. <table>
  1404. <tr>
  1405. <td>
  1406. <span id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lblheader" style="font-weight:bold;white-space:normal;">封装</span>
  1407. <div id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_RangePnl">
  1408. <!--- Task 14016 Tamra - added hidden input to store ranged selections on the client side in an attempt to reduce the number
  1409. of parametric ids sent on the query string after the seo url is generated and redirected to.
  1410. Client side value is collected, parsed, and applied to the seo query string and represents a list of
  1411. sorted parametric attributes from an endeca attribute group --->
  1412. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnRange" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnRange" />
  1413. <input type="hidden" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$hdnDimId" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_hdnDimId" value="688610" />
  1414. &nbsp;
  1415. </div>
  1416. </td>
  1417. </tr>
  1418. <tr>
  1419. <td>
  1420. <select size="7" name="ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$688610" multiple="multiple" id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_688610">
  1421. <option value="4294966193">Bulk</option>
  1422. <option value="4285550389">Gel Pack</option>
  1423. <option value="4294966263">Reel</option>
  1424. <option value="4294966123">Tube</option>
  1425. </select>
  1426. </td>
  1427. </tr>
  1428. <tr>
  1429. <td>
  1430. <a id="ctl00_ContentMain_uc5_AttributeCategoryList_ctl09_lnkreset" title="点击以删除下拉列表中的选项。" class="reset-link">重置</a>
  1431. </td>
  1432. </tr>
  1433. </table>
  1434. </td>
  1435. <td valign="bottom" style="width: 15px;">
  1436. &nbsp;
  1437. </td>
  1438. </tr>
  1439. </table>
  1440. </td>
  1441. </tr>
  1442. </table>
  1443. <table class="ApplyFilter">
  1444. <tr>
  1445. <td class="ApplyFilterColumn1">
  1446. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter1" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter1" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1447. </td>
  1448. <td class="ApplyFilterColumn2">
  1449. <span id="ctl00_ContentMain_uc5_lblZeroResultHint" class="error" style="display:inline-block;width:1px;display: none;">请修改您的搜索,这样它会返回结果。</span>
  1450. </td>
  1451. <td class="ApplyFilterColumn2_5">
  1452. <span id="ctl00_ContentMain_uc5_lblInvalidRangeHint" class="error" style="display:inline-block;width:1px;display: none;">所选过滤条件不再可用,搜索结果已改变。请重试搜索。</span>
  1453. </td>
  1454. <td class="ApplyFilterColumn3">
  1455. <input type="submit" name="ctl00$ContentMain$uc5$btnfilter2" value="应用过滤器" onclick="return submitClick();" id="ctl00_ContentMain_uc5_btnfilter2" title="点击以应用选定的过滤器,或删除未选中的过滤器。" class="button-white" />
  1456. </td>
  1457. </tr>
  1458. </table>
  1459. </td>
  1460. </tr>
  1461. </table>
  1462. </div>
  1463. </td>
  1464. </tr>
  1465. </table>
  1466. <div id='WarningPopup' style='text-align: center; position: absolute; width: 430px;
  1467. height: 70px; display: none; background: white; border: 1px solid #000;'>
  1468. <br />
  1469. <span id="ctl00_ContentMain_uc5_Label1">要使用小于或大于功能,请首先选择一个值。</span><br />
  1470. <br />
  1471. <div style="text-align: right; margin-right: 15; padding-right: 15;">
  1472. <!--Close Window-->
  1473. <a href="javascript:closeWarningPopup();" id="ctl00_ContentMain_uc5_linkCloseWindow" class="close" title="关闭窗口">
  1474. <span id="ctl00_ContentMain_uc5_lblClose">关闭窗口</span>
  1475. </a>&nbsp;&nbsp;</div>
  1476. </div>
  1477. <div id ="VisualAttributePopup" class="hidden" >
  1478. <div id="ctl00_ContentMain_uc5_VisualParametricsSelector_visualAttributePopup">
  1479. <div id="divAttributeGroup" data-bind="if: hasGroupDescription ">
  1480. <div class="visualAttGroupDesc" data-bind="text: AttributeGroupDescription"></div>
  1481. </div>
  1482. <div><img data-bind="visible: !loadFinished()" class="visualAttSpinnerImg" id="loadingimgspinner" src="/Images/spinner2.gif" /></div>
  1483. <div class="visualAttValues" data-bind="visible: attributes().length > 0 " >
  1484. <table id="tblAttributes" >
  1485. <tbody data-bind="foreach: attributes, visible: loadFinished()">
  1486. <tr data-bind="click: $root.toggleSelection, css: { 'selectedAttribute': IsSelected }, hoverToggle: 'highlightedAttribute', attr: {'attValueId': AttributeValueID} ">
  1487. <td class="visualAttributeImage">
  1488. <div data-bind="if: AttributeValueImage"><img data-bind="attr: {src: 'data:image/gif;base64,' + AttributeValueImage}" class="visualAttImage" alt="" /></div>
  1489. <div data-bind="ifnot: AttributeValueImage" ><div data-bind="css: { 'visualAttRelatedImageDiv': RelatedImgFound, 'visualAttNoImageDiv': !RelatedImgFound } " ><span data-bind="text: NoImageMsg" class="visualAttributeMsg" ></span></div></div>
  1490. </td>
  1491. <td>
  1492. <table class="visualAttValueDesc">
  1493. <tr>
  1494. <td data-bind="text: AttributeValue" class="visualAttValue" colspan="3"></td>
  1495. </tr>
  1496. <tr>
  1497. <td data-bind="text: AttributeDesc" class="visualAttDescription" colspan="3"></td>
  1498. </tr>
  1499. <tr data-bind="if: ImagePath1 ">
  1500. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath1"><img data-bind="attr: {src: ImagePath1}" class="visualAttRelatedImgs" /></div></td>
  1501. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath2"><img data-bind="attr: {src: ImagePath2}" class="visualAttRelatedImgs" /></div></td>
  1502. <td class="visualAttRelatedImage"><div data-bind="if: ImagePath3"><img data-bind="attr: {src: ImagePath3}" class="visualAttRelatedImgs" /></div></td>
  1503. </tr>
  1504. </table>
  1505. </td>
  1506. </tr>
  1507. <tr data-bind="if: ($index() !== ($parent.attributes().length - 1)) "><td colspan="3"><div class="visualAttValueBorder" ></div></td></tr>
  1508. </tbody>
  1509. </table>
  1510. <img data-bind="visible: !moreLoadFinished()" class="visualAttSpinnerImg" id="Img1" src="/Images/spinner2.gif" />
  1511. <div data-bind="if: hasMoreOptions" align="center">
  1512. <input type="submit" name="ctl00$ContentMain$uc5$VisualParametricsSelector$btnShowMore" value="显示更多" id="ctl00_ContentMain_uc5_VisualParametricsSelector_btnShowMore" class="button" data-bind="click: showMore" />
  1513. </div>
  1514. </div>
  1515. <div data-bind="visible: attributes().length > 0" class="visualAttributesBtnBorder"></div>
  1516. <div class="visualAttributesBtnDiv">
  1517. <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" />
  1518. <a id="ctl00_ContentMain_uc5_VisualParametricsSelector_lnkCancel" class="cancel-link-button" data-bind="visible: attributes().length > 0" onclick="javascript:ClosePopup();">取消</a>
  1519. <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" />
  1520. </div>
  1521. </div>
  1522. <style type="text/css">.ui-dialog{position:absolute;padding:0px !important;width:300px;overflow:hidden;}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.6em !important;background:none;overflow:auto;zoom:1;max-height:450px;}.ui-dialog .ui-dialog-titlebar{padding:.4em .5em !important;position:relative;background:none repeat scroll 0 0 #E0E4E9;font-size:15px;}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:0;}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:0;}</style>
  1523. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1524. <script type="text/javascript" src='/flash/js/knockout-2.2.1.js'></script>
  1525. </div>
  1526. <script type="text/javascript" src='/JavaScript/jquery.ckie.js'></script>
  1527. <script type="text/javascript" src='/JavaScript/multimanufacturerselectionlist.js'></script>
  1528. <script src='../../../../../flash/js/AttributeSelectionControl2.js?v=3.0.20160304.2' type="text/javascript"></script>
  1529. <script type="text/javascript" src='/JavaScript/VisualParametricAttributes.js'></script>
  1530. <script type="text/javascript">
  1531. $().ready(function () {
  1532. ko.applyBindings(new DisplayAttributesModel());
  1533. ko.bindingHandlers.hoverToggle = {
  1534. update: function (element, valueAccessor) {
  1535. var css = valueAccessor();
  1536. var isSelected = $(element).hasClass("selectedAttribute");
  1537. if (!isSelected) {
  1538. ko.utils.registerEventHandler(element, "mouseenter", function () {
  1539. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), true);
  1540. });
  1541. ko.utils.registerEventHandler(element, "mouseleave", function () {
  1542. ko.utils.toggleDomNodeCssClass(element, ko.utils.unwrapObservable(css), false);
  1543. });
  1544. }
  1545. }
  1546. };
  1547. });
  1548. </script>
  1549. </div>
  1550. <div id="refine-mfg-logo2">
  1551. </div>
  1552. </div>
  1553. <br />
  1554. <table border="0" width="100%">
  1555. <tr>
  1556. <td>
  1557. </td>
  1558. </tr>
  1559. <tr>
  1560. <td>
  1561. <!--- Search Features --->
  1562. </td>
  1563. </tr>
  1564. <tr>
  1565. <td>
  1566. <div id="refine-page">
  1567. </div>
  1568. </td>
  1569. </tr>
  1570. <tr>
  1571. <td class="refine-show-products">
  1572. <span class="redtextb">
  1573. </span> <span class="redtextb">
  1574. </span> <span class="redtextb">
  1575. </span> <span class="redtextb">
  1576. </span>
  1577. <span class="redtextb">
  1578. </span>
  1579. </td>
  1580. </tr>
  1581. <tr>
  1582. <td>
  1583. </td>
  1584. </tr>
  1585. <tr>
  1586. <td>
  1587. <!--- Special Order Parts New --->
  1588. <!-- SOP Section 1 -->
  1589. </td>
  1590. </tr>
  1591. </table>
  1592. <div id="searchResultsTbl">
  1593. <table id="ctl00_ContentMain_tbl2" class="no-pad">
  1594. <tr>
  1595. <td class="tdSearchResultsPagingTop">
  1596. <table id="ctl00_ContentMain_tbl3" class="SearchResultsPaging">
  1597. <tr>
  1598. <td>
  1599. <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" />
  1600. </td>
  1601. <td>
  1602. <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" />
  1603. </td>
  1604. <td>
  1605. <span id="ctl00_ContentMain_lbl10" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  1606. </td>
  1607. <td style="padding-left: 40px;">
  1608. <div class="floatrightpager">
  1609. <span class="bold">
  1610. 页面:
  1611. </span>
  1612. <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/Active-Filter/_/N-6sh70/?No=25">2</a><a id="ctl00_ContentMain_PagerTop_2" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=50">3</a><a id="ctl00_ContentMain_PagerTop_3" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=75">4</a><a id="ctl00_ContentMain_PagerTop_4" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=100">5</a><a id="ctl00_ContentMain_PagerTop_5" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=125">6</a><a id="ctl00_ContentMain_PagerTop_6" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=150">7</a><a id="ctl00_ContentMain_PagerTop_7" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=175">8</a><a id="ctl00_ContentMain_PagerTop_8" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=200">9</a><a id="ctl00_ContentMain_PagerTop_9" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=225">10</a><a id="ctl00_ContentMain_PagerTop_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=250">...</a><a id="ctl00_ContentMain_PagerTop_15" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=375">16</a><a id="ctl00_ContentMain_PagerTop_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=25">下一页</a></span>
  1613. </div>
  1614. </td>
  1615. </tr>
  1616. </table>
  1617. </td>
  1618. </tr>
  1619. <tr>
  1620. <td>
  1621. <div>
  1622. <table class="SearchResultsTable" cellspacing="1" cellpadding="2" rules="all" border="1" id="ctl00_ContentMain_SearchResultsGrid_grid" style="width:100%;">
  1623. <tr class="SearchResultColumnHeading" valign="top" style="font-weight:bold;height:100%;">
  1624. <th class="td-select" scope="col" style="width:35px;">
  1625. 选择
  1626. </th><th class="SearchResultParametricColumnHeading" scope="col">图像</th><th scope="col">Mouser 零件编号
  1627. </th><th scope="col">制造商 零件编号
  1628. </th><th scope="col">制造商
  1629. </th><th scope="col">描述
  1630. </th><th scope="col"><img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl01_ctl05_imgHeader" src="../../../../../Images/Search/pdf.gif" alt="文件" />
  1631. </th><th scope="col">供货情况
  1632. </th><th scope="col">单价(含17%增值税)
  1633. <br />
  1634. </th><th class="SearchResultsBuyColumnHeading" scope="col">数量
  1635. </th><th class="SearchResultParametricColumnHeading" scope="col">RoHS
  1636. </th><th class="SearchResultParametricColumnHeading" scope="col">通道数量
  1637. </th><th class="SearchResultParametricColumnHeading" scope="col">截止频率
  1638. </th><th class="SearchResultParametricColumnHeading" scope="col">过滤器类型
  1639. </th><th class="SearchResultParametricColumnHeading" scope="col">电源电压-最大
  1640. </th><th class="SearchResultParametricColumnHeading" scope="col">电源电压-最小
  1641. </th><th class="SearchResultParametricColumnHeading" scope="col">最大工作温度
  1642. </th><th class="SearchResultParametricColumnHeading" scope="col">安装风格
  1643. </th><th class="SearchResultParametricColumnHeading" scope="col">封装 / 箱体
  1644. </th><th class="SearchResultParametricColumnHeading" scope="col">封装
  1645. </th>
  1646. </tr><tr class="SearchResultsSortCell">
  1647. <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$ctl20&#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$ctl22&#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_ctl24" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl24&#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$ctl26&#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$ctl28&#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$ctl30&#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$ctl32&#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$ctl34&#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$ctl36&#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$Number of Channels>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl38&#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$ctl40&#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$Cutoff Frequency>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl42&#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$Cutoff Frequency>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl44&#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$Filter Type>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl46&#39;,&#39;&#39;)"><img title="按 过滤器类型 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 过滤器类型 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Filter Type>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl48&#39;,&#39;&#39;)"><img title="按 过滤器类型 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 过滤器类型 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Supply Voltage - Max>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl50&#39;,&#39;&#39;)"><img title="按 电源电压-最大 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 电源电压-最大 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Supply Voltage - Max>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl52&#39;,&#39;&#39;)"><img title="按 电源电压-最大 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 电源电压-最大 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Supply Voltage - Min>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl54&#39;,&#39;&#39;)"><img title="按 电源电压-最小 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 电源电压-最小 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Supply Voltage - Min>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl56&#39;,&#39;&#39;)"><img title="按 电源电压-最小 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 电源电压-最小 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Operating Temperature>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl58&#39;,&#39;&#39;)"><img title="按 最大工作温度 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 最大工作温度 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Maximum Operating Temperature>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl60&#39;,&#39;&#39;)"><img title="按 最大工作温度 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 最大工作温度 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Mounting Style>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl62&#39;,&#39;&#39;)"><img title="按 安装风格 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 安装风格 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Mounting Style>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl64&#39;,&#39;&#39;)"><img title="按 安装风格 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 安装风格 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl66&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 封装 / 箱体 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Package / Case>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl68&#39;,&#39;&#39;)"><img title="按 封装 / 箱体 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 / 箱体 Descending 排序" /></a></td><td><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Packaging>Ascending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl70&#39;,&#39;&#39;)"><img title="按 封装 Ascending 排序" src="../../../../../Images/Search/btn_Sort_Up.gif" alt="按 封装 Ascending 排序" /></a><a onclick="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid&#39;,&#39;Sort$Packaging>Descending&#39;); return false;" href="javascript:__doPostBack(&#39;ctl00$ContentMain$SearchResultsGrid$grid$ctl02$ctl72&#39;,&#39;&#39;)"><img title="按 封装 Descending 排序" src="../../../../../Images/Search/btn_Sort_Down.gif" alt="按 封装 Descending 排序" /></a></td>
  1648. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-MAX7404ESA" data-index="3">
  1649. <td class="td-select" align="center">
  1650. <div style="padding: 5px 5px 0 5px;">
  1651. <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>
  1652. </div>
  1653. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX7404ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpzPD9EPBuk3Y%3d'><img title='Maxim Integrated MAX7404ESA+' alt='Maxim Integrated MAX7404ESA+' id=360342491 src='/images/mouserimages/sm/SOIC_8_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/SOIC_8_t.jpg</div></a></td><td>
  1654. <div style="text-align:left;">
  1655. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX7404ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpzPD9EPBuk3Y%3d">700-MAX7404ESA</a><br />
  1656. <br />
  1657. <br />
  1658. </div></td><td>
  1659. <div class="mfrDiv">
  1660. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX7404ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpzPD9EPBuk3Y%3d">MAX7404ESA+</a><br />
  1661. <br />
  1662. <div style="width: 100%; text-align: center;">
  1663. </div>
  1664. <div style="width: 100%; text-align: center;">
  1665. </div>
  1666. </div>
  1667. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  1668. </td><td>有源滤波器 8th-Order Lowpass Elliptic Filter
  1669. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1670. </div>
  1671. </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;Maxim Integrated&quot;,&quot;700-MAX7404ESA | MAX7404ESA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX7400-MAX7407-90493.pdf" target="_blank">数据表</a>
  1672. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAvailability">1,755<br/>有库存</span>
  1673. <table>
  1674. <tr align="center">
  1675. <td style="padding-top: 5px">
  1676. </td>
  1677. </tr>
  1678. <tr align="center">
  1679. <td style="padding-top: 5px; padding-bottom: 5px">
  1680. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX7404ESA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fe4q2d8VSSpHq7Eve1hTWE7Yoc3PcL1fnGUGR29JPbVjO5%252bBooG2qBUVFLerMVrhXz455j1JlBDdPv7qrV80H%252bQYvAbZok148PXj7mLRrWGhe6%2fKNiEKwKw%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  1681. </td>
  1682. </tr>
  1683. </table></td><td>
  1684. <table class="PriceBreaks" cellspacing="0" border="0">
  1685. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1686. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1687. </td>
  1688. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1689. </td>
  1690. </tr>
  1691. <tr>
  1692. <td class="PriceBreakQuantity">
  1693. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(1,1);">1:</a>
  1694. </td>
  1695. <td class="PriceBreakPrice">
  1696. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥35.7318</span>
  1697. </td>
  1698. </tr>
  1699. <tr>
  1700. <td class="PriceBreakQuantity">
  1701. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(1,10);">10:</a>
  1702. </td>
  1703. <td class="PriceBreakPrice">
  1704. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥34.4214</span>
  1705. </td>
  1706. </tr>
  1707. <tr>
  1708. <td class="PriceBreakQuantity">
  1709. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(1,50);">50:</a>
  1710. </td>
  1711. <td class="PriceBreakPrice">
  1712. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥34.1172</span>
  1713. </td>
  1714. </tr>
  1715. <tr>
  1716. <td class="PriceBreakQuantity">
  1717. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(1,100);">100:</a>
  1718. </td>
  1719. <td class="PriceBreakPrice">
  1720. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥33.7311</span>
  1721. </td>
  1722. </tr>
  1723. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1724. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1725. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(1,250);">250:</a>
  1726. </td>
  1727. <td class="PriceBreakPrice">
  1728. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/MAX7404ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpzPD9EPBuk3Y%3d">查看</a>
  1729. </td>
  1730. </tr>
  1731. <tr>
  1732. <td><br /></td>
  1733. </tr>
  1734. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1735. <td colspan="2" style="text-align: center;">
  1736. </td>
  1737. </tr>
  1738. </table>
  1739. </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;)">
  1740. <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 />
  1741. <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="购买 MAX7404ESA+" class="buy-button" /><br />
  1742. <table cellspacing="0" border="0" style="width: 100%;">
  1743. <tr>
  1744. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1745. 最低:
  1746. </td>
  1747. <td style="padding-left: 2px; text-align: left;">
  1748. 1
  1749. </td>
  1750. </tr>
  1751. <tr>
  1752. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1753. 多个:
  1754. </td>
  1755. <td style="padding-left: 2px; text-align: left;">
  1756. 1
  1757. </td>
  1758. </tr>
  1759. </table>
  1760. </div>
  1761. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_pnlCompliant">
  1762. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1763. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl03_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1ATWst45q33pmot%2fPYsq3A%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1ATWst45q33pmot%2fPYsq3A%3d%3d" target="_blank">详细信息</a>
  1764. </div>
  1765. </td><td>1 Channel
  1766. </td><td>10 kHz
  1767. </td><td>
  1768. </td><td>3.6 V
  1769. </td><td>2.7 V
  1770. </td><td>+ 85 C
  1771. </td><td>SMD/SMT
  1772. </td><td>SOIC-Narrow-8
  1773. </td><td>Tube
  1774. </td>
  1775. </tr><tr class="SearchResultsRowEven" data-partnumber="700-MAX7419EUA" data-index="4">
  1776. <td class="td-select" align="center">
  1777. <div style="padding: 5px 5px 0 5px;">
  1778. <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>
  1779. </div>
  1780. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX7419EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnQTUQB3iAoks%3d'><img title='Maxim Integrated MAX7419EUA+' alt='Maxim Integrated MAX7419EUA+' id=295638049 src='/images/mouserimages/sm/uMAX_8_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/uMAX_8_t.jpg</div></a></td><td>
  1781. <div style="text-align:left;">
  1782. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX7419EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnQTUQB3iAoks%3d">700-MAX7419EUA</a><br />
  1783. <br />
  1784. <br />
  1785. </div></td><td>
  1786. <div class="mfrDiv">
  1787. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX7419EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnQTUQB3iAoks%3d">MAX7419EUA+</a><br />
  1788. <br />
  1789. <div style="width: 100%; text-align: center;">
  1790. </div>
  1791. <div style="width: 100%; text-align: center;">
  1792. </div>
  1793. </div>
  1794. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  1795. </td><td>有源滤波器 5th-Order Lowpass Elliptic Filter
  1796. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  1797. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/maxim-integrated/maxim-sensor-solutions/">了解更多</a>
  1798. </div>
  1799. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1800. </div>
  1801. </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;Maxim Integrated&quot;,&quot;700-MAX7419EUA | MAX7419EUA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX7418-MAX7425-91242.pdf" target="_blank">数据表</a>
  1802. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAvailability">1,267<br/>有库存</span>
  1803. <table>
  1804. <tr align="center">
  1805. <td style="padding-top: 5px">
  1806. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkFootNote" title="更多信息可用 " href="../../../../../ProductDetail/Maxim-Integrated/MAX7419EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnQTUQB3iAoks%3d">更多信息可用 </a>
  1807. </td>
  1808. </tr>
  1809. <tr align="center">
  1810. <td style="padding-top: 5px; padding-bottom: 5px">
  1811. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX7419EUA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fTfs4vXbvfLvqxGsbgWb4FtmPtVU9wBflhVp%2fkwh8qUzuwKitrx1nabAixN2s5Mh1cAaH%252b6UL6xOqRz0I0rcrzbaUUsSy3lY43GHbO87kAvDd7bmc8unoUI%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  1812. </td>
  1813. </tr>
  1814. </table></td><td>
  1815. <table class="PriceBreaks" cellspacing="0" border="0">
  1816. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1817. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1818. </td>
  1819. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1820. </td>
  1821. </tr>
  1822. <tr>
  1823. <td class="PriceBreakQuantity">
  1824. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(2,1);">1:</a>
  1825. </td>
  1826. <td class="PriceBreakPrice">
  1827. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥46.8234</span>
  1828. </td>
  1829. </tr>
  1830. <tr>
  1831. <td class="PriceBreakQuantity">
  1832. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(2,10);">10:</a>
  1833. </td>
  1834. <td class="PriceBreakPrice">
  1835. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥45.2088</span>
  1836. </td>
  1837. </tr>
  1838. <tr>
  1839. <td class="PriceBreakQuantity">
  1840. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(2,50);">50:</a>
  1841. </td>
  1842. <td class="PriceBreakPrice">
  1843. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥44.8227</span>
  1844. </td>
  1845. </tr>
  1846. <tr>
  1847. <td class="PriceBreakQuantity">
  1848. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(2,100);">100:</a>
  1849. </td>
  1850. <td class="PriceBreakPrice">
  1851. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥44.2845</span>
  1852. </td>
  1853. </tr>
  1854. <tr>
  1855. <td class="PriceBreakQuantity">
  1856. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(2,1000);">1,000:</a>
  1857. </td>
  1858. <td class="PriceBreakPrice">
  1859. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥42.2838</span>
  1860. </td>
  1861. </tr>
  1862. <tr>
  1863. <td><br /></td>
  1864. </tr>
  1865. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl07_rptrPriceBreaks_ctl06_trMouserReel">
  1866. <td colspan="2" style="text-align: center;">
  1867. </td>
  1868. </tr>
  1869. </table>
  1870. </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;)">
  1871. <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 />
  1872. <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="购买 MAX7419EUA+" class="buy-button" /><br />
  1873. <table cellspacing="0" border="0" style="width: 100%;">
  1874. <tr>
  1875. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1876. 最低:
  1877. </td>
  1878. <td style="padding-left: 2px; text-align: left;">
  1879. 1
  1880. </td>
  1881. </tr>
  1882. <tr>
  1883. <td style="padding-right: 2px; text-align: right; width: 50%;">
  1884. 多个:
  1885. </td>
  1886. <td style="padding-left: 2px; text-align: left;">
  1887. 1
  1888. </td>
  1889. </tr>
  1890. </table>
  1891. </div>
  1892. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_pnlCompliant">
  1893. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  1894. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl04_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=JudeTejUAzkoiPtANZJqIQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=JudeTejUAzkoiPtANZJqIQ%3d%3d" target="_blank">详细信息</a>
  1895. </div>
  1896. </td><td>1 Channel
  1897. </td><td>30 KHz
  1898. </td><td>Low Pass
  1899. </td><td>5 V
  1900. </td><td>4.5 V
  1901. </td><td>+ 85 C
  1902. </td><td>SMD/SMT
  1903. </td><td>UMAX-8
  1904. </td><td>Tube
  1905. </td>
  1906. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-UAF42AU" data-index="5">
  1907. <td class="td-select" align="center">
  1908. <div style="padding: 5px 5px 0 5px;">
  1909. <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>
  1910. </div>
  1911. </td><td><a href='/ProductDetail/Texas-Instruments/UAF42AU/?qs=sGAEpiMZZMuE7ju2P%2feWHTpX4Pg%252b7XhGPnHSBUoEWVY%3d'><img title='Texas Instruments UAF42AU' alt='Texas Instruments UAF42AU' id=14694979 src='/images/texasinstruments/sm/TI_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/texasinstruments/images/TI_SOIC_16.jpg</div></a></td><td>
  1912. <div style="text-align:left;">
  1913. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/UAF42AU/?qs=sGAEpiMZZMuE7ju2P%2feWHTpX4Pg%252b7XhGPnHSBUoEWVY%3d">595-UAF42AU</a><br />
  1914. <br />
  1915. <br />
  1916. </div></td><td>
  1917. <div class="mfrDiv">
  1918. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/UAF42AU/?qs=sGAEpiMZZMuE7ju2P%2feWHTpX4Pg%252b7XhGPnHSBUoEWVY%3d">UAF42AU</a><br />
  1919. <br />
  1920. <div style="width: 100%; text-align: center;">
  1921. </div>
  1922. <div style="width: 100%; text-align: center;">
  1923. </div>
  1924. </div>
  1925. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  1926. </td><td>有源滤波器 Universal Active Filter
  1927. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  1928. </div>
  1929. </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-UAF42AU | UAF42AU&quot;]);" href="http://www.mouser.com/ds/2/405/uaf42-450516.pdf" target="_blank">数据表</a>
  1930. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl06_lnkAvailability">421<br/>有库存</span>
  1931. <table>
  1932. <tr align="center">
  1933. <td style="padding-top: 5px">
  1934. </td>
  1935. </tr>
  1936. <tr align="center">
  1937. <td style="padding-top: 5px; padding-bottom: 5px">
  1938. </td>
  1939. </tr>
  1940. </table></td><td>
  1941. <table class="PriceBreaks" cellspacing="0" border="0">
  1942. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  1943. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1944. </td>
  1945. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  1946. </td>
  1947. </tr>
  1948. <tr>
  1949. <td class="PriceBreakQuantity">
  1950. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(3,1);">1:</a>
  1951. </td>
  1952. <td class="PriceBreakPrice">
  1953. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥120.8259</span>
  1954. </td>
  1955. </tr>
  1956. <tr>
  1957. <td class="PriceBreakQuantity">
  1958. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(3,10);">10:</a>
  1959. </td>
  1960. <td class="PriceBreakPrice">
  1961. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥111.0447</span>
  1962. </td>
  1963. </tr>
  1964. <tr>
  1965. <td class="PriceBreakQuantity">
  1966. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(3,25);">25:</a>
  1967. </td>
  1968. <td class="PriceBreakPrice">
  1969. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥105.3468</span>
  1970. </td>
  1971. </tr>
  1972. <tr>
  1973. <td class="PriceBreakQuantity">
  1974. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(3,50);">50:</a>
  1975. </td>
  1976. <td class="PriceBreakPrice">
  1977. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥102.4218</span>
  1978. </td>
  1979. </tr>
  1980. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  1981. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  1982. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(3,100);">100:</a>
  1983. </td>
  1984. <td class="PriceBreakPrice">
  1985. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/UAF42AU/?qs=sGAEpiMZZMuE7ju2P%2feWHTpX4Pg%252b7XhGPnHSBUoEWVY%3d">查看</a>
  1986. </td>
  1987. </tr>
  1988. <tr>
  1989. <td><br /></td>
  1990. </tr>
  1991. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  1992. <td colspan="2" style="text-align: center;">
  1993. </td>
  1994. </tr>
  1995. </table>
  1996. </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;)">
  1997. <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 />
  1998. <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="购买 UAF42AU" class="buy-button" /><br />
  1999. <table cellspacing="0" border="0" style="width: 100%;">
  2000. <tr>
  2001. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2002. 最低:
  2003. </td>
  2004. <td style="padding-left: 2px; text-align: left;">
  2005. 1
  2006. </td>
  2007. </tr>
  2008. <tr>
  2009. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2010. 多个:
  2011. </td>
  2012. <td style="padding-left: 2px; text-align: left;">
  2013. 1
  2014. </td>
  2015. </tr>
  2016. </table>
  2017. </div>
  2018. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_pnlCompliant">
  2019. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2020. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl05_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9D1so5SoADyADZmx3MkiwQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=9D1so5SoADyADZmx3MkiwQ%3d%3d" target="_blank">详细信息</a>
  2021. </div>
  2022. </td><td>3 Channel
  2023. </td><td>100 kHz
  2024. </td><td>Universal
  2025. </td><td>18 V
  2026. </td><td>6 V
  2027. </td><td>+ 85 C
  2028. </td><td>SMD/SMT
  2029. </td><td>SOIC-16
  2030. </td><td>Tube
  2031. </td>
  2032. </tr><tr class="SearchResultsRowEven" data-partnumber="595-UAF42AP" data-index="6">
  2033. <td class="td-select" align="center">
  2034. <div style="padding: 5px 5px 0 5px;">
  2035. <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>
  2036. </div>
  2037. </td><td><a href='/ProductDetail/Texas-Instruments/UAF42AP/?qs=sGAEpiMZZMuE7ju2P%2feWHTpX4Pg%252b7XhGxecMhu%2fZ8Ho%3d'><img title='Texas Instruments UAF42AP' alt='Texas Instruments UAF42AP' id=14694978 src='/images/texasinstruments/sm/TI_PDIP_14.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_14.jpg</div></a></td><td>
  2038. <div style="text-align:left;">
  2039. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/UAF42AP/?qs=sGAEpiMZZMuE7ju2P%2feWHTpX4Pg%252b7XhGxecMhu%2fZ8Ho%3d">595-UAF42AP</a><br />
  2040. <br />
  2041. <br />
  2042. </div></td><td>
  2043. <div class="mfrDiv">
  2044. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/UAF42AP/?qs=sGAEpiMZZMuE7ju2P%2feWHTpX4Pg%252b7XhGxecMhu%2fZ8Ho%3d">UAF42AP</a><br />
  2045. <br />
  2046. <div style="width: 100%; text-align: center;">
  2047. </div>
  2048. <div style="width: 100%; text-align: center;">
  2049. </div>
  2050. </div>
  2051. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  2052. </td><td>有源滤波器 Universal Active Filter
  2053. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2054. </div>
  2055. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-UAF42AP | UAF42AP&quot;]);" href="http://www.mouser.com/ds/2/405/uaf42-450516.pdf" target="_blank">数据表</a>
  2056. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl06_lnkAvailability">175<br/>有库存</span>
  2057. <table>
  2058. <tr align="center">
  2059. <td style="padding-top: 5px">
  2060. </td>
  2061. </tr>
  2062. <tr align="center">
  2063. <td style="padding-top: 5px; padding-bottom: 5px">
  2064. </td>
  2065. </tr>
  2066. </table></td><td>
  2067. <table class="PriceBreaks" cellspacing="0" border="0">
  2068. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2069. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2070. </td>
  2071. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2072. </td>
  2073. </tr>
  2074. <tr>
  2075. <td class="PriceBreakQuantity">
  2076. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(4,1);">1:</a>
  2077. </td>
  2078. <td class="PriceBreakPrice">
  2079. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥137.3112</span>
  2080. </td>
  2081. </tr>
  2082. <tr>
  2083. <td class="PriceBreakQuantity">
  2084. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(4,10);">10:</a>
  2085. </td>
  2086. <td class="PriceBreakPrice">
  2087. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥126.2196</span>
  2088. </td>
  2089. </tr>
  2090. <tr>
  2091. <td class="PriceBreakQuantity">
  2092. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(4,25);">25:</a>
  2093. </td>
  2094. <td class="PriceBreakPrice">
  2095. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥119.6676</span>
  2096. </td>
  2097. </tr>
  2098. <tr>
  2099. <td class="PriceBreakQuantity">
  2100. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(4,50);">50:</a>
  2101. </td>
  2102. <td class="PriceBreakPrice">
  2103. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥116.3565</span>
  2104. </td>
  2105. </tr>
  2106. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2107. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2108. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(4,100);">100:</a>
  2109. </td>
  2110. <td class="PriceBreakPrice">
  2111. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/UAF42AP/?qs=sGAEpiMZZMuE7ju2P%2feWHTpX4Pg%252b7XhGxecMhu%2fZ8Ho%3d">查看</a>
  2112. </td>
  2113. </tr>
  2114. <tr>
  2115. <td><br /></td>
  2116. </tr>
  2117. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2118. <td colspan="2" style="text-align: center;">
  2119. </td>
  2120. </tr>
  2121. </table>
  2122. </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;)">
  2123. <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 />
  2124. <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="购买 UAF42AP" class="buy-button" /><br />
  2125. <table cellspacing="0" border="0" style="width: 100%;">
  2126. <tr>
  2127. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2128. 最低:
  2129. </td>
  2130. <td style="padding-left: 2px; text-align: left;">
  2131. 1
  2132. </td>
  2133. </tr>
  2134. <tr>
  2135. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2136. 多个:
  2137. </td>
  2138. <td style="padding-left: 2px; text-align: left;">
  2139. 1
  2140. </td>
  2141. </tr>
  2142. </table>
  2143. </div>
  2144. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_pnlCompliant">
  2145. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2146. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl06_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=9D1so5SoADw1%2faIYOuQPhQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=9D1so5SoADw1%2faIYOuQPhQ%3d%3d" target="_blank">详细信息</a>
  2147. </div>
  2148. </td><td>3 Channel
  2149. </td><td>100 kHz
  2150. </td><td>Universal
  2151. </td><td>18 V
  2152. </td><td>6 V
  2153. </td><td>+ 85 C
  2154. </td><td>Through Hole
  2155. </td><td>PDIP-14
  2156. </td><td>Tube
  2157. </td>
  2158. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-MAX291ESA" data-index="7">
  2159. <td class="td-select" align="center">
  2160. <div style="padding: 5px 5px 0 5px;">
  2161. <span class="no-border"><input id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_chkSelect" type="checkbox" name="ctl00$ContentMain$SearchResultsGrid$grid$ctl07$chkSelect" onclick="javascript:RowSelected(7, this.checked);" /></span>
  2162. </div>
  2163. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX291ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHUkSxJaD%252bMV%2fjIvbmza7s6Y%3d'><img title='Maxim Integrated MAX291ESA+' alt='Maxim Integrated MAX291ESA+' id=359491841 src='/images/mouserimages/sm/SOIC_8_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/SOIC_8_t.jpg</div></a></td><td>
  2164. <div style="text-align:left;">
  2165. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX291ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHUkSxJaD%252bMV%2fjIvbmza7s6Y%3d">700-MAX291ESA</a><br />
  2166. <br />
  2167. <br />
  2168. </div></td><td>
  2169. <div class="mfrDiv">
  2170. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX291ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHUkSxJaD%252bMV%2fjIvbmza7s6Y%3d">MAX291ESA+</a><br />
  2171. <br />
  2172. <div style="width: 100%; text-align: center;">
  2173. </div>
  2174. <div style="width: 100%; text-align: center;">
  2175. </div>
  2176. </div>
  2177. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  2178. </td><td>有源滤波器 8th-Order Lowpass Switched-Cap
  2179. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2180. </div>
  2181. </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;Maxim Integrated&quot;,&quot;700-MAX291ESA | MAX291ESA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX291-MAX296-49378.pdf" target="_blank">数据表</a>
  2182. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAvailability">652<br/>有库存</span>
  2183. <table>
  2184. <tr align="center">
  2185. <td style="padding-top: 5px">
  2186. </td>
  2187. </tr>
  2188. <tr align="center">
  2189. <td style="padding-top: 5px; padding-bottom: 5px">
  2190. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX291ESA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2faOiSOTfew9%252bV5NSeUN%2fE%2fn9UGZQKk84XVWcF9ntGAAWV%252bzH9ZNXJ8825w1BLU%2fqShVPT2oFaBw1zJCTrQWXWuMw5Io08odFlqR72Rnm98NZ&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2191. </td>
  2192. </tr>
  2193. </table></td><td>
  2194. <table class="PriceBreaks" cellspacing="0" border="0">
  2195. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2196. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2197. </td>
  2198. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2199. </td>
  2200. </tr>
  2201. <tr>
  2202. <td class="PriceBreakQuantity">
  2203. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(5,1);">1:</a>
  2204. </td>
  2205. <td class="PriceBreakPrice">
  2206. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥52.0533</span>
  2207. </td>
  2208. </tr>
  2209. <tr>
  2210. <td class="PriceBreakQuantity">
  2211. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(5,10);">10:</a>
  2212. </td>
  2213. <td class="PriceBreakPrice">
  2214. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥50.5908</span>
  2215. </td>
  2216. </tr>
  2217. <tr>
  2218. <td class="PriceBreakQuantity">
  2219. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(5,25);">25:</a>
  2220. </td>
  2221. <td class="PriceBreakPrice">
  2222. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥50.2047</span>
  2223. </td>
  2224. </tr>
  2225. <tr>
  2226. <td class="PriceBreakQuantity">
  2227. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(5,100);">100:</a>
  2228. </td>
  2229. <td class="PriceBreakPrice">
  2230. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥47.7477</span>
  2231. </td>
  2232. </tr>
  2233. <tr>
  2234. <td><br /></td>
  2235. </tr>
  2236. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2237. <td colspan="2" style="text-align: center;">
  2238. </td>
  2239. </tr>
  2240. </table>
  2241. </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;)">
  2242. <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 />
  2243. <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="购买 MAX291ESA+" class="buy-button" /><br />
  2244. <table cellspacing="0" border="0" style="width: 100%;">
  2245. <tr>
  2246. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2247. 最低:
  2248. </td>
  2249. <td style="padding-left: 2px; text-align: left;">
  2250. 1
  2251. </td>
  2252. </tr>
  2253. <tr>
  2254. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2255. 多个:
  2256. </td>
  2257. <td style="padding-left: 2px; text-align: left;">
  2258. 1
  2259. </td>
  2260. </tr>
  2261. </table>
  2262. </div>
  2263. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_pnlCompliant">
  2264. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2265. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl07_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=R1xzAZQ18bRn45W%2fMO3cdA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=R1xzAZQ18bRn45W%2fMO3cdA%3d%3d" target="_blank">详细信息</a>
  2266. </div>
  2267. </td><td>1 Channel
  2268. </td><td>25 kHz
  2269. </td><td>
  2270. </td><td>11 V
  2271. </td><td>4.75 V
  2272. </td><td>+ 85 C
  2273. </td><td>SMD/SMT
  2274. </td><td>SOIC-Narrow-8
  2275. </td><td>Tube
  2276. </td>
  2277. </tr><tr class="SearchResultsRowEven" data-partnumber="700-MAX274AENG+" data-index="8">
  2278. <td class="td-select" align="center">
  2279. <div style="padding: 5px 5px 0 5px;">
  2280. <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>
  2281. </div>
  2282. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX274AENG+/?qs=sGAEpiMZZMuE7ju2P%2feWHTfyzaoK6nwivpGMfK%252b4mKk%3d'><img title='Maxim Integrated MAX274AENG+' alt='Maxim Integrated MAX274AENG+' id=499098724 src='/images/mouserimages/sm/PDIP_24_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/PDIP_24_t.jpg</div></a></td><td>
  2283. <div style="text-align:left;">
  2284. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX274AENG+/?qs=sGAEpiMZZMuE7ju2P%2feWHTfyzaoK6nwivpGMfK%252b4mKk%3d">700-MAX274AENG+</a><br />
  2285. <br />
  2286. <br />
  2287. </div></td><td>
  2288. <div class="mfrDiv">
  2289. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX274AENG+/?qs=sGAEpiMZZMuE7ju2P%2feWHTfyzaoK6nwivpGMfK%252b4mKk%3d">MAX274AENG+</a><br />
  2290. <br />
  2291. <div style="width: 100%; text-align: center;">
  2292. </div>
  2293. <div style="width: 100%; text-align: center;">
  2294. </div>
  2295. </div>
  2296. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  2297. </td><td>有源滤波器 4th & 8th Order Continuous-Time
  2298. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2299. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/maxim-integrated/maxim-sensor-solutions/">了解更多</a>
  2300. </div>
  2301. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2302. </div>
  2303. </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;Maxim Integrated&quot;,&quot;700-MAX274AENG+ | MAX274AENG+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX274-MAX275-100169.pdf" target="_blank">数据表</a>
  2304. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl06_lnkAvailability">321<br/>有库存</span>
  2305. <table>
  2306. <tr align="center">
  2307. <td style="padding-top: 5px">
  2308. </td>
  2309. </tr>
  2310. <tr align="center">
  2311. <td style="padding-top: 5px; padding-bottom: 5px">
  2312. </td>
  2313. </tr>
  2314. </table></td><td>
  2315. <table class="PriceBreaks" cellspacing="0" border="0">
  2316. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2317. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2318. </td>
  2319. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2320. </td>
  2321. </tr>
  2322. <tr>
  2323. <td class="PriceBreakQuantity">
  2324. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(6,1);">1:</a>
  2325. </td>
  2326. <td class="PriceBreakPrice">
  2327. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥133.38</span>
  2328. </td>
  2329. </tr>
  2330. <tr>
  2331. <td class="PriceBreakQuantity">
  2332. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(6,10);">10:</a>
  2333. </td>
  2334. <td class="PriceBreakPrice">
  2335. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥128.8404</span>
  2336. </td>
  2337. </tr>
  2338. <tr>
  2339. <td class="PriceBreakQuantity">
  2340. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(6,50);">50:</a>
  2341. </td>
  2342. <td class="PriceBreakPrice">
  2343. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥127.9161</span>
  2344. </td>
  2345. </tr>
  2346. <tr>
  2347. <td class="PriceBreakQuantity">
  2348. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(6,100);">100:</a>
  2349. </td>
  2350. <td class="PriceBreakPrice">
  2351. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥127.53</span>
  2352. </td>
  2353. </tr>
  2354. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2355. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2356. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(6,250);">250:</a>
  2357. </td>
  2358. <td class="PriceBreakPrice">
  2359. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/MAX274AENG+/?qs=sGAEpiMZZMuE7ju2P%2feWHTfyzaoK6nwivpGMfK%252b4mKk%3d">查看</a>
  2360. </td>
  2361. </tr>
  2362. <tr>
  2363. <td><br /></td>
  2364. </tr>
  2365. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2366. <td colspan="2" style="text-align: center;">
  2367. </td>
  2368. </tr>
  2369. </table>
  2370. </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;)">
  2371. <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 />
  2372. <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="购买 MAX274AENG+" class="buy-button" /><br />
  2373. <table cellspacing="0" border="0" style="width: 100%;">
  2374. <tr>
  2375. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2376. 最低:
  2377. </td>
  2378. <td style="padding-left: 2px; text-align: left;">
  2379. 1
  2380. </td>
  2381. </tr>
  2382. <tr>
  2383. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2384. 多个:
  2385. </td>
  2386. <td style="padding-left: 2px; text-align: left;">
  2387. 1
  2388. </td>
  2389. </tr>
  2390. </table>
  2391. </div>
  2392. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_pnlCompliant">
  2393. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2394. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl08_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=bZPPcmeGxMHoFrZt%2fITkdA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=bZPPcmeGxMHoFrZt%2fITkdA%3d%3d" target="_blank">详细信息</a>
  2395. </div>
  2396. </td><td>1 Channel
  2397. </td><td>150 kHz
  2398. </td><td>
  2399. </td><td>11 V
  2400. </td><td>4.74 V
  2401. </td><td>+ 85 C
  2402. </td><td>Through Hole
  2403. </td><td>PDIP-24
  2404. </td><td>Tube
  2405. </td>
  2406. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-MAX7400ESA" data-index="9">
  2407. <td class="td-select" align="center">
  2408. <div style="padding: 5px 5px 0 5px;">
  2409. <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>
  2410. </div>
  2411. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX7400ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnYTKVfuBluc8%3d'><img title='Maxim Integrated MAX7400ESA+' alt='Maxim Integrated MAX7400ESA+' id=295638029 src='/images/mouserimages/sm/SOIC_8_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/SOIC_8_t.jpg</div></a></td><td>
  2412. <div style="text-align:left;">
  2413. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX7400ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnYTKVfuBluc8%3d">700-MAX7400ESA</a><br />
  2414. <br />
  2415. <br />
  2416. </div></td><td>
  2417. <div class="mfrDiv">
  2418. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX7400ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnYTKVfuBluc8%3d">MAX7400ESA+</a><br />
  2419. <br />
  2420. <div style="width: 100%; text-align: center;">
  2421. </div>
  2422. <div style="width: 100%; text-align: center;">
  2423. </div>
  2424. </div>
  2425. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  2426. </td><td>有源滤波器 8th-Order Lowpass Elliptic Filter
  2427. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2428. </div>
  2429. </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;Maxim Integrated&quot;,&quot;700-MAX7400ESA | MAX7400ESA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX7400-MAX7407-90493.pdf" target="_blank">数据表</a>
  2430. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAvailability">483<br/>有库存</span>
  2431. <table>
  2432. <tr align="center">
  2433. <td style="padding-top: 5px">
  2434. </td>
  2435. </tr>
  2436. <tr align="center">
  2437. <td style="padding-top: 5px; padding-bottom: 5px">
  2438. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX7400ESA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fRCGpPDp4JeVYA0m80cmeKsstK3FxxjXfG6E0h5fQRenLirWuiDPqcnw6ju66LquQ5y5%2fkodJB9XuDkqDqLFTKHHA43XPeVG9DreGDuXQa22EBvGS17gIM4%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2439. </td>
  2440. </tr>
  2441. </table></td><td>
  2442. <table class="PriceBreaks" cellspacing="0" border="0">
  2443. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2444. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2445. </td>
  2446. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2447. </td>
  2448. </tr>
  2449. <tr>
  2450. <td class="PriceBreakQuantity">
  2451. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(7,1);">1:</a>
  2452. </td>
  2453. <td class="PriceBreakPrice">
  2454. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥42.6582</span>
  2455. </td>
  2456. </tr>
  2457. <tr>
  2458. <td class="PriceBreakQuantity">
  2459. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(7,10);">10:</a>
  2460. </td>
  2461. <td class="PriceBreakPrice">
  2462. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥41.1255</span>
  2463. </td>
  2464. </tr>
  2465. <tr>
  2466. <td class="PriceBreakQuantity">
  2467. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(7,50);">50:</a>
  2468. </td>
  2469. <td class="PriceBreakPrice">
  2470. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥40.8915</span>
  2471. </td>
  2472. </tr>
  2473. <tr>
  2474. <td class="PriceBreakQuantity">
  2475. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(7,100);">100:</a>
  2476. </td>
  2477. <td class="PriceBreakPrice">
  2478. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥40.3533</span>
  2479. </td>
  2480. </tr>
  2481. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2482. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2483. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(7,250);">250:</a>
  2484. </td>
  2485. <td class="PriceBreakPrice">
  2486. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/MAX7400ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnYTKVfuBluc8%3d">查看</a>
  2487. </td>
  2488. </tr>
  2489. <tr>
  2490. <td><br /></td>
  2491. </tr>
  2492. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2493. <td colspan="2" style="text-align: center;">
  2494. </td>
  2495. </tr>
  2496. </table>
  2497. </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;)">
  2498. <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 />
  2499. <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="购买 MAX7400ESA+" class="buy-button" /><br />
  2500. <table cellspacing="0" border="0" style="width: 100%;">
  2501. <tr>
  2502. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2503. 最低:
  2504. </td>
  2505. <td style="padding-left: 2px; text-align: left;">
  2506. 1
  2507. </td>
  2508. </tr>
  2509. <tr>
  2510. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2511. 多个:
  2512. </td>
  2513. <td style="padding-left: 2px; text-align: left;">
  2514. 1
  2515. </td>
  2516. </tr>
  2517. </table>
  2518. </div>
  2519. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_pnlCompliant">
  2520. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2521. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl09_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=JudeTejUAzmoM%2fpq0aBxSQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=JudeTejUAzmoM%2fpq0aBxSQ%3d%3d" target="_blank">详细信息</a>
  2522. </div>
  2523. </td><td>1 Channel
  2524. </td><td>10 kHz
  2525. </td><td>Low Pass
  2526. </td><td>5 V
  2527. </td><td>4.5 V
  2528. </td><td>+ 85 C
  2529. </td><td>SMD/SMT
  2530. </td><td>SOIC-8
  2531. </td><td>Tube
  2532. </td>
  2533. </tr><tr class="SearchResultsRowEven" data-partnumber="700-MAX7427EUA" data-index="10">
  2534. <td class="td-select" align="center">
  2535. <div style="padding: 5px 5px 0 5px;">
  2536. <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>
  2537. </div>
  2538. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX7427EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnuqM79rSWRD4%3d'><img title='Maxim Integrated MAX7427EUA+' alt='Maxim Integrated MAX7427EUA+' id=295638061 src='/images/mouserimages/sm/uMAX_8_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/uMAX_8_t.jpg</div></a></td><td>
  2539. <div style="text-align:left;">
  2540. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX7427EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnuqM79rSWRD4%3d">700-MAX7427EUA</a><br />
  2541. <br />
  2542. <br />
  2543. </div></td><td>
  2544. <div class="mfrDiv">
  2545. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX7427EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnuqM79rSWRD4%3d">MAX7427EUA+</a><br />
  2546. <br />
  2547. <div style="width: 100%; text-align: center;">
  2548. </div>
  2549. <div style="width: 100%; text-align: center;">
  2550. </div>
  2551. </div>
  2552. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  2553. </td><td>有源滤波器 5th-Order Lowpass Elliptic Filter
  2554. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2555. </div>
  2556. </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;Maxim Integrated&quot;,&quot;700-MAX7427EUA | MAX7427EUA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX7426-MAX7427-107184.pdf" target="_blank">数据表</a>
  2557. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAvailability">1,397<br/>有库存</span>
  2558. <table>
  2559. <tr align="center">
  2560. <td style="padding-top: 5px">
  2561. </td>
  2562. </tr>
  2563. <tr align="center">
  2564. <td style="padding-top: 5px; padding-bottom: 5px">
  2565. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX7427EUA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fWT61%252bPcvQFKzdZin2F0Ss77gxn5LJqh8hNyCa6STXxkw8SLAuCOrtivrbDvbm05gBwyVnglRuzyJnqqtUv98RQc8LzkfkqMLyBZdvPp01UqQcDyuUmeQqk%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2566. </td>
  2567. </tr>
  2568. </table></td><td>
  2569. <table class="PriceBreaks" cellspacing="0" border="0">
  2570. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2571. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2572. </td>
  2573. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2574. </td>
  2575. </tr>
  2576. <tr>
  2577. <td class="PriceBreakQuantity">
  2578. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(8,1);">1:</a>
  2579. </td>
  2580. <td class="PriceBreakPrice">
  2581. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥15.2451</span>
  2582. </td>
  2583. </tr>
  2584. <tr>
  2585. <td class="PriceBreakQuantity">
  2586. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(8,10);">10:</a>
  2587. </td>
  2588. <td class="PriceBreakPrice">
  2589. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥14.7888</span>
  2590. </td>
  2591. </tr>
  2592. <tr>
  2593. <td class="PriceBreakQuantity">
  2594. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(8,25);">25:</a>
  2595. </td>
  2596. <td class="PriceBreakPrice">
  2597. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥14.6367</span>
  2598. </td>
  2599. </tr>
  2600. <tr>
  2601. <td class="PriceBreakQuantity">
  2602. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(8,100);">100:</a>
  2603. </td>
  2604. <td class="PriceBreakPrice">
  2605. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥14.0166</span>
  2606. </td>
  2607. </tr>
  2608. <tr>
  2609. <td><br /></td>
  2610. </tr>
  2611. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2612. <td colspan="2" style="text-align: center;">
  2613. </td>
  2614. </tr>
  2615. </table>
  2616. </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;)">
  2617. <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 />
  2618. <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="购买 MAX7427EUA+" class="buy-button" /><br />
  2619. <table cellspacing="0" border="0" style="width: 100%;">
  2620. <tr>
  2621. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2622. 最低:
  2623. </td>
  2624. <td style="padding-left: 2px; text-align: left;">
  2625. 1
  2626. </td>
  2627. </tr>
  2628. <tr>
  2629. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2630. 多个:
  2631. </td>
  2632. <td style="padding-left: 2px; text-align: left;">
  2633. 1
  2634. </td>
  2635. </tr>
  2636. </table>
  2637. </div>
  2638. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_pnlCompliant">
  2639. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2640. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl10_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=JudeTejUAzl0snVZcqsqEQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=JudeTejUAzl0snVZcqsqEQ%3d%3d" target="_blank">详细信息</a>
  2641. </div>
  2642. </td><td>1 Channel
  2643. </td><td>12 kHz
  2644. </td><td>Low Pass
  2645. </td><td>3 V
  2646. </td><td>2.7 V
  2647. </td><td>+ 85 C
  2648. </td><td>SMD/SMT
  2649. </td><td>UMAX-8
  2650. </td><td>Tube
  2651. </td>
  2652. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-MAX291CPA" data-index="11">
  2653. <td class="td-select" align="center">
  2654. <div style="padding: 5px 5px 0 5px;">
  2655. <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>
  2656. </div>
  2657. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX291CPA+/?qs=sGAEpiMZZMuE7ju2P%2feWHUkSxJaD%252bMV%2fHsz7Twv%252b17o%3d'><img title='Maxim Integrated MAX291CPA+' alt='Maxim Integrated MAX291CPA+' id=359491833 src='/images/mouserimages/sm/PDIP_8_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/PDIP_8_t.jpg</div></a></td><td>
  2658. <div style="text-align:left;">
  2659. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX291CPA+/?qs=sGAEpiMZZMuE7ju2P%2feWHUkSxJaD%252bMV%2fHsz7Twv%252b17o%3d">700-MAX291CPA</a><br />
  2660. <br />
  2661. <br />
  2662. </div></td><td>
  2663. <div class="mfrDiv">
  2664. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX291CPA+/?qs=sGAEpiMZZMuE7ju2P%2feWHUkSxJaD%252bMV%2fHsz7Twv%252b17o%3d">MAX291CPA+</a><br />
  2665. <br />
  2666. <div style="width: 100%; text-align: center;">
  2667. </div>
  2668. <div style="width: 100%; text-align: center;">
  2669. </div>
  2670. </div>
  2671. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  2672. </td><td>有源滤波器 8th-Order Lowpass Switched-Cap
  2673. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2674. </div>
  2675. </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;Maxim Integrated&quot;,&quot;700-MAX291CPA | MAX291CPA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX291-MAX296-49378.pdf" target="_blank">数据表</a>
  2676. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl06_lnkAvailability">266<br/>有库存</span>
  2677. <table>
  2678. <tr align="center">
  2679. <td style="padding-top: 5px">
  2680. </td>
  2681. </tr>
  2682. <tr align="center">
  2683. <td style="padding-top: 5px; padding-bottom: 5px">
  2684. </td>
  2685. </tr>
  2686. </table></td><td>
  2687. <table class="PriceBreaks" cellspacing="0" border="0">
  2688. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2689. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2690. </td>
  2691. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2692. </td>
  2693. </tr>
  2694. <tr>
  2695. <td class="PriceBreakQuantity">
  2696. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(9,1);">1:</a>
  2697. </td>
  2698. <td class="PriceBreakPrice">
  2699. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥73.3122</span>
  2700. </td>
  2701. </tr>
  2702. <tr>
  2703. <td class="PriceBreakQuantity">
  2704. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(9,25);">25:</a>
  2705. </td>
  2706. <td class="PriceBreakPrice">
  2707. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥69.9192</span>
  2708. </td>
  2709. </tr>
  2710. <tr>
  2711. <td class="PriceBreakQuantity">
  2712. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(9,50);">50:</a>
  2713. </td>
  2714. <td class="PriceBreakPrice">
  2715. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥69.615</span>
  2716. </td>
  2717. </tr>
  2718. <tr>
  2719. <td class="PriceBreakQuantity">
  2720. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(9,100);">100:</a>
  2721. </td>
  2722. <td class="PriceBreakPrice">
  2723. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥65.9178</span>
  2724. </td>
  2725. </tr>
  2726. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2727. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2728. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(9,250);">250:</a>
  2729. </td>
  2730. <td class="PriceBreakPrice">
  2731. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/MAX291CPA+/?qs=sGAEpiMZZMuE7ju2P%2feWHUkSxJaD%252bMV%2fHsz7Twv%252b17o%3d">查看</a>
  2732. </td>
  2733. </tr>
  2734. <tr>
  2735. <td><br /></td>
  2736. </tr>
  2737. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2738. <td colspan="2" style="text-align: center;">
  2739. </td>
  2740. </tr>
  2741. </table>
  2742. </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;)">
  2743. <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 />
  2744. <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="购买 MAX291CPA+" class="buy-button" /><br />
  2745. <table cellspacing="0" border="0" style="width: 100%;">
  2746. <tr>
  2747. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2748. 最低:
  2749. </td>
  2750. <td style="padding-left: 2px; text-align: left;">
  2751. 1
  2752. </td>
  2753. </tr>
  2754. <tr>
  2755. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2756. 多个:
  2757. </td>
  2758. <td style="padding-left: 2px; text-align: left;">
  2759. 1
  2760. </td>
  2761. </tr>
  2762. </table>
  2763. </div>
  2764. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_pnlCompliant">
  2765. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2766. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl11_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=R1xzAZQ18bSHG0iP9zPfEw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=R1xzAZQ18bSHG0iP9zPfEw%3d%3d" target="_blank">详细信息</a>
  2767. </div>
  2768. </td><td>1 Channel
  2769. </td><td>25 kHz
  2770. </td><td>Low Pass
  2771. </td><td>11 V
  2772. </td><td>4.75 V
  2773. </td><td>+ 70 C
  2774. </td><td>Through Hole
  2775. </td><td>PDIP-8
  2776. </td><td>Tube
  2777. </td>
  2778. </tr><tr class="SearchResultsRowEven" data-partnumber="700-MAX7414EUA" data-index="12">
  2779. <td class="td-select" align="center">
  2780. <div style="padding: 5px 5px 0 5px;">
  2781. <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>
  2782. </div>
  2783. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX7414EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gn66NCma01Pfg%3d'><img title='Maxim Integrated MAX7414EUA+' alt='Maxim Integrated MAX7414EUA+' id=295638047 src='/images/mouserimages/sm/uMAX_8_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/uMAX_8_t.jpg</div></a></td><td>
  2784. <div style="text-align:left;">
  2785. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX7414EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gn66NCma01Pfg%3d">700-MAX7414EUA</a><br />
  2786. <br />
  2787. <br />
  2788. </div></td><td>
  2789. <div class="mfrDiv">
  2790. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX7414EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gn66NCma01Pfg%3d">MAX7414EUA+</a><br />
  2791. <br />
  2792. <div style="width: 100%; text-align: center;">
  2793. </div>
  2794. <div style="width: 100%; text-align: center;">
  2795. </div>
  2796. </div>
  2797. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  2798. </td><td>有源滤波器 5th-Order Lowpass Elliptic Filter
  2799. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2800. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/maxim-integrated/maxim-sensor-solutions/">了解更多</a>
  2801. </div>
  2802. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2803. </div>
  2804. </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;Maxim Integrated&quot;,&quot;700-MAX7414EUA | MAX7414EUA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX7409-MAX7414-92042.pdf" target="_blank">数据表</a>
  2805. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAvailability">461<br/>有库存</span>
  2806. <table>
  2807. <tr align="center">
  2808. <td style="padding-top: 5px">
  2809. </td>
  2810. </tr>
  2811. <tr align="center">
  2812. <td style="padding-top: 5px; padding-bottom: 5px">
  2813. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX7414EUA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fVnTzSJW%252baR6h16mqvtt1V%252bOeD1luvZvfcD1E8XPrnG%2fjhkS%252bTaHMPIgevEy4jSTlcj%252b6ag9W9rpS1MRHKF9dnSFh93j86ig385k1sKBlK8m1C2INhdQBOY%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2814. </td>
  2815. </tr>
  2816. </table></td><td>
  2817. <table class="PriceBreaks" cellspacing="0" border="0">
  2818. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2819. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2820. </td>
  2821. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2822. </td>
  2823. </tr>
  2824. <tr>
  2825. <td class="PriceBreakQuantity">
  2826. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(10,1);">1:</a>
  2827. </td>
  2828. <td class="PriceBreakPrice">
  2829. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥34.2693</span>
  2830. </td>
  2831. </tr>
  2832. <tr>
  2833. <td class="PriceBreakQuantity">
  2834. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(10,25);">25:</a>
  2835. </td>
  2836. <td class="PriceBreakPrice">
  2837. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥32.6547</span>
  2838. </td>
  2839. </tr>
  2840. <tr>
  2841. <td class="PriceBreakQuantity">
  2842. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(10,50);">50:</a>
  2843. </td>
  2844. <td class="PriceBreakPrice">
  2845. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥32.4207</span>
  2846. </td>
  2847. </tr>
  2848. <tr>
  2849. <td class="PriceBreakQuantity">
  2850. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(10,100);">100:</a>
  2851. </td>
  2852. <td class="PriceBreakPrice">
  2853. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥30.8061</span>
  2854. </td>
  2855. </tr>
  2856. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  2857. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  2858. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(10,250);">250:</a>
  2859. </td>
  2860. <td class="PriceBreakPrice">
  2861. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/MAX7414EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gn66NCma01Pfg%3d">查看</a>
  2862. </td>
  2863. </tr>
  2864. <tr>
  2865. <td><br /></td>
  2866. </tr>
  2867. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2868. <td colspan="2" style="text-align: center;">
  2869. </td>
  2870. </tr>
  2871. </table>
  2872. </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;)">
  2873. <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 />
  2874. <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="购买 MAX7414EUA+" class="buy-button" /><br />
  2875. <table cellspacing="0" border="0" style="width: 100%;">
  2876. <tr>
  2877. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2878. 最低:
  2879. </td>
  2880. <td style="padding-left: 2px; text-align: left;">
  2881. 1
  2882. </td>
  2883. </tr>
  2884. <tr>
  2885. <td style="padding-right: 2px; text-align: right; width: 50%;">
  2886. 多个:
  2887. </td>
  2888. <td style="padding-left: 2px; text-align: left;">
  2889. 1
  2890. </td>
  2891. </tr>
  2892. </table>
  2893. </div>
  2894. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_pnlCompliant">
  2895. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  2896. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl12_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=JudeTejUAzkbUMZQ5VQfqA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=JudeTejUAzkbUMZQ5VQfqA%3d%3d" target="_blank">详细信息</a>
  2897. </div>
  2898. </td><td>1 Channel
  2899. </td><td>15 kHz
  2900. </td><td>Low Pass
  2901. </td><td>3 V
  2902. </td><td>2.7 V
  2903. </td><td>+ 85 C
  2904. </td><td>SMD/SMT
  2905. </td><td>UMAX-8
  2906. </td><td>Tube
  2907. </td>
  2908. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-MAX7424EUA" data-index="13">
  2909. <td class="td-select" align="center">
  2910. <div style="padding: 5px 5px 0 5px;">
  2911. <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>
  2912. </div>
  2913. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX7424EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnxx%252bG1ZoYblQ%3d'><img title='Maxim Integrated MAX7424EUA+' alt='Maxim Integrated MAX7424EUA+' id=295638055 src='/images/mouserimages/sm/uMAX_8_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/uMAX_8_t.jpg</div></a></td><td>
  2914. <div style="text-align:left;">
  2915. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX7424EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnxx%252bG1ZoYblQ%3d">700-MAX7424EUA</a><br />
  2916. <br />
  2917. <br />
  2918. </div></td><td>
  2919. <div class="mfrDiv">
  2920. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX7424EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnxx%252bG1ZoYblQ%3d">MAX7424EUA+</a><br />
  2921. <br />
  2922. <div style="width: 100%; text-align: center;">
  2923. </div>
  2924. <div style="width: 100%; text-align: center;">
  2925. </div>
  2926. </div>
  2927. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  2928. </td><td>有源滤波器 5th-Order Lowpass Elliptic Filter
  2929. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  2930. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/maxim-integrated/maxim-sensor-solutions/">了解更多</a>
  2931. </div>
  2932. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  2933. </div>
  2934. </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;Maxim Integrated&quot;,&quot;700-MAX7424EUA | MAX7424EUA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX7418-MAX7425-91242.pdf" target="_blank">数据表</a>
  2935. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAvailability">840<br/>有库存</span>
  2936. <table>
  2937. <tr align="center">
  2938. <td style="padding-top: 5px">
  2939. </td>
  2940. </tr>
  2941. <tr align="center">
  2942. <td style="padding-top: 5px; padding-bottom: 5px">
  2943. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX7424EUA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fbPdCarU%2f3URwa%2f%252bSqVNC7aHXGkhMzfh42dMIu%252bx%2fKDxd3%2fNOvJSIn%252b%252bbgcl9aWzn2KdCaekl5S2WcZpeXGWYUwFuc9ZaaNsy00BvvKhmWxhwkmLeJaoKAQ%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  2944. </td>
  2945. </tr>
  2946. </table></td><td>
  2947. <table class="PriceBreaks" cellspacing="0" border="0">
  2948. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  2949. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2950. </td>
  2951. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  2952. </td>
  2953. </tr>
  2954. <tr>
  2955. <td class="PriceBreakQuantity">
  2956. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(11,1);">1:</a>
  2957. </td>
  2958. <td class="PriceBreakPrice">
  2959. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥36.1179</span>
  2960. </td>
  2961. </tr>
  2962. <tr>
  2963. <td class="PriceBreakQuantity">
  2964. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(11,10);">10:</a>
  2965. </td>
  2966. <td class="PriceBreakPrice">
  2967. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥35.1117</span>
  2968. </td>
  2969. </tr>
  2970. <tr>
  2971. <td class="PriceBreakQuantity">
  2972. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(11,25);">25:</a>
  2973. </td>
  2974. <td class="PriceBreakPrice">
  2975. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥34.8075</span>
  2976. </td>
  2977. </tr>
  2978. <tr>
  2979. <td class="PriceBreakQuantity">
  2980. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(11,100);">100:</a>
  2981. </td>
  2982. <td class="PriceBreakPrice">
  2983. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥33.111</span>
  2984. </td>
  2985. </tr>
  2986. <tr>
  2987. <td><br /></td>
  2988. </tr>
  2989. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  2990. <td colspan="2" style="text-align: center;">
  2991. </td>
  2992. </tr>
  2993. </table>
  2994. </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;)">
  2995. <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 />
  2996. <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="购买 MAX7424EUA+" class="buy-button" /><br />
  2997. <table cellspacing="0" border="0" style="width: 100%;">
  2998. <tr>
  2999. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3000. 最低:
  3001. </td>
  3002. <td style="padding-left: 2px; text-align: left;">
  3003. 1
  3004. </td>
  3005. </tr>
  3006. <tr>
  3007. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3008. 多个:
  3009. </td>
  3010. <td style="padding-left: 2px; text-align: left;">
  3011. 1
  3012. </td>
  3013. </tr>
  3014. </table>
  3015. </div>
  3016. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_pnlCompliant">
  3017. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3018. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl13_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=JudeTejUAznFRWvXnFcFlQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=JudeTejUAznFRWvXnFcFlQ%3d%3d" target="_blank">详细信息</a>
  3019. </div>
  3020. </td><td>1 Channel
  3021. </td><td>45 kHz
  3022. </td><td>Low Pass
  3023. </td><td>3 V
  3024. </td><td>2.7 V
  3025. </td><td>+ 85 C
  3026. </td><td>SMD/SMT
  3027. </td><td>UMAX-8
  3028. </td><td>Tube
  3029. </td>
  3030. </tr><tr class="SearchResultsRowEven" data-partnumber="700-MAX280CPA" data-index="14">
  3031. <td class="td-select" align="center">
  3032. <div style="padding: 5px 5px 0 5px;">
  3033. <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>
  3034. </div>
  3035. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX280CPA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlptToXuuiJ0vM%3d'><img title='Maxim Integrated MAX280CPA+' alt='Maxim Integrated MAX280CPA+' id=360342297 src='/images/mouserimages/sm/PDIP_8_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/PDIP_8_t.jpg</div></a></td><td>
  3036. <div style="text-align:left;">
  3037. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX280CPA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlptToXuuiJ0vM%3d">700-MAX280CPA</a><br />
  3038. <br />
  3039. <br />
  3040. </div></td><td>
  3041. <div class="mfrDiv">
  3042. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX280CPA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlptToXuuiJ0vM%3d">MAX280CPA+</a><br />
  3043. <br />
  3044. <div style="width: 100%; text-align: center;">
  3045. </div>
  3046. <div style="width: 100%; text-align: center;">
  3047. </div>
  3048. </div>
  3049. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  3050. </td><td>有源滤波器 5th-Order Zero-Error Butterworth
  3051. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3052. </div>
  3053. </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;Maxim Integrated&quot;,&quot;700-MAX280CPA | MAX280CPA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX280-MXL1062-99115.pdf" target="_blank">数据表</a>
  3054. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl06_lnkAvailability">362<br/>有库存</span>
  3055. <table>
  3056. <tr align="center">
  3057. <td style="padding-top: 5px">
  3058. </td>
  3059. </tr>
  3060. <tr align="center">
  3061. <td style="padding-top: 5px; padding-bottom: 5px">
  3062. </td>
  3063. </tr>
  3064. </table></td><td>
  3065. <table class="PriceBreaks" cellspacing="0" border="0">
  3066. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3067. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3068. </td>
  3069. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3070. </td>
  3071. </tr>
  3072. <tr>
  3073. <td class="PriceBreakQuantity">
  3074. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(12,1);">1:</a>
  3075. </td>
  3076. <td class="PriceBreakPrice">
  3077. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥74.6226</span>
  3078. </td>
  3079. </tr>
  3080. <tr>
  3081. <td class="PriceBreakQuantity">
  3082. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(12,25);">25:</a>
  3083. </td>
  3084. <td class="PriceBreakPrice">
  3085. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥71.1594</span>
  3086. </td>
  3087. </tr>
  3088. <tr>
  3089. <td class="PriceBreakQuantity">
  3090. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(12,50);">50:</a>
  3091. </td>
  3092. <td class="PriceBreakPrice">
  3093. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥70.6914</span>
  3094. </td>
  3095. </tr>
  3096. <tr>
  3097. <td class="PriceBreakQuantity">
  3098. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(12,100);">100:</a>
  3099. </td>
  3100. <td class="PriceBreakPrice">
  3101. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥67.0761</span>
  3102. </td>
  3103. </tr>
  3104. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3105. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3106. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(12,250);">250:</a>
  3107. </td>
  3108. <td class="PriceBreakPrice">
  3109. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/MAX280CPA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlptToXuuiJ0vM%3d">查看</a>
  3110. </td>
  3111. </tr>
  3112. <tr>
  3113. <td><br /></td>
  3114. </tr>
  3115. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3116. <td colspan="2" style="text-align: center;">
  3117. </td>
  3118. </tr>
  3119. </table>
  3120. </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;)">
  3121. <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 />
  3122. <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="购买 MAX280CPA+" class="buy-button" /><br />
  3123. <table cellspacing="0" border="0" style="width: 100%;">
  3124. <tr>
  3125. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3126. 最低:
  3127. </td>
  3128. <td style="padding-left: 2px; text-align: left;">
  3129. 1
  3130. </td>
  3131. </tr>
  3132. <tr>
  3133. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3134. 多个:
  3135. </td>
  3136. <td style="padding-left: 2px; text-align: left;">
  3137. 1
  3138. </td>
  3139. </tr>
  3140. </table>
  3141. </div>
  3142. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_pnlCompliant">
  3143. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3144. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl14_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1ATWst45q32lvaSQI8Ntkw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1ATWst45q32lvaSQI8Ntkw%3d%3d" target="_blank">详细信息</a>
  3145. </div>
  3146. </td><td>1 Channel
  3147. </td><td>20 kHz
  3148. </td><td>
  3149. </td><td>16 V
  3150. </td><td>4.75 V
  3151. </td><td>+ 70 C
  3152. </td><td>Through Hole
  3153. </td><td>PDIP-8
  3154. </td><td>Tube
  3155. </td>
  3156. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-MAX7407CSA" data-index="15">
  3157. <td class="td-select" align="center">
  3158. <div style="padding: 5px 5px 0 5px;">
  3159. <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>
  3160. </div>
  3161. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX7407CSA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpwRkJ%252bjfCfEk%3d'><img title='Maxim Integrated MAX7407CSA+' alt='Maxim Integrated MAX7407CSA+' id=360342507 src='/images/mouserimages/sm/SOIC_8_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/SOIC_8_t.jpg</div></a></td><td>
  3162. <div style="text-align:left;">
  3163. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX7407CSA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpwRkJ%252bjfCfEk%3d">700-MAX7407CSA</a><br />
  3164. <br />
  3165. <br />
  3166. </div></td><td>
  3167. <div class="mfrDiv">
  3168. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX7407CSA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpwRkJ%252bjfCfEk%3d">MAX7407CSA+</a><br />
  3169. <br />
  3170. <div style="width: 100%; text-align: center;">
  3171. </div>
  3172. <div style="width: 100%; text-align: center;">
  3173. </div>
  3174. </div>
  3175. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  3176. </td><td>有源滤波器 8th-Order Lowpass Elliptic Filter
  3177. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3178. </div>
  3179. </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;Maxim Integrated&quot;,&quot;700-MAX7407CSA | MAX7407CSA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX7400-MAX7407-90493.pdf" target="_blank">数据表</a>
  3180. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAvailability">331<br/>有库存</span>
  3181. <table>
  3182. <tr align="center">
  3183. <td style="padding-top: 5px">
  3184. </td>
  3185. </tr>
  3186. <tr align="center">
  3187. <td style="padding-top: 5px; padding-bottom: 5px">
  3188. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX7407CSA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fe%252bAAx%252bEnsSywFcXvnX3vRPAUGFtN3S4Hzqo4wLjhgc05pI7XD4yR59HSZUOe0JzdWKMu1yK1SkvkZDOIiM146b363xzQx0Mmw6F3GwBKM03cGr6rWeDqfo%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3189. </td>
  3190. </tr>
  3191. </table></td><td>
  3192. <table class="PriceBreaks" cellspacing="0" border="0">
  3193. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3194. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3195. </td>
  3196. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3197. </td>
  3198. </tr>
  3199. <tr>
  3200. <td class="PriceBreakQuantity">
  3201. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(13,1);">1:</a>
  3202. </td>
  3203. <td class="PriceBreakPrice">
  3204. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥36.3519</span>
  3205. </td>
  3206. </tr>
  3207. <tr>
  3208. <td class="PriceBreakQuantity">
  3209. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(13,10);">10:</a>
  3210. </td>
  3211. <td class="PriceBreakPrice">
  3212. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥35.0415</span>
  3213. </td>
  3214. </tr>
  3215. <tr>
  3216. <td class="PriceBreakQuantity">
  3217. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(13,50);">50:</a>
  3218. </td>
  3219. <td class="PriceBreakPrice">
  3220. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥34.8075</span>
  3221. </td>
  3222. </tr>
  3223. <tr>
  3224. <td class="PriceBreakQuantity">
  3225. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(13,100);">100:</a>
  3226. </td>
  3227. <td class="PriceBreakPrice">
  3228. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥34.4214</span>
  3229. </td>
  3230. </tr>
  3231. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3232. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3233. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(13,500);">500:</a>
  3234. </td>
  3235. <td class="PriceBreakPrice">
  3236. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/MAX7407CSA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpwRkJ%252bjfCfEk%3d">查看</a>
  3237. </td>
  3238. </tr>
  3239. <tr>
  3240. <td><br /></td>
  3241. </tr>
  3242. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3243. <td colspan="2" style="text-align: center;">
  3244. </td>
  3245. </tr>
  3246. </table>
  3247. </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;)">
  3248. <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 />
  3249. <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="购买 MAX7407CSA+" class="buy-button" /><br />
  3250. <table cellspacing="0" border="0" style="width: 100%;">
  3251. <tr>
  3252. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3253. 最低:
  3254. </td>
  3255. <td style="padding-left: 2px; text-align: left;">
  3256. 1
  3257. </td>
  3258. </tr>
  3259. <tr>
  3260. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3261. 多个:
  3262. </td>
  3263. <td style="padding-left: 2px; text-align: left;">
  3264. 1
  3265. </td>
  3266. </tr>
  3267. </table>
  3268. </div>
  3269. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_pnlCompliant">
  3270. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3271. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl15_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1ATWst45q3174S2uCQjUUA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1ATWst45q3174S2uCQjUUA%3d%3d" target="_blank">详细信息</a>
  3272. </div>
  3273. </td><td>1 Channel
  3274. </td><td>10 kHz
  3275. </td><td>
  3276. </td><td>3.6 V
  3277. </td><td>2.7 V
  3278. </td><td>+ 70 C
  3279. </td><td>SMD/SMT
  3280. </td><td>SOIC-Narrow-8
  3281. </td><td>Tube
  3282. </td>
  3283. </tr><tr class="SearchResultsRowEven" data-partnumber="512-FMS6406CSX" data-index="16">
  3284. <td class="td-select" align="center">
  3285. <div style="padding: 5px 5px 0 5px;">
  3286. <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>
  3287. </div>
  3288. </td><td><a href='/ProductDetail/Fairchild-Semiconductor/FMS6406CSX/?qs=sGAEpiMZZMuE7ju2P%2feWHZwNXaunq7jtSPg8Tf6yNxY%3d'><img title='Fairchild Semiconductor FMS6406CSX' alt='Fairchild Semiconductor FMS6406CSX' id=5049849 src='/images/fairchildsemiconductor/sm/SOIC008-angle.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/fairchildsemiconductor/images/SOIC008-angle.jpg</div></a></td><td>
  3289. <div style="text-align:left;">
  3290. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Fairchild-Semiconductor/FMS6406CSX/?qs=sGAEpiMZZMuE7ju2P%2feWHZwNXaunq7jtSPg8Tf6yNxY%3d">512-FMS6406CSX</a><br />
  3291. <br />
  3292. <br />
  3293. 要购买完整 卷轴,请订购 2500 的倍数:
  3294. </div></td><td>
  3295. <div class="mfrDiv">
  3296. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Fairchild-Semiconductor/FMS6406CSX/?qs=sGAEpiMZZMuE7ju2P%2feWHZwNXaunq7jtSPg8Tf6yNxY%3d">FMS6406CSX</a><br />
  3297. <br />
  3298. <div style="width: 100%; text-align: center;">
  3299. </div>
  3300. <div style="width: 100%; text-align: center;">
  3301. </div>
  3302. </div>
  3303. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl03_lnkSupplier" href="../../../../../Fairchild-Semiconductor">Fairchild Semiconductor</a>
  3304. </td><td>有源滤波器 S-Video Filter
  3305. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3306. </div>
  3307. </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;Fairchild Semiconductor&quot;,&quot;512-FMS6406CSX | FMS6406CSX&quot;]);" href="http://www.mouser.com/ds/2/149/FMS6406-112282.pdf" target="_blank">数据表</a>
  3308. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl06_lnkAvailability">2,239<br/>有库存</span>
  3309. <table>
  3310. <tr align="center">
  3311. <td style="padding-top: 5px">
  3312. </td>
  3313. </tr>
  3314. <tr align="center">
  3315. <td style="padding-top: 5px; padding-bottom: 5px">
  3316. </td>
  3317. </tr>
  3318. </table></td><td>
  3319. <table class="PriceBreaks" cellspacing="0" border="0">
  3320. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3321. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3322. </td>
  3323. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3324. </td>
  3325. </tr>
  3326. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3327. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3328. 剪切带
  3329. </td>
  3330. </tr>
  3331. <tr>
  3332. <td class="PriceBreakQuantity">
  3333. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(14,1);">1:</a>
  3334. </td>
  3335. <td class="PriceBreakPrice">
  3336. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥15.4791</span>
  3337. </td>
  3338. </tr>
  3339. <tr>
  3340. <td class="PriceBreakQuantity">
  3341. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(14,10);">10:</a>
  3342. </td>
  3343. <td class="PriceBreakPrice">
  3344. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥12.4722</span>
  3345. </td>
  3346. </tr>
  3347. <tr>
  3348. <td class="PriceBreakQuantity">
  3349. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(14,100);">100:</a>
  3350. </td>
  3351. <td class="PriceBreakPrice">
  3352. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥10.0152</span>
  3353. </td>
  3354. </tr>
  3355. <tr>
  3356. <td class="PriceBreakQuantity">
  3357. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(14,500);">500:</a>
  3358. </td>
  3359. <td class="PriceBreakPrice">
  3360. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥8.7048</span>
  3361. </td>
  3362. </tr>
  3363. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  3364. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3365. 卷轴
  3366. </td>
  3367. </tr>
  3368. <tr>
  3369. <td class="PriceBreakQuantity">
  3370. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(14,2500);">2,500:</a>
  3371. </td>
  3372. <td class="PriceBreakPrice">
  3373. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥6.7275</span>
  3374. </td>
  3375. </tr>
  3376. <tr>
  3377. <td class="PriceBreakQuantity">
  3378. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(14,5000);">5,000:</a>
  3379. </td>
  3380. <td class="PriceBreakPrice">
  3381. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Fairchild-Semiconductor/FMS6406CSX/?qs=sGAEpiMZZMuE7ju2P%2feWHZwNXaunq7jtSPg8Tf6yNxY%3d' >查看</a></span>
  3382. </td>
  3383. </tr>
  3384. <tr>
  3385. <td><br /></td>
  3386. </tr>
  3387. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  3388. <td colspan="2" style="text-align: center;">
  3389. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Fairchild-Semiconductor/FMS6406CSX/?qs=sGAEpiMZZMuE7ju2P%2feWHZwNXaunq7jtSPg8Tf6yNxY%3d">MouseReel 提供服务支持</a>
  3390. </td>
  3391. </tr>
  3392. </table>
  3393. </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;)">
  3394. <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 />
  3395. <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="购买 FMS6406CSX" class="buy-button" /><br />
  3396. <table cellspacing="0" border="0" style="width: 100%;">
  3397. <tr>
  3398. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3399. 最低:
  3400. </td>
  3401. <td style="padding-left: 2px; text-align: left;">
  3402. 1
  3403. </td>
  3404. </tr>
  3405. <tr>
  3406. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3407. 多个:
  3408. </td>
  3409. <td style="padding-left: 2px; text-align: left;">
  3410. 1
  3411. </td>
  3412. </tr>
  3413. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_trReel">
  3414. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3415. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(14,2500);">卷轴</a>:
  3416. </td>
  3417. <td style="padding-left: 2px; text-align: left;">
  3418. <em class="SearchResultsReel">
  3419. 2,500
  3420. </em>
  3421. </td>
  3422. </tr>
  3423. </table>
  3424. </div>
  3425. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_pnlCompliant">
  3426. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3427. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl16_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=Bs9z139HE64mXaemIYxGWQ%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=Bs9z139HE64mXaemIYxGWQ%3d%3d" target="_blank">详细信息</a>
  3428. </div>
  3429. </td><td>2 Channel
  3430. </td><td>7.6 MHz
  3431. </td><td>
  3432. </td><td>5.25 V
  3433. </td><td>4.75 V
  3434. </td><td>+ 70 C
  3435. </td><td>SMD/SMT
  3436. </td><td>SOIC-8
  3437. </td><td>Reel
  3438. </td>
  3439. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-MAX7409EUA" data-index="17">
  3440. <td class="td-select" align="center">
  3441. <div style="padding: 5px 5px 0 5px;">
  3442. <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>
  3443. </div>
  3444. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX7409EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gneflTsFWvVRU%3d'><img title='Maxim Integrated MAX7409EUA+' alt='Maxim Integrated MAX7409EUA+' id=295638171 src='/images/mouserimages/sm/uMAX_8_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/uMAX_8_t.jpg</div></a></td><td>
  3445. <div style="text-align:left;">
  3446. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX7409EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gneflTsFWvVRU%3d">700-MAX7409EUA</a><br />
  3447. <br />
  3448. <br />
  3449. </div></td><td>
  3450. <div class="mfrDiv">
  3451. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX7409EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gneflTsFWvVRU%3d">MAX7409EUA+</a><br />
  3452. <br />
  3453. <div style="width: 100%; text-align: center;">
  3454. </div>
  3455. <div style="width: 100%; text-align: center;">
  3456. </div>
  3457. </div>
  3458. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  3459. </td><td>有源滤波器 5th-Order Lowpass Elliptic Filter
  3460. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  3461. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/maxim-integrated/maxim-sensor-solutions/">了解更多</a>
  3462. </div>
  3463. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3464. </div>
  3465. </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;Maxim Integrated&quot;,&quot;700-MAX7409EUA | MAX7409EUA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX7409-MAX7414-92042.pdf" target="_blank">数据表</a>
  3466. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAvailability">483<br/>有库存</span>
  3467. <table>
  3468. <tr align="center">
  3469. <td style="padding-top: 5px">
  3470. </td>
  3471. </tr>
  3472. <tr align="center">
  3473. <td style="padding-top: 5px; padding-bottom: 5px">
  3474. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX7409EUA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2feiTncS1KL%252b3HmiLDvzRvZfVAEJnsFitHyGYzp83U5rUvreG%2fxj%2f2MGVEElxvLqCZ7d03U%2fY5BakjWqvoCaJ8B9VfiIaQAUq0S2Doyes7%252bS356bB1u2SoyM%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3475. </td>
  3476. </tr>
  3477. </table></td><td>
  3478. <table class="PriceBreaks" cellspacing="0" border="0">
  3479. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3480. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3481. </td>
  3482. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3483. </td>
  3484. </tr>
  3485. <tr>
  3486. <td class="PriceBreakQuantity">
  3487. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(15,1);">1:</a>
  3488. </td>
  3489. <td class="PriceBreakPrice">
  3490. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥29.7297</span>
  3491. </td>
  3492. </tr>
  3493. <tr>
  3494. <td class="PriceBreakQuantity">
  3495. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(15,10);">10:</a>
  3496. </td>
  3497. <td class="PriceBreakPrice">
  3498. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥28.9575</span>
  3499. </td>
  3500. </tr>
  3501. <tr>
  3502. <td class="PriceBreakQuantity">
  3503. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(15,25);">25:</a>
  3504. </td>
  3505. <td class="PriceBreakPrice">
  3506. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥28.6533</span>
  3507. </td>
  3508. </tr>
  3509. <tr>
  3510. <td class="PriceBreakQuantity">
  3511. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(15,100);">100:</a>
  3512. </td>
  3513. <td class="PriceBreakPrice">
  3514. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥27.3429</span>
  3515. </td>
  3516. </tr>
  3517. <tr>
  3518. <td><br /></td>
  3519. </tr>
  3520. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3521. <td colspan="2" style="text-align: center;">
  3522. </td>
  3523. </tr>
  3524. </table>
  3525. </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;)">
  3526. <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 />
  3527. <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="购买 MAX7409EUA+" class="buy-button" /><br />
  3528. <table cellspacing="0" border="0" style="width: 100%;">
  3529. <tr>
  3530. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3531. 最低:
  3532. </td>
  3533. <td style="padding-left: 2px; text-align: left;">
  3534. 1
  3535. </td>
  3536. </tr>
  3537. <tr>
  3538. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3539. 多个:
  3540. </td>
  3541. <td style="padding-left: 2px; text-align: left;">
  3542. 1
  3543. </td>
  3544. </tr>
  3545. </table>
  3546. </div>
  3547. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_pnlCompliant">
  3548. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3549. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl17_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=JudeTejUAznG%2fK5bDUPD%2fg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=JudeTejUAznG%2fK5bDUPD%2fg%3d%3d" target="_blank">详细信息</a>
  3550. </div>
  3551. </td><td>1 Channel
  3552. </td><td>15 kHz
  3553. </td><td>Low Pass
  3554. </td><td>5 V
  3555. </td><td>4.5 V
  3556. </td><td>+ 85 C
  3557. </td><td>SMD/SMT
  3558. </td><td>UMAX-8
  3559. </td><td>Tube
  3560. </td>
  3561. </tr><tr class="SearchResultsRowEven" data-partnumber="700-MAX7408EUA" data-index="18">
  3562. <td class="td-select" align="center">
  3563. <div style="padding: 5px 5px 0 5px;">
  3564. <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>
  3565. </div>
  3566. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX7408EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnbPHPErkqadQ%3d'><img title='Maxim Integrated MAX7408EUA+' alt='Maxim Integrated MAX7408EUA+' id=295638169 src='/images/mouserimages/sm/uMAX_8_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/uMAX_8_t.jpg</div></a></td><td>
  3567. <div style="text-align:left;">
  3568. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX7408EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnbPHPErkqadQ%3d">700-MAX7408EUA</a><br />
  3569. <br />
  3570. <br />
  3571. </div></td><td>
  3572. <div class="mfrDiv">
  3573. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX7408EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnbPHPErkqadQ%3d">MAX7408EUA+</a><br />
  3574. <br />
  3575. <div style="width: 100%; text-align: center;">
  3576. </div>
  3577. <div style="width: 100%; text-align: center;">
  3578. </div>
  3579. </div>
  3580. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  3581. </td><td>有源滤波器 5th-Order Lowpass Elliptic Filter
  3582. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3583. </div>
  3584. </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;Maxim Integrated&quot;,&quot;700-MAX7408EUA | MAX7408EUA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX7408-MAX7415-91699.pdf" target="_blank">数据表</a>
  3585. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAvailability">771<br/>有库存</span>
  3586. <table>
  3587. <tr align="center">
  3588. <td style="padding-top: 5px">
  3589. </td>
  3590. </tr>
  3591. <tr align="center">
  3592. <td style="padding-top: 5px; padding-bottom: 5px">
  3593. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX7408EUA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fZnNr%2fmkU%252b5UnZE41JE%252bNfvbPlKk9yx2zlx8IDyy%252bVON2%252bFE9arQ4gAJKLni2Ys9PUp%2fPa64hI5EmQd2%252bPscCSMDZN%2f5y89%252b%252bqigT3LEWjQYNTFN3CNgUR4%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3594. </td>
  3595. </tr>
  3596. </table></td><td>
  3597. <table class="PriceBreaks" cellspacing="0" border="0">
  3598. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3599. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3600. </td>
  3601. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3602. </td>
  3603. </tr>
  3604. <tr>
  3605. <td class="PriceBreakQuantity">
  3606. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(16,1);">1:</a>
  3607. </td>
  3608. <td class="PriceBreakPrice">
  3609. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥26.2548</span>
  3610. </td>
  3611. </tr>
  3612. <tr>
  3613. <td class="PriceBreakQuantity">
  3614. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(16,10);">10:</a>
  3615. </td>
  3616. <td class="PriceBreakPrice">
  3617. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥25.4943</span>
  3618. </td>
  3619. </tr>
  3620. <tr>
  3621. <td class="PriceBreakQuantity">
  3622. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(16,25);">25:</a>
  3623. </td>
  3624. <td class="PriceBreakPrice">
  3625. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥25.3305</span>
  3626. </td>
  3627. </tr>
  3628. <tr>
  3629. <td class="PriceBreakQuantity">
  3630. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(16,100);">100:</a>
  3631. </td>
  3632. <td class="PriceBreakPrice">
  3633. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥24.102</span>
  3634. </td>
  3635. </tr>
  3636. <tr>
  3637. <td><br /></td>
  3638. </tr>
  3639. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3640. <td colspan="2" style="text-align: center;">
  3641. </td>
  3642. </tr>
  3643. </table>
  3644. </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;)">
  3645. <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 />
  3646. <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="购买 MAX7408EUA+" class="buy-button" /><br />
  3647. <table cellspacing="0" border="0" style="width: 100%;">
  3648. <tr>
  3649. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3650. 最低:
  3651. </td>
  3652. <td style="padding-left: 2px; text-align: left;">
  3653. 1
  3654. </td>
  3655. </tr>
  3656. <tr>
  3657. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3658. 多个:
  3659. </td>
  3660. <td style="padding-left: 2px; text-align: left;">
  3661. 1
  3662. </td>
  3663. </tr>
  3664. </table>
  3665. </div>
  3666. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_pnlCompliant">
  3667. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3668. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl18_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=JudeTejUAzlGB7%2fl2sXu0A%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=JudeTejUAzlGB7%2fl2sXu0A%3d%3d" target="_blank">详细信息</a>
  3669. </div>
  3670. </td><td>1 Channel
  3671. </td><td>15 kHz
  3672. </td><td>Low Pass
  3673. </td><td>5 V
  3674. </td><td>4.5 V
  3675. </td><td>+ 85 C
  3676. </td><td>SMD/SMT
  3677. </td><td>UMAX-8
  3678. </td><td>Tube
  3679. </td>
  3680. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-MAX295ESA" data-index="19">
  3681. <td class="td-select" align="center">
  3682. <div style="padding: 5px 5px 0 5px;">
  3683. <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>
  3684. </div>
  3685. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX295ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnGiPbqZ6dEjc%3d'><img title='Maxim Integrated MAX295ESA+' alt='Maxim Integrated MAX295ESA+' id=295637515 src='/images/mouserimages/sm/SOIC_8_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/SOIC_8_t.jpg</div></a></td><td>
  3686. <div style="text-align:left;">
  3687. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX295ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnGiPbqZ6dEjc%3d">700-MAX295ESA</a><br />
  3688. <br />
  3689. <br />
  3690. </div></td><td>
  3691. <div class="mfrDiv">
  3692. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX295ESA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gnGiPbqZ6dEjc%3d">MAX295ESA+</a><br />
  3693. <br />
  3694. <div style="width: 100%; text-align: center;">
  3695. </div>
  3696. <div style="width: 100%; text-align: center;">
  3697. </div>
  3698. </div>
  3699. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  3700. </td><td>有源滤波器 8th-Order Lowpass Switched-Cap
  3701. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3702. </div>
  3703. </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;Maxim Integrated&quot;,&quot;700-MAX295ESA | MAX295ESA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX291-MAX296-49378.pdf" target="_blank">数据表</a>
  3704. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAvailability">175<br/>有库存</span>
  3705. <table>
  3706. <tr align="center">
  3707. <td style="padding-top: 5px">
  3708. </td>
  3709. </tr>
  3710. <tr align="center">
  3711. <td style="padding-top: 5px; padding-bottom: 5px">
  3712. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX295ESA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fSHdwt9eyexfih7HU4bcZz5DrTlRFXXoEIC7XlnYtRHu7KioFQ7I84POTfYtO6TELaBUHaoepz7Q6Y6MLNpIea2I1%252bCG4mjhOvGz8yJo05vh&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3713. </td>
  3714. </tr>
  3715. </table></td><td>
  3716. <table class="PriceBreaks" cellspacing="0" border="0">
  3717. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3718. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3719. </td>
  3720. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3721. </td>
  3722. </tr>
  3723. <tr>
  3724. <td class="PriceBreakQuantity">
  3725. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(17,1);">1:</a>
  3726. </td>
  3727. <td class="PriceBreakPrice">
  3728. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥64.7595</span>
  3729. </td>
  3730. </tr>
  3731. <tr>
  3732. <td class="PriceBreakQuantity">
  3733. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(17,10);">10:</a>
  3734. </td>
  3735. <td class="PriceBreakPrice">
  3736. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥63.0747</span>
  3737. </td>
  3738. </tr>
  3739. <tr>
  3740. <td class="PriceBreakQuantity">
  3741. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(17,25);">25:</a>
  3742. </td>
  3743. <td class="PriceBreakPrice">
  3744. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥62.5365</span>
  3745. </td>
  3746. </tr>
  3747. <tr>
  3748. <td class="PriceBreakQuantity">
  3749. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(17,100);">100:</a>
  3750. </td>
  3751. <td class="PriceBreakPrice">
  3752. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥59.4477</span>
  3753. </td>
  3754. </tr>
  3755. <tr>
  3756. <td><br /></td>
  3757. </tr>
  3758. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3759. <td colspan="2" style="text-align: center;">
  3760. </td>
  3761. </tr>
  3762. </table>
  3763. </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;)">
  3764. <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 />
  3765. <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="购买 MAX295ESA+" class="buy-button" /><br />
  3766. <table cellspacing="0" border="0" style="width: 100%;">
  3767. <tr>
  3768. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3769. 最低:
  3770. </td>
  3771. <td style="padding-left: 2px; text-align: left;">
  3772. 1
  3773. </td>
  3774. </tr>
  3775. <tr>
  3776. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3777. 多个:
  3778. </td>
  3779. <td style="padding-left: 2px; text-align: left;">
  3780. 1
  3781. </td>
  3782. </tr>
  3783. </table>
  3784. </div>
  3785. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_pnlCompliant">
  3786. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3787. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl19_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=jelsDP9liL%2f1kHnIZVTzTw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=jelsDP9liL%2f1kHnIZVTzTw%3d%3d" target="_blank">详细信息</a>
  3788. </div>
  3789. </td><td>1 Channel
  3790. </td><td>50 kHz
  3791. </td><td>
  3792. </td><td>5 V
  3793. </td><td>4.75 V
  3794. </td><td>+ 85 C
  3795. </td><td>SMD/SMT
  3796. </td><td>SOIC-8
  3797. </td><td>Tube
  3798. </td>
  3799. </tr><tr class="SearchResultsRowEven" data-partnumber="700-MAX7401CSA" data-index="20">
  3800. <td class="td-select" align="center">
  3801. <div style="padding: 5px 5px 0 5px;">
  3802. <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>
  3803. </div>
  3804. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX7401CSA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpffSAaV8OItc%3d'><img title='Maxim Integrated MAX7401CSA+' alt='Maxim Integrated MAX7401CSA+' id=360342465 src='/images/mouserimages/sm/SOIC_8_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/SOIC_8_t.jpg</div></a></td><td>
  3805. <div style="text-align:left;">
  3806. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX7401CSA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpffSAaV8OItc%3d">700-MAX7401CSA</a><br />
  3807. <br />
  3808. <br />
  3809. </div></td><td>
  3810. <div class="mfrDiv">
  3811. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX7401CSA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpffSAaV8OItc%3d">MAX7401CSA+</a><br />
  3812. <br />
  3813. <div style="width: 100%; text-align: center;">
  3814. </div>
  3815. <div style="width: 100%; text-align: center;">
  3816. </div>
  3817. </div>
  3818. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  3819. </td><td>有源滤波器 8th-Order Lowpass Elliptic Filter
  3820. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3821. </div>
  3822. </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;Maxim Integrated&quot;,&quot;700-MAX7401CSA | MAX7401CSA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX7401-MAX7405-92613.pdf" target="_blank">数据表</a>
  3823. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAvailability">600<br/>有库存</span>
  3824. <table>
  3825. <tr align="center">
  3826. <td style="padding-top: 5px">
  3827. </td>
  3828. </tr>
  3829. <tr align="center">
  3830. <td style="padding-top: 5px; padding-bottom: 5px">
  3831. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX7401CSA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fVss3IpuTUq10Q%252bCMUY4WwHo7ZHdPpo6w4bkNOUDnJhhCL0%2fdRYlCgBHCClDi7Yc4k9%252brf3sMqnW3hGfvSmAjAh5YPXNikBiK0ot51iAr9sUollHRII7434%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3832. </td>
  3833. </tr>
  3834. </table></td><td>
  3835. <table class="PriceBreaks" cellspacing="0" border="0">
  3836. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3837. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3838. </td>
  3839. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3840. </td>
  3841. </tr>
  3842. <tr>
  3843. <td class="PriceBreakQuantity">
  3844. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(18,1);">1:</a>
  3845. </td>
  3846. <td class="PriceBreakPrice">
  3847. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥31.1922</span>
  3848. </td>
  3849. </tr>
  3850. <tr>
  3851. <td class="PriceBreakQuantity">
  3852. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(18,10);">10:</a>
  3853. </td>
  3854. <td class="PriceBreakPrice">
  3855. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥30.0339</span>
  3856. </td>
  3857. </tr>
  3858. <tr>
  3859. <td class="PriceBreakQuantity">
  3860. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(18,50);">50:</a>
  3861. </td>
  3862. <td class="PriceBreakPrice">
  3863. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥29.8818</span>
  3864. </td>
  3865. </tr>
  3866. <tr>
  3867. <td class="PriceBreakQuantity">
  3868. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(18,100);">100:</a>
  3869. </td>
  3870. <td class="PriceBreakPrice">
  3871. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥29.5659</span>
  3872. </td>
  3873. </tr>
  3874. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  3875. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  3876. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(18,250);">250:</a>
  3877. </td>
  3878. <td class="PriceBreakPrice">
  3879. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/MAX7401CSA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpffSAaV8OItc%3d">查看</a>
  3880. </td>
  3881. </tr>
  3882. <tr>
  3883. <td><br /></td>
  3884. </tr>
  3885. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  3886. <td colspan="2" style="text-align: center;">
  3887. </td>
  3888. </tr>
  3889. </table>
  3890. </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;)">
  3891. <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 />
  3892. <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="购买 MAX7401CSA+" class="buy-button" /><br />
  3893. <table cellspacing="0" border="0" style="width: 100%;">
  3894. <tr>
  3895. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3896. 最低:
  3897. </td>
  3898. <td style="padding-left: 2px; text-align: left;">
  3899. 1
  3900. </td>
  3901. </tr>
  3902. <tr>
  3903. <td style="padding-right: 2px; text-align: right; width: 50%;">
  3904. 多个:
  3905. </td>
  3906. <td style="padding-left: 2px; text-align: left;">
  3907. 1
  3908. </td>
  3909. </tr>
  3910. </table>
  3911. </div>
  3912. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_pnlCompliant">
  3913. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  3914. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl20_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1ATWst45q30afBZuPoOcFw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1ATWst45q30afBZuPoOcFw%3d%3d" target="_blank">详细信息</a>
  3915. </div>
  3916. </td><td>1 Channel
  3917. </td><td>5 kHz
  3918. </td><td>
  3919. </td><td>5.5 V
  3920. </td><td>4.5 V
  3921. </td><td>+ 70 C
  3922. </td><td>SMD/SMT
  3923. </td><td>SOIC-Narrow-8
  3924. </td><td>Tube
  3925. </td>
  3926. </tr><tr class="SearchResultsRowOdd" data-partnumber="926-MF10CCWMX/NOPB" data-index="21">
  3927. <td class="td-select" align="center">
  3928. <div style="padding: 5px 5px 0 5px;">
  3929. <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>
  3930. </div>
  3931. </td><td><a href='/ProductDetail/Texas-Instruments/MF10CCWMX-NOPB/?qs=sGAEpiMZZMuE7ju2P%2feWHXa24fZ7uitlYiebRCah%2f7w%3d'><img title='Texas Instruments MF10CCWMX/NOPB' alt='Texas Instruments MF10CCWMX/NOPB' id=584627457 src='/images/texasinstruments/sm/TI_SOIC_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_SOIC_20.jpg</div></a></td><td>
  3932. <div style="text-align:left;">
  3933. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/MF10CCWMX-NOPB/?qs=sGAEpiMZZMuE7ju2P%2feWHXa24fZ7uitlYiebRCah%2f7w%3d">926-MF10CCWMX/NOPB</a><br />
  3934. <br />
  3935. <br />
  3936. 要购买完整 卷轴,请订购 1000 的倍数:
  3937. </div></td><td>
  3938. <div class="mfrDiv">
  3939. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/MF10CCWMX-NOPB/?qs=sGAEpiMZZMuE7ju2P%2feWHXa24fZ7uitlYiebRCah%2f7w%3d">MF10CCWMX/NOPB</a><br />
  3940. <br />
  3941. <div style="width: 100%; text-align: center;">
  3942. </div>
  3943. <div style="width: 100%; text-align: center;">
  3944. </div>
  3945. </div>
  3946. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  3947. </td><td>有源滤波器 Universal Monolithic Dual Switched Capacitor Filter 20-SOIC 0 to 70
  3948. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  3949. </div>
  3950. </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;926-MF10CCWMX/NOPB | MF10CCWMX/NOPB&quot;]);" href="http://www.mouser.com/ds/2/405/mf10-n-405490.pdf" target="_blank">数据表<br /><br /></a>
  3951. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_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>
  3952. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAvailability">1,837<br/>有库存</span>
  3953. <table>
  3954. <tr align="center">
  3955. <td style="padding-top: 5px">
  3956. </td>
  3957. </tr>
  3958. <tr align="center">
  3959. <td style="padding-top: 5px; padding-bottom: 5px">
  3960. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl06_lnkAlternativePackaging" title="备用包装 | 926-MF10CCWMX/NOPB" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YSqu287ICY5xKBL5JDW%252bk7%2f5aMAhU79OHKiQnMF6FNtoBxyK0RHoUiqvBGfPSyypJFgJNi3dOQBFLe9ZeetfnKLpyuewORX4u3JoYvmCHsI1Ps4IDMqUXVUtwzq4uXV18W3iFlSdz64WA%3d%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  3961. </td>
  3962. </tr>
  3963. </table></td><td>
  3964. <table class="PriceBreaks" cellspacing="0" border="0">
  3965. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  3966. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3967. </td>
  3968. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  3969. </td>
  3970. </tr>
  3971. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  3972. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  3973. 剪切带
  3974. </td>
  3975. </tr>
  3976. <tr>
  3977. <td class="PriceBreakQuantity">
  3978. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(19,1);">1:</a>
  3979. </td>
  3980. <td class="PriceBreakPrice">
  3981. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥24.2541</span>
  3982. </td>
  3983. </tr>
  3984. <tr>
  3985. <td class="PriceBreakQuantity">
  3986. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(19,10);">10:</a>
  3987. </td>
  3988. <td class="PriceBreakPrice">
  3989. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥20.5569</span>
  3990. </td>
  3991. </tr>
  3992. <tr>
  3993. <td class="PriceBreakQuantity">
  3994. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(19,100);">100:</a>
  3995. </td>
  3996. <td class="PriceBreakPrice">
  3997. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥17.8659</span>
  3998. </td>
  3999. </tr>
  4000. <tr>
  4001. <td class="PriceBreakQuantity">
  4002. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(19,250);">250:</a>
  4003. </td>
  4004. <td class="PriceBreakPrice">
  4005. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥16.7076</span>
  4006. </td>
  4007. </tr>
  4008. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4009. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4010. 卷轴
  4011. </td>
  4012. </tr>
  4013. <tr>
  4014. <td class="PriceBreakQuantity">
  4015. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(19,1000);">1,000:</a>
  4016. </td>
  4017. <td class="PriceBreakPrice">
  4018. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥12.7062</span>
  4019. </td>
  4020. </tr>
  4021. <tr>
  4022. <td class="PriceBreakQuantity">
  4023. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(19,2000);">2,000:</a>
  4024. </td>
  4025. <td class="PriceBreakPrice">
  4026. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Texas-Instruments/MF10CCWMX-NOPB/?qs=sGAEpiMZZMuE7ju2P%2feWHXa24fZ7uitlYiebRCah%2f7w%3d' >查看</a></span>
  4027. </td>
  4028. </tr>
  4029. <tr>
  4030. <td><br /></td>
  4031. </tr>
  4032. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4033. <td colspan="2" style="text-align: center;">
  4034. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Texas-Instruments/MF10CCWMX-NOPB/?qs=sGAEpiMZZMuE7ju2P%2feWHXa24fZ7uitlYiebRCah%2f7w%3d">MouseReel 提供服务支持</a>
  4035. </td>
  4036. </tr>
  4037. </table>
  4038. </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;)">
  4039. <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 />
  4040. <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="购买 MF10CCWMX/NOPB" class="buy-button" /><br />
  4041. <table cellspacing="0" border="0" style="width: 100%;">
  4042. <tr>
  4043. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4044. 最低:
  4045. </td>
  4046. <td style="padding-left: 2px; text-align: left;">
  4047. 1
  4048. </td>
  4049. </tr>
  4050. <tr>
  4051. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4052. 多个:
  4053. </td>
  4054. <td style="padding-left: 2px; text-align: left;">
  4055. 1
  4056. </td>
  4057. </tr>
  4058. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_trReel">
  4059. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4060. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(19,1000);">卷轴</a>:
  4061. </td>
  4062. <td style="padding-left: 2px; text-align: left;">
  4063. <em class="SearchResultsReel">
  4064. 1,000
  4065. </em>
  4066. </td>
  4067. </tr>
  4068. </table>
  4069. </div>
  4070. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_pnlCompliant">
  4071. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4072. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl21_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=KIzo9ULPgDZrsNJRt7nfGg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=KIzo9ULPgDZrsNJRt7nfGg%3d%3d" target="_blank">详细信息</a>
  4073. </div>
  4074. </td><td>4 Channel
  4075. </td><td>30 KHz
  4076. </td><td>Universal
  4077. </td><td>7 V
  4078. </td><td>
  4079. </td><td>+ 70 C
  4080. </td><td>SMD/SMT
  4081. </td><td>SOIC-20
  4082. </td><td>Reel
  4083. </td>
  4084. </tr><tr class="SearchResultsRowEven" data-partnumber="700-MAX7422EUA" data-index="22">
  4085. <td class="td-select" align="center">
  4086. <div style="padding: 5px 5px 0 5px;">
  4087. <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>
  4088. </div>
  4089. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX7422EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHUkSxJaD%252bMV%2fBWcp0QHij1c%3d'><img title='Maxim Integrated MAX7422EUA+' alt='Maxim Integrated MAX7422EUA+' id=359494746 src='/images/mouserimages/sm/uMAX_8_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/uMAX_8_t.jpg</div></a></td><td>
  4090. <div style="text-align:left;">
  4091. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX7422EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHUkSxJaD%252bMV%2fBWcp0QHij1c%3d">700-MAX7422EUA</a><br />
  4092. <br />
  4093. <br />
  4094. </div></td><td>
  4095. <div class="mfrDiv">
  4096. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX7422EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHUkSxJaD%252bMV%2fBWcp0QHij1c%3d">MAX7422EUA+</a><br />
  4097. <br />
  4098. <div style="width: 100%; text-align: center;">
  4099. </div>
  4100. <div style="width: 100%; text-align: center;">
  4101. </div>
  4102. </div>
  4103. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  4104. </td><td>有源滤波器 5th-Order Lowpass Elliptic Filter
  4105. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4106. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/maxim-integrated/maxim-sensor-solutions/">了解更多</a>
  4107. </div>
  4108. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4109. </div>
  4110. </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;Maxim Integrated&quot;,&quot;700-MAX7422EUA | MAX7422EUA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX7418-MAX7425-91242.pdf" target="_blank">数据表</a>
  4111. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAvailability">728<br/>有库存</span>
  4112. <table>
  4113. <tr align="center">
  4114. <td style="padding-top: 5px">
  4115. </td>
  4116. </tr>
  4117. <tr align="center">
  4118. <td style="padding-top: 5px; padding-bottom: 5px">
  4119. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX7422EUA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fTXtd9Mcr6m7OfIQp93K7XONXJlrC0r9hRluwV%2fU1s5wVdhvcCC8H9gfYnvV7zmpn2UV3yDN0eURRJKdmJ9lA2dHRiP7fRwKXXB1EL3Bykovw37CunIZ6js%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4120. </td>
  4121. </tr>
  4122. </table></td><td>
  4123. <table class="PriceBreaks" cellspacing="0" border="0">
  4124. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4125. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4126. </td>
  4127. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4128. </td>
  4129. </tr>
  4130. <tr>
  4131. <td class="PriceBreakQuantity">
  4132. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(20,1);">1:</a>
  4133. </td>
  4134. <td class="PriceBreakPrice">
  4135. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥49.4442</span>
  4136. </td>
  4137. </tr>
  4138. <tr>
  4139. <td class="PriceBreakQuantity">
  4140. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(20,25);">25:</a>
  4141. </td>
  4142. <td class="PriceBreakPrice">
  4143. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥48.672</span>
  4144. </td>
  4145. </tr>
  4146. <tr>
  4147. <td class="PriceBreakQuantity">
  4148. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(20,50);">50:</a>
  4149. </td>
  4150. <td class="PriceBreakPrice">
  4151. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥48.1338</span>
  4152. </td>
  4153. </tr>
  4154. <tr>
  4155. <td class="PriceBreakQuantity">
  4156. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(20,100);">100:</a>
  4157. </td>
  4158. <td class="PriceBreakPrice">
  4159. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥47.4435</span>
  4160. </td>
  4161. </tr>
  4162. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4163. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4164. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(20,250);">250:</a>
  4165. </td>
  4166. <td class="PriceBreakPrice">
  4167. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/MAX7422EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHUkSxJaD%252bMV%2fBWcp0QHij1c%3d">查看</a>
  4168. </td>
  4169. </tr>
  4170. <tr>
  4171. <td><br /></td>
  4172. </tr>
  4173. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4174. <td colspan="2" style="text-align: center;">
  4175. </td>
  4176. </tr>
  4177. </table>
  4178. </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;)">
  4179. <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 />
  4180. <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="购买 MAX7422EUA+" class="buy-button" /><br />
  4181. <table cellspacing="0" border="0" style="width: 100%;">
  4182. <tr>
  4183. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4184. 最低:
  4185. </td>
  4186. <td style="padding-left: 2px; text-align: left;">
  4187. 1
  4188. </td>
  4189. </tr>
  4190. <tr>
  4191. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4192. 多个:
  4193. </td>
  4194. <td style="padding-left: 2px; text-align: left;">
  4195. 1
  4196. </td>
  4197. </tr>
  4198. </table>
  4199. </div>
  4200. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_pnlCompliant">
  4201. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4202. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl22_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=raobinoj8c%252bnKtwOVPmQyg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=raobinoj8c%252bnKtwOVPmQyg%3d%3d" target="_blank">详细信息</a>
  4203. </div>
  4204. </td><td>1 Channel
  4205. </td><td>45 kHz
  4206. </td><td>Low Pass
  4207. </td><td>5 V
  4208. </td><td>3 V
  4209. </td><td>+ 70 C
  4210. </td><td>SMD/SMT
  4211. </td><td>UMAX-8
  4212. </td><td>Tube
  4213. </td>
  4214. </tr><tr class="SearchResultsRowOdd" data-partnumber="595-TLC14ID" data-index="23">
  4215. <td class="td-select" align="center">
  4216. <div style="padding: 5px 5px 0 5px;">
  4217. <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>
  4218. </div>
  4219. </td><td><a href='/ProductDetail/Texas-Instruments/TLC14ID/?qs=sGAEpiMZZMuE7ju2P%2feWHbIYHfG1x9BX0x82HN5u1LY%3d'><img title='Texas Instruments TLC14ID' alt='Texas Instruments TLC14ID' id=2087248 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>
  4220. <div style="text-align:left;">
  4221. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Texas-Instruments/TLC14ID/?qs=sGAEpiMZZMuE7ju2P%2feWHbIYHfG1x9BX0x82HN5u1LY%3d">595-TLC14ID</a><br />
  4222. <br />
  4223. <br />
  4224. </div></td><td>
  4225. <div class="mfrDiv">
  4226. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Texas-Instruments/TLC14ID/?qs=sGAEpiMZZMuE7ju2P%2feWHbIYHfG1x9BX0x82HN5u1LY%3d">TLC14ID</a><br />
  4227. <br />
  4228. <div style="width: 100%; text-align: center;">
  4229. </div>
  4230. <div style="width: 100%; text-align: center;">
  4231. </div>
  4232. </div>
  4233. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl03_lnkSupplier" href="../../../../../Texas-Instruments">Texas Instruments</a>
  4234. </td><td>有源滤波器 Butterworth
  4235. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4236. </div>
  4237. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl05_lnkDataSheet" title="点击以查看此“制造商数据表”。需要Acrobat Reader。" onclick="_gaq.push([&#39;_trackEvent&#39;,&#39;Datasheet Download&#39;,&quot;Texas Instruments&quot;,&quot;595-TLC14ID | TLC14ID&quot;]);" href="http://www.mouser.com/ds/2/405/tlc14-407148.pdf" target="_blank">数据表</a>
  4238. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl06_lnkAvailability">1,833<br/>有库存</span>
  4239. <table>
  4240. <tr align="center">
  4241. <td style="padding-top: 5px">
  4242. </td>
  4243. </tr>
  4244. <tr align="center">
  4245. <td style="padding-top: 5px; padding-bottom: 5px">
  4246. </td>
  4247. </tr>
  4248. </table></td><td>
  4249. <table class="PriceBreaks" cellspacing="0" border="0">
  4250. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4251. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4252. </td>
  4253. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4254. </td>
  4255. </tr>
  4256. <tr>
  4257. <td class="PriceBreakQuantity">
  4258. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(21,1);">1:</a>
  4259. </td>
  4260. <td class="PriceBreakPrice">
  4261. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥21.2589</span>
  4262. </td>
  4263. </tr>
  4264. <tr>
  4265. <td class="PriceBreakQuantity">
  4266. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(21,10);">10:</a>
  4267. </td>
  4268. <td class="PriceBreakPrice">
  4269. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥18.018</span>
  4270. </td>
  4271. </tr>
  4272. <tr>
  4273. <td class="PriceBreakQuantity">
  4274. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(21,100);">100:</a>
  4275. </td>
  4276. <td class="PriceBreakPrice">
  4277. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥14.4729</span>
  4278. </td>
  4279. </tr>
  4280. <tr>
  4281. <td class="PriceBreakQuantity">
  4282. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(21,500);">500:</a>
  4283. </td>
  4284. <td class="PriceBreakPrice">
  4285. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥12.6243</span>
  4286. </td>
  4287. </tr>
  4288. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4289. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4290. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(21,1000);">1,000:</a>
  4291. </td>
  4292. <td class="PriceBreakPrice">
  4293. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Texas-Instruments/TLC14ID/?qs=sGAEpiMZZMuE7ju2P%2feWHbIYHfG1x9BX0x82HN5u1LY%3d">查看</a>
  4294. </td>
  4295. </tr>
  4296. <tr>
  4297. <td><br /></td>
  4298. </tr>
  4299. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4300. <td colspan="2" style="text-align: center;">
  4301. </td>
  4302. </tr>
  4303. </table>
  4304. </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;)">
  4305. <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 />
  4306. <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="购买 TLC14ID" class="buy-button" /><br />
  4307. <table cellspacing="0" border="0" style="width: 100%;">
  4308. <tr>
  4309. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4310. 最低:
  4311. </td>
  4312. <td style="padding-left: 2px; text-align: left;">
  4313. 1
  4314. </td>
  4315. </tr>
  4316. <tr>
  4317. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4318. 多个:
  4319. </td>
  4320. <td style="padding-left: 2px; text-align: left;">
  4321. 1
  4322. </td>
  4323. </tr>
  4324. </table>
  4325. </div>
  4326. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_pnlCompliant">
  4327. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4328. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl23_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=8xM7SvJGGIQx9wr3ErODOg%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=8xM7SvJGGIQx9wr3ErODOg%3d%3d" target="_blank">详细信息</a>
  4329. </div>
  4330. </td><td>1 Channel
  4331. </td><td>20 kHz
  4332. </td><td>
  4333. </td><td>12 V
  4334. </td><td>5 V
  4335. </td><td>+ 85 C
  4336. </td><td>SMD/SMT
  4337. </td><td>SOIC-8
  4338. </td><td>Tube
  4339. </td>
  4340. </tr><tr class="SearchResultsRowEven" data-partnumber="700-MAX7420EUA" data-index="24">
  4341. <td class="td-select" align="center">
  4342. <div style="padding: 5px 5px 0 5px;">
  4343. <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>
  4344. </div>
  4345. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX7420EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gn%252bRGzhJYiqVU%3d'><img title='Maxim Integrated MAX7420EUA+' alt='Maxim Integrated MAX7420EUA+' id=295638185 src='/images/mouserimages/sm/uMAX_8_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/uMAX_8_t.jpg</div></a></td><td>
  4346. <div style="text-align:left;">
  4347. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX7420EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gn%252bRGzhJYiqVU%3d">700-MAX7420EUA</a><br />
  4348. <br />
  4349. <br />
  4350. </div></td><td>
  4351. <div class="mfrDiv">
  4352. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX7420EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gn%252bRGzhJYiqVU%3d">MAX7420EUA+</a><br />
  4353. <br />
  4354. <div style="width: 100%; text-align: center;">
  4355. </div>
  4356. <div style="width: 100%; text-align: center;">
  4357. </div>
  4358. </div>
  4359. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  4360. </td><td>有源滤波器 5th-Order Lowpass Elliptic Filter
  4361. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlLarnMore" style="padding-top: 10px; text-align: center; padding-bottom: 10px;">
  4362. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_lnkLearnMore" title="了解更多" Class="LearnMore" href="../../../../../new/maxim-integrated/maxim-sensor-solutions/">了解更多</a>
  4363. </div>
  4364. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4365. </div>
  4366. </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;Maxim Integrated&quot;,&quot;700-MAX7420EUA | MAX7420EUA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX7418-MAX7425-91242.pdf" target="_blank">数据表</a>
  4367. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAvailability">359<br/>有库存</span>
  4368. <table>
  4369. <tr align="center">
  4370. <td style="padding-top: 5px">
  4371. </td>
  4372. </tr>
  4373. <tr align="center">
  4374. <td style="padding-top: 5px; padding-bottom: 5px">
  4375. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX7420EUA" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2ffM8Yl4uMBHJEDRrTT9MCZ%2feyvxA0%2f7GYAAKUeSS%2fbwC%252b9wgxLNqcWCoxOsNv9G8Lm0prUFl2fCqk7hlCWEcacMMcvusESmfSezYMlkAR66g%2fTKYCAfVRis%3d&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4376. </td>
  4377. </tr>
  4378. </table></td><td>
  4379. <table class="PriceBreaks" cellspacing="0" border="0">
  4380. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4381. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4382. </td>
  4383. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4384. </td>
  4385. </tr>
  4386. <tr>
  4387. <td class="PriceBreakQuantity">
  4388. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(22,1);">1:</a>
  4389. </td>
  4390. <td class="PriceBreakPrice">
  4391. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥49.5963</span>
  4392. </td>
  4393. </tr>
  4394. <tr>
  4395. <td class="PriceBreakQuantity">
  4396. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(22,25);">25:</a>
  4397. </td>
  4398. <td class="PriceBreakPrice">
  4399. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥48.7422</span>
  4400. </td>
  4401. </tr>
  4402. <tr>
  4403. <td class="PriceBreakQuantity">
  4404. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(22,100);">100:</a>
  4405. </td>
  4406. <td class="PriceBreakPrice">
  4407. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥46.9755</span>
  4408. </td>
  4409. </tr>
  4410. <tr>
  4411. <td class="PriceBreakQuantity">
  4412. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(22,250);">250:</a>
  4413. </td>
  4414. <td class="PriceBreakPrice">
  4415. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥46.4373</span>
  4416. </td>
  4417. </tr>
  4418. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4419. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4420. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(22,1000);">1,000:</a>
  4421. </td>
  4422. <td class="PriceBreakPrice">
  4423. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/MAX7420EUA+/?qs=sGAEpiMZZMuE7ju2P%2feWHQAekgihA1gn%252bRGzhJYiqVU%3d">查看</a>
  4424. </td>
  4425. </tr>
  4426. <tr>
  4427. <td><br /></td>
  4428. </tr>
  4429. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4430. <td colspan="2" style="text-align: center;">
  4431. </td>
  4432. </tr>
  4433. </table>
  4434. </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;)">
  4435. <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 />
  4436. <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="购买 MAX7420EUA+" class="buy-button" /><br />
  4437. <table cellspacing="0" border="0" style="width: 100%;">
  4438. <tr>
  4439. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4440. 最低:
  4441. </td>
  4442. <td style="padding-left: 2px; text-align: left;">
  4443. 1
  4444. </td>
  4445. </tr>
  4446. <tr>
  4447. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4448. 多个:
  4449. </td>
  4450. <td style="padding-left: 2px; text-align: left;">
  4451. 1
  4452. </td>
  4453. </tr>
  4454. </table>
  4455. </div>
  4456. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_pnlCompliant">
  4457. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4458. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl24_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=JudeTejUAzmPsSqbr2HGlA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=JudeTejUAzmPsSqbr2HGlA%3d%3d" target="_blank">详细信息</a>
  4459. </div>
  4460. </td><td>1 Channel
  4461. </td><td>30 KHz
  4462. </td><td>Low Pass
  4463. </td><td>5 V
  4464. </td><td>4.5 V
  4465. </td><td>+ 85 C
  4466. </td><td>SMD/SMT
  4467. </td><td>UMAX-8
  4468. </td><td>Tube
  4469. </td>
  4470. </tr><tr class="SearchResultsRowOdd" data-partnumber="512-FMS6151L6X" data-index="25">
  4471. <td class="td-select" align="center">
  4472. <div style="padding: 5px 5px 0 5px;">
  4473. <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>
  4474. </div>
  4475. </td><td><a href='/ProductDetail/Fairchild-Semiconductor/FMS6151L6X/?qs=sGAEpiMZZMuE7ju2P%2feWHVsGj87bpy5aY9EE%252bFWy7Wk%3d'><img title='Fairchild Semiconductor FMS6151L6X' alt='Fairchild Semiconductor FMS6151L6X' id=11695942 src='/images/fairchildsemiconductor/sm/micropak_pkg.jpg' /></a></td><td>
  4476. <div style="text-align:left;">
  4477. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Fairchild-Semiconductor/FMS6151L6X/?qs=sGAEpiMZZMuE7ju2P%2feWHVsGj87bpy5aY9EE%252bFWy7Wk%3d">512-FMS6151L6X</a><br />
  4478. <br />
  4479. <br />
  4480. 要购买完整 卷轴,请订购 5000 的倍数:
  4481. </div></td><td>
  4482. <div class="mfrDiv">
  4483. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Fairchild-Semiconductor/FMS6151L6X/?qs=sGAEpiMZZMuE7ju2P%2feWHVsGj87bpy5aY9EE%252bFWy7Wk%3d">FMS6151L6X</a><br />
  4484. <br />
  4485. <div style="width: 100%; text-align: center;">
  4486. </div>
  4487. <div style="width: 100%; text-align: center;">
  4488. </div>
  4489. </div>
  4490. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl03_lnkSupplier" href="../../../../../Fairchild-Semiconductor">Fairchild Semiconductor</a>
  4491. </td><td>有源滤波器 VIDEO MIXED SIGNAL Ultra Port
  4492. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4493. </div>
  4494. </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;Fairchild Semiconductor&quot;,&quot;512-FMS6151L6X | FMS6151L6X&quot;]);" href="http://www.mouser.com/ds/2/149/FMS6151-108251.pdf" target="_blank">数据表</a>
  4495. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl06_lnkAvailability">6,949<br/>有库存</span>
  4496. <table>
  4497. <tr align="center">
  4498. <td style="padding-top: 5px">
  4499. </td>
  4500. </tr>
  4501. <tr align="center">
  4502. <td style="padding-top: 5px; padding-bottom: 5px">
  4503. </td>
  4504. </tr>
  4505. </table></td><td>
  4506. <table class="PriceBreaks" cellspacing="0" border="0">
  4507. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4508. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4509. </td>
  4510. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4511. </td>
  4512. </tr>
  4513. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl00_trCutTapeHeader">
  4514. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4515. 剪切带
  4516. </td>
  4517. </tr>
  4518. <tr>
  4519. <td class="PriceBreakQuantity">
  4520. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(23,1);">1:</a>
  4521. </td>
  4522. <td class="PriceBreakPrice">
  4523. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥6.9264</span>
  4524. </td>
  4525. </tr>
  4526. <tr>
  4527. <td class="PriceBreakQuantity">
  4528. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(23,10);">10:</a>
  4529. </td>
  4530. <td class="PriceBreakPrice">
  4531. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥5.3703</span>
  4532. </td>
  4533. </tr>
  4534. <tr>
  4535. <td class="PriceBreakQuantity">
  4536. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(23,100);">100:</a>
  4537. </td>
  4538. <td class="PriceBreakPrice">
  4539. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥3.4632</span>
  4540. </td>
  4541. </tr>
  4542. <tr>
  4543. <td class="PriceBreakQuantity">
  4544. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(23,1000);">1,000:</a>
  4545. </td>
  4546. <td class="PriceBreakPrice">
  4547. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥2.7729</span>
  4548. </td>
  4549. </tr>
  4550. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_trReelHeader">
  4551. <td colspan="2" style="text-align: center;" class="pricingHeaders">
  4552. 卷轴
  4553. </td>
  4554. </tr>
  4555. <tr>
  4556. <td class="PriceBreakQuantity">
  4557. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lnkQuantity" href="javascript:SelectQuantity(23,5000);">5,000:</a>
  4558. </td>
  4559. <td class="PriceBreakPrice">
  4560. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl05_lblPrice" style="white-space: nowrap">¥2.2581</span>
  4561. </td>
  4562. </tr>
  4563. <tr>
  4564. <td class="PriceBreakQuantity">
  4565. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl06_lnkQuantity" href="javascript:SelectQuantity(23,10000);">10,000:</a>
  4566. </td>
  4567. <td class="PriceBreakPrice">
  4568. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl06_lblPrice" style="white-space: nowrap"><a href='../../../../../ProductDetail/Fairchild-Semiconductor/FMS6151L6X/?qs=sGAEpiMZZMuE7ju2P%2feWHVsGj87bpy5aY9EE%252bFWy7Wk%3d' >查看</a></span>
  4569. </td>
  4570. </tr>
  4571. <tr>
  4572. <td><br /></td>
  4573. </tr>
  4574. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl07_trMouserReel">
  4575. <td colspan="2" style="text-align: center;">
  4576. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl07_rptrPriceBreaks_ctl07_lnkMouseReel" class="mousereel" href="../../../../../ProductDetail/Fairchild-Semiconductor/FMS6151L6X/?qs=sGAEpiMZZMuE7ju2P%2feWHVsGj87bpy5aY9EE%252bFWy7Wk%3d">MouseReel 提供服务支持</a>
  4577. </td>
  4578. </tr>
  4579. </table>
  4580. </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;)">
  4581. <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 />
  4582. <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="购买 FMS6151L6X" class="buy-button" /><br />
  4583. <table cellspacing="0" border="0" style="width: 100%;">
  4584. <tr>
  4585. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4586. 最低:
  4587. </td>
  4588. <td style="padding-left: 2px; text-align: left;">
  4589. 1
  4590. </td>
  4591. </tr>
  4592. <tr>
  4593. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4594. 多个:
  4595. </td>
  4596. <td style="padding-left: 2px; text-align: left;">
  4597. 1
  4598. </td>
  4599. </tr>
  4600. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_trReel">
  4601. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4602. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl08_lnkReel" class="SearchResultsReel" href="javascript:SelectQuantity(23,5000);">卷轴</a>:
  4603. </td>
  4604. <td style="padding-left: 2px; text-align: left;">
  4605. <em class="SearchResultsReel">
  4606. 5,000
  4607. </em>
  4608. </td>
  4609. </tr>
  4610. </table>
  4611. </div>
  4612. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_pnlCompliant">
  4613. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4614. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl25_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=K0Z48qJbl%2fSdaoix9uEmlA%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=K0Z48qJbl%2fSdaoix9uEmlA%3d%3d" target="_blank">详细信息</a>
  4615. </div>
  4616. </td><td>1 Channel
  4617. </td><td>8 MHz
  4618. </td><td>
  4619. </td><td>3.6 V
  4620. </td><td>2.5 V
  4621. </td><td>+ 105 C
  4622. </td><td>SMD/SMT
  4623. </td><td>MicroPak-6
  4624. </td><td>Reel
  4625. </td>
  4626. </tr><tr class="SearchResultsRowEven" data-partnumber="700-MAX296EPA" data-index="26">
  4627. <td class="td-select" align="center">
  4628. <div style="padding: 5px 5px 0 5px;">
  4629. <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>
  4630. </div>
  4631. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX296EPA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlp9jsTaAxAe4E%3d'><img title='Maxim Integrated MAX296EPA+' alt='Maxim Integrated MAX296EPA+' id=360342429 src='/images/mouserimages/sm/PDIP_8_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/PDIP_8_t.jpg</div></a></td><td>
  4632. <div style="text-align:left;">
  4633. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX296EPA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlp9jsTaAxAe4E%3d">700-MAX296EPA</a><br />
  4634. <br />
  4635. <br />
  4636. </div></td><td>
  4637. <div class="mfrDiv">
  4638. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX296EPA+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlp9jsTaAxAe4E%3d">MAX296EPA+</a><br />
  4639. <br />
  4640. <div style="width: 100%; text-align: center;">
  4641. </div>
  4642. <div style="width: 100%; text-align: center;">
  4643. </div>
  4644. </div>
  4645. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  4646. </td><td>有源滤波器 8th-Order Lowpass Switched-Cap
  4647. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4648. </div>
  4649. </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;Maxim Integrated&quot;,&quot;700-MAX296EPA | MAX296EPA+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX291-MAX296-49378.pdf" target="_blank">数据表</a>
  4650. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl06_lnkAvailability">272<br/>有库存</span>
  4651. <table>
  4652. <tr align="center">
  4653. <td style="padding-top: 5px">
  4654. </td>
  4655. </tr>
  4656. <tr align="center">
  4657. <td style="padding-top: 5px; padding-bottom: 5px">
  4658. </td>
  4659. </tr>
  4660. </table></td><td>
  4661. <table class="PriceBreaks" cellspacing="0" border="0">
  4662. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4663. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4664. </td>
  4665. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4666. </td>
  4667. </tr>
  4668. <tr>
  4669. <td class="PriceBreakQuantity">
  4670. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(24,1);">1:</a>
  4671. </td>
  4672. <td class="PriceBreakPrice">
  4673. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥60.9921</span>
  4674. </td>
  4675. </tr>
  4676. <tr>
  4677. <td class="PriceBreakQuantity">
  4678. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(24,10);">10:</a>
  4679. </td>
  4680. <td class="PriceBreakPrice">
  4681. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥58.8393</span>
  4682. </td>
  4683. </tr>
  4684. <tr>
  4685. <td class="PriceBreakQuantity">
  4686. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(24,50);">50:</a>
  4687. </td>
  4688. <td class="PriceBreakPrice">
  4689. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥55.9845</span>
  4690. </td>
  4691. </tr>
  4692. <tr>
  4693. <td><br /></td>
  4694. </tr>
  4695. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl07_rptrPriceBreaks_ctl04_trMouserReel">
  4696. <td colspan="2" style="text-align: center;">
  4697. </td>
  4698. </tr>
  4699. </table>
  4700. </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;)">
  4701. <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 />
  4702. <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="购买 MAX296EPA+" class="buy-button" /><br />
  4703. <table cellspacing="0" border="0" style="width: 100%;">
  4704. <tr>
  4705. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4706. 最低:
  4707. </td>
  4708. <td style="padding-left: 2px; text-align: left;">
  4709. 1
  4710. </td>
  4711. </tr>
  4712. <tr>
  4713. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4714. 多个:
  4715. </td>
  4716. <td style="padding-left: 2px; text-align: left;">
  4717. 1
  4718. </td>
  4719. </tr>
  4720. </table>
  4721. </div>
  4722. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_pnlCompliant">
  4723. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4724. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl26_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1ATWst45q31i7ygtzCTN5g%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1ATWst45q31i7ygtzCTN5g%3d%3d" target="_blank">详细信息</a>
  4725. </div>
  4726. </td><td>1 Channel
  4727. </td><td>50 kHz
  4728. </td><td>
  4729. </td><td>11 V
  4730. </td><td>4.75 V
  4731. </td><td>+ 85 C
  4732. </td><td>Through Hole
  4733. </td><td>PDIP-8
  4734. </td><td>Tube
  4735. </td>
  4736. </tr><tr class="SearchResultsRowOdd" data-partnumber="700-MAX270EWP" data-index="27">
  4737. <td class="td-select" align="center">
  4738. <div style="padding: 5px 5px 0 5px;">
  4739. <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>
  4740. </div>
  4741. </td><td><a href='/ProductDetail/Maxim-Integrated/MAX270EWP+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpVbhB%2fADmQhI%3d'><img title='Maxim Integrated MAX270EWP+' alt='Maxim Integrated MAX270EWP+' id=360342249 src='/images/mouserimages/sm/SOIC_20_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/SOIC_20_t.jpg</div></a></td><td>
  4742. <div style="text-align:left;">
  4743. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl01_lnkMouserPartNumber" title="点击查看此产品的其他信息" href="../../../../../ProductDetail/Maxim-Integrated/MAX270EWP+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpVbhB%2fADmQhI%3d">700-MAX270EWP</a><br />
  4744. <br />
  4745. <br />
  4746. </div></td><td>
  4747. <div class="mfrDiv">
  4748. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl02_MfrPartNumberLink" href="../../../../../ProductDetail/Maxim-Integrated/MAX270EWP+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpVbhB%2fADmQhI%3d">MAX270EWP+</a><br />
  4749. <br />
  4750. <div style="width: 100%; text-align: center;">
  4751. </div>
  4752. <div style="width: 100%; text-align: center;">
  4753. </div>
  4754. </div>
  4755. </td><td><a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl03_lnkSupplier" href="../../../../../maxim-integrated">Maxim Integrated</a>
  4756. </td><td>有源滤波器 Digitally Prog Dual 2-ORD Cont Lowpass
  4757. <div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl04_pnlRestrictions" style="padding-top: 5px; text-align: center;">
  4758. </div>
  4759. </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;Maxim Integrated&quot;,&quot;700-MAX270EWP | MAX270EWP+&quot;]);" href="http://www.mouser.com/ds/2/256/MAX270-MAX271-74606.pdf" target="_blank">数据表</a>
  4760. </td><td><span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAvailability">64<br/>有库存</span>
  4761. <table>
  4762. <tr align="center">
  4763. <td style="padding-top: 5px">
  4764. </td>
  4765. </tr>
  4766. <tr align="center">
  4767. <td style="padding-top: 5px; padding-bottom: 5px">
  4768. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl06_lnkAlternativePackaging" title="备用包装 | 700-MAX270EWP" class="thickbox" href="../../../../../Search/include/AlternatePackagingPopUp.aspx?qs=75nSJOHw4YT7J7I%252bAA6A%2fQ82tA4Hcakmp196wFvWMhxBBCdpt5ZyVA%2fwt3FwW4nmhpGEqrwTiFIAjoWakWo1jil6L6aPzovKPBkOlrHJV%252bXKUWkgc4NW4YleTUp0sFFJ&amp;TB_iframe=true&amp;height=292&amp;width=655" style="display:inline-block;width:100px;">备用包装</a>
  4769. </td>
  4770. </tr>
  4771. </table></td><td>
  4772. <table class="PriceBreaks" cellspacing="0" border="0">
  4773. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl00_tbl_minmult">
  4774. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4775. </td>
  4776. <td colspan="1" style="font-size: x-small" valign="top" align="left">
  4777. </td>
  4778. </tr>
  4779. <tr>
  4780. <td class="PriceBreakQuantity">
  4781. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lnkQuantity" href="javascript:SelectQuantity(25,1);">1:</a>
  4782. </td>
  4783. <td class="PriceBreakPrice">
  4784. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl01_lblPrice" style="white-space: nowrap">¥160.7931</span>
  4785. </td>
  4786. </tr>
  4787. <tr>
  4788. <td class="PriceBreakQuantity">
  4789. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lnkQuantity" href="javascript:SelectQuantity(25,10);">10:</a>
  4790. </td>
  4791. <td class="PriceBreakPrice">
  4792. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl02_lblPrice" style="white-space: nowrap">¥155.8674</span>
  4793. </td>
  4794. </tr>
  4795. <tr>
  4796. <td class="PriceBreakQuantity">
  4797. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lnkQuantity" href="javascript:SelectQuantity(25,25);">25:</a>
  4798. </td>
  4799. <td class="PriceBreakPrice">
  4800. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl03_lblPrice" style="white-space: nowrap">¥154.2528</span>
  4801. </td>
  4802. </tr>
  4803. <tr>
  4804. <td class="PriceBreakQuantity">
  4805. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lnkQuantity" href="javascript:SelectQuantity(25,50);">50:</a>
  4806. </td>
  4807. <td class="PriceBreakPrice">
  4808. <span id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl04_lblPrice" style="white-space: nowrap">¥153.3285</span>
  4809. </td>
  4810. </tr>
  4811. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trViewMore">
  4812. <td class="PriceBreakQuantity" Style="white-space: nowrap">
  4813. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_lnkViewMoreQuantity" href="javascript:SelectQuantity(25,100);">100:</a>
  4814. </td>
  4815. <td class="PriceBreakPrice">
  4816. <a title="单击查看其他价格间断。" href="../../../../../ProductDetail/Maxim-Integrated/MAX270EWP+/?qs=sGAEpiMZZMuE7ju2P%2feWHTB4fPhMWwlpVbhB%2fADmQhI%3d">查看</a>
  4817. </td>
  4818. </tr>
  4819. <tr>
  4820. <td><br /></td>
  4821. </tr>
  4822. <tr id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl07_rptrPriceBreaks_ctl05_trMouserReel">
  4823. <td colspan="2" style="text-align: center;">
  4824. </td>
  4825. </tr>
  4826. </table>
  4827. </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;)">
  4828. <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 />
  4829. <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="购买 MAX270EWP+" class="buy-button" /><br />
  4830. <table cellspacing="0" border="0" style="width: 100%;">
  4831. <tr>
  4832. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4833. 最低:
  4834. </td>
  4835. <td style="padding-left: 2px; text-align: left;">
  4836. 1
  4837. </td>
  4838. </tr>
  4839. <tr>
  4840. <td style="padding-right: 2px; text-align: right; width: 50%;">
  4841. 多个:
  4842. </td>
  4843. <td style="padding-left: 2px; text-align: left;">
  4844. 1
  4845. </td>
  4846. </tr>
  4847. </table>
  4848. </div>
  4849. </td><td><div id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_pnlCompliant">
  4850. <img id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_imgCompliant" title="符合RoHS" src="../../../../../Images/Search/icon_rohs.gif" alt="符合RoHS" style="padding: 5px 15px;" /><br />
  4851. <a id="ctl00_ContentMain_SearchResultsGrid_grid_ctl27_ctl10_lnkRoHSStatus" rel="nofollow" onclick="javascript:OpenRoHSPopup(&#39;/Search/include/RoHSCompliant.aspx?qs=1ATWst45q31LIH82oFCMtw%3d%3d&#39;);return false;" href="../../../../../Search/include/RoHSCompliant.aspx?qs=1ATWst45q31LIH82oFCMtw%3d%3d" target="_blank">详细信息</a>
  4852. </div>
  4853. </td><td>2 Channel
  4854. </td><td>25 kHz
  4855. </td><td>Low Pass
  4856. </td><td>16 V
  4857. </td><td>4.75 V
  4858. </td><td>+ 85 C
  4859. </td><td>SMD/SMT
  4860. </td><td>SOIC-Wide-20
  4861. </td><td>Tube
  4862. </td>
  4863. </tr>
  4864. </table>
  4865. </div>
  4866. </td>
  4867. </tr>
  4868. <tr>
  4869. <td class="tdSearchResultsPagingBottom">
  4870. <table id="ctl00_ContentMain_tbl4" class="SearchResultsPaging">
  4871. <tr>
  4872. <td>
  4873. <input type="submit" name="ctl00$ContentMain$btn3" value="购买所选商品" onclick="javascript:return MiniCart.AddToCartNShowCart(MiniCart.source);" id="ctl00_ContentMain_btn3" title="购买所选商品" class="buy-button" />
  4874. </td>
  4875. <td>
  4876. <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" />
  4877. </td>
  4878. <td>
  4879. <span id="ctl00_ContentMain_lbl12" title="您可选择至多20 个零件单次进行对比。若您选择更多,则仅20件距离最近的所选零件会被对比。" class="bold">至多对比 20 零件.</span>
  4880. </td>
  4881. <td style="padding-left: 40px;">
  4882. <div class="floatrightpager">
  4883. <span class="bold">
  4884. 页面:
  4885. </span>
  4886. <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/Active-Filter/_/N-6sh70/?No=25">2</a><a id="ctl00_ContentMain_PagerBottom_2" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=50">3</a><a id="ctl00_ContentMain_PagerBottom_3" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=75">4</a><a id="ctl00_ContentMain_PagerBottom_4" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=100">5</a><a id="ctl00_ContentMain_PagerBottom_5" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=125">6</a><a id="ctl00_ContentMain_PagerBottom_6" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=150">7</a><a id="ctl00_ContentMain_PagerBottom_7" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=175">8</a><a id="ctl00_ContentMain_PagerBottom_8" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=200">9</a><a id="ctl00_ContentMain_PagerBottom_9" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=225">10</a><a id="ctl00_ContentMain_PagerBottom_lnkNextSet" class="ellipsis" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=250">...</a><a id="ctl00_ContentMain_PagerBottom_15" class="first-last" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=375">16</a><a id="ctl00_ContentMain_PagerBottom_lnkNext" href="/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70/?No=25">下一页</a></span>
  4887. </div>
  4888. </td>
  4889. </tr>
  4890. </table>
  4891. </td>
  4892. </tr>
  4893. <tr>
  4894. <td>
  4895. <!--- Search Tips --->
  4896. </td>
  4897. </tr>
  4898. <tr>
  4899. <td>
  4900. <!-- SOP Section 2 -->
  4901. </td>
  4902. </tr>
  4903. </table>
  4904. </div>
  4905. </div><!-- #liProducts-->
  4906. <!-- Datasheets tab -->
  4907. <!-- #liDatasheets-->
  4908. <!-- Images tab -->
  4909. <!-- #liImages-->
  4910. <!-- Newest Products tab -->
  4911. <!-- #liProducts-->
  4912. </div>
  4913. <div id="ctl00_ContentMain_popSearch_pnlPopularSearches">
  4914. <div>
  4915. <span class="popular-searches-label">热门搜索:</span>
  4916. <span class="popular-searches-links"><a href='/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70?P=1ypx7rxZ1z0wtpxZ1z0z7pt&pop=umpt' onclick="ga('send','event','Popular Search Refine Click','Active Filter','Programmable SMD/SMT + 85 C Active Filter')">Programmable SMD/SMT + 85 C 有源滤波器</a> , <a href='/Semiconductors/Integrated-Circuits-ICs/Active-Filter/_/N-6sh70?P=1z0z7pt&pop=601n' onclick="ga('send','event','Popular Search Refine Click','Active Filter','SMD/SMT Active Filter')">SMD/SMT 有源滤波器</a></span>
  4917. </div>
  4918. </div>
  4919. <div style="visibility: hidden;">
  4920. <input name="ctl00$ContentMain$lblTrdTerm" type="text" id="ctl00_ContentMain_lblTrdTerm" style="height:1px;" />
  4921. <input name="ctl00$ContentMain$lblIsNewTerm" type="text" id="ctl00_ContentMain_lblIsNewTerm" style="height:1px;" />
  4922. <span id="SearchResultCount">382</span>
  4923. <div id="disclaimer">
  4924. 图像仅供参考<br/>请参阅产品规格</div>
  4925. </div>
  4926. <input type="hidden" name="ctl00$ContentMain$hfBreadcrumbTemplates" id="ctl00_ContentMain_hfBreadcrumbTemplates" value="Semiconductors/Integrated-Circuits-ICs/Active-Filter" />
  4927. <script type="text/javascript" src='../../../../../javascript/ProductImage.js'></script>
  4928. <script type="text/javascript" src='../../../../../flash/js/mb.zoomify.js?v=3.0.20160304.2'></script>
  4929. <script type="text/javascript" src='../../../../../flash/js/refine2.js?v=3.0.20160304.2'></script>
  4930. <!--[if gte IE 9]><!-->
  4931. <script type="text/javascript" src='../../../../../flash/js/angular.min.js?v=3.0.20160304.2'></script>
  4932. <!--<![endif]-->
  4933. <!--[if lt IE 9]>
  4934. <script type="text/javascript" src='../../../../../flash/js/angular-1.2.min.js?v=3.0.20160304.2'></script>
  4935. <![endif]-->
  4936. <script type="text/javascript" src='../../../../../flash/js/catalog-nav-2.js?v=3.0.20160304.2'></script>
  4937. <script type="text/javascript">
  4938. var subdomain = 'cn2';
  4939. </script>
  4940. </div>
  4941. <div class="aspNetHidden">
  4942. <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1BDFFD94" />
  4943. <input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0" />
  4944. <input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0" />
  4945. <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="sCwL_pxdoj0XSK04yfSNwmk7SAHGSbiByRjA1dnwtKBk-nBbIRlJWZQvencUkJ0sBD6NabQ8CPhwqV6J9lNk9NKWVfo1" />
  4946. </div>
  4947. <script type="text/javascript">
  4948. //<![CDATA[
  4949. var mfrIDsArray = new Array;
  4950. //]]>
  4951. </script>
  4952. <script src='../../../../../flash/js/Minicart.js?v=3.0.20160304.2' type='text/javascript'></script>
  4953. <script type="text/javascript">
  4954. //<![CDATA[
  4955. var auOnMsg='打开建议';var auOffMsg='关闭建议';var autoSuggestionEnabled='1';var lblMoreParts ='更多零件';var enableNewTypeAhead='1';var enableAtaTypeAhead='1';var enableAtaGATrackingEstimatedAjaxCalls='1';//]]>
  4956. </script>
  4957. <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>
  4958. <script type="text/javascript">
  4959. //<![CDATA[
  4960. maxAllowedAttributeSelection =150; currentParametricCount =0; maxSelectionAllowedPerGroupBeforeConversion =10; enableRangeLists = 1; maxWarningMessage = '由于应用的过滤条件太多,您的搜索无法完成。请去除一些选择,然后重试。';
  4961. <!-- Google Code for Conversion Page Remarketing List -->
  4962. <!--
  4963. var google_conversion_id = 1046090287;
  4964. var google_conversion_language = "en";
  4965. var google_conversion_format = "3";
  4966. var google_conversion_color = "666666";
  4967. var google_conversion_label = "9WmrCMOVxQEQr6To8gM";
  4968. var google_conversion_value = 0;
  4969. //-->
  4970. </script>
  4971. <div class="ga-remarketing">
  4972. <script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
  4973. </script>
  4974. </div>
  4975. <noscript>
  4976. <div style="display:inline;">
  4977. <img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1046090287/?label=9WmrCMOVxQEQr6To8gM&amp;guid=ON&amp;script=0" />
  4978. </div>
  4979. </noscript>
  4980. <script type="text/javascript">
  4981. //]]>
  4982. </script>
  4983. <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>
  4984. <script type="text/javascript">
  4985. //<![CDATA[
  4986. groupAttributeSelectionIds ='ctl00$ContentMain$uc5$AttributeCategoryList$ctl00$1000000411^ctl00$ContentMain$uc5$AttributeCategoryList$ctl01$1826902^ctl00$ContentMain$uc5$AttributeCategoryList$ctl02$1000000507^ctl00$ContentMain$uc5$AttributeCategoryList$ctl03$688421^ctl00$ContentMain$uc5$AttributeCategoryList$ctl04$1000000808^ctl00$ContentMain$uc5$AttributeCategoryList$ctl05$1000000809^ctl00$ContentMain$uc5$AttributeCategoryList$ctl06$1000000314^ctl00$ContentMain$uc5$AttributeCategoryList$ctl07$1323044^ctl00$ContentMain$uc5$AttributeCategoryList$ctl08$688606^ctl00$ContentMain$uc5$AttributeCategoryList$ctl09$688610';
  4987. theForm.oldSubmit = theForm.submit;
  4988. theForm.submit = WebForm_SaveScrollPositionSubmit;
  4989. theForm.oldOnSubmit = theForm.onsubmit;
  4990. theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
  4991. //]]>
  4992. </script>
  4993. </form>
  4994. <div id="content-container2" class="hidden">
  4995. <div id="content-fixed-width2" class="content-fixed-width">
  4996. </div>
  4997. </div>
  4998. <div id="wideFooter" class="wideFooter">
  4999. <div id="footer" class="container">
  5000. <input name="ctl00$Footer1$sb" type="hidden" id="ctl00_Footer1_sb" value="TXWEB10|20160304.2" />
  5001. <div id="ft_table1">
  5002. <div class="row">
  5003. <div class="col-xs-12">
  5004. <div id="ctl00_Footer1_pnlEmailSignup" class="ft_signup hidden-xs">
  5005. <div class="floatleft padding5right">
  5006. <strong class="h3">
  5007. 快速电子邮件注册</strong>&nbsp;&nbsp;
  5008. <input type="text" id="txtQuickSubsEmail" maxlength="48" style="width: 200px" tooltip="eMail Address" />
  5009. </div>
  5010. <a id="lnkBox" class="thickbox blue-button" onclick="return QuickSignUp();">
  5011. 提交
  5012. </a>
  5013. </div>
  5014. <div id="ft_icons" class="ft_icons">
  5015. <div id="ft_social">
  5016. <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>
  5017. <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>
  5018. <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>
  5019. <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">
  5020. <div class="ico-social fb"></div>
  5021. </a>
  5022. <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">
  5023. <div class="ico-social tw"></div>
  5024. </a>
  5025. <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">
  5026. <div class="ico-social rss"></div>
  5027. </a>
  5028. <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">
  5029. <div class="ico-social yt"></div>
  5030. </a>
  5031. <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">
  5032. <div class="ico-social gp"></div>
  5033. </a>
  5034. <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">
  5035. <div class="ico-social ln"></div>
  5036. </a>
  5037. <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">
  5038. <div class="ico-social sb"></div>
  5039. </a>
  5040. <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">
  5041. <div class="ico-social blog"></div>
  5042. </a>
  5043. </div>
  5044. </div>
  5045. </div>
  5046. </div>
  5047. </div>
  5048. <div id="ft_box" itemscope itemtype="http://schema.org/WPFooter">
  5049. <div class="ft_wrapper">
  5050. <div id="ft_links" class="row">
  5051. <div class="col-xs-3 paddingBtm10 hidden-xs">
  5052. <strong class="paddingTopBtm10 inline-block">
  5053. 公司</strong>
  5054. <ul>
  5055. <li>
  5056. <a id="ctl00_Footer1_lnk26" href="../../../../../aboutus/">关于我们</a></li>
  5057. <li>
  5058. <a id="ctl00_Footer1_lnk28" href="../../../../../educationalsales/">教育销售</a></li>
  5059. <li>
  5060. <a id="ctl00_Footer1_lnk31" href="../../../../../pressroom/">新闻中心</a></li>
  5061. <li>
  5062. <a id="ctl00_Footer1_lnk32" href="../../../../../careers/">Mouser 工作机会</a></li>
  5063. <li>
  5064. <a id="ctl00_Footer1_lnk29" href="../../../../../quality/">品质保证</a></li>
  5065. <li>
  5066. <a id="ctl00_Footer1_lnk30" href="../../../../../environmental/">环境保护</a></li>
  5067. </ul>
  5068. </div>
  5069. <div class="col-xs-3 hidden-xs">
  5070. <strong class="paddingTopBtm10 inline-block">
  5071. 快速链接</strong>
  5072. <ul>
  5073. <li><a id="A7" href="/blog">
  5074. Mouser博客</a></li>
  5075. <li>
  5076. <a id="ctl00_Footer1_hlnk1" href="../../../../../new/">最新产品</a></li>
  5077. <li>
  5078. <a id="ctl00_Footer1_hlnk2" href="../../../../../new/products/">新产品</a></li>
  5079. <li>
  5080. <a id="ctl00_Footer1_hlnk3" href="../../../../../applications/">新技术</a></li>
  5081. </ul>
  5082. </div>
  5083. <div class="col-xs-12 col-sm-3">
  5084. <strong class="paddingTopBtm10 inline-block">
  5085. 支持</strong>
  5086. <ul>
  5087. <li><a id="A3" href="/feedback.aspx">
  5088. 反馈</a></li>
  5089. <li class="hidden-xs"><a id="A4" href="/Help/help.aspx">
  5090. 帮助</a></li>
  5091. <li>
  5092. <a id="ctl00_Footer1_lnk27" href="../../../../../contact/">联系我们</a></li>
  5093. <li class="hidden-xs"><a id="A5" href="/browsersupport/">
  5094. 浏览器支持</a></li>
  5095. <li><a id="A6" href="/cookie-policy/">
  5096. Cookie政策</a></li>
  5097. </ul>
  5098. </div>
  5099. <div class="col-xs-12 col-sm-3">
  5100. <strong class="paddingTopBtm10 inline-block">
  5101. 昴氏(上海)电子贸易有限公司</strong>
  5102. <ul>
  5103. <li>
  5104. <h4>
  5105. 中国上海市长宁区娄山关路555号<br />长房国际广场办公楼2506-2510室<br />邮编200051<br/><br/>400-821-6111</h4>
  5106. </li>
  5107. </ul>
  5108. </div>
  5109. </div>
  5110. </div>
  5111. </div>
  5112. <div class="row">
  5113. <div id="ctl00_Footer1_pn1" class="ft_copy_pos2 col-xs-12 col-sm-5">
  5114. <div id="ft_copy">
  5115. <span class="ft_terms">
  5116. <a id="A1" href="/privacypolicy/">
  5117. 隐私政策</a>
  5118. &nbsp;&nbsp;|&nbsp;&nbsp;
  5119. <a id="href3" href="/saleterms/">
  5120. 销售条款</a>
  5121. <br />
  5122. </span>
  5123. <span class="ft_copyright">
  5124. 版权所有©2016 Mouser Electronics, Inc
  5125. |
  5126. 沪ICP备15042575号-1
  5127. <br />
  5128. </span>
  5129. <span class="ft_trade">
  5130. Mouser® 和 Mouser Electronics® 是 Mouser Electronics, Inc 的注册商标。
  5131. </span>
  5132. <span class="ft_hq">
  5133. Corporate headquarters and logistics center in Mansfield, Texas USA.
  5134. </span>
  5135. <br />
  5136. <span class="ft_ClassicMobile">
  5137. <strong>
  5138. <a id="ctl00_Footer1_lbtn1" class="ft-mobile" href="../../../../../m_Home.aspx">通过移动设备查看</a></strong>
  5139. </span>
  5140. </div>
  5141. </div>
  5142. <div id="ft_cert" class="col-xs-7 align-right hidden-xs">
  5143. <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>
  5144. <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>
  5145. <a id="link" title="IESA" class="ft_cert_padding ft_ecia" href="/ecia/">
  5146. <img id="imgIESA" src="/Images/footer/logo-IESA_small.png" alt="IESA">
  5147. </a>
  5148. <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>
  5149. <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;
  5150. </a>
  5151. </div>
  5152. <div id="ft_cert_2" class="col-xs-7 align-right hidden-xs">
  5153. <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>
  5154. <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>
  5155. <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>
  5156. <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>
  5157. </div>
  5158. </div>
  5159. <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>
  5160. <script type="text/javascript">
  5161. var quickSignUpUrl = 'https://sub.info.mouser.com/quick-signup-sc';
  5162. </script>
  5163. </div>
  5164. </div>
  5165. <script src="../../../../../flash/AC_RunActiveContent.js" type="text/javascript"></script>
  5166. <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>
  5167. </body>
  5168. </html>