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"
}
「チュニジアをクリックして」……
このループをコーディングする方法がわからないため、ユーザーは最初の国を尋ねられ、ユーザーが国をクリックするまでプログラムは待機し、次にユーザーは2番目の国を尋ねられます....
ありがとう
カート