使用angularjs处理语义UI日期选择器。尝试将ng-model
与语义UI日期选择器绑定,但未分配选择器的值。我还查看了语义控件用户界面未填充的日期文本框值选择。那么,有没有更好的获取价值的方法?
// Code goes here
var app = angular.module('App', [])
app.controller('AppController', function($scope) {
$('#example2').calendar({
type: 'date'
});
$scope.getDate = function() {
alert($scope.datevalue)
}
})
<!DOCTYPE html>
<html>
<head>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.rawgit.com/mdehoog/Semantic-UI/6e6d051d47b598ebab05857545f242caf2b4b48c/dist/semantic.min.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script src="https://cdn.rawgit.com/mdehoog/Semantic-UI/6e6d051d47b598ebab05857545f242caf2b4b48c/dist/semantic.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0/angular.min.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="App" ng-controller="AppController">
<h3>Date only</h3>
<div class="ui calendar" id="example2">
<div class="ui input left icon">
<i class="calendar icon"></i>
<input type="text" placeholder="Date" ng-model="datevalue">
</div>
</div>
<br/>
<button ng-click="getDate()">Submit</button>
</body>
</html>
答案 0 :(得分:1)
那是因为您需要通知angular公司模型已更改。
在CXType_RValueReference
上,将范围的值设置为日期。
此为:
onChange
// Code goes here
var app = angular.module('App', [])
app.controller('AppController', function($scope) {
$('#example2').calendar({
type: 'date',
onChange: function (date,text) {
$scope.datevalue = date;
}
});
$scope.getDate = function() {
alert($scope.datevalue)
}
})
注意,如果它很重要,可以用指令将其包装起来。