是否可以更改Primefaces WIZARD组件的NEXT按钮的位置?
我的向导从以下内容开始。

<p:wizard flowListener="#{employeeRepositoryImpl.handleFlow}"
showNavBar="true" widgetVar="scheduler" showStepStatus="false">
</p:wizard>

最佳答案

如果css非常适合您,您可以随时执行以下操作:

<h:head>
    <script type="text/javascript">
        jQuery(document).ready(function($) {
            jQuery('[id$="_next"]').css('right', 200) ;
        });
    </script>
</h:head>


除了使用right之外,您还可以使用left,top ...等,也可以将它们混合在一起使用。

b.t.w,jQuery('[id$="_next"]')是一个选择器,用于查找页面中的下一个按钮

10-06 10:50