誰かがこれを手に入れてくれませんか?phpに埋め込まれたHTMLフォームの問題に遭遇するまで、htmlフォームの問題なしでjquery-validateを使用してきました。
以下の例では、jqueryとjquery-validateを使用しています。Form1はメールフィールドを正常に検証しています。ただし、Form3は数値フィールドを検証していません(form3はphpに埋め込まれています)。
複数のフォームが問題の原因ではないことを確認するために、すべてのform1検証をコメントアウトしようとしました。
また、form3のjavascriptから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>