调用在C#中的WebBrowser控件的JavaScript函数(Calling a Javascr

2019-07-18 07:33发布

我正在使用C#WebBrowser控件加载一个网页,需要调用一个JavaScript函数返回一个字符串值。 我有一个解决方案中使用的InvokeScript方法,我尝试了很多,但一切都已经失败。

Answer 1:

你可以指定哪些失败了吗?

我下面的示例包含一个web浏览器和一个按钮的形式。

所谓Ÿ到底该对象具有了句“我做到了!”。 因此,与我它的工作原理。

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");
        }
    }


Answer 2:

您可以发送参数给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"});
    }
}


文章来源: Calling a Javascript function in the C# webBrowser control