太阳不下山 发表于 2021-7-11 17:17:36

JQuery max-height的value不能为数值

  JQuery max-height的value值只能是百分比和像素值,却不能指定为数值。
  像素值,right。
if (self.options.maxheight > 0) {
self.dc.css({
"max-height" : self.options.maxheight + 'px',
});
}
  直接为数值时压根没有作用,wrong。
"max-height" : self.options.maxheight,

  

  
文档来源:51CTO技术博客https://blog.51cto.com/u_2324584/3036287
页: [1]
查看完整版本: JQuery max-height的value不能为数值