0
我有一個表單,其中必須根據複選框的值顯示某些字段。根據複選框值隱藏或顯示字段。如果選中複選框,則顯示標籤和字段(如果未選中)將其隱藏在playframework中
下面在我看來是
@checkbox(
userModelForm("isStudent"),
'_label -> <font color = "grey"> Student</font>,
'_showConstraints -> false
)
的代碼,如果這個複選框被選中,我需要顯示以下輸入文本,如果沒有這應該被隱藏
@inputText(
userModelForm("StudentId"),
'_label -> <font color = "grey" > Student Id </font> , 'class -> "form-control",
'_help -> "Realtors, please enter Your Student id.",
'_error -> userModelForm.globalError
)
感謝
由於它的作品好。 div標籤和隱藏與取消隱藏的組合運行良好。 –
如果解決了您的問題,請選擇此格式作爲接受的答案。謝謝。 – NoClueBlue