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.
我正在测试一个图像托管脚本,但是有一个问题,当我将图像拖放到我的网页时,它正在上传,但是当我点击 F5/刷新按钮时,未完成的图像托管到我的文件夹中,我如何检查是否使用 php 破坏图像或向 php 文件发送 jquery (XHR) 请求以停止上传?
$("img") .error(function(){ alert('error loading image'); }) .attr("src", "missing.png");//fallback image
使用 php,您实际上可以将 filesize() 保存在数据库中(在上传期间)并使用文件夹中的文件大小检查它(在您显示之前)将提供很大的帮助。