Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将月份选择器作为输入字段。
我开始了解 jQuery 月份选择器。
我如何在primefaces中使用它?
我没有遇到过 Prime 面孔,但你为什么不使用 Jquery UI,它有一个内置的日历。您可以轻松地调整代码以仅输出月份。
http://jqueryui.com/datepicker/
var date = $('#datepicker').datepicker({ dateFormat: 'mm' }).val();
谢谢