时间:2020-11-11 11:47:08 | 栏目:.NET代码 | 点击:次
以验证码的刷新为例
</form>
在html文件的<head></head>之间引入外部文件
//外部文件code.js设置局部刷新函数
function code () {
var code = document.getElementByIdx_x_x('code');
code.onclick = function () {
this.src='code.php?tm='+Math.random();
};
};
<span id="update">点击刷新验证码</span>
</form>
方法二:引入外部文件
在html文件的<head></head>之间引入外部文件
//外部文件code.js设置局部刷新函数
function code () {
var code = document.getElementByIdx_x_x('code');
var update = document.getElementByIdx_x_x('update');
update.onclick = function () {
code.src='code.php?tm='+Math.random();
};
};