我的问题是,我创建了一个 js 文件。在这个文件中定义了一些文本。
channel = {
categorie_one: "Hauptsender",
categorie_two: "Spartensender",
categorie_three: "Regionalsender"
}
现在我想嵌入categorie_one
另一个 js 文件。我正在使用该代码:
channel.categorie_one;
但它显示在控制台中:Cannot read property 'categorie_one' of undefined
,逻辑上我已经链接了文件......
我在 index.html 中包含 js 文件
<script src="javascripts/default.js" type="text/javascript" rel="javascript"></script>
<script src="javascripts/resources.default.js" type="text/javascript"></script>
在 default.js 中,我有一个加载站点的方法。
function ChannelLoad(listview) {
//there should be cateogrie_one
}
你能帮我吗?提前致谢