jQuery File Download v1.4.0 一个ajax方式下载插件

http://johnculviner.com/jquery-file-download-v1-4-0-released-with-promise-support/
下载: https://github.com/johnculviner/jquery.fileDownload
Demo: http://jqueryfiledownload.apphb.com/

源码的:checkFileDownloadComplete方法,
if (document.cookie.indexOf(settings.cookieName + “=” + settings.cookieValue) != -1)
要改成
if (document.cookie==null|| $.trim(document.cookie)==””||document.cookie.indexOf(settings.cookieName + “=” + settings.cookieValue) != -1),
否在无法调用success的回调函数.

例子1:

例子2:

例子3: