日期:2014-05-16  浏览次数:20418 次

ie9下验证码更新不起作用
function changRandCode(){
alert($("#randCodeImg").attr("src"));
$("#randCodeImg").attr("src","/examonline/commons/kaptcha.html");
}
<img id="randCodeImg" src="/examonline/commons/kaptcha.html" onclick="changRandCode()" style="cursor:pointer;" title="看不清,换一张" alt="看不清,换一张"/>

IE9下
第一句执行成功
第二句执行失败,没有效果

IE6,谷歌浏览器执行没有问题。

请问是怎么回事,

------解决方案--------------------
src没有变化?

建议加random query路径

function changRandCode(){

$("#randCodeImg").attr("src","/examonline/commons/kaptcha.html?"+Math.raondom());
}