使用 jQuery 加载下拉列表
当用户第一次单击 DropDownList 时,是否可以在 asp.NET 中加载下拉列表?
我会尽力解释一下。我有一个 aspx 页面,其中包含一个包含一项的 DropDownList。
ListItem listlt = new ListItem("UNDEFINED", "-1");
ddl.Items.Insert(0, listlt);
我想当用户单击 DropDownList 时加载 DropDownList 中的所有数据。这是因为dropdownlist数据量很大,页面加载很慢。
有什么想法吗? 提前谢谢
Is it possible to load a dropdownlist in asp.NET just when the user click the DropDownList for the firs time?
I will try to explain it. I have an aspx page with a DropDownList with one item.
ListItem listlt = new ListItem("UNDEFINED", "-1");
ddl.Items.Insert(0, listlt);
I want to load all data in the DropDownList when the user click on the DropDownList. This is because the dropdownlist has a lot of data and the load of the page is very slow.
any ideas?
thx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 PageMethods 来代替。
ASPX
You can use PageMethods instead.
ASPX
使用jquery
load
并在
thedropdownItems.html
use jquery
load
And in
thedropdownItems.html