MathMLElement: phương thức blur()
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2023.
Phương thức blur() của giao diện MathMLElement xóa tiêu điểm bàn phím khỏi phần tử MathML hiện tại.
Cú pháp
js
blur()
Tham số
Không có.
Giá trị trả về
Không có (undefined).
Ví dụ
>Xóa tiêu điểm khỏi phần tử MathML
HTML
html
<div>
<math>
<msup id="myMath" tabindex="0">
<mi>x</mi>
<mn>2</mn>
</msup>
</math>
<button id="focusButton">Focus the Math</button>
<button id="blurButton">Blur the Math</button>
</div>
JavaScript
js
const mathElement = document.getElementById("myMath");
const focusButton = document.getElementById("focusButton");
const blurButton = document.getElementById("blurButton");
// Focus the MathMLElement when the "Focus" button is clicked
focusButton.addEventListener("click", () => {
mathElement.focus();
});
// Blur the MathMLElement when the "Blur" button is clicked
blurButton.addEventListener("click", () => {
mathElement.blur();
});
Kết quả
Thông số kỹ thuật
| Specification |
|---|
| HTML> # dom-blur-dev> |