الفرق بين المراجعتين لصفحة: «jQuery/first child selector»
< jQuery
Khaled-yassin (نقاش | مساهمات) أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE:المحدد <code>:first-child()</code> في jQuery}}</noinclude> == ا...' |
Khaled-yassin (نقاش | مساهمات) ط ←أمثلة |
||
سطر 11: | سطر 11: | ||
في حين أن <code>[[jQuery/first selector|:first]]</code> لا يتطابق إلا مع عنصر واحد فقط، يمكن أن يتطابق المُحدد <code>:first-child</code> مع أكثر من عنصر بواقع عنصر واحد لكل أب.وهو يعادل <code>[[jQuery/nth child selector|:nth-child(1)]]</code>. | في حين أن <code>[[jQuery/first selector|:first]]</code> لا يتطابق إلا مع عنصر واحد فقط، يمكن أن يتطابق المُحدد <code>:first-child</code> مع أكثر من عنصر بواقع عنصر واحد لكل أب.وهو يعادل <code>[[jQuery/nth child selector|:nth-child(1)]]</code>. | ||
=== أمثلة === | |||
العثور على أول <code>[[HTML/span|<nowiki><span></nowiki>]]</code> في كل <code>[[HTML/div|<nowiki><div></nowiki>]]</code> مطابقة لوضع خط تحت النص وإضافة حالة حومان.<syntaxhighlight lang="html"> | العثور على أول <code>[[HTML/span|<nowiki><span></nowiki>]]</code> في كل <code>[[HTML/div|<nowiki><div></nowiki>]]</code> مطابقة لوضع خط تحت النص وإضافة حالة حومان.<syntaxhighlight lang="html"> | ||
<!doctype html> | <!doctype html> | ||
سطر 57: | سطر 57: | ||
== مصادر == | == مصادر == | ||
* [http://api.jquery.com/first-child-selector/ صفحة المحدد :file() في توثيق jQuery الرسمي]. | * [http://api.jquery.com/first-child-selector/ صفحة المحدد :file() في توثيق jQuery الرسمي]. | ||
[[تصنيف:jQuery]] | [[تصنيف:jQuery]] | ||
[[تصنيف:jQuery Method]] | [[تصنيف:jQuery Method]] | ||
[[تصنيف:jQuery Selectors]] | [[تصنيف:jQuery Selectors]] |
مراجعة 17:54، 15 مايو 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>