Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我看来,我有两个下拉列表,一个下拉指示开始年份,另一个指示结束年份。我需要验证开始年份应该小于结束年份。我可以用 onblur 事件做些什么吗?请建议我一些功能。谢谢!
您可以使用下拉列表的更改事件,当从下拉列表中选择一个值时将触发该事件。我已经使用 JSON 和 jquery 实现了它:
$(document).ready(function () { $('#<%= cboDate.ClientID %>').change(function () { if( $('#<%= cboDate.ClientID %>').value >$('#<%= cboDate1.ClientID%>').value) alert('Messsage'); }); });