zoukankan      html  css  js  c++  java
  • C#中在AxWebBrowser控件注入JS脚本的方法

      /// <summary>
            /// 窗体加载
            /// </summary>
            private void JS_Load(object sender, EventArgs e)
            {
                this.axWebBrowser1.Navigate("www.baidu.com");
                this.axWebBrowser1.DocumentComplete += axWebBrowser1_DocumentComplete;
            }
            /// <summary>
            /// WebBrowser 加载完成后事件
            /// </summary>
            /// <param name="sender"></param>
            /// <param name="e"></param>
            void axWebBrowser1_DocumentComplete(object sender, AxSHDocVw.DWebBrowserEvents2_DocumentCompleteEvent e)
            {
                this.axWebBrowser1.DocumentComplete -= axWebBrowser1_DocumentComplete;
                string jsString = @"function T(){
                                            var ele = window.document.getElementById('kw');
                                            if (ele != null && ele != undefined) {
                                                ele.setAttribute('value', '测试JS脚本注入AxWebBrowser');
                                            }
                             }   T()";
                mshtml.IHTMLWindow2 win = ((mshtml.HTMLDocumentClass)this.axWebBrowser1.Document).parentWindow;
                win.execScript(jsString, "Javascript");
            }

      以上是以JS字符串的方法在AxWebBrowser控件注入JS脚本,不知道如何以外部JS文件注入,研究好久也没有研究出来,有没有哪位大侠知道,请指点指点。

  • 相关阅读:
    vim
    Windows Scripting Host
    html5的新特性
    如何设置网页的搜索关键字
    Css Rest 方法
    javascript绑定事件
    AJAX 跨域请求
    转载ajax
    jQuery的hover()方法(笔记)
    无缝滚动案例解析
  • 原文地址:https://www.cnblogs.com/niuww/p/3155963.html
Copyright © 2011-2022 走看看