0

How are HTML elements passed into angularjs compile and linking functions? Looking at them in the console, it looks like they arn't native HTML elements. Is it jquery or a lighter version of it?

4

1 回答 1

0

除非您之前包含 jquery,否则它是 jqlite。 http://docs.angularjs.org/misc/faq

Angular 是否使用 jQuery 库?

是的,如果在引导应用程序时,Angular 存在于您的应用程序中,则 Angular 可以使用 jQuery。如果 jQuery 没有出现在你的脚本路径中,Angular 会退回到它自己的 jQuery 子集实现,我们称之为 jQLite。

在角度代码(和文档)中,他们还说:

Angular 的 jQuery lite 提供了以下方法(v1.0.6):

于 2013-07-16T15:44:51.777 回答