JavaScript與C# Windows應用程式互動方法

來源:互聯網
上載者:User

一、建立網頁

<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<script language="javascript" type="text/javascript">
<!-- 提供給C#程式調用的方法 -->
function messageBox(message)
{
alert(message);
}
</script>
</head>

<body>
<!-- 調用C#方法 -->
<button onclick="window.external.MyMessageBox('javascript訪問C#代碼')" >
javascript訪問C#代碼</button>
</body>
</html>

二、建立Windows應用程式

1. 建立Windows應用程式項目

2. 在Form1表單中添加WebBrowser控制項

3. 在Form1類的上方添加

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

這是為了將該類設定為com可訪問。如果不進行該聲明將會出錯。出錯資訊如所示:

如:

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

public partial class Form1 : Form

4.初始化WebBrowser的Url與ObjectForScripting兩個屬性。

Url屬性:WebBrowser控制項顯示的網頁路徑

ObjectForScripting屬性:該對象可由顯示在WebBrowser控制項中的網頁所包含的指令碼代碼訪問。

將Url屬性設定為需要進行操作的頁的URL路徑。

JavaScript通過window.external調用C#公開的方法。即由ObjectForScripting屬性設定的類的執行個體中所包含的公用方法。具體設定例子如下:

System.IO.FileInfo file = new System.IO.FileInfo("index.htm");

// WebBrowser控制項顯示的網頁路徑

webBrowser1.Url = new Uri(file.FullName);

// 將當前類設定為可由指令碼訪問

webBrowser1.ObjectForScripting = this;

5.C#調用JavaScript方法

通過WebBrowser類的Document屬性中的InvokeScript方法調用當前網頁的Javascript方法。如:

// 調用JavaScript的messageBox方法,並傳入參數

object[] objects = new object[1];

objects[0] = "C#訪問JavaScript指令碼";

webBrowser1.Document.InvokeScript("messageBox", objects);

完整代碼如下:

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

public partial class Form1 : Form

{

public Form1()

{

InitializeComponent();

System.IO.FileInfo file = new System.IO.FileInfo("index.htm");

// WebBrowser控制項顯示的網頁路徑

webBrowser1.Url = new Uri(file.FullName);

// 將當前類設定為可由指令碼訪問

webBrowser1.ObjectForScripting = this;

}

private void button1_Click(object sender, EventArgs e)

{

// 調用JavaScript的messageBox方法,並傳入參數

object[] objects = new object[1];

objects[0] = "C#訪問JavaScript指令碼";

webBrowser1.Document.InvokeScript("messageBox", objects);

}

// 提供給JavaScript調用的方法

public void MyMessageBox(string message)

{

MessageBox.Show(message);
}
}

Dnew.cn 註:原文:http://www.cnblogs.com/xds/archive/2007/03/02/661838.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.