Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道这里发生了什么?我编写了这段代码来调用 php 文件来生成图像,然后将其显示在屏幕上。不知何故,这在 Mozilla 和 Chrome 中运行良好,但在 IE 中却不行。有人知道我的代码出了什么问题吗?
var src = $.ajax({ url: "em_captcha.php", async: false }).responseText; $("#imgCaptcha").html(src);
如果你尝试:
$.ajax({ url : "em_captcha.php", async : false, success : function(src){ $("#imgCaptcha").html(src); } });
导致此问题的缓存,我已通过将以下代码添加到 ajax 中来解决此问题:
缓存:假,