类型的HTML无效值

我正在处理一段html,代码给了我一个“元素输入属性类型的错误值复选框”。 这是抛出错误的代码行

    <input type="checkbox" id="show-menu" role="button">
    <label for="show-menu" class="show-menu">Show Menu</label>

任何帮助将非常感激!!


删除角色属性

<input type="checkbox" id="show-menu" name="yourname"  checked>

使用任何这些

<input name="name" id="id" type="checkbox" checked>
<input name="name" id="id" type="checkbox" checked="">
<input name="name" id="id" type="checkbox" checked="yes">
<input name="name" id="id" type="checkbox" checked="blue">
<input name="name" id="id" type="checkbox" checked="false">

查看更多答案

链接地址: http://www.djcxy.com/p/56057.html

上一篇: Html invalid value for type

下一篇: Toggle visibility of html using javascript checkbox event