有人可以帮我解决这个问题吗?我一直在使用 jquery-validate 来解决 html 表单的问题,直到遇到嵌入在 php.ini 中的 HTML 表单的问题。
下面的示例使用 jquery 和 jquery-validate。Form1 正在验证电子邮件字段。然而,Form3 没有验证数字字段(form3 嵌入在 php 中)。
我试图注释掉所有 form1 验证,以确保不是多个表单导致问题。
我还尝试从 javascript 中为 form3 注释掉 submitHandler,这阻止了 form3 提交,所以这告诉我某些东西正在工作,它只是没有验证 form3 中的数字字段。
<script>
$(document).ready(function() {
$("#form1").validate( {
errorPlacement: function(error, element) {
error.appendTo( element.parent("span").next("div") );
},
debug:true,
wrapper: "li",
submitHandler: function(){
form.submit();
},
rules: {
email: {required:false, email:true},
},
messages: {
email: "Enter a valid email address",
}
})
$("#form3").validate( {
errorPlacement: function(error, element) {
error.appendTo( element.parent("span").next("div") );
},
debug:true,
wrapper: "li",
submitHandler: function(){
form3.submit();
},
rules: {
quotaLimit: {required:true, number:true},
},
messages: {
quotaLimit: "Enter a valid quota limit",
}
})
});
</script>
<br>
<div class="tab-button-row" style="position:relative;">
<a href="#" class="tab-button" onclick="toggleTab('editUserContent', 'details');">User Details</a>
<a href="#" class="tab-button" onclick="toggleTab('editUserContent','quotas');">Quota and Limits</a>
</div>
<br>
<div id="editUserContent">
<div id="details">
<form id=form1 method=POST
action="index.php?function=edituser&command=save&username=<?php echo $user->{"username"}; ?>"
name=form>
<?php
if ($user->{'authenticationType'} == 0) {
$visible = "";
} else {
$visible = "style='display:none;'";
}
?>
<table class="list">
<tr>
<td colspan=5><b>Edit Details</td>
</td>
<td width=25%><input type=submit value=save></td>
</tr>
<tr>
<td>First Name:</td>
<td>
<input name="fname" value="<?php echo $user->{"fname"};?>">
</td>
<td>Last Name:</td>
<td>
<input name="lname" value="<?php echo $user->{"lname"};?>">
</td>
<td>Email:</td>
<td>
<span>
<input name="email" value="<?php echo $user->{"email"};?>" class='validate'>
</span>
<div></div>
</td>
</tr>
</table>
<br>
<table class="list" <?php echo $visible; ?>>
<tr>
<td colspan=5><b>Password Settings</td>
</td>
<td width=25%><input type=submit value=save></td>
</tr>
<tr>
<td>Set Password</td>
<td><input type=checkbox name=change_password></td>
<td>New Password:</td>
<td><input name="password" type=password></td>
<td>Re-enter Password:</td>
<td><input name="re_password" type=password></td>
</tr>
</table>
</form>
</div>
<div id="quotas">
<?php
$table = new Table();
$name = new Column("Quota Period");
$name->render = function($data, $id)
{
echo $data->{'period'};
};
$desc = new Column("Quota Limit(MB)");
$desc->render = function($data, $id)
{
echo $data->{'quotaLimit'};
};
$owner = new Column("Group Owner");
$owner->render = function($data, $id)
{
if (isset($data->{'owner'})) {
echo "<a href=index.php?function=editgroup&group=" . $data->{'ownerid'} . ">" . $data->{'owner'} . "</a>";
}
};
$reached = new Column("Quota Reached");
$reached->render = function($data, $id)
{
if ($data->{'exceeded'} == true) {
echo "true";
} else {
echo "false";
}
};
$ops = new Column("Operations");
$ops->render = function($data, $id)
{
if (!isset($quotas[$i]->{'owner'})) {
echo "<a href=index.php?function=edituser&command=deletequota&username=" . $_GET['username'] . "&period=";
echo $data->{'period'} . ""aLimit=" . $data->{'quotaLimit'} . ">delete</a>";
}
};
$table->addColumn($name);
$table->addColumn($desc);
$table->addColumn($owner);
$table->addColumn($reached);
$table->addColumn($ops);
$table->setData($quotas);
$table->footerMethod = function($footerArgs)
{
echo" <form id=form3 method=POST action=index.php?function=edituser&command=addquota&username=" . $_GET['username'] . ">";
echo "<tr><td>";
echo "<select name='period'>";
echo "<option>NONE</option>";
echo "<option>DAY</option>";
echo "<option>WEEK</option>";
echo "<option>MONTH</option>";
echo "</select>";
echo "</td>";
echo "<td>";
echo "<span><input name=quotaLimit class='validate' /></span><div></div>";
echo "</td>";
echo "<td></td>";
echo "<td></td>";
echo "<td><input type=submit value='Add/Set'></td></tr>";
echo "</form>";
};
$table->render();
?>
</div>
</div>
<script type="text/javascript">
initToggleTab("editUserContent", "details");
</script>