js 文件下载请求两种方式

1.创建form表单提交

 jQuery('
' + '
') .appendTo('body').submit().remove();

2.新窗口打开URL

 var window=window.open(url);

注:

 //当前窗口window,可进行操作
 window.document.body.innerHTML = html;
 window.document.forms[0].submit();

你可能感兴趣的:(js,javascript,jquery,html,html5,前端)