1

我在我的代码中使用 webbrowser 元素来自动化一些东西。我正在这个网络浏览器中加载一个表单,其中包含几个单选按钮。我的目的只是选择一个单选按钮。但是,在 html 代码中,有一个 JS 代码可以根据所选单选按钮更改表单操作目标。所以如果我使用,

webBrowser1.Document.GetElementById("chicken").SetAttribute("checked", "checked");

它选择了我想要的单选按钮,但仅此而已。我的意思是它不会触发 JS 代码。在这个 JS 代码中,它也提交了页面,所以我上面的代码只选择了单选按钮并调用了相同的页面。我该如何解决这个问题?

表单标签如下:

<form id="choose_dept" method="POST" action="/place/">

JS代码是这样的:

<script type="text/javascript">
<!--
$("#choose_dept").change(function(){
  $("#choose_dept").attr('action', '/place/' + ('input[name=department]:checked').val()
   + '/' );
  this.submit();
});

-->

最后编辑:

        String sc = @"$(document).ready(function(){" +
        "$(\"input:radio[name=department]\").change(function() {" +
        "$(\"#choose_dept\").attr('action','place/'+$(this).val());" +
        "$(\"#choose_dept\").submit();" +
        "});" +
        "});";

        HtmlElement headElem = (HtmlElement)webBrowser1.Document.GetElementsByTagName("head")[0];
        HtmlElement scriptElem = (HtmlElement)webBrowser1.Document.CreateElement("script");
        IHTMLScriptElement elem = (IHTMLScriptElement)scriptElem.DomElement;
        elem.text = sc;
        headElem.AppendChild(scriptElem);

        webBrowser1.Document.GetElementById("chicken").SetAttribute("checked", "checked");
        webBrowser1.Document.InvokeScript("ready()");
4

2 回答 2

2

我认为在您的情况下,您的问题不仅仅是 c# 代码,而是您的 jquery 代码。试试下面的代码:

$(document).ready(function(){
$("input:radio[name=department]").change(function() {
$("#choose_dept").attr('action','place/'+$(this).val());
$("#choose_dept").submit();
});
});

编辑:(既然您提到您无法控制 HTML 代码,那么您可以即时添加我刚刚向您展示的 JavaScript,代码如下所示:

        String sc = @"$(document).ready(function(){
               $("input:radio[name=department]").change(function() {
               $("#choose_dept").attr('action','place/'+$(this).val());
               $("#choose_dept").submit();
               });
               });";

        var doc = webBrowser1.Document;
        var headElem = (HtmlElement) doc.GetElementsByTagName("head")[0];
        var scriptElem = (HtmlElement) doc.CreateElement("script");
        var elem = (IHTMLScriptElement)scriptElem.DomElement;
        elem.text = sc;
        headElem.AppendChild(scriptElem);

但是,您需要添加参考

 Microsoft.mshtml

您还需要在代码顶部添加

 using mshtml;

现在,如果您不想即时更改它并且您真的只想调用 javascript 方法,那么您可以使用下面的方法:

webBrowser1.Document.InvokeScript("methodnamehere()");

根据您的代码进行的最新编辑:

我认为您需要在检查单选按钮后模拟浏览器中的点击。所以,现在应该是这样的:

 String sc = @"$(document).ready(function(){" +
        "$(\"input:radio[name=department]\").change(function() {" +
        "$(\"#choose_dept\").attr('action','place/'+$(this).val());" +
        "$(\"#choose_dept\").submit();" +
        "});" +
        "});";

        HtmlElement headElem = (HtmlElement)webBrowser1.Document.GetElementsByTagName("head")[0];
        HtmlElement scriptElem = (HtmlElement)webBrowser1.Document.CreateElement("script");
        IHTMLScriptElement elem = (IHTMLScriptElement)scriptElem.DomElement;
        elem.text = sc;
        headElem.AppendChild(scriptElem);

        webBrowser1.Document.GetElementById("chicken").SetAttribute("checked", "checked");

        HtmlElement simulateClick = webBrowser1.Document.GetElementById("chicken");
        simulateClick.InvokeMember("click");
于 2013-04-28T14:41:41.370 回答
0

尝试

webBrowser1.Document.GetElementById("chicken").RaiseEvent("onchange");
于 2013-04-28T09:35:41.610 回答