質問編集履歴
1
HTMLの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -84,6 +84,96 @@
|
|
84
84
|
|
85
85
|
|
86
86
|
|
87
|
+
```HTML
|
88
|
+
|
89
|
+
<form name="loanform">
|
90
|
+
|
91
|
+
<div class="form-group">
|
92
|
+
|
93
|
+
<div class="input-group">
|
94
|
+
|
95
|
+
<span class="input-group-addon">amount</span>
|
96
|
+
|
97
|
+
<input class="form-control t_rlt" name="amount" placeholder="amount">
|
98
|
+
|
99
|
+
</div>
|
100
|
+
|
101
|
+
</div>
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
<div class="form-group">
|
106
|
+
|
107
|
+
<div class="input-group">
|
108
|
+
|
109
|
+
<span class="input-group-addon">downpayment</span>
|
110
|
+
|
111
|
+
<input class="form-control t_rlt" name="downpayment" placeholder="downpayment">
|
112
|
+
|
113
|
+
</div>
|
114
|
+
|
115
|
+
</div>
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
<div class="form-group">
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
<div class="input-group">
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
<span class="input-group-addon">combind bonus</span>
|
128
|
+
|
129
|
+
<input class="form-control t_rlt" name="cb_amount" placeholder="combind bonus">
|
130
|
+
|
131
|
+
</div>
|
132
|
+
|
133
|
+
</div>
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
<div class="form-group">
|
138
|
+
|
139
|
+
<select class="form-control" name="years" >
|
140
|
+
|
141
|
+
<option value="" selected>select payment yeart</option>
|
142
|
+
|
143
|
+
<option value="1" selected>1 year payment </option>
|
144
|
+
|
145
|
+
<option value="2" selected>2 year payment </option>
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
</select>
|
150
|
+
|
151
|
+
</div>
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
<div class="form-group">
|
156
|
+
|
157
|
+
<input type="submit" value="submit" class="btn btn-dark btn-block">
|
158
|
+
|
159
|
+
</div>
|
160
|
+
|
161
|
+
</form>
|
162
|
+
|
163
|
+
<div id="loading">
|
164
|
+
|
165
|
+
<img src="img/loading.gif" alt="Loading">
|
166
|
+
|
167
|
+
</div>
|
168
|
+
|
169
|
+
<div id="results" class="pt-4">
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
```
|
174
|
+
|
175
|
+
|
176
|
+
|
87
177
|
### [コード全体はこちらにおいています。](https://jsfiddle.net/diessses/qwkejm9p/1/)
|
88
178
|
|
89
179
|
https://jsfiddle.net/diessses/qwkejm9p/1/
|