1. 程式人生 > >JavaScript if判斷切換圖片

JavaScript if判斷切換圖片

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標題文件</title>

</head>

<body>

<img id="img1" src="img/2.jpg" width="200" />

<script>
var oImg = document.getElementById('img1');
var onOff = true;		// 布林值:true 1  false 0

oImg.onclick = function (){
	// if( oImg.src == 'img/2.jpg' ){
	// 有條件,就用現成的,如果沒有,創造條件也得做事
		
	if( onOff ){
		oImg.src = 'img/4.jpg';
		onOff = false;
	} else {
		oImg.src = 'img/2.jpg';
		onOff = true;
	}
};

</script>

</body>
</html>