我正在使用带有自定义行模板的 Telerik mvc 网格。因此,由于我已经完成了行模板,因此我的宽度有问题。我无法正确设置宽度,所以我无法制作一个简单的文档准备功能来设置每个 th 的宽度。
function SetWidth(){
var ths = $('th');
var element = ths[0];
element.width(100);
}
然后我将手动设置 0 = 100、1 = 110、2 = 300 px 等等。
但是当我尝试添加 'element' 的宽度时,它给了我错误。
Uncaught TypeError: Property 'width' of object #<HTMLTableCellElement> is not a function
有什么问题?