javascripts間でオブジェクトを共有しようとしています。background.htmlには次のものがあります。
<html>
<head>
<script type="text/javascrpt">
window.Something = {};
</script>
</head>
<body>
<script type="text/javascript" src="../js/file1.js"></script>
<script type="text/javascript" src="../js/file2.js"></script>
</body>
</html>
そしてfile1.jsに私は持っています:
alert("1: " + window.Something);
そしてfile2.jsに私は持っています:
alert("2: " + window.Something);
拡張機能をリロードすると、2つのアラートが表示されます。
1:未定義2:未定義
どうしたんだ?!みんな、ありがとう