欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JavaScript思维导图——Day 6

程序员文章站 2022-04-06 12:28:01
...
<!DOCTYPE html>
<html>
<head>
	<title></title>
	<!-- <style type="text/css">
		*{
			margin: 0;
			padding: 0;
		}

		ul{
			list-style: none;
		}

		li:nth-of-type(2n) {
			background-color: red;

		}
		li:nth-of-type(2n+1) {
			background-color: green;
		}
	</style> -->
</head>
<body>
	<script type="text/javascript">
		
		// function a() {

		// 	function b() {
		// 		var bbb = 234;
		// 		document.write(aaa);
		// 	}

		// 	var aaa = 123;
		// 	return b;
		// }

		// var glob = 100;
		// var demo = a();
		// demo(); 123

		// var demo;
		// function test() {
		// 	var abc = 100;
		// 	function a() {
		// 		console.log(abc);
		// 	}
		// 	demo = a;
		// }
		// test();
		// demo(); 100

		
		// function add() {
		// 	var count = 0;
		// 	function b() {
		// 		console.log(++count);
		// 	}
		// 	return b;
		// }
		// var demo = add();
		// demo();
		// demo();

		// function test() {
		// 	var food = "apple";
		// 	var obj = {
		// 		eatFood : function () {
		// 			if (food != "") {
		// 				console.log("I am eating " + food);
		// 				food = "";
		// 			}else{
		// 				console.log("There is nothing ! empty !");
		// 			}
		// 		},
		// 		pushFood : function (myFood) {
		// 			food = myFood;
		// 		} // 公用一个作用域 AO活动域 像缓存
		// 	}
		// 	return obj;
		// }

		// var person = test();

		// person.eatFood();
		// person.eatFood();
		// person.pushFood('bannaa');
		// person.eatFood();

		// function test() {
		// 	var arr = [];
		// 	for(var i = 0; i < 10; i++){
		// 		(function (i) {
		// 			arr[i] = function () {
		// 				document.write(i + " ");
		// 			}
		// 		}(i));

		// 	}
		// 	return arr;
		// }

		// var myArr = test();
		// for(var j = 0;j < 10;j++){
		// 	myArr[j]();
		// }
        
        // function test() {
        // 	var liCollection = document.getElementsByTagName('li');
	       //  for(var i = 0; i < liCollection.length; i++){
	       //  	(function (j) {
	       //  		liCollection.onclick = function () {
	       //  			console.log(j);
	       //  		}
	       //  	}(i))
	       //  }
	       // }
        // test();


        // a = 100;
        // function demo(e) {
        // 	function e() {}
        // 	arguments[0] = 2;
        // 	document.write(e);
        // 	if (a) {
        // 		var b =  123;
        // 		function c() {
        			
        // 		}
        // 	}
        // 	var c;
        // 	a = 10;
        // 	var a;
        // 	document.write(b);
        // 	f = 123;
        // 	document.write(c);
        // 	document.write(a);
        // }
        // var a;
        // demo(1);
        // document.write(a);
        // document.write(f);

        // AO {
        // 	e : 2;
        // 	b : undefined;
        // 	c : undefined;
        // 	a : 10;
        // }
        // GO {
        // 	f : 123;
        // 	a : 100;

        // }

        // function retByteslen(target) {
        // 	var count,
        // 	    len,
        // 	    count = len = target.length;
        // 	for(var i = 0;i < len; i++) {
        // 		if (target.charCodeAt(i) > 255) {
        // 			count++;
        // 		}
        // 	}
        // 	console.log(count);
        // }

        //var a = (2,3);//逗号运算符吧后面的内容返回回去

        // var f = (function f() {
        // 	return "1";
        // },
        // function g() {
        // 	return 2;
        // })();
        // typeof(f); //number

        var x = 1;
        if (function f() {}) {
        	x += typeof f;
        }
        console.log(x);

	</script>
	<!-- <ul>
		<li>a</li>
		<li>a</li>
		<li>a</li>
		<li>a</li>
	</ul> -->
</body>
</html>
相关标签: JavaScript