Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
高度变量的内容是字符串还是数字?从高度减去变量 k 会出现 Nan 错误。
var k=761; var height = $('#dornierenvoj img').css('height'); console.log(height - k);
您正试图从字符串中减去一个 int 。你必须使用
.replace('px', '');
为了得到一个数字,然后做数学运算。
http://jsfiddle.net/hyZu4/