我的页面中有很多表格。某些表具有内联定义的 Width 属性 -
style="width:100%; ..."
我需要得到所有这些表。我试过
$('.Forum_Container table').each(function () {
var $this = $(this);
if ($this.style != undefined) {
if ($this.style.width == '100%') {
...
}
} else {
...
}
});
但 $this.style 始终未定义。什么会导致这个问题?