JVectorMap:点击按钮

时间:2015-04-22 12:44:45

标签: javascript jquery jvectormap

这就是我想要实现的目标:

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_eneu_mill_en

map = new jvm.Map({
    map: 'world_mill_en',
})

有可能这样做吗?我无法找到答案或弄明白。谢谢你的帮助

1 个答案:

答案 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中,获取查询字符串值并在所需位置使用它。