我正在 jquery 中尝试 this.addclass 向 DIV 添加一个类,这可能是未知的。可以通过这种方式解决吗?
<style>.classOne { font-size:24px; color:#009900;}</style>
<script>
function hello()
{ alert();
$(this).addClass('classOne');
}
</script>
<div class="something" onclick="hello();"> Test information </div>