运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>InputEvents</h1> <h2>The data Property</h2> <p>The data property returns the character(s) that was inserted with the event.</p> <p>Write something in the text field:</p> <input type="text" oninput="myFunction(event)"> <p>The inserted character(s): <span id="demo"></span></p> <script> function myFunction(event) { let text = event.data; document.getElementById("demo").innerHTML = text; } </script> </body> </html>