s332361180  

2011年11月17日

摘要: js代码:MusicBox = function() { var _this = this; var media = document.getElementById("musicBox"); var musicFiles = []; //当前正在播放的歌曲的索引 var index = -1; //当前正在播放的歌曲 var playingFile = null; //播放模式 var playMode = 1; //下一首 this.nextMusic = function() { if (playMode == "1") { index += 1; 阅读全文
posted @ 2011-11-17 17:22 s332361180 阅读(242) 评论(0) 推荐(0) 编辑
 
摘要: 直接上代码废话不说:function addCookie(objName, objValue, objHours) {//添加cookie var str = objName + "=" + escape(objValue); if (objHours > 0) {//为0时不设定过期时间,浏览器关闭时cookie自动消失 var date = new Date(); var ms = objHours * 3600 * 1000 * 24; date.setTime(date.getTime() + ms); str += "; expires=" 阅读全文
posted @ 2011-11-17 17:19 s332361180 阅读(191) 评论(0) 推荐(0) 编辑
 
摘要: 直接上代码:1.判断浏览器: <scriptlanguage="JavaScript"> <!-- functiongetOs() { varOsObject=""; if(navigator.userAgent.indexOf("MSIE")>0){ return"MSIE"; } if(isFirefox=navigator.userAgent.indexOf("Firefox")>0){ return"Firefox"; } if(isSa 阅读全文
posted @ 2011-11-17 17:17 s332361180 阅读(718) 评论(0) 推荐(0) 编辑
 
摘要: with 语句 为一个或一组语句指定默认对象。 用法:with (<对象>) <语句>; with 语句通常用来缩短特定情形下必须写的代码量。在下面的例子中,请注意 Math 的重复使用: x = Math.cos(3 * Math.PI) + Math.sin(Math.LN10); y = Math.tan(14 * Math.E); 当使用 with 语句时,代码变得更短且更易读: with (Math) { x = cos(3 * PI) + sin(LN10); y = tan(14 * E); } this 对象 返回“当前”对象。在不同的地方,this 代 阅读全文
posted @ 2011-11-17 17:13 s332361180 阅读(2596) 评论(0) 推荐(0) 编辑