如何在 JavaScript 中清除带有日历扩展器的文本框?
我在 ASP.NET 3.5 项目中有一个与日历扩展器和屏蔽编辑扩展器关联的文本框。 我想在 OnBlur 时清除文本框...我尝试使用下面的代码,但它不起作用! 有什么想法吗?
document.getElementById('txtDtTo').value ="";
i have a textbox associated with a calendar extender and a masked edit extender in a asp.net 3.5 project. i would like to clear the texbox when OnBlur...i have tried using the code below but it not working! any ideas guy?
document.getElementById('txtDtTo').value ="";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
有许多关于 OnBlur 事件触发的报告问题,清除文本框的代码看起来不错。 为什么当它失去焦点时你需要它为空? 您可以使用 OnChange 事件,但是如果我正确理解您提出的逻辑,您将始终有一个空文本框!
There are many reported problems with the OnBlur event firing, the code to clear the text box looks fine. Why do you need it empty when it loses focus? You could use the OnChange event instead however if I understand your proposed logic correctly you'll always have an empty text box!
用这个:
use this:
这对我有用 http:// /www.aspsnippets.com/Articles/Clear-Selected-Date-of-ASPNet-AJAX-CalendarExtender-using-JavaScript.aspx
This worked for me http://www.aspsnippets.com/Articles/Clear-Selected-Date-of-ASPNet-AJAX-CalendarExtender-using-JavaScript.aspx