方法:
用window.open弹出一个窗口,通过第二个参数设置它的name,
让form的target等于这个name就可以了,这样就提交到这个窗口中了
document.formfind.action="drawingreport.jsp";
window.open ("", 'win', 'width=720px,height=600px,resizable=yes,top=50px,left=200px,toolbar=no, menubar=no, location=no, status=no');
document.formfind.target="win";
document.formfind.submit();