我正在将一些可以运行的代码重写为当前无法运行的代码。基本上,我循环遍历 div 以找出哪个是可见的,我想通过将此 div 缓存到 jquery 对象中来继续。
$('#MainDiv .LPanel').each(function () {
if ($(this).is(':visible') === true) {
var ThePanel = $(this);
}
});
if (ThePanel.width() < 700) { // bugs here
为什么无法访问 ThePanel?我错过了什么?
感谢您的建议。
PS:有效的代码只是返回attr('id');
,但我想要整个对象!