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