如何使用javascript找到表格单元格的大小

时间:2011-03-07 16:49:56

标签: javascript jquery

  

可能重复:
  How can i find out the size of a cell with javascript

我想找到表头的宽度。当我这样做var width = $('myTH').width它返回“12%”,但我想以像素为单位返回宽度。我怎样才能做到这一点?我无法将<th>的宽度更改为像素,因为我希望它们以百分比形式显示,因此它们会随屏幕调整大小。

当我使用$('#myTH')这样的东西时,我正在使用jquery-1.5.js我收到错误。我不知道如果这是相关的,但它意味着我不能使用建议给我的方法,如$('#myTH').width()$('#myTH').outerWidth()我得到一个错误“对象不支持此属性或方法”我猜它是#符号

修改

<th id="telephoneTH" width="25%" >
<span  id="telephoneSpan" class="headerShortDetails">Telephone</span><span onclick="showContactPopup();"  class="infoSpans"> ${bean.phoneNumber}</span>
</th>


var width2 = $('#telephoneTH').outerWidth();
alert(width2);

我收到错误'null'为null或不是onject

0 个答案:

没有答案