【发布时间】:2012-03-28 23:19:06
【问题描述】:
您好,我正在通过 iframe 上传文件。
HTML:
<from action="upload.php" target="iframe">
<input type="file" name="file" />
<input type="submit" />
</form>
<iframe name="iframe" src="javascript:false;"></iframe>
现在我想在上传时中止上传。所以我想停止 iframe 加载。
我的尝试
$("iframe").attr("src", "javascript:false;");
$("iframe").remove();
if (typeof(window.frames[0].stop) === "function")
window.frames[0].stop();
else
window.frames[0].document.execCommand("Stop");
所有函数都不会抛出错误,但一段时间后,我取消的文件会显示在上传文件夹中。所以这很奇怪。
有什么建议吗?
【问题讨论】:
标签: javascript jquery iframe upload