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.
角元素
Angular 中的所有元素引用总是用 jQuery 或 jqLite 包装;它们绝不是原始的 DOM 引用。
我如何获取原始 DOM 元素,因为我有需要原始 DOM 元素的遗留 JS 代码(jscolor Picker)?
找到了:
ang_element = angular.element(element); raw_element = ang_element[0];