如何使用 Javascript 在单击链接时重置 ASP.NET 下拉列表?无 JS 框架

发布于 2024-08-12 21:03:43 字数 101 浏览 1 评论 0原文

如何使用 Javascript 在单击链接时重置 ASP.NET 下拉列表?没有 JS 框架。

编辑:重置,就像将所选值设置为列表中的第一个值一样,就像页面首次加载时一样。

How do I reset an ASP.NET dropdown, on the click of a link, using Javascript? No JS Frameworks.

Edit: reset, as in set the selected value to the first one in the list, as it would be when the page first loads.

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

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

发布评论

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

评论(2

终难遇 2024-08-19 21:03:43

试试这个链接

您要删除所有项目吗下拉列表或选择第一个选项(默认选择选项)?

试试这个:

document.getElementById("<%#mydropdownlist.ClientID%>").value = 0;

或者

document.getElementById("<%#mydropdownlist.ClientID%>").selectedIndex = 0;

Try this link

Do you want to remove all items of the dropdown or Select the first option(Default selected option)?

Try this :

document.getElementById("<%#mydropdownlist.ClientID%>").value = 0;

or

document.getElementById("<%#mydropdownlist.ClientID%>").selectedIndex = 0;
他不在意 2024-08-19 21:03:43

您可能希望通过 ID 获取控件,然后将 selectedIndex 设置为 0。
例如:

var q = document.getElementById('dropdownId');
q.selectedIndex = 0;

希望这有帮助

You would probably want to get the control by ID then set the selectedIndex to 0.
for example:

var q = document.getElementById('dropdownId');
q.selectedIndex = 0;

Hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文