是否有通过id获取类名的语法。类名是动态的,所以我不能使用
if(Dom.hasClass('id-name-here', 'class-name-here')
{
Dom.removeClass('id-name-here', 'class-name-here');
Dom.addClass('id-name-here', 'class-name-here');
}
通过执行此操作,我可以使用id获取src属性,
Dom.get('id-name-here').src
但是当我尝试让它适应课堂时,它是未定义的
Dom.get('id-name-here').class
我只是确定身份证明。你能指出我正确的文件或教我如何......谢谢!
答案 0 :(得分:5)
我认为,它是className
而不是class
:
Dom.get('id-name-here').className;