我使用这个相对简单的代码:
var height = help ? 'minus' : 'plus'; var prop = $('#properties'); if(height == 'minus'){ prop.height(prop.height() -= 206); } else { prop.height(prop.height() += 206); }
在添加/减少的两行上都失败了!有任何想法吗?
解决方法
– =运算符等于operand = operand – 在你的情况下看起来像的值
prop.height() = prop.height() - 206;
这显然会失败.您只需要减号运算符即可完成该任务.
prop.height(prop.height() - 206);
会做的.