-
Notifications
You must be signed in to change notification settings - Fork 0
/
4月6号.html
79 lines (74 loc) · 2.91 KB
/
4月6号.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>索引匹配项</title>
<script>
// var text ="cat,bat,sat,fat";
// result=text.replace(/(.at)/g,"word($1)");
// alert(result)
// var colorText="red,blue,green,yellow";
// var colors1=colorText.split(",");
// var colors2=colorText.split(",",2)
// alert(colors1);
// alert(colors2)
// var stringValue="yellow";
//// alert(stringValue.localeCompare("brick"));
//// alert(stringValue.localeCompare("yellow"));
//// alert(stringValue.localeCompare("zoo"));
//function determineOrder(value){
// var result =stringValue.localeCompare(value);
// if(result<0){
// alert("The string 'yello' comes before the string'"+value+"'.")
// }else if(result>0){
// alert("The string 'yellow' comes alert the string'"+value+"'.")
// }else{
// alert("The string 'yellow' is equal to the string'"+value+"'.")
// }
//}
//determineOrder("brick");
//determineOrder("yellow")
//determineOrder("zoo")
//var msg="hello world";
//eval("alert(msg)");
//eval("function sayHi(){ alert('h1');}")
//
// sayHi()
// eval("var msg='hello world';");
// alert(msg)
// "use strict";
// eval("h1") 用于解释string的强大方法
//能够解释代码字符串的能力非常强大,但也非常危险。因此在使用eval()时 必须谨慎,特别是在用它执行用户输入的数据的情况下。否则,可能会有恶意用户输入威胁你的站点或者应用程序安全的代码(即代码注入)
window
var color= "red";
// function sayColor(){
// alert(window.color);
// }
// window.sayColor()
var gobal= function(){
return this
}();
//以上代码创建了一个立即调用的函数表达式,返回this的值。 在没有给定函数明确this值的情况下,this值等于global对象。而像这样通过简单地返回this值来取得Global对象,在任何执行环境下都是可行的。
var max =Math.max(3,54,32,16);
alert(max);
var min=Math.min(3,54,32,16);
var values=[1,2,3,4,5,6,7,8,9];
var max =Math.max.apply(Math.values)
// 这个技巧的关键是把Math 对象作为apply()的第一个参数,从而正确地设置this值。然后可以将任何数组作为第二个参数。
Math.ceil()//向上舍入;
Math.floor()//向下舍入
Math.round()//标准舍入
// 里面传你需要舍入的数字就好了。
var num =Math.floor(Math.random()*10+1)//1-10的数;
var num=Math.floor(Math.random()*9+2)//从2-10中随机取数
function selectFrom(lowerValue,upperValue){
var choices=upperValue-lowerValue+1;
return Math.floor(Math.random()*choices+lowerValue);
}
var num =selectFrom(2,10);
alert(num)
</script>
</head>
<body>
</body>
</html>