web-dev-qa-db-ja.com

C#webBrowserコントロールでのJavaScript関数の呼び出し

C#でwebBrowserコントロールを使用してWebページを読み込み、文字列値を返すJavaScript関数を呼び出す必要があります。 InvokeScriptメソッドを使用するためのソリューションを取得し、何度も試したが、すべてが失敗した。

26
raki

何が失敗したかを特定できますか?

以下のサンプルは、WebBrowserとButtonを含むフォームで構成されています。

最後にyと呼ばれるオブジェクトには、「i did it!」という文が含まれています。だから私と一緒にそれは動作します。

public partial class Form1 : Form
    {

        public Form1()
        {
            InitializeComponent();

            webBrowser1.DocumentText = @"<html><head>
                <script type='text/javascript'>
                    function doIt() {
                        alert('hello again');
                        return 'i did it!';
                    }
                </script>
                </head><body>hello!</body></html>";

        }

        private void button1_Click(object sender, EventArgs e)
        {
            object y = webBrowser1.Document.InvokeScript("doIt");
        }
    }
34
Gidon

あなたはjs関数に引数を送ることができます:

// don't forget this:
[PermissionSet(SecurityAction.Demand, Name = "FullTrust")]
[ComVisible(true)]
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();

        webBrowser1.DocumentText = @"<html><head>
            <script type='text/javascript'>
                function doIt(myArg, arg2, arg3) {
                    alert('hello again ' + myArg);
                    return 'yes '+arg2+' - you did it! thanks to ' +myArg+ ' & ' +arg3;
                }
            </script>
            </head><body>hello!</body></html>";

    }

    private void button1_Click(object sender, EventArgs e)
    {
        // get the retrieved object from js into object y
        object y = webBrowser1.Document.InvokeScript("doIt", new string[] { "Snir", "Raki", "Gidon"});
    }
}
6
snir