الفرق بين المراجعتين لصفحة: «jQuery/first child selector»
< jQuery
لا ملخص تعديل |
لا ملخص تعديل |
||
سطر 1: | سطر 1: | ||
<noinclude>{{DISPLAYTITLE:المحدد <code>:first-child()</code> في jQuery}}</noinclude> | <noinclude>{{DISPLAYTITLE:المحدد <code>:first-child()</code> في jQuery}}</noinclude> | ||
== المحدد <code>:first-child</code> == | == المحدد <code>:first-child</code> == | ||
سطر 59: | سطر 58: | ||
* [http://api.jquery.com/first-child-selector/ صفحة المحدد :first-child-selector في توثيق jQuery الرسمي]. | * [http://api.jquery.com/first-child-selector/ صفحة المحدد :first-child-selector في توثيق jQuery الرسمي]. | ||
[[تصنيف:jQuery]] | [[تصنيف:jQuery]] | ||
[[تصنيف:jQuery Selectors]] | [[تصنيف:jQuery Selectors]] |
المراجعة الحالية بتاريخ 09:33، 17 مايو 2018
المحدد :first-child
الوصف
يحدد كل العناصر التي تكون أول ابن للعنصر الأب الذي تتبع له.
jQuery( ":first-child" )
أُضيف مع الإصدار: 1.1.4.
في حين أن :first
لا يتطابق إلا مع عنصر واحد فقط، يمكن أن يتطابق المُحدد :first-child
مع أكثر من عنصر بواقع عنصر واحد لكل أب. وهو يعادل :nth-child(1)
.
أمثلة
العثور على أول <span>
في كل <div>
مطابقة لوضع خط تحت النص وإضافة تنسيق عند مرور مؤشر الفأرة فوق العنصر:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>first-child demo</title>
<style>
span {
color: #008;
}
span.sogreen {
color: green;
font-weight: bolder;
}
</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>
</div>
<div>
<span>Glen,</span>
<span>Tane,</span>
<span>Ralph</span>
</div>
<script>
$( "div span:first-child" )
.css( "text-decoration", "underline" )
.hover(function() {
$( this ).addClass( "sogreen" );
}, function() {
$( this ).removeClass( "sogreen" );
});
</script>
</body>
</html>