语义:表单验证通过后触发函数(调光器)

问题描述 投票:0回答:1

使用Semantic-ui。

有一个使用语义内置表单验证的表单。

在表单提交上,我想调用一个调光器。

在表单通过验证后,有没有办法触发调光器。

就像现在一样,我将调光器连接到提交按钮上的onclick =“dimmer()”。

这意味着即使表单由于验证失败而未提交,调光器也会触发。

semantic-ui
1个回答
0
投票
onSuccess: function(event, fields) {
              dim();
              }

$(document)
    .ready(function() {
      $('.ui.form')
        .form({
          fields: {
            trailer: {
              identifier  : 'trailer',
              rules: [
                {
                  type   : 'empty',
                  prompt : 'Please select a Trailer'
                }
              ]
            },
            movie: {
              identifier  : 'movie',
              rules: [
                {
                  type   : 'empty',
                  prompt : 'Please select a Movie'
                }            
              ]
            }
          },
              onSuccess: function(event, fields) {
              dim();
              }
        })
      ;
    })
  ;
© www.soinside.com 2019 - 2024. All rights reserved.