jQuery هي () طريقة

❮ طرق عبور jQuery

مثال

إذا كان أصل <p> هو عنصر <div> ، فقم بتنبيه بعض النص:

if ($("p").parent().is("div")) {
  alert("Parent of p is div");
}

التعريف والاستخدام

يتحقق الأسلوب () مما إذا كان أحد العناصر المحددة يطابق عنصر المحدد .


بناء الجملة

$(selector).is(selectorElement,function(index,element))

Parameter Description
selectorElement Required. Specifies a selector expression, element or a jQuery object to match the current set of elements against. Returns true if there is at least one match from the given argument, and false if not.
function(index,element)

Optional. Specifies a function to run for the group of selected elements.

  • index - the index position of the element
  • element - the current element (the "this" selector can also be used)

❮ طرق عبور jQuery