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.
我有一个代码
success: function() { Ext.Msg.alert('Success', 'Your photo has been uploaded.'); img.setSrc('image.php'); }
在 image.php echo '/1.jpg';但它不起作用。请帮忙。
echo '/1.jpg';
图像的来源应该是图像,而不是包含图像 URL 的一段文本。
您可以更改 PHP 脚本以发出Location重定向到图像的标头,但您最好在响应(我认为是)您的 Ajax 请求中返回 URL 并使用它而不是硬编码字符串。
Location