第一種: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
這裡邊的參數,不然不顯示内容。第一種寫法要簡單的多,具體看自己需求。