1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. c#和javascript函數相互調用示例

        時間:2024-10-16 03:28:05 JavaScript 我要投稿
        • 相關推薦

        c#和javascript函數相互調用示例

          在設置過webBrowser控件的ObjectForScripting屬性后,還需要設置應用程序對com可見,不然會拋出一個異常(ObjectForScripting 的類必須對 COM 可見。請確認該對象是公共的,或考慮向您的類添加 ComVisible 屬性。),可做如下設置:

          [System.Runtime.InteropServices.ComVisible(true)]

          例如:

          復制代碼 代碼如下:

          [ComVisible(true)]

          public partial class Form1 : Form

          {

          public Form1()

          {

          InitializeComponent();

          }

          protected override void OnLoad(EventArgs e)

          {

          webBrowser1.ObjectForScripting = this;

          webBrowser1.Navigate("");

          base.OnLoad(e);

          }

          }

          如果要和JS通訊,使用webBrowser的Document對象的InvokeScript方法即可。

          該方法簽名如下:

          InvokeScript(String spriteName,object[] args);

          例如:

          復制代碼 代碼如下:

          //提供給c#調用的方法

          function test(n,s){

          alert(n+"/"+s);

          } //調用C#的方法

          function callCSharp(){ //這里可以看到window.external被設置成了什么

          alert(window.external);

          window.external.Test("hello",15);

          }

          call c#

          調用:web.Document.InvokeScript("test", new Object[] {1,"hello"});

        【c#和javascript函數相互調用示例】相關文章:

        Javascript函數的定義和用法分析08-15

        有關javascript實現的多個層切換效果通用函數示例10-07

        淺析jQuery 遍歷函數javascript08-06

        ASP.NET Page函數調用解析10-01

        JavaScript中push(),join() 函數實例詳解09-05

        最常用的20個javascript方法函數09-10

        JavaScript日期時間格式化函數08-29

        JavaScript中常見的字符串操作函數及用法07-24

        JavaScript基于正則表達式數字判斷函數06-14

        C# AutoResetEvent的使用10-29

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>