JavaScript一些函数

时间:2024-08-03 10:33:56

1.prompt()函数:有两个参数,一个是显示用户输入框上面的标签,另一个是输入框的初始值。用来接收用户输入的值,然后把它返回到代码中;

例如:

 <doctype html>
<html>
<head>
<title>Tset</title>
</head>
<body>
<script type="text/javascript">
var docElement =prompt("please enter your name","text");
alert(docElement);
</script>
</body>
</html>

Prompt函数

谷歌浏览器中运行的效果图:

JavaScript一些函数

2.Prompt函数返回的是字符串类型:

 <doctype html>
<html>
<head>
<title>Tset</title>
</head>
<body>
<script type="text/javascript">
var sum=+;
document.write("the total num is:",sum);
</script>
</body>
</html>

1+2

效果图:

JavaScript一些函数

使用Promrpt函数做上面的操作:

 <doctype html>
<html>
<meta charset="utf-8"/>
<head>
<title>Tset</title>
</head>
<body>
<script type="text/javascript">
var num1=prompt("请输入一个数字")
var sum=+num1;
document.write("the total num is:",sum);
</script>
</body>
</html>

prompt函数计算,返回值为字符串类型

效果图:

JavaScript一些函数

JavaScript一些函数

3.typeof运算符返回传递给它的参数的数据类型,因此我们可以使用它来判断js正在处理哪种数据类型,我们来验证一下prompt返回的是什么数据类型。

 <doctype html>
<html>
<meta charset="utf-8"/>
<head>
<title>Tset</title>
</head>
<body>
<script type="text/javascript">
var num1=prompt("请输入一个数字") document.write(typeof(num1));
</script>
</body>
</html>

typeof验证一下,prompt函数返回的时候什么类型的数据

JavaScript一些函数