本文介绍了Angularjs 手写日历的实现代码(不用插件),分享给大家,具体如下:
效果:
Html:
<div class="plan_content_box" data-ng-init="showTime()"> <div class="field" style="width: 100%;"> <span class="field_label" style="width: 100%;text-align: center;"> <select id="time_year" ng-change="change_year(select_year)" ng-model="select_year" ng-options="x.id as x.value for x in all_year"> <!--<option value="1900">1900</option>--> </select> 年 <select id="time_month" ng-change="change_month(select_month)" ng-model="select_month" ng-options="x.id as x.value for x in all_month"> </select> 月 {{active_day}} 日 </span> </div> <table class="table table-bordered hover_td" style="border: none;"> <tr id="float_td"> <td>星期日</td> <td>星期一</td> <td>星期二</td> <td>星期三</td> <td>星期四</td> <td>星期五</td> <td>星期六</td> <td ng-repeat="day in days track by $index" ng-click="change_day(day)" ng-class="{true:'active',false:''}[day==active_day]" ng-model="day">{{day}}</td> </tr> </table> </div>
js:
// 创建日历 $scope.all_year = []; $scope.all_month = []; $scope.showTime = function() { //在select中填入年份 for(var year = 2016; year < 2050; year++) { var obj_1 = {'value': year, 'id': year} $scope.all_year.push(obj_1); } //在select中填入月份 for(var month = 1; month < 13; month++) { var obj_2 = {'value': month, 'id': month} $scope.all_month.push(obj_2); } console.log($scope.all_year) //初始化显示 当前年和月 $scope.show_now() } //当select的选中的option发送变化的触发的事件 $scope.change_year = function(data) { $scope.showDays(data, $scope.select_month) } $scope.change_month = function(data) { $scope.showDays($scope.select_year, data) } //返回指定的月份的天数 月份1-12 $scope.calDays = function (year, month) { return new Date(year, month, 0).getDate(); } $scope.days = []; //展示指定的年和月的所有日期 $scope.showDays = function(year, month) { $scope.days = []; //得到表示指定年和月的1日的那个时间对象 var date = new Date(year, month - 1, 1); //1.先添加响应的空白的li:这个月1号是星期几,就添加几个空白的li var dayOfWeek = date.getDay(); //得到1日是星期几 for(var i = 0; i < dayOfWeek; i++) { $scope.days.push(""); } //计算一个月有多少天 var daysOfMonth = $scope.calDays(year, month); //2. 从1号开始添加li for(var i = 1; i <= daysOfMonth; i++) { $scope.days.push(i) } } $scope.active_day = '' $scope.select_year = '' $scope.select_month = '' //初始化显示 当前年和月 $scope.show_now = function() { var now = new Date(); // $("#time_year").val(now.getFullYear()); // $("#time_month").val(now.getMonth() + 1); $scope.active_day = now.getDate(); $scope.select_year = now.getFullYear(); $scope.select_month = now.getMonth() + 1; $scope.showDays($scope.select_year, $scope.select_month) } $scope.change_day = function(day){ $scope.active_day = "" $scope.active_day = day } // 以上是创建日历
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。
本文向大家介绍js编写当天简单日历效果【实现代码】,包括了js编写当天简单日历效果【实现代码】的使用技巧和注意事项,需要的朋友参考一下 之前一直很想用javascript写一个日历,但是因为完全没有好的思路, 所以迟迟没有尝试。最近在网上刚好看到用javascript编写的简单日历的例子,代码量虽然不大, 但是我觉得很好地阐述了js日历的实现原理。自己也尝试着做了一下,收获蛮大,掌握了基本的实现原
本文向大家介绍angularJs中datatable实现代码,包括了angularJs中datatable实现代码的使用技巧和注意事项,需要的朋友参考一下 本文介绍了angularJs中datatable实现,有需要的小伙伴可以参考下 html引用derective: controller设置: angular.datatable.js: 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大
本文向大家介绍JavaWeb项目FullCalendar日历插件使用的示例代码,包括了JavaWeb项目FullCalendar日历插件使用的示例代码的使用技巧和注意事项,需要的朋友参考一下 本文介绍了JavaWeb项目FullCalendar日历插件使用的示例代码,分享给大家,具体如下: 使用FullCalendar需要引用的文件 1.css文件 2.js文件 生成日历主界面 FullCalen
问题内容: 我正在尝试从模板中的控制器填充对象列表。 这是控制器: 但是,我编写的这段代码无法正常工作: 用户界面中未显示任何内容。 相反,如果我在控制器中编写代码,它将起作用: 由于我知道在控制器中要做的事情很诱人,因此我在尝试避免尽可能多地使用。 如果有人能证明的正确使用和差异betwee 和(其中是控制器的别名),我应该心存感激。 问题答案: 问题是您正在访问内部函数而不是控制器函数中存在的
本文向大家介绍批处理万年历实现代码(包括农历日期),包括了批处理万年历实现代码(包括农历日期)的使用技巧和注意事项,需要的朋友参考一下 核心源码 以下是各计算部分算法: 计算星期: 基姆拉尔森计算公式 W= (d+2*m+3*(m+1)/5+y+y/4-y/100+y/400) mod 7 在公式中d表示日期中的日数+1,m表示月份数,y表示年数。 注意:在公式中有个与其他公式不同的地方: 把一月
本文向大家介绍jQuery+ajax实现实用的点赞插件代码,包括了jQuery+ajax实现实用的点赞插件代码的使用技巧和注意事项,需要的朋友参考一下 之前给大家总结了jQuery插件开发的两种方式,这里就实践一下,做一款点赞特效插件,先看看效果吧: 废话少说,上代码: 用法:在需要用到点赞插件的页面中引入jquery.js、以及这个插件.js,在$(function(){})中给"[ob