Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
(home.html、about.html など) のようなページがある場合、これらのページを将来使用するためにオブジェクトに挿入するにはどうすればよいですか? つまり、これらのページをキャッシュしたい:
var obj= {"home":home.html, "about": about.html};
これは正しい方法ですか?
var obj= {"home": "home.html", "about": "about.html"}; alert( obj.about ); // about.html