We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
题目:
请根据提供的 html 代码实现下述效果:
Alt + H
Alt + Y
Alt + N
<button onclick="console.log('这是帮助信息')">帮助信息</button> <label> <input type="radio" name="choice"> 同意 </label> <label> <input type="radio" name="choice"> 不同意 </label>
参考答案:
<button accesskey="h" onclick="console.log('这是帮助信息')">帮助信息</button> <label accesskey="y"> <input type="radio" name="choice"> 同意 </label> <label accesskey="n"> <input type="radio" name="choice"> 不同意 </label>
Element accesskey
The text was updated successfully, but these errors were encountered:
No branches or pull requests
题目:
请根据提供的 html 代码实现下述效果:
Alt + H
,控制台输出对应信息;Alt + Y
选中“同意”单选框;Alt + N
选中“不同意”单选框。参考答案:
The text was updated successfully, but these errors were encountered: