一、 window.location="htpp://www.baidu.com/test.rar"; 二、 var $form = $('<form method="GET"></form>'); $form.attr('action', 'htpp://www.baidu.com/test.rar'); $form.appendTo($('body')); $form.submit(); 三、 window.open('htpp://www.baidu.com/test.rar', 'newwindow', 'height=0, width=0, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=n o, status=no'); Window.open()方法参数详解 四、 function down(){ var elemIF = document.createElement("iframe"); elemIF.src = 'htpp://www.baidu.com/test.rar'; elemIF.style.display = "none"; document.body.appendChild(elemIF); } 亲测第一种最佳