版权声明:欢迎转载,请注明沉默王二原创。 https://blog.csdn.net/qing_gee/article/details/49121351
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,