我正在尝试获取表格数据元素的外部高度,并且我在桌面上获得了正确的值,但 chrome 开发人员工具上的移动设备和平板电脑返回 0。JS:
var textRow = $('#table-data-row span');
console.log($(textRow).outerHeight(true));
HTML:
<td><div id="table-data-row"><span>this is a test text right here</span></div></td>
有针对移动浏览器的解决方案吗?