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.js 之后
$('#iPut').css('width', '150px');在 as element('#id').css('width', '150px');不起作用的地方工作。两者的主要区别是什么?
$('#iPut').css('width', '150px');
element('#id').css('width', '150px');
element(假设我们说的是 Angular 指令)是一个 jQuery 对象,就像$('#iPut'). 它不是一个函数,例如$,您可以调用并将选择器传递给它。
element
$('#iPut')
$
因此,如果要设置 的宽度element,请像这样使用它:
element.css('width', '150px');