我在我的酒吧有两个职能,管理两个县,然后展示。 我想的是,要在该中心展示的纽芬兰语,但align=center
。 没有工作。 是否有任何人知道如何在我的酒类法典中这样做?
页: 1 如下文法:
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);
}