function selectDownload(){
var s = '';
$('input[name="checkbox"]:checked').each(function() {
s += $(this).val() + ',';
});
$.ajax({
type:"post",
url:"/Docscontent/SelectDownload",
data:{'ids':s},
dataType:"json",
success:function(json){
$('#ifr').attr('src',json);
},
});
}
<iframe src="" style="display:none;" id="ifr"></iframe>
就是Ajax的返回的url赋给iframe 的src