切换布局
显示结果
<html> <head> <script type = "text/javascript"> <!-- function getValue() { var retVal = prompt("Enter your name : ", "your name here"); document.write("You have entered : " + retVal); } //--> </script> </head> <body> <p>点击下面的按钮查看结果: </p> <form> <input type = "button" value = "Click Me" onclick = "getValue();" /> </form> </body> </html>