验证另一个jsp中的表单元素

时间:2013-05-29 11:00:41

标签: javascript jquery jsp validation

我有2个jsp文件。 display.jsp和content.jsp。 content.jsp包含在display.jsp中 我在content.jsp中有一个表单,我想在display.js中执行验证

Display.jsp
display.js included here
<%@ include file="content.jsp" %>


Content.jsp
<form id="frm" name="frm">
<table width="435px" height ="235px" id ="remtable" align="left" cellpadding="0" cellspacing="0"  border="0" class="remarkstable">
<tr>
<td>
<input name="field1" type="text" id="field1" size="40" maxlength="60">
</td>
</tr>
</table>
</form>

display.js
$("#frm").validate({

    focusCleanup : false,
    onkeyup : false,
    onfocusout : false,
    focusInvalid : false,
    onsubmit : true,

    rules:{
        field1:{
         required: function() {
             if ($('#field1').val() == "") {
                    alert("true");
                    return true;
                } else {
                    alert("false");
                    return false;
                }
           }
        }
    },
    messages:{
        uploadfile:{
            required : "Enter Subject"
        }
    }
});

validate方法在文档之外,因为它仅适用于display.jsp。我使用.valid()从onclick of content.jsp调用validate方法。 验证不会发生。有帮助吗?

1 个答案:

答案 0 :(得分:0)

只需在表单存在的jsp中写下另一个就绪。

您可以使用任意数量的Document.ready()功能。

他们一个接一个地执行。

jQuery - multiple $(document).ready ...?