码迷,mamicode.com
首页 > 其他好文 > 详细

字符串的第几个

时间:2014-07-23 15:22:46      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   re   c   html   

近日有个项目需要显示周几,一开始是这样写的

//日期
var dateObj = new Date()
.find(‘.sign_date‘).html((dateObj.getMonth() + 1) + ‘/‘ + dateObj.getDate())
.end().find(‘.sign_week‘).html("周" + "日一二三四五六"[dateObj.getDay()])

在IE7以上都正常显示 ,结果在IE7成了 “周undefined”

改为

//日期
var dateObj = new Date()
.find(‘.sign_date‘).html((dateObj.getMonth() + 1) + ‘/‘ + dateObj.getDate())
.end().find(‘.sign_week‘).html("周" + "日一二三四五六".charAt(dateObj.getDay()))

既可。

字符串的第几个,布布扣,bubuko.com

字符串的第几个

标签:style   blog   color   re   c   html   

原文地址:http://www.cnblogs.com/cuoreqzt/p/3862937.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!