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 に答える