请问window.open()的完整设置方法??
window.open([URL], [窗口名称], [参数字符串])
window.open('http://www.imooc.com','_blank','width=300,height=200,menubar=no,toolbar=no, status=no,scrollbars=yes')
var stylevalue='width=300,height=200,menubar=no,toolbar=no, status=no,scrollbars=yes';
window.open('http://www.imooc.com','_blank',stylevalue)