3
$.ajax({
                    type: "POST",
                    url: "processform.php",
                    dataType: "json",
                    data: {name: name, email: email, city: city, country: country, day: day, month: month, year: year}
                    }).done(function(msg){

                        if(msg.success == 1){
                            $("#success_msg").append('<p>'+msg.message+'</p>');
                            window.location.href = './music/song.mp3';
                        }

                    });

上面的代码只是加载了一个带有音乐播放器的新页面。我希望它像文件一样下载。

4

4 回答 4

4

您可以通过 PHP 执行此操作,创建一个带有正确标题的 PHP 文件,然后重定向到该页面,它将强制浏览器下载该文件。

<?php
header('Content-disposition: attachment; filename=song.mp3');
header('Content-type: audio/mpeg3');
readfile('song.mp3');
?>
于 2012-04-15T13:23:40.930 回答
3

尝试这样做:

header("Content-Disposition: attachment; filename=somefile.mp3;");
于 2012-04-15T13:22:54.517 回答
2

如果您在 ajax 调用后放弃自动下载,您可以这样做。浏览器将以自己的方式处理这种情况。

 $.ajax({
                type: "POST",
                url: "processform.php",
                dataType: "json",
                data: {name: name, email: email, city: city, country: country, day: day, month: month, year: year}
                }).done(function(msg){

                    if(msg.success == 1){
                        $("#success_msg").append('<p>'+msg.message+'</p>');
                       // window.location.href = './music/song.mp3';
                        $('<a/>', {target:'_blank', href:'./music/song.mp3'}).appendTo($("#success_msg")).html('Click To Download <Filename>');
                    }

                });
于 2012-04-15T13:43:35.513 回答
0

这取决于浏览器。如果您的浏览器有媒体插件,它可能会直接在浏览器中打开媒体文件,而不是提供下载对话框。

于 2012-04-15T13:22:24.470 回答