2017-05-26 114 views
1

我使用角矩選擇器輸入dateTimePicker的,我想今天設置日期和當前時間的輸入。這是我的源代碼。你能幫我麼。 謝謝如何設置今天的日期和時間,默認角矩選擇器

<input class="form-control" 
         format="DD/MM/YYYY HH:mm" 
         ng-model-options="{ updateOn: 'blur' }" 
         moment-picker="startDate" 
         id="startDate" 
         ng-model="startDate"> 
+0

添加腳本代碼 –

+0

@Mr_Perfect三江源。這是我正在尋找。有什麼屬性添加到輸入instanciate從angularjs控制器的日期? ng-model =「startDate」不起作用,如果我加入startDate = new Date();在angularjs控制器 – Rodrigo

+0

那麼,你想在輸入中顯示什麼值?我的意思是全部價值還是隻有日期和時間? –

回答

0

設置默認值startDate當控制器初始化

angular 
    .module('Demo', ['moment-picker']) 
    .controller('DemoController', ['$scope', function ($scope) { 

     $scope.startDate = moment(); 
    }]); 
+0

如果我在時間線圖中使用datepicker。我可以設置初始值作爲點擊圖表上的時間,即從d3.mouse(this)返回的值嗎?是否需要在控制器本身的開始處設置變量? – user2128

0

您可以設置通過在輸入控件使用start-date屬性開始日期。該值應該是一個時刻對象。

<input class="form-control" 
    format="DD/MM/YYYY HH:mm" 
    ng-model-options="{ updateOn: 'blur' }" 
    moment-picker="startDate" 
    id="startDate" 
    ng-model="startDate" 
    start-date="startDate"> 

這是工作fiddle。在這裏,我已經回答了我的問題用矩和角時刻庫和模塊分別

相關問題