2
我正在製作一個jQuery插件,如何在當前設置中找到.selected
元素?使用jQuery在當前設置中查找元素
$('a').selected(); // initial set `a`
$.fn.selected = function() {
return $('.selected', this);
// produces `a .selected` but I want to find `a.selected`
}
當然,謝謝! – firedev