2

这是存储在字符串资源中的 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对象中的方法,并给我一个脚本错误消息框。我尝试使用thisas ObjectForScripting,但它也不起作用。

4

1 回答 1

2

明白了:在执行页面之前,您必须使用 DocumentText 属性来加载 HTML 。

于 2012-10-30T23:57:20.513 回答