问答详情
源自:3-7 jQuery的属性与样式之样式操作.css()

这个为什么一定要中括号css(['width','height'])

为什么不加中括号就无效

提问者:土豪码农 2016-12-05 11:38

个回答

  • 41ex
    2016-12-05 12:24:25
    已采纳

    固定写法, 用来传递多个css propertyName

    As of jQuery 1.9, passing an array of style properties to .css() will result in an object of property-value pairs. 

    from: http://api.jquery.com/css/#css1