这是存储在字符串资源中的 HTML:
<!DOCTYPE html>
<html>
<head></head>
<body>
<script>
(function(){
window.external.hello()
})()
</script>
</body>
</html>
这是Form1.cs的内容:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace JSIE
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("about:blank");
webBrowser1.Document.Write(String.Empty);
webBrowser1.Document.Write(Properties.Resources.DDocument);
webBrowser1.ObjectForScripting = new JSCallbacks();
}
}
}
这是 JSCallbacks.cs:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Permissions;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace JSIE
{
[PermissionSet(SecurityAction.Demand, Name = "FullTrust")]
[ComVisible(true)]
public class JSCallbacks
{
public void hello() {
MessageBox.Show("Hello, world!");
}
}
}
当我运行它时,它无法访问hello()
JavaScriptwindow.external
对象中的方法,并给我一个脚本错误消息框。我尝试使用this
as ObjectForScripting
,但它也不起作用。