var cur_vcode_sta = 0;
function form_vcode_refresh() {
if (0 == cur_vcode_sta) {
$("#vcodeImg").attr('src','__CONTROLLER__/./vc.png');
cur_vcode_sta = 1;
} else {
$("#vcodeImg").attr('src','__CONTROLLER__/vc.png');
cur_vcode_sta = 0;
}
} 最佳答案