roleapplication

声明为 Web 应用程序的区域,而不是 Web 文档。在此示例中,应用程序是一个简单的计算器,可以将两个数字相加。

<div role="application">
  <h1>Calculator</h1>
  <input id="num1" type="text"> + <input id="num2" type="text"> =
  <span id="result"></span>
</div>