可以将jQuery元素传递给jQuery选择器

时间:2015-06-26 18:49:54

标签: jquery

我想编写一个常见的javascript函数,它将ID或jquery元素作为参数

function common(ID_or_Element)
{
  return $(ID_or_Element).val();
}

第一次电话

  common("#elementID");

第二次电话

$element = $("#elementID");
common($element)

上面的代码工作正常,但是可以在jQuery选择器中传递jQuery元素。在第二次调用im传递jQuery元素,反过来常用函数会将它传递给jQuery选择器

0 个答案:

没有答案