arrReportscheckBoxItems

arrReportscheckBoxItems

我添加了一个引导行。现在在其中添加复选框,这样复选框应该并排显示,而不是像现在这样逐行显示。这是HTML。

<div class="row" id="ReportRow">
        <div class="col-md-12">
        </div>
</div>


这是jQuery

var Reports = "User, Admin, Detail, Summary";
var arrReportscheckBoxItems = Reports.split(',');
var reportscheckBoxhtml = ''
for (var i = 0; i < arrReportscheckBoxItems.length; i++) {
      reportscheckBoxhtml += '<label style="font-weight: 600; color: #00467f !important;"><input type="checkbox" value=' + arrReportscheckBoxItems[i] + '>' + arrReportscheckBoxItems[i] + '</label><br\>';
}
$('#ReportRow').html(reportscheckBoxhtml);


斑les帮助我正确对齐。谢谢。

最佳答案

Fiddle
只需从代码中删除<br/>

var Reports = "User, Admin, Detail, Summary";
var arrReportscheckBoxItems = Reports.split(',');
var reportscheckBoxhtml = ''
for (var i = 0; i < arrReportscheckBoxItems.length; i++) {
      reportscheckBoxhtml += '<label style="font-weight: 600; color: #00467f !important;"><input type="checkbox" value=' + arrReportscheckBoxItems[i] + '>' + arrReportscheckBoxItems[i] + '</label>&nbsp;';
}
$('#ReportRow > .col-md-12').html(reportscheckBoxhtml);

10-02 12:09