1.C#里调用控件里面网页的js函数
[System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class Form1 : Form { public Form1() { InitializeComponent(); System.IO.FileInfo file = new System.IO.FileInfo("test.html"); this.webBrowser1.Url = new Uri(file.FullName); // WebBrowser控件显示的网页路径 this.webBrowser1.ObjectForScripting =this;// 将当前类设置为可由脚本访问 } //提供给JavaScript调用的方法 public void MyMessageBox(string message) { MessageBox.Show(message); } private void button1_Click_1(object sender, EventArgs e) { //调用JavaScript的messageBox方法,并传入参数 object[] objects = new object[1]; objects[0] = “C#访问JavaScript脚本"; this.webBrowser1.Document.InvokeScript("messageBox", objects); } }
test.html内容比较简单:
<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>