我已经实现了如何为每个步骤设置内容的动态高度?而且效果很好。但是,当您在步骤中动态添加元素时,这不起作用。例如,通过按钮在表格中动态添加一行,高度不会自动调整。我正在考虑在单击按钮时动态调整高度。关于如何做到这一点的任何建议?
问问题
1763 次
2 回答
0
如果您使用此示例,它没有类wizard
content
,或者body
使用元素headerTag: "h3", bodyTag: "fieldset",
,因此您的示例将是
$("#btnAdd").click(function () {
$("#example-advanced-form h3>fieldset").height(500);
});
于 2015-05-24T08:06:04.110 回答
0
在jquery.steps.css
文件中,
只需删除position: absolute
.
.wizard > .content > .body
{
float: left;
/*position: absolute;*/ <== remove or comment this line
width: 95%;
height: 95%;
padding: 2.5%;
}
于 2017-11-06T10:37:50.240 回答