Khởi tạo các biến const cho Event
const EVENT_OPTIONS = {bubbles: true, cancelable: false, composed: true};
const EVENTS = {
BLUR: new Event("blur", EVENT_OPTIONS),
CHANGE: new Event("change", EVENT_OPTIONS),
INPUT: new Event("input", EVENT_OPTIONS),
};
Thay đổi giá trị của form input mình cần sửa đổi và cập nhật value cho nó
findInputBox = document.querySelector(".table-sm > thead > tr:nth-child(2) > td:nth-child(2) > input");
findInputBox.focus();
findInputBox.value = name; //name là giá trị cần set
const tracker = findInputBox._valueTracker;
tracker && tracker.setValue(name);
findInputBox.dispatchEvent(EVENTS.INPUT);
findInputBox.dispatchEvent(EVENTS.BLUR);