这就是我想要实现的目标:
index.html
中有三个按钮。当我点击它们时,我需要在另一个文件map.html
中更改jvectormap。 js代码位于另一个文件map.js
中。
示例
如果我点击:
<button type="button" id="world">World Map</button>
<button type="button" id="Europe">Europe Map</button>
应将map
属性值更改为world_mill_en
或eu_mill_en
map = new jvm.Map({
map: 'world_mill_en',
})
有可能这样做吗?我无法找到答案或弄明白。谢谢你的帮助
答案 0 :(得分:0)
您可以将查询字符串从一个html页面传递到另一个html页面。例如
在index.html中
<button type="button" id="world" onclick="window.location.href='map.html?map=world_mill_en'">World Map</button>
在map.html中,获取查询字符串值并在所需位置使用它。