Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在下面的代码中,在方法之后生成新的 jquery 对象。如果不是,为什么 addClass 方法在div和p元素上都是 addind class 'foo'
$('<div/>').after('<p></p>').addClass('foo') .filter('p').attr('id', 'bar').html('hello') .end() .appendTo('body');
jQuery API 中解释了这个确切的场景:
“结果是一个 jQuery 集,其中包含一个 div 和一个段落,按此顺序。”
http://api.jquery.com/after/