webapi复选框按钮禁用
时间: 2023-05-12 15:04:10 浏览: 159
带复选标记的菜单的资源
可以通过设置disabled属性来禁用复选框按钮,例如:
<input type="checkbox" name="example" value="example" disabled>
这样就可以禁用名为"example"的复选框按钮。如果需要通过Web API来禁用复选框按钮,可以使用JavaScript来实现,例如:
document.getElementsByName("example")[0].disabled = true;
这样就可以通过Web API来禁用名为"example"的复选框按钮。
阅读全文