javascript – 如何停止HTML复选框以获得关注点击?

前端之家收集整理的这篇文章主要介绍了javascript – 如何停止HTML复选框以获得关注点击?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

有人知道如何防止HTML复选框在点击时获得焦点吗?我仍然希望它改变状态,只是没有得到关注.

最佳答案
您可以通过在mousedown处理程序中使用preventDefault()来阻止焦点:

$('input[type=checkBox]').mousedown(function (event) {
    // Toggle checkstate logic
    event.preventDefault(); // this would stop mousedown from continuing and would not focus
});

在纯JavaScript中:

checkBox.onmousedown = function (event) {
    // Toggle checkstate logic
    event.preventDefault(); // this would stop mousedown from continuing and would not focus
}
原文链接:https://www.f2er.com/html/425898.html

猜你在找的HTML相关文章