我已经使用 jquery-plugin mapster 设置了我的图像映射
代码向我显示,点击了哪些国家(埃及为“1”,利比亚为“2”..)
$(document).ready(function() {
function geklickt (e){
//alert(typeof e.key); return string
$('.showme').append(e.key+ ' ');
}
$('img').mapster({
mapKey: 'ALT',
stroke: true,
strokeWidth: 2,
strokeColor: 'ff0000' ,
onConfigured: function(){
// howto set up loop for asking user here???
} ,
onClick: geklickt
});
});
我的问题:我想在不同国家的循环中询问用户,如下所示:“点击埃及”
if (e.key == '1')
{
// message "Ok"
// add one point
}
else
{
// message "NOT Ok"
}
“点击突尼斯” ...
我不知道如何编写这个循环,以便向用户询问第一个国家,然后程序等到用户单击一个国家,然后询问用户第二个国家....
谢谢
库尔特