2017-05-19 01:50:56 +08:00
|
|
|
function validateForm( form ) {
|
2019-01-19 23:32:40 +08:00
|
|
|
return ( true );
|
2013-03-17 07:45:21 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function submitForm( form ) {
|
|
|
|
form.submit();
|
2013-03-17 07:45:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function limitRange( field, minValue, maxValue ) {
|
|
|
|
if ( parseInt(field.value) < parseInt(minValue) ) {
|
|
|
|
field.value = minValue;
|
|
|
|
} else if ( parseInt(field.value) > parseInt(maxValue) ) {
|
|
|
|
field.value = maxValue;
|
|
|
|
}
|
2013-03-17 07:45:21 +08:00
|
|
|
}
|
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function initPage() {
|
2019-01-19 23:32:40 +08:00
|
|
|
return ( true );
|
2013-03-17 07:45:21 +08:00
|
|
|
}
|
|
|
|
|
2019-01-22 00:14:32 +08:00
|
|
|
window.addEventListener( 'DOMContentLoaded', initPage );
|