Jquery / JS:将动态图像存储在变量中,然后在另一个页面中显示
我想制作一个简单的脚本,将一个动态图像(随机)存储在变量中,然后在另一个页面中显示该图像(像以前一样)。
这是在第一页显示图像的源代码(我需要存储的位置):
<img alt="CaptchaA" style="display:block;" src="image_gen.php?rnd=8900yh0484" id="captchaB" name="captchaB" />
可以制作该脚本/函数吗?
提前致谢。
亲切的问候。
卢卡
i would like make a simple script that store one dynamic image (Random) in a variable and then show that in another page (Like before).
This is the source code that show the image in the 1st page (Where i need to store):
<img alt="CaptchaA" style="display:block;" src="image_gen.php?rnd=8900yh0484" id="captchaB" name="captchaB" />
Is possible to make that script/function?
Thanks in advance.
Kind regards.
Luca
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个页面都是其中运行的任何 JavaScript 的全新重启,因此您拥有的任何数据都需要存储在外部。
如果您想直接从一个页面传递到下一个页面,那么对 URL 中的值进行编码可能是最简单的方法。
否则,您正在查看 cookie(支持良好但很小)或 HTML 5 离线存储之类的东西。然而,这些可能会引入竞争条件(如果用户在给定时刻在多个选项卡中查看网站)。
Each page is a fresh restart of any JavaScript that runs in it, so any data you have would need to be stored externally.
If you want to pass directly from one page to the next, then encoding the value in the URL would probably be the easiest method.
Otherwise you are looking at cookies (well supported but small) or things like HTML 5 Offline Storage. These, however, risk introducing race conditions (should the user be viewing the site in more then a single tab at a given moment).