在datebox中有一個Today按鈕就是實現顯示當前日期,所以我們在src/jquery.datebox.js文件中可以找到currentText:'Today'。 所以我們可以使用'currentText'和'Today'來預設顯示當前日期。 ...
在中有一個Today按鈕就是實現顯示當前日期,所以我們在src/jquery.datebox.js文件中可以找到currentText:'Today'。
所以我們可以使用'currentText'和'Today'來預設顯示當前日期。
1.使用屬性data-options="value:'currentText'"或data-options="value:'Today'"
2.使用javascript設置$('#datebox1').datebox('setValue','Today')或$('#datebox1').datebox('setValue','currentText');
------------------------------------題外話------------------------------------
Easy-UI使用一般需要引入2個css文件和2個js文件即可,文件名如下:
<link rel="stylesheet" type="text/css" href="jquery-easyui-1.5.5/themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="jquery-easyui-1.5.5/themes/icon.css">
<script type="text/javascript" src="jquery-easyui-1.5.5/jquery.min.js"></script>
<script type="text/javascript" src="jquery-easyui-1.5.5/jquery.easyui.min.js"></script>
最後,如果想要datebox顯示的是中文,那麼請在jquery.easyui.min.js引入locale/easyui-lang-zh_CN.js即可。
提醒:使用easy-UI框架,javascript出現"Uncaught TypeError: Cannot read property 'options' of undefined" /xxx/jquery-easyui-1.5.5/jquery.easyui.min.js (15933)報錯時,有可能是你寫的javascript代碼沒有放在window.onload=function(){}或$(function(){})之中。