Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想根据他们的css,特别是类名来更改日期的CSS。但我无法获得td.
td
有什么建议我如何获得班级名称?我尝试了onSelect然后使用了,但它按预期.html()返回了整个 HTML 。datepicker
onSelect
.html()
datepicker
您可以使用获取类名
$('selector').attr('class');
您可以在 Jquery 中通过以下方式获取类名
var className = $('#table_id .td').attr('class');