jQuery:日期选择器,提醒所选日期的名称
我如何提醒所选日期的名称?例如“星期一”。
因此,当您选择 2011 年 6 月 7 日时,它会提醒“星期二”
<script>
$(function() {
$( "#date" ).datepicker({
dateFormat: 'dd/mm/yy',
onSelect: function(dateText, inst) {
// how can i grab the day name of the day, example "Monday" and alert it out?
// alert( ? );
}
});
});
</script>
How can i alert the selected days name? Example 'Monday'.
So when you pick 7th june 2011 it will alert "Tuesday"
<script>
$(function() {
$( "#date" ).datepicker({
dateFormat: 'dd/mm/yy',
onSelect: function(dateText, inst) {
// how can i grab the day name of the day, example "Monday" and alert it out?
// alert( ? );
}
});
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
jQueryUI 的 Datepicker 附带了一个
formatDate
函数,可以做到这一点为你。如果您使用本地化版本,它也会以该语言显示日期。有关 Dapicker 实用函数本地化的更多信息,请查看 http://jqueryui.com/demos/datepicker /。
The jQueryUI's Datepicker comes with a
formatDate
function that can do that for you. If you're using a localized version, it'll show the days in that language too.For more information on localization of on Dapicker's utility functions, have a look at http://jqueryui.com/demos/datepicker/.
如果您不介意在输入框中显示当天的名称,这将起作用
如果您不喜欢它,您可以使用第二个隐藏输入(http://jqueryui.com/demos/ datepicker/#alt-field)
示例位于 http://jsfiddle.net/aa74R/
this will work if you don't mind showing the name of the day in the input box
if you dont like it you can use second hidden input (http://jqueryui.com/demos/datepicker/#alt-field)
example at http://jsfiddle.net/aa74R/
您可以像这样解析日期 (
mm/dd/yyyy
):并使用
.getDay
函数。你可以这样做:You can parse a date like this (
mm/dd/yyyy
):and use the
.getDay
function. You could do this:使用内置函数
Use inbuilt function