HTMLとJavascriptは初めてです。誰かが私を助けてくれるようにしてください。次のコードは、ページが読み込まれた後、通常どおり579を表示します。ただし、ページ全体を更新せずに別の番号を表示する必要があります。たとえば、マウスクリックなどのトリガーが発生すると、795(画像)が表示されます。以前と同じ位置に表示する画像に新しい番号を作成するにはどうすればよいですか。どうもありがとうございます。
`DisplayNumImg(5,7,9);
<a href="#" onclick="DisplayNumImgChanged(7,9,5)" /a>
#child2-3
{
position: absolute;
width: 165px;
height: 15px;
left: 5px;
top: 40px;
}
.thumb_child1
{
float:right;
margin:0px;
}
function DisplayNumImg( a, b, c)
{
var s;
if ( a == 5 ) {
s = '<img class="thumb_child1" src="./images/5_blu.png"> ';
document.write( s );
}
if ( a == 7 ) {
s = '<img class="thumb_child1" src="./images/7_blu.png"> ';
document.write( s );
}
if ( a == 9) {
s = '<img class="thumb_child1" src="./images/9_blu.png"> ';
document.write( s );
}
}
function DisplayNumImgChanged( a,b,c )
{
// please help me with code here or something that you think it would work. Thanks.
}
`