<form> <input type="checkBox" name="showRatings" value="1" checked> <label for="showRatings">Show Ratings</label> </form>
当我点击“显示评分”文本时,复选框不会切换。我知道这很简单。
<form> <input type="checkBox" name="showRatings" id="showRatings" value="1" checked> <label for="showRatings">Show Ratings</label> </form>
参考here。