الفرق بين المراجعتين لصفحة: «jQuery/multiple attribute selector»
< jQuery
جميل-بيلوني (نقاش | مساهمات) طلا ملخص تعديل |
لا ملخص تعديل |
||
سطر 18: | سطر 18: | ||
=== أمثلة === | === أمثلة === | ||
إيجاد جميع المدخلات التي تملك الخاصِّيَّة | إيجاد جميع المدخلات التي تملك الخاصِّيَّة <code>id</code> وتنتهي قيمة الخاصِّيَّة <code>name</code> لها بالقيمة <code>man</code> ثمَّ ضبط قيمتها:<syntaxhighlight lang="html"> | ||
<!doctype html> | <!doctype html> | ||
<html lang="ar"> | <html lang="ar"> | ||
سطر 42: | سطر 42: | ||
== مصادر == | == مصادر == | ||
* [http://api.jquery.com/multiple-attribute-selector/ صفحة المحدِّد attributeMultiple في توثيق jQuery الرسمي.] | * [http://api.jquery.com/multiple-attribute-selector/ صفحة المحدِّد attributeMultiple في توثيق jQuery الرسمي.] | ||
[[تصنيف:jQuery]] | [[تصنيف:jQuery]] | ||
[[تصنيف:jQuery Selectors]] | [[تصنيف:jQuery Selectors]] |
المراجعة الحالية بتاريخ 07:56، 6 يونيو 2018
محدد أكثر من خاصية Multiple Attribute Selector
الوصف
يختار هذا المحدِّد العناصر التي تطابق جميع مرشِّحات خاصِّيَّة معينة.
jQuery( "[attributeFilter1][attributeFilter2][attributeFilterN]" )
أُضيف مع الإصدار: 1.0.
attributeFilter1
مرشِّح خاصِّيَّة.
attributeFilter2
مرشِّح خاصِّيَّة آخر والذي يقلص العناصر المراد تحديدها.
attributeFilter3
مرشِّح خاصِّيَّة آخر، ويمكن استعمال عددٍ من المرشِّحات بحسب الحاجة.
أمثلة
إيجاد جميع المدخلات التي تملك الخاصِّيَّة id
وتنتهي قيمة الخاصِّيَّة name
لها بالقيمة man
ثمَّ ضبط قيمتها:
<!doctype html>
<html lang="ar">
<head>
<meta charset="utf-8">
<title>attributeMultiple مثالٌ عن محدد الخاصيات المتعددة</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<input id="man-news" name="man-news">
<input name="milkman">
<input id="letterman" name="new-letterman">
<input name="newmilk">
<script>
$( "input[id][name$='man']" ).val( "هذا العنصر فقط" );
</script>
</body>
</html>