我有一個標籤元素:如果元素有類替換元素,「文」與「一些文本」
<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登記。如何更好地做到這一點?
if $('#new_user').hasClass('team-registration') {
....
}
謝謝!
請注意,我有<標題簡稱=「需要」> *之前替換它是文本 –
@RooticalV。你想簡單地用''Team name''替換'#new_user.team-registration'中的所有內容*嗎?或者你想讓它產生'「 *團隊名稱」'?此外,您問題中的HTML代碼段與您所需的條件不符。如果您更新了問題以包含正確的HTML以及預期產生的HTML,它會有所幫助。 –
我編輯過html。是的,我只想要將文本替換爲 *即可離開。 謝謝! –