我想要3个SELECT框,允许人们选择月,日和年。我确定有这样的HTML预设,对吧?
January 5 2006
用户可以选择日期,这只是选项框。
答案 0 :(得分:1)
答案 1 :(得分:0)
你应该使用html 5 <input type="date" />
,然后优雅地降级不支持它的浏览器。
要正常降级,请使用以下代码taken from diveintohtml5 here。
<form>
<input type="date">
</form>
...
<script>
var i = document.createElement("input");
i.setAttribute("type", "date");
if (i.type == "text") {
// No native date picker support :(
// Use Dojo/jQueryUI/YUI/Closure to create one,
// then dynamically replace that <input> element.
}
</script>