[解決済み] Uncaught syntaxerror: unexpected identifier? [クローズド]
2022-03-04 11:40:45
質問
私は、コンソールが話しているエラーを修正することができないようです。私のコードは以下の通りです。私は、ローカルストレージにデータを保存し、画面に表示し、必要であれば保存されたデータをすべて削除するウェブフォームを作成しました。しかし、何らかの理由で、フォームからデータを取得することはできません。
// Wait until the DOM is ready
window.addEventListener("DOMContentLoaded", function (){
// getElementById function
function $(x) {
var theElement = document.getElementById(x);
return theElement;
} // end theElement function
function makeCats () {
var formTag = document.getElementsByTagName("form"), // form tag is an array
selectListItem = $('select'),
makeSelect = document.createElement('select'),
makeSelect.setAttribute("id", "groups");
for(var i=0, j=notesCategories; i<j; i++) {
var makeOption = document.createElement('option');
var optionText = notesCategories[i]
makeOption.setAttribute("value", "optionText");
makeOption.innerHTML = optionText;
makeSelect.appendChild(makeOption);
} // end for loop
selectListItem.appendChild(makeSelect);
} // end makeCat function
function getSelectedRadioBtn() {
var radio = document.forms[0].favNote
for (var i=0; i<radio.length; i++) {
if(radio[i].checked) {
favoriteValue = radio[i].value;
} // end if
} // end for loop
} // end get selected radio btn function
function getcheckedBoxBtn() {
if($('fav').checked) {
favoriteValue = $('fav').value;
} else {
favoriteValue = "No"
}
} // end function
function toggleControls(a) {
switch(a){
case "on":
$('noteForm').style.display = "none"
$('clear').style.display = "inline"
$('displayLink').style.display = "none"
break
case "off":
$('noteForm').style.display = "block"
$('clear').style.display = "inline"
$('displayLink').style.display = "inline"
$('items').style.display = "none"
break
default:
return false;
}
}
function saveNotes() {
var id = Math.floor(Math.random()*1000001);
// gather up all form fields values and store them in an object
// object properites will contain an array with form labels and input values
getSelectedRadioBtn(); // calls function
getcheckedBoxBtn();
var item = {}
item.group = ["Group", $('groups').value ];
item.notetitle = ["Title", $('notetitle').value ];
item.noteinfo = ["Note", $('noteinfo').value ];
item.date = ["Date", $('date').value ];
item.items = ["Number of Itmes", $('items').value ];
item.attach = ["Attach a File", $('attach').value ];
item.favorite = ["Favorite Note", favoriteValue ];
// save data into local storage. Use stringify to convert our object to a string
localStorage.setItem(id, JSON.stringify(item));
alert("Note Saved");
} // end store data function
function getNotes() {
toggleControls("on");
var makeDiv = document.createElement('div');
makeDiv.setAttribute("id", "items");
var createList = document.createElement('ul');
makeDiv.appendChild(createList) // puts createList into ul element created above
document.body.appendChild(makeDiv) // attach makeDiv to the document
$('items').style.display = "block";
for(i=0, entries=localStorage.length; i<entries; i++) {
var createLi = document.createElement('li');
createList.appendChild(createLi);
var key = localStorage.key(i);
var value = localStorage.getItem(key);
var savedNote = JSON.parse(value); // parse the save note object back into an object
var createSubList = document.createElement('ul');
var createLi.appendChild(createSubList);
for(a in savedNote) {
var creatSubListItem = document.createElement('li');
createSubList.appendChild(creatSubListItem)
var subText = savedNote[a][0] + " " + savedNote[a][1];
creatSubListItem.innerHTML = subText;
} // end for in loop
} // end for loop
} // end getNotes function
function clearNotes() {
if(localStorage.length === 0){
alert("Move along buddy, nothing here to clear.");
} else {
localStorage.clear()
alert("All notes are deleted");
window.location.reload();
return false;
} // end if
} // end clearNotes function
// Variables defaults
var notesCategories = ["--Choose a Category-- ","Grocery","Fitness","Entertainment","Dining","Shopping","Sports"],
favoriteValue = "No";
makeCats();
// Set links and submits click events
var displayLink = $('displayLink');
displayLink.addEventListener("click", getNotes);
var clearLink = $('clear');
clearLink.addEventListener("click", clearNotes);
var save = $('submit');
save.addEventListener("click", saveNotes);
}) // end main function
解決方法は?
ここにエラーがあります。
var formTag = document.getElementsByTagName("form"), // form tag is an array
selectListItem = $('select'),
makeSelect = document.createElement('select'),
makeSelect.setAttribute("id", "groups");
というコードに変更する必要があります。
var formTag = document.getElementsByTagName("form");
var selectListItem = $('select');
var makeSelect = document.createElement('select');
makeSelect.setAttribute("id", "groups");
ちなみに、129行目にもエラーがあります。
var createLi.appendChild(createSubList);
で置き換えてください。
createLi.appendChild(createSubList);
関連
-
[解決済み】JavaScriptエラー(Uncaught SyntaxError: Unexpected end of input)
-
[解決済み】XMLHttpRequestモジュールが定義されていない/見つからない
-
[解決済み】WebpackとBabelで「このファイルタイプを扱うには適切なローダーが必要な場合があります。
-
[解決済み】XMLパースエラー:ルート要素が見つからない コンソールの場所 FF
-
[解決済み] Uncaught (in promise) TypeError: フェッチに失敗してCorsエラー
-
[解決済み] ReactJS: "Uncaught SyntaxError: 予期しないトークン <"
-
[解決済み] Node.js - SyntaxError: 予期しないトークンのインポート
-
[解決済み】「Uncaught SyntaxError」が何度も出てきます。予期しないトークン o" が表示される
-
[解決済み】Uncaught SyntaxError: JSON.parse で予期しないトークンが発生した。
-
[解決済み】Uncaught SyntaxError: 予期しないトークン :
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
[解決済み】このエラーの原因は何ですか - "Fatal error: ローカルgruntを見つけることができません"
-
[解決済み】React Js: Uncaught (in promise) SyntaxError: 位置 0 の JSON で予期しないトークン < が発生しました。
-
[解決済み】Javascript:getElementById対getElementsById(両方が別のページで動作する)。
-
[解決済み】document.getElementByIDは関数ではありません。
-
[解決済み】Uncaught ReferenceError: angular is not defined - AngularJSが動作しない。
-
[解決済み】「Uncaught TypeError: Chromeで "Illegal invocation "が発生する。
-
[解決済み】ある要素が可視DOMに存在するかどうかを確認するにはどうすればいいですか?
-
[解決済み】TypeError: res.status は関数ではありません。
-
[解決済み】Vueが定義されていない
-
[解決済み】module.exports "モジュールが定義されていません"