現在、フォームに入力された値を計算して指定の場所(form)に表示させる機能を作っております。
フォームに入力された値を計算するところまでは出来たのですが、計算結果を指定の場所(form)に表示させる方法が分かりません。
以下コードに入力された値を計算する処理が書かれております。今はjsが呼び出されて動いているかを確認するために
alertで表示させております。
JavaScript
1document.getElementsByName('price')[0] 2 //priceの値が変更された時 3 .addEventListener('change', function() { 4 //変数を定義 5 var price = document.getElementsByName('price')[0].value; 6 var receive_sales_quantity = document.getElementsByName('receive_sales_quantity')[0].value; 7 var tax_included_price = price * receive_sales_quantity; 8 //単価入力欄と数量入力欄のどちらも入力されていたら計算結果をアラート表示する 9 if(price && receive_sales_quantity){ 10 //売り上げ金額欄に計算結果を表示させる 11 alert(tax_included_price); 12 } 13 }); 14document.getElementsByName('receive_sales_quantity')[0] 15 //receive_sales_quantityの値が変更された時 16 .addEventListener('change', function() { 17 //変数を定義 18 var price = document.getElementsByName('price')[0].value; 19 var receive_sales_quantity = document.getElementsByName('receive_sales_quantity')[0].value; 20 var tax_included_price = price * receive_sales_quantity; 21 //単価入力欄と数量入力欄のどちらも入力されていたら計算結果をアラート表示する 22 if(price && receive_sales_quantity){ 23 //売り上げ金額欄に計算結果を表示させる 24 document.getElementsByName("result").innerHTML = tax_included_price; 25 alert(tax_included_price); 26 } 27 });
以下phpファイル内にformの定義をしております。
ここで定義していますresult欄に上記で計算した結果を表示させたいです。
php
1 $form->add(new Text('item_name', ['label' => '商品名'])) 2 ->add(new Text('price_to', ['label' => '単価上限'])) 3 ->add(new Text('price_from', ['label' => '単価下限'])) 4 ->add(new Text('sales_quantity_to', ['label' => '数量上限'])) 5 ->add(new Text('sales_quantity_from', ['label' => '数量下限'])) 6 ->add(new Text('tax_included_priceto', ['label' => '売上上限'])) 7 ->add(new Text('tax_included_price_from', ['label' => '売上下限'])) 8 ->add(new Text('price', ['label' => '単価'])) 9 ->add(new Text('receive_sales_quantity', ['label' => '数量'])) 10 ->add(new Text('result', ['label' => '売上金額'])) 11 ; 12 13 return $form;
回答いただけると幸いです。
よろしくお願い致します。
あなたの回答
tips
プレビュー