Html Blazor键盘导航到ADA站点 本人特此证明,本申请表中列出的所有信息均真实完整。我理解 本人在本申请中提供的任何虚假、不完整或误导性信息均构成拒绝的充分理由。

Html Blazor键盘导航到ADA站点 本人特此证明,本申请表中列出的所有信息均真实完整。我理解 本人在本申请中提供的任何虚假、不完整或误导性信息均构成拒绝的充分理由。,html,blazor,keyboard-events,Html,Blazor,Keyboard Events,此特定代码不允许我仅使用键盘选择复选框。我可以选择其他文本框和按钮,但出于某种原因,它将跳过此控件 任何建议都会有帮助。我需要为ADA(美国残疾人)的申请做好准备 <div class="flex-m w-full p-b-33"> <div class="contact100-form-checkbox inputFocus"> <InputCheckbox aria-labe

此特定代码不允许我仅使用键盘选择复选框。我可以选择其他文本框和按钮,但出于某种原因,它将跳过此控件

任何建议都会有帮助。我需要为ADA(美国残疾人)的申请做好准备

    <div class="flex-m w-full p-b-33">
        <div class="contact100-form-checkbox inputFocus">
            <InputCheckbox aria-label="I hereby certify that all of the information listed on this application is true and complete. I understand that any false, incomplete or misleading information given by me on this application is sufficient cause for rejection." class="input-checkbox100" id="ckb1" Style="background: #918f8f;" name="remember-me" @bind-Value="CurrentCustomerSubmission.AcceptedTermsAndConditions" />
            <label class="label-checkbox100" for="ckb1">
                <span class="txt1">
                    <a onfocus="() => document.getElementById('ckb1').checked = !document.getElementById('ckb1').checked;" class="txt2 hov1" style="color:darkblue;">
                        I hereby certify that all of the information listed on this application is true and complete. I understand
                        that any false, incomplete or misleading information given by me on this application is sufficient cause for rejection.
                    </a>
                </span>
            </label>
            <ValidationMessage For="@(() => CurrentCustomerSubmission.AcceptedTermsAndConditions)" />

        </div>
    </div>