我有以下几点:
tdToPad = tds.filter('[id^="input_Title_"]') pad = 60; tdToPad.css('margin-left',pad);
我想要做的是删除以“X-”开头的任何类,并将“tdToPad”所包含的行赋给一个“X-”键。
就像是:
<tr class='X-60'> <td> </td> </tr>
因为toToPad是指一行中的td元素。如何给父母“class”“X-”垫?我想我需要像下面这样的东西,但是如果这是正确的方法,那么如何使用“X”类别值来删除已经存在的元素,然后给这个元素一个正确的类?
tdToPad.Parent('tr')
解决方法
您可以使用
closest()
方法:
Get the first element that matches the selector,beginning at the current element and progressing up through the DOM tree.
tdToPad.closest('tr') .addClass('X-' + pad)
更新:
tdToPad.closest('tr').get(0).className = tdToPad.closest('tr').get(0).className.replace(/\bX\-.*?\b/g,''); tdToPad.closest('tr').addClass('X-' + pad)