document.querySelectorAll('input[type="checkbox"]').forEach(checkbox => {
checkbox.checked = true;
});
Chrome浏览器通过控制台脚本选中页面所有勾选项
效率504
未经允许不得转载:迷你笔记 » Chrome浏览器通过控制台脚本选中页面所有勾选项
document.querySelectorAll('input[type="checkbox"]').forEach(checkbox => {
checkbox.checked = true;
});
