html
1<body> 2番号:<input type="number" id="bango"> 3 4<table border="1"> 5 <thead> 6 <tr> 7 <th>もの</th> 8 <th>番号</th> 9 </tr> 10 </thead> 11 <tbody> 12 <tr> 13 <td><input type="button" value="リンゴ" onclick="ringo()"></td> 14 <td>1</td> 15 </tr> 16<script> 17 function ringo(){ 18 **???** 19} 20</script> 21 22</body> 23
例えばなのですが、リンゴのボタンを押すと番号のテキスト欄に”1”が反映させるようにすることは可能でしょうか。
方法があれば教えていただきたいです。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/30 00:26