HTML DOM
1. prompt() Refer to https://www.w3school.com.cn/jsref/met_win_prompt.asp <html> <head> <script type="text/javascript"> function display(){ var name = prompt("Please enter your name",'origin') if(name != null && name != "") { document.write("hello " + name) } } </script> </head> <body> <input type="button" onclick="display()" value="Display box"> </body> </html> 2. classList Refer to https://www.runoob.com/jsref/prop-element-classlist.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟教程(runoob.com)</title> <style> .mystyle { width: 300px; height: 50px; background-color: coral;