码迷,mamicode.com
首页 > Web开发 > 详细

js中运算符

时间:2017-01-14 22:06:04      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:his   elements   ext   javascrip   ott   asc   content   nload   mat   

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>

<script>
/*
var i = 0;
i++;
if( i === 5 ){
	i = 0;
}
i%=5;

a = a + b;
a += b;

‘200‘==200、!=
‘200‘===200、!==

*/

var s = 3605;			// 秒
alert( Math.floor(s/60) + ‘分‘ + s%60 + ‘秒‘  );

window.onload = function (){
	var aLi = document.getElementsByTagName(‘li‘);
	var arr = [ ‘red‘, ‘yellow‘ ];
	var str = ‘‘;
	
	for( var i=0; i<aLi.length; i++ ){
		
		aLi[i].index = i;
		
		aLi[i].style.background = arr[i%arr.length];
		
		aLi[i].onmouseover = function (){
			str = this.style.background;						// 先存颜色
			this.style.background = ‘gray‘;
		};
		aLi[i].onmouseout = function (){
			// this.style.background = arr[this.index%arr.length];
			this.style.background = str;
		};
	}
};
</script>
<style>
li { height:24px; margin-bottom:3px; list-style:none; }
</style>
</head>

<body>

<ul id="ul1">
	<li></li>
	<li></li>
	<li></li>
	<li></li>
	<li></li>
	<li></li>
	<li></li>
	<li></li>
	<li></li>
	<li></li>
	<li></li>
	<li></li>
	<li></li>
</ul>

</body>
</html>

  

js中运算符

标签:his   elements   ext   javascrip   ott   asc   content   nload   mat   

原文地址:http://www.cnblogs.com/lili-work/p/6286116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!