如何在WebBrowser控件中运行JavaScript?

时间:2011-09-08 08:29:16

标签: c# javascript asp.net winforms webbrowser-control

在我的winforms应用程序中,我有一个名为webBrowser1的WebBrowser控件。

在代码中我添加的所有内容都是导航到页面:

private void Form1_Load(object sender, EventArgs e)
{
    webBrowser1.Navigate("http://localhost:6489/Default.aspx");
}

我导航的页面的代码是:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TableRowShow.Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <script type="text/javascript">
      window.onload = function()
      {
        document.getElementById('addDestination').setAttribute('onclick', 'addDest();');
      }

      function attach()
      {
        document.getElementById('addDestination').setAttribute('onclick', 'addDest();');
      }

      var i = 1; // position of next tr to be shown

      function addDest()
      {
        var trs = document.getElementById('travelTable').getElementsByTagName('tr');

        if (trs[i] != null)
          trs[i++].style.display = "";
      }
    </script>
</head>
<body>
    <form id="form1" runat="server">
      <table id="travelTable">
        <tr>
          <td>
            <asp:TextBox runat="server" />
          </td>
        </tr>
        <tr style="display: none">
          <td>
            <asp:TextBox runat="server" />
          </td>
        </tr>
        <tr style="display: none">
          <td>
            <asp:TextBox runat="server" />
          </td>
        </tr>
      </table>
      <asp:HyperLink runat="server" ID="addDestination"
        ClientIDMode="Static"  NavigateUrl="javascript:;" >
        Add Destination
      </asp:HyperLink>
    </form>
</body>
</html>

在IE或Chrome等浏览器中看到,页面如下所示:

单击“添加目标”锚点会创建一个新输入:

我在WebBrowser控件中遇到的问题是它加载页面但JavaScript不起作用。

如果我点击添加目的地没有任何反应,即使同一页面在Chrome或IE中运行良好。

放置断点并使用:

webBrowser1.Document.InvokeScript("addDestination");

在立即窗口内,然后继续运行程序激活该函数中的JavaScript,添加一个新输入。

感谢您的回复!

2 个答案:

答案 0 :(得分:2)

尝试附加这样的点击处理程序,而不是在setAttributeonload函数中使用attach

document.getElementById('addDestination').onclick = addDest;

答案 1 :(得分:0)

您可以尝试将ScriptErrorsSuppressed属性设置为false,以查看是否发生任何JavaScript错误。