Jquery
怒彬
这个作者很懒,什么都没留下…
展开
-
Jquery获取select元素的所有option项
let dep; $("#department option").each(function () { var val = $(this).val(); var text = $(this).text(); dep += '<option value="' + $(this).val() + '">...原创 2018-08-01 15:42:04 · 19546 阅读 · 0 评论 -
Jquery 提交表单
jquery 序列化表单提交:前端js: $("#okBtn").click(function () { $("#okBtn").attr('disabled', true); $.ajax({ type: 'post', url: '/Appointment/AppointmentAdd', ...原创 2018-08-01 17:12:19 · 1925 阅读 · 0 评论 -
bootstrap-datetimepicker 初始值
1,初始化控件 $("#datetimeStart").datetimepicker({ format: "yyyy-mm-dd hh:00:00", startDate: new Date(), autoclose: true, todayBtn: true, language: 'zh-CN', ...原创 2018-08-03 14:09:46 · 40030 阅读 · 3 评论 -
bootstrapValidator 开始日期与结束日期相互验证
$("#formAppointment").bootstrapValidator({ message: '输入值不合法', excluded: [":disabled"], feedbackIcons: { valid: 'glyphicon glyphicon-ok', invalid: 'g...原创 2018-08-03 14:32:35 · 6010 阅读 · 0 评论