0
2つのボタンを管理している2つの機能がjQueryにあります。私が望むのは、ボタンを中央に表示することですが、align=center
は機能しません。誰も私のjQueryコードでこれを行う方法を知っていますか?これらのボタンを中央に配置するには
以下のjQueryコード:
function insertQuestion(form) {
var $answer = $("<table class='answer'></table>");
$('.allBtns:first-child').each(function() {
var $this = $(this);
var $allBtnsClass = '';
$allBtnsClass = $("<input class='allBtns btnsAll' type='button' style='display: inline-block;' value='Select All Answers' onClick='selectAll(this);' />")
.attr('name', $this.attr('name'))
.attr('value', $this.val())
.attr('class', $this.attr('class'));
}
$answer.append($allBtnsClass);
});
$('.allRemoveBtns:first-child').each(function() {
var $this = $(this);
var $removeBtnsClass = '';
$removeBtnsClass = $("<input class='allRemoveBtns btnsRemove' type='button' style='display: inline-block;' value='Remove All Answers' onClick='removeAll(this);' />")
.attr('name', $this.attr('name'))
.attr('value', $this.val())
.attr('class', $this.attr('class'));
}
$answer.append($removeBtnsClass);
});
$tr.append($answer);
}
コードに余分な '}'があります。私は再インデントするときに気づきました。あなたのコードが実行されていると確信していますか? – Jacob
これは '.each'関数で未使用です –