gpt4 book ai didi

jquery - 如何用jQuery刷新的src?

转载 作者:行者123 更新时间:2023-12-03 21:32:11 25 4
gpt4 key购买 nike

<img src="test.php" />

其中 test.php 生成带有随机数的图像。

尝试过:

$('#verifyimage').click(function() {
$(this).attr('src',$(this).attr('src'));
});

但是这不起作用。

最佳答案

您可以通过在末尾附加随机字符串来强制刷新,从而更改 URL:

$('#verifyimage').click(function() {
$(this).attr('src', $(this).attr('src')+'?'+Math.random());
});

关于jquery - 如何用jQuery刷新<img/>的src?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1997901/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com