在我的 HTML 中,我有类似的内容:
<table id="registerTable">
<tr class="leaderRegistration">
<!--table contents-->
</tr>
<tr class="leaderRegistration">
<!--table contents-->
</tr>
<tr>
<!--table contents-->
</tr>
</table>
我想根据正在注册的用户类型删除表的某些行,所以在我的 javascript 中我有(User.AcountType 是我在其他地方定义的枚举):
if(newSysAdmin.accountType !== User.AccountType.Leader){
$('#registerTable tr.leaderRegistration').remove();
}
但是,它似乎不起作用。我也尝试过使用 $('.leaderRegistration') 选择行,但结果是一样的。关于为什么这不起作用的任何想法?