我有以下代码
<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>
问题是因为我在第二个 Div 类上使用 style="display :none",所以 schedule1 按钮和 Cancel 按钮显示在不同的行中。如果我们从 Div 标签中删除样式,它将是内联的。知道如何解决这个问题吗?
我正在使用 java 脚本并根据某些条件我将使 seconf DIV 可见