私は次のコードを持っています
<div class="form-horizontal" >
<div class="form-actions" id="sub" >
<button type="button" class="btn btn-primary" id="Schedulem" value="Schedule," name="Schedulem" > Schedule Maintenance </button>
<button type="button" class="btn" onclick="cancel()" > Cancel </button>
</div>
</div>
<div class="form-horizontal" >
<div class="form-actions" id="sub1" style="display :none" >
<button type="button" class="btn btn-primary" id="Schedule1" value="Schedule1" name="Schedule1" onclick="Schedule1()"> Schedule Maintenance </button>
<button type="button" class="btn" onclick="cancel()" > Cancel </button>
</div>
</div>
問題は、2 番目の Div クラスで style="display :none" を使用しているため、schedule1 ボタンと [キャンセル] ボタンが別の行に表示されていることです。Div タグからスタイルを削除すると、インラインになります。これを解決する方法はありますか?
Javaスクリプトを使用しており、特定の条件に基づいて、seconf DIVを表示可能にします