Kaip įjungti / išjungti mygtuką naudojant jQuery?

Kaip įjungti / išjungti mygtuką naudojant jQuery?

Mygtuko įjungimas / išjungimas naudojant „jQuery“ apima jo funkcionalumo pakeitimą, kad būtų galima priimti vartotojo įvestį arba ne. Paprastai tai atliekama manipuliuojant jos „išjungta“ nuosavybe arba atributu naudojant „jQuery“ metodus, pvz., „.prop()“ arba „.attr()“.

Norėdami įjungti / išjungti mygtuką naudodami jQuery, jums reikės pagrindinės HTML struktūros kartu su JavaScript / jQuery. Žemiau pateikiama paprasta kodo struktūra, kuri padės jums pradėti

HTML Mygtukas Įjungti / Išjungti pavadinimą> <script src= 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js'>scenarijus> galva> <body> <button id='myButton'>Spustelėkite Mebutton> <script>$(document).ready(function(){ // jQuery kodas įjungti/išjungti mygtuką // Pridėkite savo kodą čia }); script> body> html>>> </tag> <p dir='ltr'> <br> </p> <h2> <span>Mygtuko įjungimo / išjungimo naudojant jQuery pavyzdžiai </span> </h2> <h3> <span>1. Naudojant .prop() metodą: </span> </h3> <p dir='ltr'> <span>Naudojant </span> <span>.prop() jQuery </span> <span>Norėdami įjungti / išjungti mygtuką, reikia nustatyti jo ypatybę „išjungta“ į „true“ arba „false“, suteikiant veiksmingą jo interaktyvumo valdymą, pagrįstą programos reikalavimais ir vartotojo sąveika. </span> </p> <p dir='ltr'> <b> <strong>Pavyzdys: </strong> </b> <span>Šiame pavyzdyje naudojame jQuery: perjungia mygtuko ypatybę „išjungta“ spustelėjus ir dukart spustelėjus įvykius, kad naudotojas sąveikautų sklandžiai naudojant .prop() metodą. </span> </p>HTML <tag data-text-1=' <html> <head> <script src= 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js'>scenarijus> galva> <body> <h3>Naudojant .prop() metodąh3> <button id='update'>atnaujinti mebutton> <div style='margin-top: 50px'> <button id='change'>spustelėkite mygtuką me> div> <script>$('#change').on('click', function () { $('#update').prop( 'disabled', true ); }); $('#change').on( 'dblclick', function () { $('#update').prop( 'išjungta', false ); } ); script> body> html>>> </tag> <p dir='ltr'> <b> <strong>Išvestis: </strong> </b> </p> <img src='//techcodeview.com/img/blogathon-2021/17/how-enable-disable-button-using-jquery.webp' alt='JqueryToggle'> <p>.prop() metodas Pavyzdys Išvestis </p> <h3> <span>2. Naudojant .attr() metodą </span> </h3> <p dir='ltr'> <span>Naudojant </span> <span>.attr() metodas </span> <span>„jQuery“ perjungiate elementų atributą „išjungtas“. Spustelėjus mygtuką, kitas mygtukas išjungiamas, o dukart spustelėjus jį vėl įjungiama, pagerėja vartotojo sąveika ir funkcionalumas tinklalapiuose. </span> </p> <p dir='ltr'> <b> <strong>Pavyzdys: </strong> </b> <span>Šiame pavyzdyje mes naudojame .attr() metodą mygtukui įjungti / išjungti. Spustelėjus išjungiamas kitas mygtukas; dukart spustelėjus jį vėl įjungiama, pagerėja vartotojo sąveika ir žiniatinklio funkcionalumas. </span> </p>HTML <tag data-text-1=' <html> <head> <script src= 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js'>scenarijus> galva> <body> <h3>Naudojant .attr() metodąh3> <button id='update'>Atnaujinti Mebutton> <div style='margin-top: 50px;'> <button id='change'>Spustelėkite Mebutton> div> <script>$('#change').on('click', function () { $('#update').attr('disabled', 'disabled'); }); $('#change').on('dblclick', function () { $('#update').removeAttr('disabled'); }); script> body> html>>> </tag> <p dir='ltr'> <b> <strong>Išvestis: </strong> </b> </p> <p> <br> </p> <img src='//techcodeview.com/img/blogathon-2021/17/how-enable-disable-button-using-jquery-2.webp' alt='JqueryToggle2'> <p>.attr() metodas Išvesties pavyzdys </p> <p> <br> </p> <br> <br> </div> <!-- Article Footer with Prominent Share Buttons --> <div class="px-6 md:px-8 py-8 bg-slate-50 dark:bg-slate-900/50 border-t border-slate-200 dark:border-slate-700/50"> <div class="flex flex-col sm:flex-row items-center justify-between gap-6"> <h4 class="text-base font-bold text-slate-700 dark:text-slate-300 uppercase tracking-wide flex items-center gap-2"> <i class="fa fa-share-alt text-tech-500"> </i> Bendrinti </h4> <div class="flex flex-wrap justify-center gap-3"> <!-- Twitter --> <a href="https://twitter.com/intent/tweet?text=Kaip įjungti / išjungti mygtuką naudojant jQuery?&url=https://www.techcodeview.com/lt/how-enable-disable-button-using-jquery" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2 px-6 py-3 rounded-xl bg-[#1DA1F2]/10 text-[#1DA1F2] hover:bg-[#1DA1F2] hover:text-white transition-all duration-300 font-bold text-sm"> <i class="fa fa-twitter text-lg"> </i> <span class="hidden sm:inline">Twitter </span> </a> <!-- Facebook --> <a href="https://www.facebook.com/sharer/sharer.php?u=https://www.techcodeview.com/lt/how-enable-disable-button-using-jquery" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2 px-6 py-3 rounded-xl bg-[#4267B2]/10 text-[#4267B2] hover:bg-[#4267B2] hover:text-white transition-all duration-300 font-bold text-sm"> <i class="fa fa-facebook text-lg"> </i> <span class="hidden sm:inline">Facebook </span> </a> <!-- LinkedIn --> <a href="https://www.linkedin.com/shareArticle?mini=true&url=https://www.techcodeview.com/lt/how-enable-disable-button-using-jquery&title=Kaip įjungti / išjungti mygtuką naudojant jQuery?" target="_blank" rel="noopener noreferrer" class="flex items-center gap-2 px-6 py-3 rounded-xl bg-[#0077b5]/10 text-[#0077b5] hover:bg-[#0077b5] hover:text-white transition-all duration-300 font-bold text-sm"> <i class="fa fa-linkedin text-lg"> </i> <span class="hidden sm:inline">LinkedIn </span> </a> </div> </div> </div> </article> <!-- Comments Placeholder / Random Articles --> <div class="mt-8 bg-white dark:bg-slate-800 border border-slate-200 dark:border-slate-700 rounded-xl p-6 md:p-8 shadow-sm"> <h3 class="text-xl font-bold text-slate-900 dark:text-white mb-6 uppercase tracking-wide border-b border-slate-200 dark:border-slate-700 pb-2"> Jums Gali Patikti </h3> <div class="grid grid-cols-1 md:grid-cols-2 gap-6"> <div class="group"> <a href="/lt/sum-of-subset-differences" class="block aspect-video rounded-lg overflow-hidden bg-slate-200 dark:bg-slate-700 mb-3"> <img loading="lazy" src="https://techcodeview.com/img/mathematical/60/sum-of-subset-differences.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Poaibių skirtumų suma" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> </a> <h4 class="font-bold text-slate-900 dark:text-white leading-tight group-hover:text-tech-500 transition-colors"> <a href="/lt/sum-of-subset-differences">Poaibių skirtumų suma </a> </h4> </div> <div class="group"> <a href="/lt/java-convert-string-object" class="block aspect-video rounded-lg overflow-hidden bg-slate-200 dark:bg-slate-700 mb-3"> <img loading="lazy" src="https://techcodeview.com/img/java-conversion/01/java-convert-string-object.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Java konvertuoti eilutę į objektą" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> </a> <h4 class="font-bold text-slate-900 dark:text-white leading-tight group-hover:text-tech-500 transition-colors"> <a href="/lt/java-convert-string-object">Java konvertuoti eilutę į objektą </a> </h4> </div> </div> </div> </div> <!-- SECONDARY COLUMN (SIDEBAR) --> <!-- Aside Column --> <div class="lg:col-span-4 space-y-8"> <!-- Best Articles Widget --> <div class="rounded-xl bg-white dark:bg-slate-800 border border-slate-200 dark:border-slate-700 p-6 shadow-sm"> <div class="mb-4 border-b border-slate-100 dark:border-slate-700 pb-2"> <h2 class="text-lg font-bold text-slate-900 dark:text-white uppercase tracking-wide flex items-center"> <span class="mr-2 h-2 w-2 rounded-full bg-tech-500"> </span> Top Straipsniai </h2> </div> <!-- Owl Carousel Preserved Container --> <div id="owl-carousel-3" class="owl-carousel owl-theme center-owl-nav"> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lt/classes-and-objects-in-java"> <img src="https://techcodeview.com/img/java/00/classes-and-objects-in-java.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Klasės ir objektai Java" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lt/classes-and-objects-in-java" class="hover:text-tech-500 transition-colors line-clamp-3">Klasės ir objektai Java </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lt/how-index-slice-strings-python"> <img src="https://techcodeview.com/img/python-string/64/how-index-slice-strings-python.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Kaip indeksuoti ir supjaustyti eilutes „Python“?" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lt/how-index-slice-strings-python" class="hover:text-tech-500 transition-colors line-clamp-3">Kaip indeksuoti ir supjaustyti eilutes „Python“? </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lt/linked-list-implementation-stack"> <img src="https://techcodeview.com/img/ds-tutorial/63/linked-list-implementation-stack.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Susieto sąrašo dėklo įgyvendinimas" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lt/linked-list-implementation-stack" class="hover:text-tech-500 transition-colors line-clamp-3">Susieto sąrašo dėklo įgyvendinimas </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lt/combinational-logic-circuits"> <img src="https://techcodeview.com/img/digital-electronics/33/combinational-logic-circuits.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Kombinacinės logikos grandinės" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lt/combinational-logic-circuits" class="hover:text-tech-500 transition-colors line-clamp-3">Kombinacinės logikos grandinės </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lt/sql-commands"> <img src="https://techcodeview.com/img/dbms-tutorial/41/sql-commands.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="SQL komandos" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lt/sql-commands" class="hover:text-tech-500 transition-colors line-clamp-3">SQL komandos </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lt/itoa-function-c"> <img src="https://techcodeview.com/img/c-tutorial/58/itoa-function-c.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="itoa funkcija C" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lt/itoa-function-c" class="hover:text-tech-500 transition-colors line-clamp-3">itoa funkcija C </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lt/11-types-bees-you-should-know-131360"> <img src="https://techcodeview.com/img/blog/46/11-types-bees-you-should-know.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="11 bičių tipų, kuriuos turėtumėte žinoti" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lt/11-types-bees-you-should-know-131360" class="hover:text-tech-500 transition-colors line-clamp-3">11 bičių tipų, kuriuos turėtumėte žinoti </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lt/whose-whos-3-tips-131184"> <img src="https://techcodeview.com/img/blog/10/whose-whos-3-tips.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Kieno ar kas? 3 patarimai, kaip prisiminti skirtumą" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lt/whose-whos-3-tips-131184" class="hover:text-tech-500 transition-colors line-clamp-3">Kieno ar kas? 3 patarimai, kaip prisiminti skirtumą </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lt/convert-a-binary-tree-to-a-circular-doubly-link-list"> <img src="https://techcodeview.com/img/linked-list/47/convert-a-binary-tree-to-a-circular-doubly-link-list.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Konvertuokite dvejetainį medį į apskritą dvigubų nuorodų sąrašą" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lt/convert-a-binary-tree-to-a-circular-doubly-link-list" class="hover:text-tech-500 transition-colors line-clamp-3">Konvertuokite dvejetainį medį į apskritą dvigubų nuorodų sąrašą </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors"> <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700"> <a href="/lt/random-function-c"> <img src="https://techcodeview.com/img/c-tutorial/77/random-function-c.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Atsitiktinė funkcija C" class="w-full h-full object-cover"> </a> </div> <div class="flex-1 min-w-0"> <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug"> <a href="/lt/random-function-c" class="hover:text-tech-500 transition-colors line-clamp-3">Atsitiktinė funkcija C </a> </h4> </div> </article> <!-- /ARTICLE --> </div> <!-- Categories --> <div class="mt-8 mb-4 border-b border-slate-100 dark:border-slate-700 pb-2"> <h2 class="text-lg font-bold text-slate-900 dark:text-white uppercase tracking-wide">Kategorija </h2> </div> <div class="flex flex-wrap gap-2"> <a href="/lt/blog/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors"> Dienoraštis </a> <a href="/lt/java-conversion/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors"> Java Konvertavimas </a> <a href="/lt/maths/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors"> Matematika </a> <a href="/lt/java-collections/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors"> Java Kolekcijos </a> <a href="/lt/differences/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors"> Skirtumai </a> <a href="/lt/java-string/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors"> Java Eilutė </a> </div> <!-- Interesting Articles Widget --> <div class="mt-8"> <div class="mb-4 border-b border-slate-100 dark:border-slate-700 pb-2"> <h2 class="text-lg font-bold text-slate-900 dark:text-white uppercase tracking-wide">Įdomios Straipsniai </h2> </div> <div id="owl-carousel-4" class="owl-carousel owl-theme"> <!-- ARTICLE --> <article class="relative aspect-video rounded-lg overflow-hidden group mb-2"> <div class="absolute inset-0"> <img src="https://techcodeview.com/img/blog/88/6-fundamental-capricorn-traits.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="6 pagrindiniai Ožiaragio bruožai, paaiškinti" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div> </div> <div class="absolute bottom-0 left-0 p-4"> <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/lt/blog/">Dienoraštis </a> </div> <h4 class="text-sm font-bold text-white leading-tight"> <a href="/lt/6-fundamental-capricorn-traits-13196">6 pagrindiniai Ožiaragio bruožai, paaiškinti </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="relative aspect-video rounded-lg overflow-hidden group mb-2"> <div class="absolute inset-0"> <img src="https://techcodeview.com/img/artificial-intelligence/75/alpha-beta-pruning.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Alfa-Beta genėjimas" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div> </div> <div class="absolute bottom-0 left-0 p-4"> <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/lt/artificial-intelligence/">Dirbtinis Intelektas </a> </div> <h4 class="text-sm font-bold text-white leading-tight"> <a href="/lt/alpha-beta-pruning">Alfa-Beta genėjimas </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="relative aspect-video rounded-lg overflow-hidden group mb-2"> <div class="absolute inset-0"> <img src="https://techcodeview.com/img/javascript-tutorial/62/javascript-offsetheight.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="JavaScript offsetHeight" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div> </div> <div class="absolute bottom-0 left-0 p-4"> <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/lt/javascript-tutorial/">Javascript Pamoka </a> </div> <h4 class="text-sm font-bold text-white leading-tight"> <a href="/lt/javascript-offsetheight">JavaScript offsetHeight </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="relative aspect-video rounded-lg overflow-hidden group mb-2"> <div class="absolute inset-0"> <img src="https://techcodeview.com/img/blog/38/every-ib-history-past-paper-available.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Kiekvienas galimas IB istorijos popierius: nemokamas ir oficialus" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div> </div> <div class="absolute bottom-0 left-0 p-4"> <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/lt/blog/">Dienoraštis </a> </div> <h4 class="text-sm font-bold text-white leading-tight"> <a href="/lt/every-ib-history-past-paper-available-1311474">Kiekvienas galimas IB istorijos popierius: nemokamas ir oficialus </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="relative aspect-video rounded-lg overflow-hidden group mb-2"> <div class="absolute inset-0"> <img src="https://techcodeview.com/img/ds-tutorial/19/abstract-data-type-data-structure.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Abstraktus duomenų tipas duomenų struktūroje" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div> </div> <div class="absolute bottom-0 left-0 p-4"> <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/lt/ds-tutorial/">Ds Pamoka </a> </div> <h4 class="text-sm font-bold text-white leading-tight"> <a href="/lt/abstract-data-type-data-structure">Abstraktus duomenų tipas duomenų struktūroje </a> </h4> </div> </article> <!-- /ARTICLE --> <!-- ARTICLE --> <article class="relative aspect-video rounded-lg overflow-hidden group mb-2"> <div class="absolute inset-0"> <img src="https://techcodeview.com/img/it-problems-solutions/45/remote-procedure-call-operating-system.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Nuotolinis procedūrų skambutis (RPC) operacinėje sistemoje" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500"> <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div> </div> <div class="absolute bottom-0 left-0 p-4"> <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/lt/it-problems-solutions/">It Problemos Ir Sprendimai </a> </div> <h4 class="text-sm font-bold text-white leading-tight"> <a href="/lt/remote-procedure-call-operating-system">Nuotolinis procedūrų skambutis (RPC) operacinėje sistemoje </a> </h4> </div> </article> <!-- /ARTICLE --> </div> </div> </div> </div> <!-- /Aside Column --> </div> </div> </div> <footer class="site-footer"> <div class="container"> <span class="footer-links"> Copyright ©2026 Visos Teisės Saugomos | <a href="//www.techcodeview.com/lv/">techcodeview.com </a> | <a href="/disclaimer" rel="nofollow noopener noreferrer" target="_blank">Atsisakymas </a> | <a href="/about-us" rel="nofollow noopener noreferrer" target="_blank">Apie Mus </a> | <a href="/privacy-policy" rel="nofollow noopener noreferrer" target="_blank">Privatumo Politika </a> </span> </div> </footer> <script type="text/javascript" src="https://techcodeview.com/template/assets/plugins/jquery-1.11.3.min.js"> </script> <script type="text/javascript" src="https://techcodeview.com/template/assets/plugins/bootstrap/js/bootstrap.min.js"> </script> <script type="text/javascript" src="https://techcodeview.com/template/assets/js/main.js"> </script> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/highlight.min.js"> </script> <script> !function(){"use strict";let t=document.createElement("button");t.id="toTopBtn",t.innerHTML="↑";let e=` #toTopBtn { position: fixed; bottom: 25px; right: 25px; z-index: 9999; opacity: 0; visibility: hidden; background-color: #0ea5e9; color: white; border: none; border-radius: 8px; width: 50px; height: 50px; font-size: 24px; cursor: pointer; transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; } #toTopBtn:hover { background-color: #0284c7; } `,i=document.createElement("style");i.type="text/css",i.innerText=e,document.head.appendChild(i),document.body.appendChild(t),window.addEventListener("scroll",()=>{let e=window.scrollY||document.documentElement.scrollTop;e>300?(t.style.opacity="1",t.style.visibility="visible"):(t.style.opacity="0",t.style.visibility="hidden")}),t.addEventListener("click",()=>{window.scrollTo({top:0,behavior:"smooth"})})}(); </script> </body> </html>