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
output 元素是 HTML5 新增的元素,用于不同类型的输出,如用于计算结果或脚本的输出等。
output
使用示例:
<form oninput="volume.value = range.value"> <input type="range" name="range" value="50"> <output name="volume">50</output> </form>
由于 range 类型的 input 元素表现为一个滑块,不显示数值,所以这时使用 ouput 元素协助显示其值。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
output
元素是 HTML5 新增的元素,用于不同类型的输出,如用于计算结果或脚本的输出等。使用示例:
The text was updated successfully, but these errors were encountered: