الفرق بين المراجعتين لصفحة: «jQuery/last child selector»
< jQuery
جميل-بيلوني (نقاش | مساهمات) إضافة محتويات الصفحة. |
لا ملخص تعديل |
||
سطر 1: | سطر 1: | ||
<noinclude>{{DISPLAYTITLE:المحدد <code>:last-child</code> في jQuery}}</noinclude> | <noinclude>{{DISPLAYTITLE:المحدد <code>:last-child</code> في jQuery}}</noinclude> | ||
== | == المحدد <code>:last-child</code> == | ||
=== الوصف === | === الوصف === | ||
سطر 54: | سطر 54: | ||
== مصادر == | == مصادر == | ||
* [http://api.jquery.com/last-child-selector/ صفحة المحدِّد :last-child في توثيق jQuery الرسمي.] | * [http://api.jquery.com/last-child-selector/ صفحة المحدِّد :last-child في توثيق jQuery الرسمي.] | ||
[[تصنيف:jQuery]] | [[تصنيف:jQuery]] | ||
[[تصنيف:jQuery Selectors]] | [[تصنيف:jQuery Selectors]] |
مراجعة 07:55، 30 مايو 2018
المحدد :last-child
الوصف
يختار هذا المحدِّد جميع العناصر التي تُعدُّ الابن الأخير لآبائها.
jQuery( ":last-child" )
أُضيف مع الإصدار: 1.1.4.
يختار المحدد :last عنصرًا وحيدًا فقط، بينما يمكن أن يختار المحدد :last-child
عدة عناصر إذ يكون لكل أب عنصرًا واحدًا منها.
أمثلة
إيجاد العنصر <span>
الأخير في كل عناصر <div>
المتطابقة وتغيير تنسيقها وإضافة بعض التأثيرات التفاعلية إليها (عند مرور مؤشر الفأرة عليها):
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>last-child demo</title>
<style>
span.solast {
text-decoration: line-through;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<div>
<span>John,</span>
<span>Karl,</span>
<span>Brandon,</span>
<span>Sam</span>
</div>
<div>
<span>Glen,</span>
<span>Tane,</span>
<span>Ralph,</span>
<span>David</span>
</div>
<script>
$( "div span:last-child" )
.css({ color:"red", fontSize:"80%" })
.hover(function() {
$( this ).addClass( "solast" );
}, function() {
$( this ).removeClass( "solast" );
});
</script>
</body>
</html>