三目並べゲームを作ろうとしています。X と O の代わりに画像を使用しているため、クリックされたときに td に画像を入力する必要があります。私はこれを試しました:
function makeDuck(place){
//this is just so I know the other methods work
alert("duck");
//This is the line I need help with
window.location.write('<img src="smallDuck.jpg" width="70" height="70"/>');
squares[place] = 1;
}
function makeBeaver(place){
//this is just so I know the other methods work
alert("beaver");
//This is the line I need help with
document.zero.write('<img src="smallBeaver.jpg" width="80" height="80"/>');
squares[place] = 2;
}