我有一个标签元素:
<form id="new_user">
<div id="first-name">
<label for="user_profile_attributes_first_name"><abbr title="required">*</abbr> First name</label>
</div>
</form>
当#new_user 有.team-registration 时,我想用团队名称替换文本名字。这样做会更好吗?
if $('#new_user').hasClass('team-registration') {
....
}
谢谢!