前提・実現したいこと
フォームの値を取得する関数を作りたいのですが、未定義のエラーが発生します。
そもそも、このような関数は作れないのでしょうか。
発生している問題・エラーメッセージ
Uncaught TypeError: Cannot read properties of undefined (reading 'value')
該当のソースコード
function getValue(formName){
return document.survey.formName.value;
}
function ifEmpty(formName, title){
if (getValue(formName) == ""){
alert("[" + title + "]" + "を入力してください。");
return false;
}else {
return true;
}
}
回答1件
あなたの回答
tips
プレビュー