0

我想在验证引擎验证成功后启动fancybox....下面提到了我正在使用的代码....

<button type="button" class="addcncl" value="<s:message code='createMonitorProfile' />" name="createProfile" id="createProfile" ><s:message code='createMonitorProfile' /></button>

$("#createProfile").fancybox({
        'titlePosition'     : 'outside',
        'overlayColor'      : '#000',
        'autoSize'          : false,
        'autoDimensions'    :false,
            'overlayOpacity'    : 0.7,
        'scrolling'         :'yes',
});
$("#createProfile").bind("click", function() {
    if($('#createMonitorProfileForm').validationEngine('validate')) {
          //if this condition is true then I want to upload fancybox content 
          //with ajax request.
    }
});

我得到的问题是我的幻想框在验证发生之前出现......

4

1 回答 1

0

对我来说就是这样工作

if ($("#createMonitorProfileForm").validationEngine('validate')) {
    console.log("form is ok");
}
于 2013-01-06T13:26:53.613 回答