我在each()
函数中将jQuery对象作为函数参数传递时出现问题,但在我的函数中我无法使用jQuery方法。
$('.panel').each(function() {
$(".row:nth-of-type(2) .input, .row:nth-of-type(3) .input, .row:nth-of-type(4) .input, .row:nth-of-type(5) .input", $(this)).change(function() {
getVals($(this).closest('.parent'));
});
});
function getVals(parent) {
var fristVal = $('.input', parent)[0].value;
var secondVal = $('.input', parent)[1].value;
$('.table-wide', parent)[0].css({ "width": "160px", "height": "160px" });
}
我还有这个错误...
Uncaught TypeError: $(...)[0].css is not a function