gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 01:54:37 26 4
gpt4 key购买 nike

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

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

最佳答案

  function selectedindexchange() {
$.ajax({
type: "POST",
url: "CONTROLNAME.ascx",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
$('#ContentDIV').html(msg.d);
}
});
});

关于asp.net - jQuery - Ajax - 当用户更改 DropDownList 中选定的索引时,如何将 ascx 加载到 DIV 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/229422/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com