验证码单击刷新问题
//生成验证码
<?php
public function showVerify(){
$data = array(
'fontSize' => 30,
'length' => 3,
'useNoise' => true,
'useCurve' => false,
);
$Verify = new \Think\Verify($data);
$Verify->entry();
}
在另一处调用showVerify()
<img src="__CONTROLLER__/showVerify" width="60" onclick="if(this.src!=this.src+'?'+Math.random) this.src=this.src+'?'+Math.random()"/>
请问:
if(this.src!=this.src+'?'+Math.random) this.src=this.src+'?'+Math.random()
这句javascript语法请讲解一下,谢谢。
wann.
9 years, 9 months ago