点击按钮,我想验证数据,如果是,我想要删除 - 确认对话框..是否可以?

时间:2016-10-03 06:50:37

标签: javascript jquery

我有两个日期选择器,从日期到日期,还有一个删除按钮。 点击删除,如果从日期大于日期等,则应进行验证,然后删除确认弹出窗口应显示是或否。 如果单击yes,则应调用delete回调,否则返回false!

怎么做? 任何帮助将不胜感激

这是我的代码

"#Delete click": function(el, ev) {
  this.validate();
  this.confirmation("#Delete", "Are you sure?", "Yes", "No", this.deleteConfirmCallback, this);
},

confirmation: function(element, text, yesText, noText, yesCallback, context) {
  $(element).confirmation({
    title: text,
    singleton: true,
    popout: true,
    btnOkClass: "btn btn-sm default-color",
    btnCancelClass: "btn btn-sm primary-color text-case ",
    btnOkLabel: yesText,
    btnCancelLabel: noText,
    btnOkIcon: "glyphicon-tiny glyphicon-ok",
    btnCancelIcon: "glyphicon-tiny glyphicon-remove",
    onConfirm: function() {
      yesCallback(context, this);
    }
  });    
},
  

块引用

第一次点击我无法获得删除确认弹出窗口

  

块引用

2 个答案:

答案 0 :(得分:0)

尝试这样的事情:

if('#btn').click(function(){
    if($('#fromDate').val() > $('#toDate').val())  
    // You can also make a function to check this and call it here
    {
        // Open delete confirm
        // Check if user select OK or cancel and make an ajax call to delete if use select delete option
    }
});

答案 1 :(得分:0)

你可以这样试试:

var from_date = $("#from_date").val();
var to_date = $("#to_date").val();
if(from_date > to_date) {
   //true condition statement
   // should be alert or confirmation
} else {
   //false condition statement
   // should be alert or confirmation
}