标签:返回 function pre val 信息 lan 输入 blog tle
原理:
prompt() 方法用于与用户交互,提示用户输入信息的对话框。
prompt(str1,str2);此方法包含两个属性;
str1:用于提示用户输入的信息。
str2:用于用户输入文本信息。
该方法返回值:返回用户输入的文本信息。
简单实例:
<html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script> function getMsg(){ var msg = prompt(‘请输入账号‘) alert(msg) } </script> </head> <body> <input type="button" value="提交" onclick="getMsg()"> </body> </html>
标签:返回 function pre val 信息 lan 输入 blog tle
原文地址:http://www.cnblogs.com/wangyihong/p/6658265.html