不以“:”开头的自定义jQuery选择器

时间:2012-01-14 21:20:01

标签: jquery jquery-selectors

我们都知道可以定义以:开头的自定义jQuery选择器。例如:

// :textfield definition
$.expr[':'].textfield = function(obj) {
  return $(obj).is("input[type='text']");
};

// Use
$(":textfield").css({"background-color": "#700"});

出于好奇,是否可以定义一个不以:开头的自定义jQuery选择器?

1 个答案:

答案 0 :(得分:0)

基于我所看到的,我认为答案是:不。