gpt4 book ai didi

html - 如何在输入元素中设置默认月份?

转载 作者:太空狗 更新时间:2023-10-29 17:45:01 26 4
gpt4 key购买 nike

假设我有一个这样的输入元素:

<input type="month">

如何将此输入元素的默认值设置为当前月份?

最佳答案

你可以使用一些 javascript:

const monthControl = document.querySelector('input[type="month"]');
const date= new Date()
const month=("0" + (date.getMonth() + 1)).slice(-2)
const year=date.getFullYear()
monthControl.value = `${year}-${month}`;
<input type="month">

关于html - 如何在输入元素中设置默认月份?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53188184/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com