0
私はJavascriptを初めて使っています。機能を使ってJavascriptでフィールドが空の場合、ユーザーに警告したいと思っています。私は既に1つのプログラムをセットアップしています。 '空の'機能....これは私がこれまで持っているものです...どんな助けも事前に感謝します。Javascript "Empty" function Validator
var time = 0;
function printTime() {
time = prompt("Please enter the time in 24 hour clock format eg 00:00 ");
function isEmptyTime() {
var time = time.split(":");
var hours = parseInt(time[0]);
var minutes = parseInt(time[1]);
if (time == "00:00") {
document.write("Midnight");
} else if (time == "12:00") {
document.write("Noon");
} else if (hours < 12) {
document.write("" + hours + ":" + minutes + " AM");
} else if (hours >= 12 && hours < 24) {
hours = hours - 12;
document.write("" + hours + ":" + minutes + " PM");
} else(time.length == 0) {
document.write("No data has been entered");
}
}
}
printTime();
あなたは 'isEmptyTime()'を呼び出すことはありません。 – Barmar
'time.split(": ");'の前に 'if(!time)document.write("データが入力されていません " –