不能最为IF判断条件的属性
Posted yangwenlong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不能最为IF判断条件的属性相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<script>
window.onload = function (){
var oImg = document.getElementById(‘img1‘);
oImg.onclick = function (){
// alert( oImg.src );
// img/1.jpg
// file:///C:/Users/Administrator/Desktop/11-4-JS1/img/1.jpg
// if( oImg.src == ‘img/1.jpg‘ ){
// 不能做为判断条件:
// 1、所有的相对路径地址
/*
img src
href
2、颜色值:color: red #f00 rgb() rgba()
*/
if( oImg.src == ‘file:///C:/Users/Administrator/Desktop/11-4-JS1/img/1.jpg‘ ){
oImg.src = ‘img/2.jpg‘;
}
};
};
</script>
</head>
<body>
<img id="img1" src="img/1.jpg" width="400" />
</body>
</html>
但是可以制造条件
var oOn=true;
获取属性
var oOn=document.getAttribute("属性名字")
以上是关于不能最为IF判断条件的属性的主要内容,如果未能解决你的问题,请参考以下文章