#javascript #iframe
Вопрос:
Я пытаюсь проверить, сосредоточен ли пользователь в данный момент на форме в полоску, после чего я нажму кнопку ввода и отправлю форму.
Однако я не могу сопоставить что-либо с активным элементом, когда это iframe.
console.log(typeof document.activeElement.title)
console.log(document.activeElement.title);
console.log(document.activeElement.title.length);
console.log("Secure card payment input frame");
console.log("Secure card payment input frame".length);
console.log(document.activeElement.title === "Secure card payment input frame");
Как это возможно? Ничто из того, что я пытаюсь, не возвращается true
, когда я выполняю оператор равенства.
Комментарии:
1. Что, если ты
console.log( document.activeElement.title, document.activeElement.title === "test string" );
? изменен ли document.activeElement.title?