如何使用 Javascript 在单击链接时重置 ASP.NET 下拉列表?无 JS 框架
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个链接
您要删除所有项目吗下拉列表或选择第一个选项(默认选择选项)?
试试这个:
或者
Try this link
Do you want to remove all items of the dropdown or Select the first option(Default selected option)?
Try this :
or
您可能希望通过 ID 获取控件,然后将 selectedIndex 设置为 0。
例如:
希望这有帮助
You would probably want to get the control by ID then set the selectedIndex to 0.
for example:
Hope this helps