运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <textarea rows="4" cols="50">Click me (or use the tab key) to assure that I get focus. Then, click the input field to make sure that it gets focus.</textarea><br><br> Input field: <input type="text" onfocus="getRelatedElement(event)"> <p><strong>Note:</strong> The relatedTarget property of the FocusEvent object is not supported in IE8 and earlier. </p> <script> function getRelatedElement(event) { alert("The related element that lost focus was: " + event.relatedTarget.tagName); } </script> </body> </html>