var form = document.createElement('form');
form.action = 'http://google.com';
form.target = '_blank';
form.method = 'get';
document.body.appendChild(form);
form.submit();
峰扬
var form = document.createElement('form');
form.action = 'http://google.com';
form.target = '_blank';
form.method = 'get';
document.body.appendChild(form);
form.submit();