分享经验 版主:论坛审计组
解决IE版本,载入页面验证码不刷新的问题
类型:迅睿CMS 更新时间:2025-09-23 15:22:52

IE11,解决载入时验证码不刷新:dayrui\Fcms\Core\Helper.php

找到function dr_code($width, $height, $url = '') 修改为

function dr_code($width, $height, $url = '') {

    $url = dr_web_prefix('index.php?s=api&c=api&m=captcha&width='.$width.'&height='.$height.'&ran='.mt_rand(100000, 999999));

    return '<img align="absmiddle" style="cursor:pointer;" onclick="this.src=\''.$url.'&t=\'+Math.random();" src="'.$url.'" />';

}