roleapplication

宣告為 Web 應用程式的區域,而不是 Web 文件。在此示例中,應用程式是一個簡單的計算器,可以將兩個數字相加。

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