jQuery - Ajax - 当用户更改 DropDownList 中选定的索引时,如何将 ascx 加载到 DIV 中

发布于 2024-07-07 09:04:12 字数 163 浏览 11 评论 0原文

在 A.ascx 中,我有一个 DropDownList 和一个 DIV。 DropDownList 是动态填充的。

当用户更改 DropDownList 中选定的索引时,如何将 B.ascx 加载到 DIV 中。 这应该在客户端通过使用 jQuery 和 Ajax 完成,无需回发。

In A.ascx I have one DropDownList and one DIV. The DropDownList is populated dynamically.

How do I load B.ascx into the DIV, when the user changes the selected index in the DropDownList. This should be done on the client side without postback, by using jQuery and Ajax.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜味超标? 2024-07-14 09:04:13
  function selectedindexchange() {
  $.ajax({
    type: "POST",
    url: "CONTROLNAME.ascx",
    data: "{}",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function(msg) {
      $('#ContentDIV').html(msg.d);
    }
  });
});
  function selectedindexchange() {
  $.ajax({
    type: "POST",
    url: "CONTROLNAME.ascx",
    data: "{}",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function(msg) {
      $('#ContentDIV').html(msg.d);
    }
  });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文