我想知道= + _运算符在JavaScript中意味着什么.它看起来像是作业.
例:
hexbin.radius = function(_) {
if (!arguments.length)
return r;
r = +_;
dx = r * 2 * Math.sin(Math.PI / 3);
dy = r * 1.5;
return hexbin;
};
Run Code Online (Sandbox Code Playgroud) 这有效:
$('.sameDiv').css('width', '25%');
Run Code Online (Sandbox Code Playgroud)
但这不是:
var squaresize = 25;
$('.sameDiv').css('width', 'squaresize%');
Run Code Online (Sandbox Code Playgroud)
此外,我已经尝试使用百分号作为变量的一部分,这没有帮助.