为了账号安全,请及时绑定邮箱和手机立即绑定

beat.src=="img/gray.png" 这一句过不去

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>星星之火可以燎原</title>
</head>
<body>
	<img id="beat" src="img/gray.png" onclick="light()" />
</body>
<script>
	function light(){
		var beat=document.getElementById("beat");
		if(beat.src=="img/gray.png"){
			beat.src="img/yellow.png";
		}else{alert(44);
			beat.src="img/gray.png";
		}
	}
</script>
</html>


正在回答

3 回答

访问Element的属性可以用 getAttribute方法,设置Element属性可以用setAttribute方法,具体用法

Element.getAttribute("attrName");
Element.setAttribute("attrName","value");


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

beat.src=="img/gray.png" 这一句过不去

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信