を働いていない私はこれがあります。変更のonclickイベントが
function tp_visible(action){
if(action==1){
document.getElementById("tp").style.display='block';
document.getElementById("tp_action").onclick='tp_visible(0);
return false;';
}
else {
document.getElementById("tp").style.display='none';
document.getElementById("tp_action").onclick='tp_visible(1);
return false;';
}
return false;
}
なぜonclick
イベントを変更する上ではありませんか?ここで
...
はHTMLです:
<a
id='tp_action'
name='tp_action'
href='#'
onclick='tp_visible(1);
return false;'
>Show info</a>
あなたのために働くならば、答えを受け入れることを忘れないでください –