[許可]ボタンは、すべてのチェックボックスがオンの場合にのみ無効にする必要があります。どうすればいいのですか?私は以下のようにHTML部分を完成させました。 ?それのロジックの一部を行うボタンが1つのボックスにチェックボックスがオンまたはオフ取得されるたびに、ここで1つのボックスでもチェックが外されている場合、ALLOWボタンを無効にするにはどうすればよいですか? ALLOWボタンは、すべてのボックスがチェックされている場合にのみ有効にする必要がありますか?
<form role="form" action="{{{basePath}}}/consent" method="post">
<table style="width:100%;
border-collapse: collapse;">
<tr style="border-collapse: collapse;">
<td> <span>
<span style="color: #111;"><b>Open</b></span><span style="color: #0078bf;"><b>Bank</b></span>
</span></td><td>Account Information</td>
<td><input type="checkbox" name="information" value="info" checked></td>
</tr>
<tr style="border-collapse: collapse;">
<td> <span>
<span style="color: #111;"><b>Open</b></span><span style="color: #0078bf;"><b>Bank</b></span>
</span></td>
<td>Account Balance</td>
<td><input type="checkbox" name="balance" value="bal" checked></td>
</tr>
<tr style="border-collapse: collapse;"> <td> <span>
<span style="color: #111;"><b>Open</b></span><span style="color: #0078bf;"><b>Bank</b></span>
</span></td>
<td>Account Transactions</td>
<td><input type="checkbox" name="transaction" value="trans" checked></td>
</tr>
</table>
</div>
{{#if scopes}}
<!--<ul class="list-group">
{{#each scopes}}
<li class="list-group-item">{{this}}</li>
{{/each}}
</ul>-->
<script type="text/javascript">
$('#account-selector').change(function(){
console.log(this.value);
//console.log(accounts[this.value].amount);
})
</script>
<br><label style="margin-left:25%;" class="account-select">Please select an account</label><br>
<select style="width:100%;" class="dropbdown" id="account-selector" required name="account_number">
<option selected="selected" disabled="disabled">--Select an Account--</option>
{{#each accounts}}
<option value="{{this.account_number}}">{{this.label}} ({{this.account_number}})</option>
{{/each}}
</select>
<br>
<span id="amount-balance"></span>
{{else}}
<h3>The application does not require any permissions.</h3>
{{/if}}
{{#if to}}
<div class="panel panel-default">
<div class="panel-body">
<div>I agree to transfer <strong>{{amount}} GBP</strong> to account number: <strong>{{to}}</strong></div>
</div>
</div>
{{/if}}
{{#if tnc}}
<p>I agree to the <a href="{{tnc}}" class="tnc-link" target="_blank">Terms and conditions</a></p>
{{/if}}
<br><p>By clicking <strong>Allow</strong>, you will allow <strong>Accenture AISP</strong> and <strong>OpenBank</strong> to use your information in accordance with their respective terms of service and privacy policy for 90 days.
</p>
<div class="consent-button">
<button type="submit" name="allow" value="allow" class="btn btn-primary grass-btn" style="width:48%">Allow</button>
<button type="submit" name="deny" value="deny" class="btn btn-primary grass-btn" style="width:48%">Cancel</button>
</div>
</form>
を正常に動作しますまた、ボタンを有効または無効にするコードを記入してください。私はjavascriptを初めて利用しています –
あなたのサブミットボタンにIDを与えてください。 '' が、その後 '$のようにJavaScriptでそれを無効に許可する(" #1 bttn_submit ') ' OR ' $(」(真、 "無効")支えます。 –
それは動作していません –