使用 jQuery 创建自动完成扩展程序时出现错误。错误发生在第二行。
function reduce(elem, size, border, margin) {
$.each(side, function () { // error on this line
size -= parseFloat($.curCSS(elem, "padding" + this, true))
0;
if (border) {
size -= parseFloat($.curCSS(elem, "border" + this + "Width", true))
0;
}
if (margin) {
size -= parseFloat($.curCSS(elem, "margin" + this, true))
0;
}
});
return size;
}