我尝试过这种东西
$('#<%= txtSponsorBC2.ClientID %>').focus(function () {
var selectedDate = $('#txtMandateDate').datepicker('getDate');
var currentDate = new Date();
currentDate.setHours(0);
currentDate.setMinutes(0);
currentDate.setSeconds(0);
if ($("#txtMandateDate").val() != "" && $("#txtMandateDate").val() != "dd/mm/yyyy") {
if (Date.parse(selectedDate) < currentDate) {
return true;
}
else {
alert(" date cannot be future date");
return false;
}
}
});
如果我使用$('#<%= txtSponsorBC2.ClientID %>')
访问ajax组合框我会收到错误
Microsoft JScript runtime error: Syntax error, unrecognized expression: #<%= txtSponsorBC2.ClientID %>
答案 0 :(得分:0)
尝试使用$('#'+<%= txtSponsorBC2.ClientID %>)