我需要从给定的<tr>
标签中获取类名,但我无法这样做。
<table cellpadding=5 cellspacing=5>
<tr id='cat_abc123' class='class_a'>
<td>foo</td>
<td><input type='checkbox' name='cb1' value='1' onClick="info(this, 'abc123')">
</tr>
</table>
<script language='javascript'>
function info(theElement, id)
{
tr_id = 'cat_' + id;
alert(tr_id + ' ' + document.getElementById(tr_id).class);
}
</script>
工作示例:http: //jsfiddle.net/rQpeu/
我错过了什么?
更新
我使用了错误的描述符 - 应该使用 Classname。感谢大家的及时回复!更新了 jsfiddle:http: //jsfiddle.net/rQpeu/3/