第一种:input type为text的写法
<input id="date" name="date" type="text" value="0">
<script type="text/javascript">
jQuery(document).ready(function(){
$("#date").dateinput({format: 'yyyy-mm-dd',today:1});
});
</script>
第二种:input type为date的写法
<input type="date" name="test" value="0" />
<script>
jQuery(function () {
$.tools.dateinput.localize("zh-CN", {
months: '一月,二月,三月,四月,五月,六月,七月,' +
'八月,九月,十月,十一月,十二月',
shortMonths: '一,二,三,四,无,六,七,' +
'八,九,十,十一,十二',
days: '星期日,星期一,星期二,星期三,星期四,星期五,星期六',
shortDays: '日,一,二,三,四,五,六'
});
});
</script>
<script>
$(function () {
$(":date").dateinput({
lang: 'zh-CN',
format: 'yyyy-mm-dd',
offset: [30, 0]
});
})
</script>
第二个写法,要写
$.tools.dateinput.localize
这里边的参数,不然不显示内容。第一种写法要简单的多,具体看自己需求。