js里面innerhtml问题
varshow1=document.getElementById("show1").innerHTML;varshow2=document.getElementById(...
var show1=document.getElementById("show1").innerHTML;
var show2=document.getElementById("show2").innerHTML;
var show3=document.getElementById("show3").innerHTML;
var allimg='<img src="images/libiao_07.jpg" width="16" height="16" />';
if(show1==" " && show2==allimg && show3==allimg ){
alert("ok");
}
哪里不对呢 怎么明明show1 的 innerHTML 为
show2跟show3为 <img src="images/libiao_07.jpg" width="16" height="16" />
怎么就是弹不出对话框呢?
分别为输出的值
已经找出原因 “/”这个符号 展开
var show2=document.getElementById("show2").innerHTML;
var show3=document.getElementById("show3").innerHTML;
var allimg='<img src="images/libiao_07.jpg" width="16" height="16" />';
if(show1==" " && show2==allimg && show3==allimg ){
alert("ok");
}
哪里不对呢 怎么明明show1 的 innerHTML 为
show2跟show3为 <img src="images/libiao_07.jpg" width="16" height="16" />
怎么就是弹不出对话框呢?
分别为输出的值
已经找出原因 “/”这个符号 展开
2个回答
展开全部
var show1=document.getElementById("show1").innerHTML;
var show2=document.getElementById("show2").innerHTML;
var show3=document.getElementById("show3").innerHTML;
var allimg='<img src="images/libiao_07.jpg" width="16" height="16" />';
alert(show2);
alert(allimg);
alert(show2==allimg);
if(show1==" " && show2==allimg && show3==allimg ){
alert("ok");
}
可以看到 show2跟show3的值并不是等于<img src="images/libiao_07.jpg" width="16" height="16" />的
var show2=document.getElementById("show2").innerHTML;
var show3=document.getElementById("show3").innerHTML;
var allimg='<img src="images/libiao_07.jpg" width="16" height="16" />';
alert(show2);
alert(allimg);
alert(show2==allimg);
if(show1==" " && show2==allimg && show3==allimg ){
alert("ok");
}
可以看到 show2跟show3的值并不是等于<img src="images/libiao_07.jpg" width="16" height="16" />的
更多追问追答
追问
我设置的值 是一样的
追答
alert(show2);
alert(allimg);
alert(show2==allimg);
把这些加到你的js里 看看输出的是不是一样的
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询