以下の処理でgetEvent(id)に検索するeventのidを入れて検索結果がnullでない
eventのtitleをまず表示させると正常にtitleの中身が表示されます。
その後にeventのtitleにtestと云う文字を代入して
さいどコンソールに出力しても変更しないのですが
これには何が原因なのでしょうか?
教えてください。
javascript
1 function getEvent(id){ 2 var events = calendar.getEventById(id); 3 if (events == null ){ 4 console.log('null'); 5 6 }else { 7 console.log(events.title); 8 9 alert(events.title+":"+events.start); 10 events.title = 'test'; 11 console.log(events.title); 12 13 14 };
まだ質問が「受付中」になっていますが、「ベストアンサー」を選び「解決済」にされてはいかがでしょうか。
回答1件
あなたの回答
tips
プレビュー