Webbrowser-从第一个下拉列表中选择一个项目后,更新第二个下拉列表

问题描述

|| 我的目标是从第二个下拉列表中选择一个项目后更新第二个下拉列表。任何帮助,将不胜感激。 我无法检测到何时在Webbrowser控件中启动Ajax活动。我在此线程中尝试过的指令没有成功,实现了以下类: HTML:
<html>
<Head>
<script type=\"text/javascript\" src=\"http://myweb.com/scripts/jquery_1.5.js\">
</head>
<body>
<select id =”cboCity”>
<option value=”1”> C1 </option>
<option value=”2”> C2 </option>
<option value=”3”> C3 </option>
<select id =”cboDistrict”>
<option value=”1”> D1 </option>
<option value=”2”> D2 </option>
<option value=”3”> D3 </option>
</body>
</html>
C#代码:
System.Windows.Forms.Timer timer1;
HtmlElement city = webbrowser1.doc.GetElementById(\"cboCity \");
      city.Focus();
      city.SetAttribute(\"value\",\"2\");
      city.InvokeMember(\"onchange\");

      timer1 = new System.Windows.Forms.Timer();
      timer1.Tick +=new EventHandler(timer1_Tick);
      timer1.Interval = 1000;
      timer1.Enabled = true;
      timer1.Start();

private void timer1_Tick(object sender,EventArgs e)
    {
      HtmlElement district = webbrowser1.doc.GetElementById(\"cboDistrict\");
      district.Focus();
      district.SetAttribute(\"value\",\"3\");
      district.InvokeMember(\"onchange\");

      timer1.Stop();
      this.timer1.Enabled = false;
    }
    

解决方法

        您可以使用jquery来做到这一点。
$(function() {
    $(\"#cboCity\").change(function() {
        var currentSelection = $(this).val();
//grab the other items
//loop trough them
//inert into $(\"cboDistrict\").html();
    });
});
    ,        为什么不使用jQuery以及即使在下拉菜单中也进行更改? http://api.jquery.com/change/     

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...