香港服务器的javascript的系统函数有:
1.parseInt函数
javascript中parseInt函数的作用是用于解析一个字符串,并返回一个整数。
parseInt函数语法:
parseInt(变量名)
parseInt函数使用方法:
parseInt(“10”); //返回 10
parseInt(“19”,10); //返回 19 (10+9)
parseInt(“11”,2); //返回 3 (2+1)
2.parseFloat函数
javascript中parseFloat函数的作用是用于解析一个字符串,并返回一个浮点数。
parseFloat函数语法:
parseFloat(变量名)
parseFloat函数使用方法:
document.write(parseFloat(“10”); //返回10
document.write(parseFloat(“10.33”); //返回10.33
document.write(parseFloat(“34 45 66”); //返回34
3.prompt函数
javascript中prompt函数的作用是用于显示一个提示用户进行输入的对话框。
prompt函数语法:
prompt()
prompt函数使用方法:
var person = prompt(“请输入姓名“);
if (person != null) {
document.getElementById(“demo”).innerHTML = “你好 ” + person ;
}
4.isNaN函数
javascript中isNaN函数的作用是用于检查一个参数是否为非数字值。
isNaN函数语法:
isNaN(检测值)
isNaN函数使用方法:
document.write(isNaN(5-2)); //返回false
document.write(isNaN(0)); //返回false
document.write(isNaN(“Hello”)); //返回true
5.eval函数
javascript中eval函数的作用是用于计算一个字符串,并将其作为脚本代码执行。
eval函数语法:
eval(string)
eval函数使用方法:
eval(“x=10;y=20;document.write(x*y)”)//返回200
document.write(eval(“2+2”))//返回4
var x=10
document.write(eval(x+17))//返回27
6.escape函数
javascript中escape函数的作用是用于对字符串进行编码。
escape函数语法:
escape(string)
escape函数使用方法:
document.write(escape(“Hello world!”))
document.write(escape(“?!=()#%&”))