Set IE = CreateObject ( " InternetExplorer.Application " )
ie.navigate( " http://slist.cnblogs.com/ " )
ie.visible = 1
Set IE = Nothing
方法2.Jscript
html += " 运行窗口 " ;
html += " " ;
html += " " ;
ie = new ActiveXObject( " InternetExplorer.Application " );
ie.left = 50 ;
ie.top = 50 ;
ie.height = 510 ;
ie.width = 470 ;
ie.menubar = 0 ;
ie.toolbar = 0 ;
ie.navigate( " http://slist.cnblogs.com/ " );
ie.visible = 1 ;
方法3.bat