發表文章

目前顯示的是 9月, 2020的文章

程式設計學習進度與心得

圖片
第一週九月七號  老師 示範 , 我們做  第二週九月十四號  <label>顏色: </label> <label>黑色<input type="radio" name="color"></label> <label>紅色<input type="radio" name="color"></label> <label>綠色<input type="radio" name="color"></label> <label>藍色<input type="radio" name="color"></label> < input type="button" value="2020年每天通貨走勢" onclick="draw()" > < input type="button" value="2020年每天通貨走勢" onclick="draw()" > 第三週九月二十一號 學習 input 還有 表單 from 在HTML處增加 <form><b>選擇顏色: <input id="linecolor" type="checkbox">紅色 <input onclick="draw()" type="button" value="2020年每天通貨走勢" /> </form> 在JavaScript處作如下更改。 ctx.fillStyle="black"; if ( document.getElementById('l inecolor').checked ) ctx.fillStyle="red"...