- 浏览: 343297 次
- 性别:
- 来自: 杭州
文章分类
- 全部博客 (354)
- 学习 (219)
- 工作 (69)
- 前端技术 (188)
- 个人评论 (1)
- 工作总结 (1)
- 工作的方法 (1)
- 代码库 (1)
- jQuery (63)
- javascript (4)
- css (4)
- 网络通信协议 (3)
- web (7)
- 服务端性能 (1)
- 优化 (1)
- html5 (4)
- serialize (1)
- 上线页面 (1)
- ie6 (6)
- js (1)
- iframe (1)
- flash (1)
- a (1)
- img (1)
- 页面tms的要求 (1)
- kissy (3)
- 需求也页面 (0)
- 需求页面 (2)
- 视频插件 (1)
- 切图片 (1)
- map (1)
- display (1)
- 浮动定位 (1)
- 大小图片的切换功能 (2)
- demo (1)
- margin (1)
- a标签 (1)
- border (1)
- 侧导航 (1)
- 切换PNG格式的css (1)
- padding (1)
- 显示添加和删除 (1)
- 滚动条 (1)
- 和图片处理 (1)
- 移动端 (1)
- 定位 (1)
- 移动端的包的引入作用与直接拨打电话的A标签 (1)
- git (1)
- node.js (1)
- Zepto (1)
最新评论
-
幻紫1992:
还有分页的功能、、(⊙o⊙)嗯
[JS代码库] -
幻紫1992:
就是没有返回顶部的按钮,这个页面、、
[JS代码库] -
幻紫1992:
很受用,O(∩_∩)O谢谢啦~
[JS代码库] -
nlnl520coco:
想下个东西 规则太苛刻了 网站得改进
[JS代码库] -
hxp520520:
new Limiter() 这个对象是kissy API里面的 ...
Limiter的简单demo--20131029
今天的工作
1、初步的完成了替换的效果
2、用按钮来识别替换的后的数据的接受
今天的问题
1、就是在显示json上面还有问题在2月到3月的地方 怎么通过判断列表的ID来修改月份
2、就是在展示本周数据的上还有问题 同样的效果在上周 和下周都能展示在本周就不行
3、就是在返回上周里 的问题到下周都可以用 == 号 但是在上周只能用 = 来判断是否返回写法都是一样的上周的就没办法展示
4、就是在点击本周按钮没有效果
今天的单词
[1] gas /gaes/ 汽油
[2] grass /geuld/ 金色的
[3] gold /gra:s/ 草坪
1、初步的完成了替换的效果
/* 函数名:click_drawback 功能描述: 用来进入下一周的按钮 */ function click_drawback() { if(document.getElementById("id_head").style.visibility == "visible") { document.getElementById("id_headbehind").style.visibility = "visible"; document.getElementById("id_headfront").style.visibility = "hidden"; document.getElementById("id_head").style.visibility = "hidden"; document.getElementById("id_symbol").style.visibility = "hidden"; document.getElementById("id_twomonth").style.visibility = "hidden"; } else if(document.getElementById("id_headfront").style.visibility == "visible") { document.getElementById("id_headbehind").style.visibility = "hidden"; document.getElementById("id_headfront").style.visibility = "hidden"; document.getElementById("id_head").style.visibility = "visible"; document.getElementById("id_symbol").style.visibility = "hidden"; document.getElementById("id_twomonth").style.visibility = "hidden"; } } /* 函数名:click_advance 功能描述: 用来进入上一周的按钮 */ function click_advance() { if(document.getElementById("id_head").style.visibility == "visible") { document.getElementById("id_headfront").style.visibility = "visible"; document.getElementById("id_headbehind").style.visibility = "hidden"; document.getElementById("id_head").style.visibility = "hidden"; document.getElementById("id_symbol").style.visibility = "visible"; document.getElementById("id_twomonth").style.visibility = "visible"; } else if(document.getElementById("id_headfront").style.visibility = "visible") { document.getElementById("id_headfront").style.visibility = "hidden"; document.getElementById("id_headbehind").style.visibility = "hidden"; document.getElementById("id_head").style.visibility = "visible"; document.getElementById("id_symbol").style.visibility = "hidden"; document.getElementById("id_twomonth").style.visibility = "hidden"; } } /* 函数名:click_tswk 功能描述: 用来返回本周的按钮 */ function click_tswk() { if(document.getElementById("id_head").style.visibility != "visible" ) { document.getElementById("id_head").style.visibility = "visible"; document.getElementById("id_symbol").style.visibility = "hidden"; document.getElementById("id_twomonth").style.visibility = "hidden"; document.getElementById("id_headfront").style.visibility = "hidden"; document.getElementById("id_headbehind").style.visibility = "hidden"; } }
2、用按钮来识别替换的后的数据的接受
document.getElementById("buttons").onclick = function() { if(document.getElementById("id_head").style.visibility == "visible" && semihora==0) { document.getElementById("0txt"+hour+"txt"+i).value = document.getElementById("id_thefloatinglayer_value").value; var data = '{transmitbyradio:[{ageLunaday:'+document.getElementById('id_age').value+' , '+document.getElementById('id_threemonth').value+' , '+(i+3)+'号 ,time:'+hour+'点—'+hour+'点30分 ,content:内容'+document.getElementById('0txt'+hour+'txt'+i).value+'}]}'; alert(data); //alert(document.getElementById("id_age").value) } else if(document.getElementById("id_head").style.visibility == "visible" && semihora==1) { document.getElementById("1txt"+hour+"txt"+i).value = document.getElementById("id_thefloatinglayer_value").value; var data = '{transmitbyradio:[{ageLunaday:'+document.getElementById('id_age').value+' , '+document.getElementById('id_threemonth').value+', '+(i+3)+'号 ,time:'+hour+'点30分—'+(hour+1)+'点 ,content:内容'+document.getElementById('1txt'+hour+'txt'+i).value+'}]}'; alert(data) } else if(document.getElementById("id_headfront").style.visibility == "visible" && semihora==0) { document.getElementById("0txt"+hour+"txt"+i).value = document.getElementById("id_thefloatinglayer_value").value; var data = '{transmitbyradio:[{ageLunaday:'+document.getElementById('id_age').value+' , '+document.getElementById('id_threemonth').value+' , '+(i+24)+'号 ,time:'+hour+'点—'+hour+'点30分 ,content:内容'+document.getElementById('0txt'+hour+'txt'+i).value+'}]}'; alert(data); } else if(document.getElementById("id_headfront").style.visibility == "visible" && semihora==1) { document.getElementById("1txt"+hour+"txt"+i).value = document.getElementById("id_thefloatinglayer_value").value; var data = '{transmitbyradio:[{ageLunaday:'+document.getElementById('id_age').value+' , '+document.getElementById('id_threemonth').value+', '+(i+24)+'号 ,time:'+hour+'点30分—'+(hour+1)+'点 ,content:内容'+document.getElementById('1txt'+hour+'txt'+i).value+'}]}'; alert(data); } else if(document.getElementById("id_headfront").style.visibility == "visible" && semihora==0 && document.getElementById("0txt"+hour+"txt"+i).id.i>5) { document.getElementById("0txt"+hour+"txt"+i).value = document.getElementById("id_thefloatinglayer_value").value; var data = '{transmitbyradio:[{ageLunaday:'+document.getElementById('id_age').value+' , '+document.getElementById('id_twomonth').value+' , '+(i+24)+'号 ,time:'+hour+'点—'+hour+'点30分 ,content:内容'+document.getElementById('0txt'+hour+'txt'+i).value+'}]}'; alert(data); } else if(document.getElementById("id_headbehind").style.visibility == "visible" && semihora==0) { document.getElementById("0txt"+hour+"txt"+i).value = document.getElementById("id_thefloatinglayer_value").value; var data = '{transmitbyradio:[{ageLunaday:'+document.getElementById('id_age').value+' , '+document.getElementById('id_threemonth').value+' , '+(i+10)+'号 ,time:'+hour+'点—'+hour+'点30分 ,content:内容'+document.getElementById('0txt'+hour+'txt'+i).value+'}]}'; alert(data); } else if(document.getElementById("id_headbehind").style.visibility == "visible" && semihora==1) { document.getElementById("0txt"+hour+"txt"+i).value = document.getElementById("id_thefloatinglayer_value").value; var data = '{transmitbyradio:[{ageLunaday:'+document.getElementById('id_age').value+' , '+document.getElementById('id_threemonth').value+' , '+(i+10)+'号 ,time:'+hour+'点—'+hour+'点30分 ,content:内容'+document.getElementById('0txt'+hour+'txt'+i).value+'}]}'; alert(data); }
今天的问题
1、就是在显示json上面还有问题在2月到3月的地方 怎么通过判断列表的ID来修改月份
2、就是在展示本周数据的上还有问题 同样的效果在上周 和下周都能展示在本周就不行
3、就是在返回上周里 的问题到下周都可以用 == 号 但是在上周只能用 = 来判断是否返回写法都是一样的上周的就没办法展示
4、就是在点击本周按钮没有效果
今天的单词
[1] gas /gaes/ 汽油
[2] grass /geuld/ 金色的
[3] gold /gra:s/ 草坪
发表评论
-
Zepto
2015-08-15 13:49 1241Zepto Zepto,是一个比较 ... -
jQuery google日历练习-20130822
2013-08-23 00:01 898一、效果及功能说明 模仿google日历自己来完成一个日历 ... -
6月17号工作
2013-06-18 04:06 549今天的工作 问题 1、遇到个没办法解决的问题 就是在切图的 ... -
6月16号工作
2013-06-17 00:51 628今天的工作 1、今天一天的时间将第一个页面做好了 主要耽 ... -
4月12号工作
2013-04-13 00:34 361今天的工作 1、今天完成了在效果页面里没有的部分一个 我的问题 ... -
4月11号工作
2013-04-12 00:14 616今天的工作 今天是完成新页面的JS的工作 今天的问题 1、在 ... -
4月10号工作
2013-04-11 00:49 509今天的工作 1、把今天指定团子切的页面的html 和 css ... -
4月9号工作
2013-04-09 23:49 426今天的工作 1、今天把新的页面初步完成了 2、等明天团子把图 ... -
4月8号工作
2013-04-08 23:51 272今天的工作 1、开始制作另外的页面了 2、页面的html5基本 ... -
4月7号工作
2013-04-08 00:35 571今天的工作 <!DOCTYPE HTML> ... -
4月6号工作
2013-04-07 00:08 604今天的工作 1、完成了html5的基本控件的了解诶 2、在开始 ... -
4月5号工作
2013-04-06 00:30 603今天的工作 将html5的控件都整理了出来 今天单词 [1 ... -
4月3-4号工作
2013-04-05 02:41 641两天的工作 1、把页面的阴影从新修改了一下 2、把内容页面的从 ... -
4月2号工作
2013-04-03 07:16 577今天的工作 今天的页面已经基本完成了 除了 缩放的问题的外 基 ... -
3月30号工作
2013-03-31 23:18 708今天的工作 1、解决了取得下拉框值的问题 2、将个人信息发送过 ... -
3月29号工作
2013-03-29 23:08 712今天的工作 1、把滚动条的样式修改了 但是和样本还是有差距但是 ... -
3月28号工作
2013-03-29 00:12 605今天的工作 1、把三个页面合并在了一起 2、把输入框的字体修改 ... -
3月27号工作
2013-03-28 00:47 624今天的工作 1、把页面的 head 和 left 做完了 2、 ... -
3月26号的工作
2013-03-27 01:47 422今天的工作 1、把今天的练习给做完了 <!DOCTYPE ... -
3月24号工作
2013-03-25 01:21 734今天的工作 1、知道了意思就是在点翻页的按钮的时候不是真的翻页 ...
相关推荐
在这个3月25日的第四次作业中,我们聚焦于通过LabVIEW操作“一系列流水灯”的实践,这涉及到数组和寄存器等关键概念的应用。 首先,让我们深入理解流水灯。流水灯是一种常见的电子工程实验,它通过控制一组LED的亮...
针对2017年3月25日的托福写作考前重点,我们可以从两个独立写作题目中提炼出关键的知识点。 首先,第一个题目涉及到选择高风险高薪工作还是低风险低薪工作的问题。对于这个议题,考生需要权衡稳定性和经济回报之间...
针对2017年3月25日的托福口语考试,以下是一些重点复习内容: 1. **Task 1** - 针对朋友的不良饮食习惯提建议: - 主张不要挑食。一些人过于偏爱垃圾食品,如披萨、炸鸡或薯片,这些食物对健康有害,可能导致肥胖...
- **平安教育日设立**:为了推动中小学安全教育工作,降低少年儿童伤亡事故的发生率,1996年国家有关部门决定建立“平安教育日”制度,将每年三月最后一个周一确定为全国中小学生“平安教育日”。 - **历年主题**:...
本篇文章将聚焦于58同城电话号码识别技术,特别是针对2012年10月25日该平台升级后的新特性进行深入探讨。 首先,电话号码识别是58同城为用户提供便捷联系服务的关键环节。在网站上,商家或个人发布的房源、招聘信息...
三、清明节:4月4日至6日放假调休,共3天。4月7日(星期日)上班。 四、劳动节:5月1日至5日放假调休,共5天。4月28日(星期日)、5月11日(星期六)上班。 五、端午节:6月10日放假,与周末连休。 六、中秋节:9...
这篇文档主要涉及的是2017年3月25日二级建造师的继续教育选修课考试答案,格式为Microsoft Word文档。二级建造师是中国建筑工程领域的一种专业资格,他们负责建筑项目的管理和技术工作。继续教育是针对已取得资格的...
以上是2018年11月25日托福口语考试的部分内容,这些题目覆盖的话题广泛,要求考生具备快速思考和清晰表达的能力,同时也体现了托福口语对实际生活和工作场景的模拟。备考时,考生应注重提高自身的口语表达流畅度、...
【标题】"京东APP取cookie(2021年8月25日更新).zip" 涉及的知识点主要集中在网络安全、移动应用安全以及Web应用程序的认证机制上。这个压缩包文件似乎包含了一个名为“京东APP取cookie.exe”的程序,这可能是用于从...
《塔吊专项施工方案2011年12月25日修改》是建筑行业中针对塔吊使用和管理的重要文档,通常包含了一系列详尽的安全措施、操作流程和技术规范,以确保在施工现场塔吊作业的高效性和安全性。这篇文档可能涵盖以下几个...
* 2013年2月26日—2013年3月25日:系统的功能测试(系统测试阶段)。 * 2013年3月26日—2013年5月15日:完成毕业设计及毕业论文。 * 2013年5月16日—2013年5月31日:准备答辩。 知识点4:毕业设计的任务书 * 毕业...
在2018年11月25日的托福写作部分,考生面临了一道关于父母养育孩子的独立写作题目:“你是否同意现在的父母比50年前的父母养孩子轻松?”此题旨在探讨现代育儿环境与过去相比的变化,以及这些变化是否使育儿变得更加...
在准备11月25日的托福独立写作考试时,考生需要关注的几个核心话题包括:跨学科学习、志愿服务、团队合作中的个人角色,以及在闲暇时间如何自我提升。以下是对这些主题的详细分析: 1. 跨学科学习: 题目提出大学...
假设我们需要计算2023年6月1日至2023年7月1日之间的实际工作日数量,且假设周六和周日均不算作工作日,并且6月25日是公共假日。 - **步骤1**:设置 `IncludeSaturdays` 和 `IncludeSundays` 的值为 `False`。 - **...
这篇2018年11月25日的托福听力机经涵盖了多个主题,涉及校园生活、艺术、科学、历史和社会学等多个领域。以下是详细的知识点解析: 1. **校园对话** - 学生询问校园工作机会,了解厨师职位的情况,展现了学生寻找...
四、11月25日更新版的亮点 4.1 最新技术动态:可能包含了最新的NLP模型和技术在AIOps中的实践案例。 4.2 应用案例分析:详细展示了NLP如何解决AIOps中的实际问题,提供了可参考的解决方案。 4.3 性能优化:可能...
这个名为"2月25日课程制作写真照片模板素材.zip"的压缩包文件显然是为教学或培训目的准备的一组资源。让我们深入探讨一下其中可能包含的知识点以及如何利用这些素材。 首先,我们要理解什么是“写真照片模板”。...
【广西2010年12月25日计算机一级考试题目】的文件是一份针对一级计算机考试的笔试试题,包含基础知识和操作系统两个必做模块。以下是对这些知识点的详细解析: 1. 计算机的基本工作原理:尽管计算机在性能上不断...
根据时间节点,3-8日为地下大堂开放,9-15日泳池开放,16-22日会所公开,18日推出18号楼,23日7号楼推出,25日20号楼推出,整个五月是销售的关键时期。推广支点主要强调改善型品质户型、创新双标准和品牌信心,以此...