jQuery DOM


Sisällysluettelo

    Näytä sisällysluettelo


jQuery vs JavaScript

jQueryn loi vuonna 2006 John Resig. Se on suunniteltu käsittelemään selaimen yhteensopimattomuudet ja yksinkertaistamaan HTML DOM -manipulaatiota, tapahtumien käsittelyä, animaatioita ja Ajaxia.

Yli 10 vuoden ajan jQuery on ollut maailman suosituin JavaScript-kirjasto.

Kuitenkin JavaScript-version 5 (2009) jälkeen useimmat jQuery-apuohjelmat voidaan ratkaista muutamalla rivillä vakio JavaScriptiä:


HTML-elementtien poistaminen

Poista HTML-elementti:

jQuery

$("#id02").remove();

Kokeile itse →

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>
<body>

<h2>Remove an HTML Element</h2>
<p id="id01">Hello World!</p>
<p id="id02">Hello Sweden!</p>

<script>
$(document).ready(function() {
  $("#id02").remove();
});
</script>

</body>
</html>

JavaScript

document.getElementById("id02").remove();

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h2>Remove an HTML Element</h2>
<p id="id01">Hello World!</p>
<p id="id02">Hello Sweden!</p>

<script>
document.getElementById("id02").remove();
</script>

</body>
</html>

Hanki Parent Element

Palauta HTML-elementin ylätaso:

jQuery

myParent = $("#02").parent().prop("nodeName"); ;

Kokeile itse →

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>
<body>

<h2>Getting Parent HTML Element</h2>
<p id="01">Hello World!</p>
<p id="02">Hello Sweden!</p>

<p id="demo"></p>

<script>
$(document).ready(function() {
  $("#demo").text($("#02").parent().prop("nodeName")); 
});
</script>

</body>
</html>

JavaScript

myParent = document.getElementById("02").parentNode.nodeName;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h2>Get Parent HTML Element</h2>
<p id="01">Hello World!</p>
<p id="02">Hello Sweden!</p>

<p id="demo"></p>

<script>
document.getElementById("demo").innerHTML = document.getElementById("02").parentNode.nodeName;
</script>

</body>
</html>