好的,问题不是很好,但我不知道如何命名Q,对此抱歉......
我获得了与服务器通信并将数据存储到数据库中的表单,它是一个预约"预约"表单中,表单有2 @IBAction func saveAction(_ sender: Any) {
if favTeamTextfield != nil && usernameTextfield != nil && fullNameTextfield != nil && phoneNumberTextfield != nil
{
//Post data to firebase
ref?.child("Users").child((user?.uid)!).setValue(["Full Name": fullNameTextfield.text, "Username": usernameTextfield.text, "Phone Number": phoneNumberTextfield.text, "Favorite Soccer Team": favTeamTextfield.text])
// dismiss the page
presentingViewController?.dismiss(animated: true, completion: nil)
}
else
{
let alertController = UIAlertController(title: "Oops!", message: "Please enter a username to save!", preferredStyle: .alert)
let defaultAction = UIAlertAction(title: "OK", style: .cancel, handler: nil)
alertController.addAction(defaultAction)
self.present(alertController, animated: true, completion: nil)
}
}
个,其中包含多个<Select>
。
首先<options>
有一些公司可以与您预约
第二个<Select>
<Select>
的时间就像&#34; 9:30&#34;,&#34; 11:00&#34;等。
我试图将第二个<option>
<Select>
设置为可点击或不可点击,具体取决于时间,因此,如果有其他人已经在9:00然后该选项应该不可用,但仅适用于Company1而不适用于所有公司。
它可以实现吗?在HTML?