したいこと・わからないこと
1.select optionで選択したところの情報を保存
2.ボタンクリックorダブルクリックでテーブルに追加
3.select optionから追加したものを非表示にする
※.すでに追加されているものは追加しない。
html
1<select id="fruit"> 2<option value= "150円">リンゴ</option> 3<option value= "200円">ブドウ</option> 4<option value= "150円">レモン</option> 5</select> 6 7<input type="button" value="追加" disabled> 8 9<table> 10<thead> 11<tr> 12<th>名前</th> 13<th>単価</th> 14</tr> 15</thead> 16 17<tbody> 18... 19
jquery
1$(function(){ 2 $('option[value]').click(function(){ 3 var fruits = $('option[value]:selected').val(); 4 $("button").prop("disabled", false); 5 }); 6 }); 7 8$(function(){ 9 $('button').click(function(){ 10 $('tbody') 11 .append('<tr ></tr>'); 12 }); 13 }); 14
回答1件
あなたの回答
tips
プレビュー