function reloadCd()
{
    
var timenow = new Date().getTime();
    url
="/check_code.php";
    id 
= url.indexOf('?');
    
if(id >= 0  ){
        
if(id == (url.length-1))
            url 
= url +"t="+ timenow;
        
else 
            url 
= url +"&t="+ timenow;
    }
else{
        url 
= url +"?t="+ timenow;
    }
    document
.getElementById("checkCode").src = url;
}

相关文章:

  • 2022-12-23
  • 2021-04-29
  • 2021-10-18
  • 2021-04-05
  • 2021-08-13
  • 2021-12-13
  • 2022-12-23
  • 2021-11-29
猜你喜欢
  • 2022-12-23
  • 2022-01-01
  • 2021-06-20
  • 2021-10-30
  • 2021-07-24
  • 2022-12-23
相关资源
相似解决方案