评论

收藏

[jQuery] JQuery max-height的value不能为数值

开发技术 开发技术 发布于:2021-07-11 17:17 | 阅读数:545 | 评论:0

  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,
DSC0000.jpeg

  

  
关注下面的标签,发现更多相似文章