前提・実現したいこと
pythonで財務諸表を自動で分析できるようなシステムを作っています。
javascript(js)初心者です。jsでリロードしても入力した数字が消えないようにする機能を作りたいです。
発生している問題・エラーメッセージ
以下のように実装したのですが売上高の隣に表示させたいのですが表示されません。
該当のソースコード
index.html
html
1<form id="form" action="/roughprofit" method="POST"> 2 <label for="">売上高<span id="span2"></span></label> 3 <input id="number2" class="main" type="number" name="sales" placeholder="千万円"> 4 <label for="">売上総利益(粗利益)<span id="span3"></span></label> 5 <input id="number3" class="main" type="number" name="roughprofit" placeholder="千万円"> 6 <input type="submit" value="計算"onclick="onclickBtn3()" /> 7 <ul>粗利益率(小数点第一位%表示)</ul>{{ result }} 8 {{originaldata1}} 9 {{originaldata2}} 10 </form>
javascript
1function clickBtn3() { 2 const number2 = document.getElementById("number2"); 3 document.getElementById("span2").textContent = number2.value; 4 } 5 function clickBtn3() { 6 const number3 = document.getElementById("number3"); 7 document.getElementById("span3").textContent = number3.value; 8 }
試したこと
以下の記事を参考にしました。
https://itsakura.com/js-number
補足情報(FW/ツールのバージョンなど)
ファイルとディレクトリの配置
text
1_pycache_ 2|-app.cpython-39.pyc 3images 4|-2.png 5static 6|-design.css 7 |-js 8 |-index.js 9templates 10|-howto.html 11|-index.html 12|-searched.html 13|-table.html 14|-Registar.html 15|-login.html
app.py
search.db
クレスコ財務データ(自動保存済み).csv
FW:flask
言語:Python3.9.7
pandasダウンロード済み
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/01/11 06:47
2022/01/11 07:00
2022/01/11 07:23