zoukankan      html  css  js  c++  java
  • 用vbs、js 实现访问指定页面

    在计划任务中添加Run.vbs 或 Run.js

    Run.vbs

    ' Create an instance of IE
    Dim IE
    Set IE = CreateObject("InternetExplorer.Application")
     
    'Run your URL
    ie.navigate("http://spring.cnblogs.com/")
    ie.visible
    =1
    'Clean up
    Set IE = Nothing 



    Run.js

    // Create the HTML message to display.
    var html = "";
        html 
    += "<html><head><title>运行窗口</title></head><body>";
            html 
    += "<font face=verdana></font>";
            html 
    += "</body></html>";

    // Create Internet Explorer Object
    ie = new ActiveXObject("InternetExplorer.Application");
    // Define how the window should look
    ie.left       = 50;
    ie.top        
    = 50;
    ie.height     
    = 510;
    ie.width      
    = 470;
    ie.menubar    
    = 0;
    ie.toolbar    
    = 0;
    // Set the browser to a blank page
    ie.navigate("http://spring.cnblogs.com/");
    // Show the browser
    ie.visible=1;
    // Open a stream and write data.
       ie.document.open;
       ie.document.write( html );
       ie.document.close; 

  • 相关阅读:
    LeetCode:33. Search in Rotated Sorted Array
    重拾 ACM-HDU 2000-2009
    hdu 1022 数据结构 stack模拟
    画椭圆
    声控灯
    VC++调用R语言
    Setup Factory打包时注册com dll
    折腾树莓派的一些总结
    老调重弹
    制作cpprefernce.chm
  • 原文地址:https://www.cnblogs.com/Spring/p/188804.html
Copyright © 2011-2022 走看看