JSFiddle - React, Tailwind, and code Playground

by kyleshen

HTML

<div data-role="page" id="page">
  <div data-role="header">
    <h1>頁首</h1>
  </div>
  <div data-role="content">內容
    <div data-role="fieldcontain">
      <fieldset data-role="controlgroup">
        <legend>選項</legend>
        <input name="checkbox1" type="checkbox" class="custom" id="checkbox1_0" value="" />
        <label for="checkbox1_0">選項</label>
        <input type="button" value="按鈕" onClick="$('#checkbox1_0').attr('checked',true);"/>
      </fieldset>
    </div>
  </div>
  <div data-role="footer">
    <h4>頁尾</h4>
  </div>
</div>