“Удалить фокус с ввода” Ответ

CSS удаляет входной фокус пограничного ввода

textarea:focus, input:focus{
    outline: none;
}
angro

JavaScript Удалить фокус с кнопки

var element = document.getElementById('btnBuild');
element.setAttribute("disabled", "disabled");
Ganz404

HTML предотвратить фокус на вводе

<input type="text" id="yourID" value="test" readonly="readonly" /> 

You can change it in javascript with : 

document.getElementById("yourID").readOnly = false; //This enables the possibility to focus
Tartaud

Удалить фокус с ввода

// Use focus() && blur() to add or remove focus.
import { useRef } from "react"

const inputRef = useRef()

// To remove focus: inputRef.current.blur()
// To focus: inputRef.current.focus()
<input ref='inputRef' {...value} />
Inquisitive Iguana

Удалить входную границу на фокусе

.bootstrap-select .form-control:focus {
    outline: 0px none #fff !important;
}

.bootstrap-select .form-control > div.filter-option:focus {
    outline: 0px none #fff !important;
}

.bootstrap-select .form-control > div.filter-option > div.filter-option-inner:focus {
    outline: 0px none #fff !important;
}

.bootstrap-select .form-control > div.filter-option > div.filter-option-inner > div.filter-option-inner-inner:focus {
    outline: 0px none #fff !important;
}
Letaïef Heni

Ответы похожие на “Удалить фокус с ввода”

Вопросы похожие на “Удалить фокус с ввода”

Больше похожих ответов на “Удалить фокус с ввода” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования