私はフォーム提出を含むTwitterブートストラップモーダルを作成しました。フォームにはJavaScriptの検証が含まれています。Javascript - モーダルが閉じられている場合、モーダルエラー/成功メッセージを削除します。
モーダルを閉じるか、他の場所をクリックしてモーダルを再び開くと、JSエラー/成功のスタイリングはそのまま残ります。
モーダルが閉じられているか、モーダルからのフォーカスが失われても、CSSエラー/成功スタイリングが表示されないようにするにはどうすればよいですか?
HTML:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="${resource(dir: 'css', file: 'myStylesheet.css')}" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<button class="btn btn-primary" data-toggle="modal" data-target="#add_new_record_modal">Add New Department</button>
<!-- Modal - Add New Record -->
<div class="modal fade" id="add_new_record_modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<form id="addRecordForm" role="form" method="post" onsubmit="return addDepartmentValidation();">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Add New Department</h4>
</div>
<div class="modal-body">
<p><span class="required">* required field</span></p>
<div class="form-group">
<label for="department_name">Department Name</label>
<span class="required">*</span>
<div class="input-group">
<span class="input-group-addon transparent"><span class="glyphicon glyphicon-briefcase"></span></span>
<input type="text" id="department_name" placeholder="Enter Department Name" autocomplete="off" name="department_name" class="form-control" onkeyup="addDepartmentNameValidation();"/>
</div>
<div class="error-messages" id="department_name_errors"></div>
</div>
<div class="form-group">
<label for="department_street">Department Street</label>
<span class="required">*</span>
<div class="input-group">
<span class="input-group-addon transparent"><span class="glyphicon glyphicon-briefcase"></span></span>
<input type="text" id="department_street" placeholder="Enter Department Street" autocomplete="off" name="department_street" class="form-control" onkeyup="addDepartmentStreetValidation();"/>
</div>
<div class="error-messages" id="department_street_errors"></div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Cancel</button>
<button type="submit" class="btn btn-primary from-control" value="addRecord">Add Department</button>
</div>
</div>
</form>
</div>
</div>
はCSS:
.container .jumbotron /* employees-departmentents jumbotron */
{
margin-top: 100px;
}
.modal-dialog .modal-content .modal-header /* Update/Add Record Modals Headers */
{
background-color: #2A6496;
color: white;
}
.required /* Required Fields at Forms */
{
color: red;
font-weight: bold;
}
.error-messages
{
color: red;
font-weight: bold;
}
はJavaScript:
window.addDepartmentValidation = function(){
var add_department_name_validation_value = addDepartmentNameValidation();
var add_department_street_validation_value = addDepartmentStreetValidation();
if ((add_department_name_validation_value)&&(add_department_street_validation_value)) return true; // form successfully submitted
else return false; // form still has errors
}
window.addDepartmentNameValidation = function(){
var returned_value = true;
var dep_name = document.getElementById('department_name').value;
if (dep_name.length <= 2) {
document.getElementById('department_name').style.borderColor = "red";
document.getElementById('department_name').style.borderWidth = "2px 2px 2px 2px";
document.getElementById('department_name_errors').style.color = "red";
document.getElementById('department_name_errors').innerHTML = "Department Name is way too short!!!";
if (dep_name === "") {
document.getElementById('department_name_errors').innerHTML = "Please enter a Department Name!!!";
}
returned_value = false;
}
else {
document.getElementById('department_name').style.borderColor = "green";
document.getElementById('department_name_errors').style.color = "green";
document.getElementById('department_name_errors').innerHTML = "Department Name is: VALID";
}
if (document.getElementById('department_name').value.match(/(1|2|3|4|5|6|7|8|9|0)/)) {
document.getElementById('department_name').style.borderColor = "red";
document.getElementById('department_name_errors').style.color = "red";
document.getElementById('department_name_errors').innerHTML = "Department Name must NOT contain numbers!!!";
returned_value = false;
}
return returned_value;
}
window.addDepartmentStreetValidation = function(){
var returned_value = true;
var dep_street = document.getElementById('department_street').value;
if (dep_street.length <= 2) {
document.getElementById('department_street').style.borderColor = "red";
document.getElementById('department_street').style.borderWidth = "2px 2px 2px 2px";
document.getElementById('department_street_errors').style.color = "red";
document.getElementById('department_street_errors').innerHTML = "Department Street is way too short!!!";
if (dep_street === "") {
document.getElementById('department_street_errors').innerHTML = "Please enter a Department Street!!!";
}
returned_value = false;
}
else {
document.getElementById('department_street').style.borderColor = "green";
document.getElementById('department_street_errors').style.color = "green";
document.getElementById('department_street_errors').innerHTML = "Department Street is: VALID";
}
return returned_value;
}
JsFiddleへのリンク:あなたが必要https://jsfiddle.net/vagg77/88sqeran/
モーダルが開くときにスタイリングをリセットする必要があります。リセット関数を作成し、ボタンの 'onclick'イベントハンドラでその関数を呼び出します。 – Malcor
毎回開いているときにフォームをリセットできると思います。 – bhansa
@bhansaフォームのリセットが機能しませんでした。 Opはフォームのスタイルを設定しています。フォームのリセットは、スタイリングではなくフォームデータをリセットするだけです。フォームのリセット時にスタイリングをリセットするフォーム検証フレームワークはありますが、使用されていないものもあります。 – Malcor