<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>编程文档</title>
<link>http://www.codeday.comhttp://document.codeday.com/</link>
<description>编程文档</description>
<language>zh-cn</language>
<generator><![CDATA[Copyright &amp;copy; 2010 代码天下 版权所有 
&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;http://js.users.51.la/372733.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;http://s4.cnzz.com/stat.php?id=137793&amp;web_id=137793&quot; language=&quot;JavaScript&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);
document.write(unescape(&quot;%3Cscript src=&quot; + gaJsHost + &quot;google-analytics.com/ga.js type=text/javascript%3E%3C/script%3E&quot;));
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
try {
var pageTracker = _gat._getTracker(&quot;UA-435969-1&quot;);
pageTracker._trackPageview();
} catch(err) {}&lt;/script&gt;]]></generator>
<webmaster>codeday@gmail.com</webmaster>
<item>
    <title><![CDATA[分享十个应用最广的Javascript框架]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886341276369953.html</link>
    <description><![CDATA[Javascript库已经成为设计优秀网站的基础，当今几乎所有站点都带有Javascript或Ajax元素。在Web2.0开发大潮中，它也许是最关键的要素。 以下十个十大Javascript框架，你常用其中的几个？ 1]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个数列JS数字题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886331276369952.html</link>
    <description><![CDATA[对于数列f(n): f(1) =1,f(2) =2 f(n) =f(n-1)+f(n-2) (n2) 求数列f(n)中不大于4000,000且为偶数项数之和。 以下是程序代码 script type=text/javascriptvar n = 2;var fn = 0;var sum = 0;var myArray = [1,2];while(fn=4000000){]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[jss函数使用及调用规则]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886321276369950.html</link>
    <description><![CDATA[JavaScript函数调用规则一 (1)全局函数调用： function makeArray( arg1, arg2 ) return [this , arg1 , arg2 ]; 这是一个最常用的定义函数方式。相信学习JavaScript的人对它的调用并不陌生。 调用代码如下]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JS获取视窗或浏览器窗口的尺寸]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886311276369949.html</link>
    <description><![CDATA[获取视窗或浏览器窗口的尺寸 有时需要找出浏览器的有效窗口空间的尺寸，一般成为视窗。 IE 语法： var myBrowserSize = [0, 0]; myBrowserSize[0] = document.documentElement.clientWidth; myBrowserSize[1] = d]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[兼容Firefox火狐浏览器的JS读取远程XML...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886301276369948.html</link>
    <description><![CDATA[最初的想法是用于注册，判断要注册的用户名是否重复。 参数： str_xmlUrl：远程XML的地址；如http://192.168.1.19/test/xml.xml str_dirPath：要寻找的节点的路径，如XMLDocument/test[0]/newName2/childs[2]]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript-log教程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886291276369945.html</link>
    <description><![CDATA[//----------------------------------开发背景----------------------------------------------// 在javascript开发过程中，如果总是使用alert的方式调试程序,很难满足企业级开发的需要。 比如ajax项目中，存在一]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IE和火狐浏览器常见的兼容代码问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886281276369944.html</link>
    <description><![CDATA[1. document.form.item 问题 (1)现有问题： 现有代码中存在许多 document.formName.item(itemName) 这样的语句，不能在 MF 下运行 (2)解决方法： 改用 document.formName.elements[elementName] (3)其它 参见 2 2]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js判断select列表值的函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886271276369942.html</link>
    <description><![CDATA[//1.判断select选项中 是否存在Value=paraValue的Item function jsSelectIsExitItem(objSelect,objItemValue) var isExit = false; for(var i=0;iobjSelect.options.length;i++) if(objSelect.options[i].value == objItemValue) isExit = true;]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JS显示或隐藏层的函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886261276369941.html</link>
    <description><![CDATA[/* ======================== 函数：显示或隐藏层 showDiv(divId_array,showLocality_array) 参数说明： divId_array 所有要操作的层ID，用逗号分隔 showLocality_array 所有要显示的层在参数DivIdArray所对应的位置]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript 图片切换显示代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886251276369939.html</link>
    <description><![CDATA[以下是HTML网页特效代码，点击运行按钮可查看效果： 以下是程序代码 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtdhtml xmlns=http://www.w3.or]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[continue 语句]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886241276369938.html</link>
    <description><![CDATA[停止循环的当前迭代，并开始新的迭代。 continue [ label ]; 可选的 label 参数指定 continue 应用于哪条语句。 说明 只能在 while 、 do...while 、 for 、或 for...in 循环内使用 continue 语句。 执行]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js如何向select选项中插入新值]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886231276369936.html</link>
    <description><![CDATA[通过以下的函数,你可以轻松实现向select插入新的item值 //2.向select选项中 加入一个Item function jsAddItemToSelect(objSelect,objItemText,objItemValue) //判断是否存在 if(jsSelectIsExitItem(objSelect,objItemValue]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[TBODY在firefox下用js显示和隐藏时出现...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886221276369935.html</link>
    <description><![CDATA[今天帮别人写一个网页，发现：当用javascript动态设置tr.style.display = block显示某行时，使用IE浏览没有问题，但使用firefox浏览时该行被移到了其它行的后面，很是诧异。看下面这个例子]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JS页面跳转]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886211276369933.html</link>
    <description><![CDATA[按钮式： INPUT name=pclog type=button value=GO 链接式： a href=javascript:history.go(-1)返回上一步/a a href=%=Request.ServerVariables(HTTP_REFERER)%返回上一步/a 直接跳转式： scriptwindow.location.href='ht]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js从select列表选项中删除一个Item项]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886201276369932.html</link>
    <description><![CDATA[//3.从select选项中 删除一个Item function jsRemoveItemFromSelect(objSelect,objItemValue) //判断是否存在 if(jsSelectIsExitItem(objSelect,objItemValue)) for(var i=0;iobjSelect.options.length;i++) if(objSelect.options[i].value ==]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页弹窗代码特效大全]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886191276369931.html</link>
    <description><![CDATA[前言:关于弹出窗口的问题已经有无数人问过了。干脆将这个专题写成教学，供大家观摩。 经常上网的朋友可能会到过这样一些网站，一进入首页立刻会弹出一个窗口，或者按一个连接或]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页技巧：妥善处理JavaScript中的错误...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886181276369929.html</link>
    <description><![CDATA[不管你的技术水平如何，错误或异常是应用程序开发者生活的一部分。Web开发的不连贯性留下了许多错误能够发生并确实已经发生的地方。解决的关键在于处理任何不可预见的（或可预]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js修改select列表选项中的值]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886171276369927.html</link>
    <description><![CDATA[//4.修改select选项中 value=paraValue的text为paraText function jsUpdateItemToSelect(objSelect,objItemText,objItemValue) //判断是否存在 if(jsSelectIsExitItem(objSelect,objItemValue)) for(var i=0;iobjSelect.options.length;i++)]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页技巧：如何用javascript防止连打（...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886161276369926.html</link>
    <description><![CDATA[javascript代码： function doubleCheck(){ if (window.document.readyState != null window.document.readyState != 'complete') { alert(正在处理，请等待！); return false; } else { MessageClear(); return true; } } 在C#代码中： t]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js拖放效果深度分析]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886151276369923.html</link>
    <description><![CDATA[拖放效果，也叫拖拽，学名Drag-and-drop ，是最常见的js特效之一。 如果忽略很多细节，实现起来很简单，但往往细节才是难点所在。 这个程序的原型是在做图片切割效果的时候做出来的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript模板技术]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886141276369922.html</link>
    <description><![CDATA[/***Template.class.js***/ function Template() { this.classname=Template; this.debug=false; this.file=new HashMap(); this.root=; this.varkeys=new HashMap(); this.varvals=new HashMap(); this.unknowns=remove; this.halt_on_error=yes; th]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js设置select列表中特定项为选中状态]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886131276369920.html</link>
    <description><![CDATA[//设置select中text=paraText的第一个Item为选中 function jsSelectItemByValue(objSelect,objItemText) //判断是否存在 var isExit = false; for(var i=0;iobjSelect.options.length;i++) if(objSelect.options[i].text == objItemText) o]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[[翻]javascript的函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886121276369917.html</link>
    <description><![CDATA[javascript的函数 作者：F. Permadi 译者：Sheneyan(子乌) 时间：2006.01.03 英文原文： INTRODUCTION TO JavaScript Functions 中文译文(包括示例)：javascript的函数 子乌注：一篇相当不错的function入门文章，]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[13个JavaScript网站制作中实用技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886111276369914.html</link>
    <description><![CDATA[1. 将彻底屏蔽鼠标右键oncontextmenu=window.event.returnValue=false table border oncontextmenu=return(false)tdno/table 可用于Table 2. 取消选取、防止复制 body onselectstart=return false 3. 不准粘贴onpaste=return fa]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[[ymPrompt消息提示组件]3.1版发布]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886101276369913.html</link>
    <description><![CDATA[新增配置项： 新增 fixPosition 参数设定是否当页面滚动时使弹出框始终浮动在屏幕的固定位置。 新增 dragOut 参数设定是否允许弹出框拖动到页面范围以外。 新增 autoClose 参数设定是否当]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js操作select下拉列表的一些通用代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886091276369910.html</link>
    <description><![CDATA[//设置select中value=paraValue的Item为选中 //document.all.objSelect.value = objItemValue; //得到select的当前选中项的value //var currSelectValue = document.all.objSelect.value; //得到select的当前选中项的text //var c]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[[原创]最简单,最适合入门学习的三层架构...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886081276369909.html</link>
    <description><![CDATA[1.打开VS2008后，文件--新建--项目--其他项目类型--Visual Studio 解决方案--空白解决方案 就起名为:MvcTest 吧 2.建立如图 附件: 您所在的用户组无法下载或查看附件的项目,并在WEB--App_Data建一个]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[学习网页制作技巧：给表格加滚动条]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886071276369908.html</link>
    <description><![CDATA[其实这个东西没什么技术含量，就是 给大家提供一个给表格加滚动条的思路 。 运行代码框 htmlheadtitleMy table/titlestyle.table0 {height:90%;}.table0 caption{width:100%;height:26px;line-height:26px;font-size:]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript基础教程之十二在VBScript中使...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886061276369906.html</link>
    <description><![CDATA[使用对象 无论使用的是 ActiveX? 控件（以前称为 OLE 控件）还是 Java? 对象，Microsoft Visual Basic Scripting Edition 和 Microsoft? Internet Explorer 都以相同的方式处理它们。如果您使用的是 Internet E]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[【算法趣题】产生随机DNA序列（字串）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886051276369905.html</link>
    <description><![CDATA[【题目说明】写一段程序（不限语言），能够按要求产生随机DNA序列（字串）。 DNA序列由A、T、C、G四种碱基（字符）组成。现要求按A 10%, T 20%, C 30%, G 40% 的比例产生长度为100个碱基的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Javascript创建快捷方式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886041276369904.html</link>
    <description><![CDATA[需将站点设为信任站点。 var fso = new ActiveXObject(Scripting.FileSystemObject); var shell = new ActiveXObject(WScript.Shell); var tagFolder = c:\\Temp; if(!fso.FolderExists(tagFolder )) { fso.CreateFolder(tagFolder); //aler]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个禁用浏览器的后退功能的简单方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886031276369902.html</link>
    <description><![CDATA[要禁用后退的话，在每个页面的顶部加上脚本： history.forward(); 基本上所有浏览器都兼容的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[鼠标事件onmouse资料大全]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886021276369900.html</link>
    <description><![CDATA[一般事件 事件 浏览器支持 描述 onClick IE3|N2|O3 鼠标点击事件，多用在某个对象控制的范围内的鼠标点击 onDblClick IE4|N4|O 鼠标双击事件 onMouseDown IE4|N4|O 鼠标上的按钮被按下了 onMouseUp IE4]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript弹出窗口详解]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886011276369899.html</link>
    <description><![CDATA[一、 弹出窗口的基本属性设置 -------------------------------------------------------------------------------- SCRIPT LANGUAGE=javascript !-- window.open ('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js对联广告封装类代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/886001276369896.html</link>
    <description><![CDATA[以下是HTML网页特效代码，点击运行按钮可查看效果： 以下是程序代码 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtdhtml xmlns=http://www.w3.or]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[prototype 属性]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885991276369895.html</link>
    <description><![CDATA[返回对象类型原型的引用。 objectName . prototype objectName 参数是对象的名称。 说明 用 prototype 属性提供对象的类的一组基本功能。 对象的新实例“继承”赋予该对象原型的操作。 例如，]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript面向对象技术实现树形控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885981276369893.html</link>
    <description><![CDATA[树形控件是一种人们熟悉的用户界面控件，广泛地用来显示层次型数据。 树形控件具有独特的扩展和折叠分支的能力，能够以较小的空间显示出大量的信息，一目了然地传达出数据之间]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何让iframe自适应高度.]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885971276369892.html</link>
    <description><![CDATA[方案一： iframe src=”http://www.alixixi.com/index.htm” name=”content” id=”content” allowtransparency=”true” align=”default” marginwidth=0 marginheight=0 frameborder=0 scrolling=no height=”200″ width=”500″ onl]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表单提交时,提交div中的评论内容]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885961276369890.html</link>
    <description><![CDATA[在提交表单时把 div id=myInstance1 的内容得以提交 以下是示例代码： FORMname=form1action=/cmd.aspmethod=post divid=myInstance1style=font-size:12px;padding:3px;width:495px; 评论内容 /div INPUTtype=submitva]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[&amp;amp;#106avascript对象与数组参考大全(2)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885951276369889.html</link>
    <description><![CDATA[name HTML标记中的NAME=特性 value HTML标记中的VALUE=特性 方法 click 模拟鼠标单击一按钮 事件处理程序 Onclick B.5 checkbox 对象 它是form对象的一个属性,使用INPUT TYPE=CHECKBOX标记来创建。 属性]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页密码强度检测实例代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885941276369887.html</link>
    <description><![CDATA[仿MSN密码强度检测 以下js文件代码： varkNoCanonicalCounterpart=0; varkCapitalLetter=0; varkSmallLetter=1; varkDigit=2; varkPunctuation=3; varkAlpha=4; varkCanonicalizeLettersOnly=true; varkCananicalizeEverything=false; vargDebu]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[escape,encodeURI,encodeURIComponent函...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885931276369886.html</link>
    <description><![CDATA[js对文字进行编码涉及3个函数：escape,encodeURI,encodeURIComponent，相应3个解码函数：unescape,decodeURI,decodeURIComponent 1、 传递参数时需要使用encodeURIComponent，这样组合的url才不会被#等特殊字符]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[最新的QQ在线状态代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885921276369883.html</link>
    <description><![CDATA[最新的QQ在线状态代码 scriptonline=new Array();/script script language=javascript src=http://wpa.qq.com/getonline?178010108:/script scriptwindow.onload=function()alert(online)/script]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JS判断两种格式的输入日期的正确性]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885911276369882.html</link>
    <description><![CDATA[第一种 script language=javascript String.prototype.isDate = function() { var r = this.match(/^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2})$/); if(r==null)return false; var d = new Date(r[1], r[3]-1, r[4]); return (d.getFullYear()==r[1](d.getMonth]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Js 按照MVC模式制作自定义控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885901276369881.html</link>
    <description><![CDATA[在web开发中常常要使用js，为了提高效率一般都会制作js的类文件。这样在使用中更新复用都很方便。下面按照我工作中的一个案例，介绍如何定义js类文件制作自定义的控件。 一、设计]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过JS在客户端限止用户重复提交的代码...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885891276369879.html</link>
    <description><![CDATA[程序介绍 ： 1.方法一：hiddenForm 隐藏表单法: 查看函数 hiddenForm 2.方法二：disButtons 禁用按钮法: 查看函数 disButtons disButtons2 3.本程序为客户端javascript程序限制多次提交，冰河原创首发蓝]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[正则检测IP地址是否合法的js函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885881276369877.html</link>
    <description><![CDATA[function checkIP2(sIPAddress) var exp=/^(\d1,2|1\d\d|2[0-4]\d|25[0-5])\.(\d1,2|1\d\d|2[0-4]\d|25[0-5])\.(\d1,2|1\d\d|2[0-4]\d|25[0-5])\.(\d1,2|1\d\d|2[0-4]\d|25[0-5])/; var reg = sIPAddress.match(exp); var ErrMsg=你输入的是一个非法的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IE与火狐(firefox)浏览器对js及css的支...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885871276369876.html</link>
    <description><![CDATA[IE与火狐(firefox)浏览器对js及css支持的几处不同: 1.firefox不能对innerText支持，也不知道为什么。firefox支持innerHTML但却不支持innerText，所以上网查了一下，原来它改支持textContent来实现inn]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过js在一个网页中控制另一个网页的图...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885861276369875.html</link>
    <description><![CDATA[用window.opener既可控制A页面里的元素，给你写两个简单的页面，详细的根据需要再去封装成函数调用。 A页面： 以下是引用片段： html head metahttp-equiv=Content-Typecontent=text/html;charset=gb2]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[iframe框架集左右收缩隐藏]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885851276369873.html</link>
    <description><![CDATA[此例心得 对于td隐藏之类的写法，不要用display:block ---display:none，来进行,用这种写法style.display='';style.display:none;不然在firefox有点问题。。有兴趣的人可以测试下。将上面的代码那个di]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js如何获取标签的属性值]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885841276369872.html</link>
    <description><![CDATA[代码形式如下: a class=a0 id=xxoogggggggggggggspan class= b0 hhhhhhhhhhhhhhhhhhhhhhhh/span/a 想获取span标签的class属性值 获取的方法如下 : 以下是引用片段： document.getElementById(xxoo).getElementsByTagNa]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[纯手工写的一个选项卡切换]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885831276369870.html</link>
    <description><![CDATA[下面这个标签是关键所在，共有5个参数，来赋予切换的功能。 input type=hidden id=kp_OtherRegional value=nav,li,cardarea,item,current_tab / 首先演示一下功能。 以下是HTML网页特效代码，点击运行]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript实现换皮肤的一种思路]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885821276369869.html</link>
    <description><![CDATA[难点在于document.write输出html语句结构用法。。。思路在于在网页中动态加入xxx.css文件..来实现. 以下是引用片段： scriptlanguage=javascript varstyleId=1; varcssPath=style/style_switch; document.write(’]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[刷新网页时自动变换图片效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885811276369867.html</link>
    <description><![CDATA[刷新自动换图片的代码 --------------------------------------------------------------------- script language=JavaScript a = 7 //最大随机数（图片总数） var pp = Math.random(); var foot = Math.round(pp * (a-1))+1; functio]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js怎么获取某个标签的高度值？]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885801276369866.html</link>
    <description><![CDATA[JS得到窗口高度 SCRIPT LANGUAGE=JavaScript var s = 网页可见区域宽 ：+ document.body.clientWidth; s += \r\n网页可见区域高：+ document.body.clientHeight; s += \r\n网页可见区域高：+ document.body.offsetHeigh]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js取得cookie值的函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885791276369865.html</link>
    <description><![CDATA[由于asp的cookie是经过url编码的，所以读之前要unescape一下。 下面是我用正则的方法取cookie，包括单值和多值： /************************************************** 参数说明： sMainNameCookie名 sSubName]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js版本的base64加密代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885781276369864.html</link>
    <description><![CDATA[以下是HTML网页特效代码，点击运行按钮可查看效果： 以下是程序代码 html head titlebase64 Encoding/Decoding/title /head/fontfont face=Verdana script type=text/javascript!--/fontfont face=Verdana var keyStr = ABCD]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js实现两个radio的联动]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885771276369862.html</link>
    <description><![CDATA[以下是HTML网页特效代码，点击运行按钮可查看效果： 以下是程序代码 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtdhtml xmlns=http://www.w3.org/1999/xhtml]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在网页中加入运行脚本代码的功能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885761276369861.html</link>
    <description><![CDATA[如何在网页中加入运行脚本代码的功能 以下是HTML网页特效代码，点击运行按钮可查看效果： 以下是程序代码 script type=text/javascriptfunction runCode(obj) var winname = window.open('', '_blank', '');]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[兼容ie和火狐的js无缝八向滚动特效代码...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885751276369857.html</link>
    <description><![CDATA[!DOCTYPEhtmlPUBLIC-//W3C//DTDXHTML1.0Transitional//ENhttp://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd htmlxmlns=http://www.w3.org/1999/xhtml head metahttp-equiv=Content-Typecontent=text/html;charset=gb2312/ titleJavaScript无缝]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一则精典的js脚本注释]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885741276369854.html</link>
    <description><![CDATA[(#ddd).animate(left:0,top:0,1000) //老子先跑到left:0，tou:0那里去 .animate(opacity:toggle,2000) //老子慢慢消失 .animate(opacity:toggle,500) //老子很快出来 .animate(left:600,2000) //老子再慢慢跑到lefe:600 .s]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[符合标准的正常工作的对联广告]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885731276369852.html</link>
    <description><![CDATA[符合标准的正常工作的对联广告 以下是HTML网页特效代码，点击运行按钮可查看效果： 以下是程序代码 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-tr]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[滚动文字新闻的制作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885721276369851.html</link>
    <description><![CDATA[一句一句话地显示出来，有点类似于跑马灯效果，文字效果的突出点比较明显，推荐使用。 制作方法： 将下面的代码复制到body~/body里 script language=JavaScript1.2 //设置下面的参数(宽度，高]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何让网页中的图片随网页窗口的大小自...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885711276369849.html</link>
    <description><![CDATA[script language=JavaScript type=text/javascript function DrawImage(ImgD,FitWidth,FitHeight) var image=new Image(); image.src=ImgD.src; if(image.width0 image.height0) if(image.width/image.height= FitWidth/FitHeight) if(image.widthFitWidt]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过js实时统计文本框的输入字数限制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885701276369849.html</link>
    <description><![CDATA[限制文本框输入的字符数,若达到数目则停止其输入! 以下是HTML网页特效代码，点击运行按钮可查看效果： 以下是程序代码 scriptfunction checklen(obj)var lenE = obj.value.length;var lenC = 0;var CJK =]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改变图片链接的边框颜色]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885691276369847.html</link>
    <description><![CDATA[一般图片的边框为蓝色，对于搭配您的站点很不方便，看看下面的图片的边框色，是不是让您兴奋啊！ 制作方法 将下面的代码复制到body~/body里 a href=# img src=http://www.webjx.com/htmldata/2]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[禁止用右键查看源代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885681276369846.html</link>
    <description><![CDATA[做网页的朋友都会遇到这种情况：有时自己辛苦半天做的网页，尤其是一些JavaScript特效，很容易被人利用查看源文件而复制。那么如何才能防止被人查看源代码呢？我们可以利用event.]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[标题栏跑马灯]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885671276369845.html</link>
    <description><![CDATA[将下代码copy入你网页的head和/head中的合适地方即可。 SCRIPT LANGUAGE=JAVASCRIPT !-- var msg = 让我们做得更好--网页教学网！; var speed = 300; var msgud = + msg; function titleScroll() { if (msgud.length ms]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让浏览器状态栏动起来]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885661276369843.html</link>
    <description><![CDATA[每当用浏览器一打开别人的主页时，在浏览器的状态栏上就会出现各种形式的文本提示，而且提示是动态的，提示的内容有的是介绍主页内容的，有的是欢迎的信息等等，这样的提示既]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页中取消鼠标右键方法大全]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885651276369842.html</link>
    <description><![CDATA[第一种：最笨的方法 把下列代码加入到head与/head之间 SCRIPT language=javascript function click() { if (event.button==2) { alert('网页教学网http://www.webjx.com') } } document.onmousedown=click /SCRIPT 第二种：添加]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自动跳出Frame]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885641276369840.html</link>
    <description><![CDATA[有时侯，你的页面会被别人的frame引用，含在别人的frame中(有时一些站点因内容不足， 会将别人的页面当作自己的一个frame,看起来像是自己本身的页面) 。你当然不会高兴， 访问者也觉]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页自适应不同浏览器和分辨率]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885631276369839.html</link>
    <description><![CDATA[上网这么久，曾经不止一次地看到有些网站的首页上醒目地写着请用Internet Explorer 4.0版本以上浏览器在800×600分辨率下浏览本网站等字样的文字。可是，我的17英寸的彩显你不能总让我]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为网页添加特效]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885621276369837.html</link>
    <description><![CDATA[制作弹出式窗口 有许多网页在打开的时候，会弹出一个较小的窗口，显示广告或一些最新信息。这种弹出式窗口制作很简单，只要在网页代码的〈body〉标签后面插入类似代码即可：]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[密码输入框的问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885611276369836.html</link>
    <description><![CDATA[Sample 1:普通情况，即默认情况,AutoComplete时打开的。见：IE5-工具-内容-自动完成选项。 form input type = text name = Email /form Sample 2:有时候我们并不需要AutoComplete，例如需要用户自己再次输入]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Javascript制作行间颜色间隔]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885601276369834.html</link>
    <description><![CDATA[制作页面，有时为了摆脱表格行与行之间单调颜色的显示，追求一种简单视觉效果，要求每行之间以不同颜色显示。一般制作时，都以手工隔行调节色系，这样就会出现管理表格极为不]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作弹出公告窗口]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885591276369833.html</link>
    <description><![CDATA[有时我们需要采用公告窗口来展示一些重要的信息，所谓公告窗口是指我们浏览主页时，随主页面的加载而自动弹出的小窗口，公告窗口中一般会放上新闻、布告的信息。下面我们看看]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作Javascript弹出窗口技巧九则]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885581276369831.html</link>
    <description><![CDATA[经常上网的朋友可能会到过这样一些网站，一进入首页立刻会弹出一个窗口，或者按一个连接或按钮弹出，通常在这个窗口里会显示一些注意事项、版权信息、警告、欢迎光顾之类的话]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[排序Select中Option项的一个示例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885571276369830.html</link>
    <description><![CDATA[Form中的Select控件不支持对选择项(Option）的排序，下面我将对Option中value属性值进行排序，并调整每个Option排序后的位置，具体代码如下（这里假设每个Option中的value与其中的text内容相同]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页侦测四法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885561276369829.html</link>
    <description><![CDATA[在网上看到有很多主页上有这样的提示：建议您采用IE4。0使用800×600分辨率浏本网页。其实在网页里的主体部分即和之间找个合适的位置,加上十分简单的一小段javascript语句就可以侦测到]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例分析：仿6room网站图片链接效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885551276369827.html</link>
    <description><![CDATA[在本人上一篇教程《 彻底弄懂CSS盒子模式五(定位强化练习) 》有讲到一个很酷的链接面板提示的实例制作，那时主要是用到display方法来实现对象的显示和隐藏的，但是后来了解到那种]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何实现浏览器上的右键菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885541276369825.html</link>
    <description><![CDATA[今天和大家一起学习一下如何在浏览器中实现类似于应用程序的鼠标右击后出现右键菜单的效果。 首先要解决的问题是在怎样的情况鼠标右击不会出现IE的菜单。思路可以有两个，一个]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft JScript 特性 - 非-ECMA]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885531276369824.html</link>
    <description><![CDATA[种类 特性/关键字 数组处理 VBArray dimensions , getItem , lbound , toArray , ubound 条件编译 @cc_on @if 语句 @set 语句 条件编译变量 日期和时间 getVarDate 枚举 Enumerator atEnd , item , moveFirst , moveNext 对象]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自动生成文章摘要内容js代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885521276369822.html</link>
    <description><![CDATA[实现内容：截断一段含有HTML代码的文本，但是不会出现围堵标记没有封闭的问题。 核心部分如下： function Generate_Brief(text,length) if(text.length length) return text; var Foremost = text.substr(0,length)]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript 根据屏幕解析度显示不同网页...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885511276369821.html</link>
    <description><![CDATA[为了增加网页的魅力，你也可以针对不同的屏幕解析度设计不同的网页。这样当使用者浏览你的网页时，就会配合屏幕解析度，自动显示出适合浏览的网页画面，不但帮助使用者省去调]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Js + Css的msn式的popup提示窗口的实现...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885501276369819.html</link>
    <description><![CDATA[Msn的提示窗口非常经典，所以我们也做一个javascript实现一下，给大家逗乐用。 闲话不多说，Javascript代码如下： 只有javascript代码还是不够的，我们还需要css来定义样式： DIV#eMsg{}{ bac]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[web开发常用js功能性小技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885491276369818.html</link>
    <description><![CDATA[web开发常用js功能性小技巧 -------------------------------------------------------------------------------- !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN; HTML; HEAD; TITLE; New Document /TITLE; /HEAD; BODY; FORM MET]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[页面自动刷新]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885481276369816.html</link>
    <description><![CDATA[当你做网页时，是不是有的时候想让你的网页自动不停刷新，或者过一段时间自动跳转到另外一个你自己设定的页面？其实实现这个效果非常地简单，而且这个效果甚至不能称之为特效]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用php或js获取图片大小,高宽尺寸.]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885471276369815.html</link>
    <description><![CDATA[? $arr=getimagesize(images/album_01.gif); echo $arr[3]; $strarr=explode(\,$arr[3]); echo $strarr[1]; ? HTML HEAD TITLE演示图片等比例缩小/TITLE script function Wa_SetImgAutoSize(img) { //var img=document.all.img1;//获取图片]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自适应图片大小的弹出窗口]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885461276369813.html</link>
    <description><![CDATA[很多时候我们需要提供这样的功能给访问者：当访问者点击页面中的缩略图时，其对应的全尺寸图片将显示在一个新的弹出窗口中供访问者查看。 实现此功能的最简单作法是用以下HT]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[isFinite 方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885451276369811.html</link>
    <description><![CDATA[返回一个 Boolean 值,指明所提供的数字是否是有限的。 isFinite( number ) 必选项 number 参数为任意的数值。 说明 如果 number 不是 NaN 、负无穷或正无穷，那么 isFinite 方法将返回 true 。 如果是]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[更方便的单选框]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885441276369810.html</link>
    <description><![CDATA[脚本说明: 把如下代码加入body区域中 form label for=check1经常来这里/label input type=CHECKBOX id=check1 value=often name=checkoften label for=check2偶尔来看看/label input type=CHECKBOX id=check2 value=]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于网页源代码屏蔽]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885431276369805.html</link>
    <description><![CDATA[很早就想写一篇关于网页源代码屏蔽的文章。是因为经常编出些JS脚本的之后，在沾沾自喜的同时，也在担心源代码会被人家看到，盗用我的脚本。所以一直以来，我都在尽力维护我的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何制作鼠标感应动画菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885421276369802.html</link>
    <description><![CDATA[许多网友问：鼠标移上去会变亮的菜单是怎么制作的？其实这是用两张图片交替显示的效果，具体采用javascript脚本语言实现。因为稍微复杂些，需要细细讲解。 你要制作这种效果的话，]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[图象淡出效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885411276369799.html</link>
    <description><![CDATA[SCRIPT language=JAVASCRIPT function fade_in() { if (test.filters.alpha.opacity 100) { test.filters.alpha.opacity += 10; clearTimeout(timer); var timer = setTimeout(fade_in(),150); timer; } } /SCRIPT]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[“智慧型”网页制作技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885401276369798.html</link>
    <description><![CDATA[人们都希望自己的主页生动活泼，并且多一些与访问者的交互。下面的小技巧是否能让你感到自己的网页多了几分色彩呢？ 1．来访者访问次数的记录 一位来访者看到我能统计他访问我]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[减轻JavaScript测试和调试负担]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885391276369796.html</link>
    <description><![CDATA[像JSP、ASP.NET、ColdFusion这样的Web开发平台提供了大量强大服务器端开发选项。但是，它们并没有否定用JavaScript进行客户端的Web开发。 JavaScript同时提供了逻辑和用户接口功能，减轻了服]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[强制访问你的广告]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885381276369793.html</link>
    <description><![CDATA[页面特效栏目 强制点击广告是很令人厌恶的行为，慎用！慎用！ 把下面代码copy入你html文件的head和/head中 script language=JavaScript !-- Begin var num = 2; var mypage = '../pages/java1.htm'; var pissoff =]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript实现一些随机事件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885371276369792.html</link>
    <description><![CDATA[1、随机广告 SCRIPT LANGUAGE=JavaScript !-- Begin var how_many_ads = 3; var now = new Date() var sec = now.getSeconds() var ad = sec % how_many_ads; ad +=1; if (ad==1) { txt=The World's Largest Online Bookstore, Amazon.com; url=http]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧用JavaScript记录网站访问次数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885361276369790.html</link>
    <description><![CDATA[我们知道Cookie是记录访问你站点的用户的信息，它驻留在用户的硬盘上，如果该用户再次返回你的站点，则该cookie就会被一起发回到你的服务器中，便于你统计和处理重复到访者的信息]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[妙用VBScript自制IE工具栏按钮]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885351276369788.html</link>
    <description><![CDATA[IE工具栏上的各种按钮可不是Microsoft的专利，普通用户一样能够对其进行自定义，添加想设置的按钮，至于添加的方法，很多资料上都介绍过。具体的实现方式不外乎两种，一是使用冗长]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[高级表单验证－针对多次提交表单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885341276369787.html</link>
    <description><![CDATA[每个开发人员面对的困难是预测用户能够或是将要做什么--这对于网络开发人员来说就更为困 难，因为他的预测必须考虑到Web 的多样性和缺乏真正的session控制机制。如果你已经创建过一]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[图片马赛克变化效果 Pic mosaic 的制作...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885331276369786.html</link>
    <description><![CDATA[一个图片的马赛克变化效果，这是我在一个网站上发现的，给人的冲击力真的很强，如果用在菜单上，肯定会有意想不到的效果，起初我还以为是flash，后来才知道是用了简短的几行脚本]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎么在网页制作拖拽的拼图效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885321276369784.html</link>
    <description><![CDATA[细入Behaviors 的Drag Layer指令。 如何在网页中做一个拼图的效果？ 其实要做到这点并不困难，只需要使用到Dreamweaver一个简单的指令。 步骤一:要找到一张完整，而且色彩鲜明的图片。这样]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[100秒内蓝屏死机的脚本源代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885311276369782.html</link>
    <description><![CDATA[声明：此程序只供研究使用，如用做不正当用途后果自负！ html head script LANGUAGE=javascript function leave() { window.open(file:///c:/nul/nul,,toolbar=no,menubar=no,location=no,height=1,width=1); } // End -- !--web]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作仿 Flash 的图片渐变效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885301276369781.html</link>
    <description><![CDATA[新发现的一个效果更出色的图片透明渐变，这次的效果新增了触发初期的高光闪动，更接近flash的效果！ 制作方法： 把代码加到head和/head中，下载 flashimg.js 文件 SCRIPT language=Javascript s]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几个很有用的javascript函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885291276369779.html</link>
    <description><![CDATA[函数Reset()按Reset按钮后对各字段的内容复位。 函数submitForms()按submit按钮后对字段合法性检查后发送电子邮件。 函数isName()对姓名字段进行合法性检查。 函数isEmail()对电子邮件地址字段]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一则装载页面进度条]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885281276369777.html</link>
    <description><![CDATA[titleloadpage/title meta http-equiv=Content-Type content=text/html; charset=gb2312 style type=text/css !-- .unnamed1 { background-color: #000000} -- /style /head body table border=0 cellpadding=0 cellspacing=0 width=100% height=100]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自定义右键菜单代码详解]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885271276369776.html</link>
    <description><![CDATA[style !-- /*定义菜单方框的样式1*/ .skin0 { position:absolute; text-align:left; width:200px; /*宽度，可以根据实际的菜单项目名称的长度进行适当地调整*/ border:2px solid black; background-color:menu; /*菜单的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[连续滚动图片的制作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885261276369775.html</link>
    <description><![CDATA[连续滚动的图片，一般都是用Flash制作，现在我们使用Script制作同样的效果： 制作方法： 单击这里查看一下演示效果 相关文件： 2004082021demo.htm 2004082021scroll.htm 在页面body~/body相关位置加]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用VBScript实现倒计时]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885251276369773.html</link>
    <description><![CDATA[---- 澳门就要回归祖国的怀抱，而且“千年虫”（ 2000年）也一步步地在向我们逼近。对于这些即将到来的时刻，我们最好做一个倒计时，来时刻提醒我们它们的到来。而且如果在你的网]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[破解网页禁止鼠标右键的技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885241276369772.html</link>
    <description><![CDATA[大家在上网时是否碰到过这样的情况：当你在某个网站看到网页上有精美图片或者精彩文字想保存时，一按鼠标右键就弹出个窗口，上面写着XXX版权所有、禁止使用右键之类的话，要不]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页中图片的随机显示]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885231276369771.html</link>
    <description><![CDATA[图片随机显示是一个应用非常广泛的技巧。比如随机banner的显示，当你进入一个网站时它的banner总是不同的，或者总有内容不同的提示（tips)，大家在网上浏览时会经常发现这样的例子。]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[鼠标移动到一张图片时变为另一张图片]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885221276369770.html</link>
    <description><![CDATA[用以下代码. script language=JavaScript!-- c0off = new Image(80,30); c0off.src = 图片1位置; c0on = new Image(80,30); c0on.src = 图片2位置; function img_act(imgName) { imgOn = eval(imgName+on.src); document[imgName].src =]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用JScript 的变量]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885211276369767.html</link>
    <description><![CDATA[任何编程语言中，用一块数据量化一个概念。 How old are You? 在 Jscript 中，变量是给概念的名称；它代表了给出瞬间的值。当使用该变量时，实际是用的它所代表的数据。给出示例： Nu]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[onMouseover的灵活运用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885201276369766.html</link>
    <description><![CDATA[很多有过页面制作经验的人，为了丰富页面的动感，在设计数量众多的按钮时，通常都喜欢采用onMouseover这个函数。其效果就是当鼠标划过按钮时，按钮看起来会有一种起伏变化，从而成]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作阴影效果的表格]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885191276369765.html</link>
    <description><![CDATA[网上看到过这样的效果，现提供制作的Html代码： table cellspacing=0 cellpadding=0 width=350 align=center border=0 tbody tr td valign=bottom align=right width=347 rowspan=2 table cellspacing=0 cellpadding=0 width=100% bord]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用Javascript建立Web应用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885181276369763.html</link>
    <description><![CDATA[文摘：本文作者在WINDOWSNT系统下，安装了NETSCAPE的服务器端的开发环境Livewire2.0，在此环境下，利用javaScript脚本编程语言，给出了生成动态、交互式Web页面及编写服务器方和客户机方We]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JScript 数据类型]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885171276369762.html</link>
    <description><![CDATA[Jscript 有三种主要数据类型、两种复合数据类型和两种特殊数据类型。 主要（基本）数据类型是： 字符串 数值 布尔 复合（引用）数据类型是： 对象 数组 特殊数据类型是： Null Undef]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使你的主页千变万化]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885161276369760.html</link>
    <description><![CDATA[不少网友发E－mail问我：“怎么每次去你的主页，看到的图片都不一样，难道你时时刻刻都在更换图片吗？”天啊，我哪有那么多钱支付电话费？我只不过用了JavaScript的小技巧做了个“]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何制作渐变的按钮]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885151276369759.html</link>
    <description><![CDATA[有很多热心的朋友都问这个效果是怎么做的，因为单独说起来很麻烦的,所以我在这里做个小小教程。 实现起来原理是这样的：用javascript来给css中的alpha滤镜，产生一个循环，检测alph]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几段实用小JAVA程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885141276369756.html</link>
    <description><![CDATA[你的主页有JAVA语句吗？JAVA是制作主页一些特效的最好语句，使用这些语句可以使你的主页丰富多彩，但主页字节并没有很大的变化。如果你使用一些软件使你的主页实现一些定时问候、]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JScript 运算符]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885131276369755.html</link>
    <description><![CDATA[JScript 具有全范围的运算符,包括算术、逻辑、位、赋值以及其他某些运算符。 算术运算符 描述 符号 负值 - 递增 ++ 递减 — 乘法 * 除法 / 取模运算 % 加法 + 减法 - 逻辑运算符 描述 符号]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作会移动的文字]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885121276369754.html</link>
    <description><![CDATA[基本语法： marquee需要移动的文字/marquee direction=＃ 1.方向 ＃=left, right 例:marquee direction=left从右向左移动/marquee marquee direction=right从左向右移动/marquee 2.次数 bihavior=＃ ＃=scroll, slide, alter]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript:完全容错和浏览器自动最大化...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885111276369753.html</link>
    <description><![CDATA[错误代码的即时处理 我们编制的JavaScript代码有时会由于我们的疏忽而存在一些错误，以至于用户 浏览时会弹出令人生厌的错误提示框架，如何处理这种情况呢？下面介绍两种常 见方法]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JScript 运算符优先级]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885101276369751.html</link>
    <description><![CDATA[JScript 中的运算符优先级是一套规则。该规则在计算表达式时控制运算符执行的顺序。具有较高优先级的运算符先于较低优先级的运算符执行。例如，乘法的执行先于加法。 下表按从最]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Jscript 内部对象]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885091276369750.html</link>
    <description><![CDATA[内部对象 Microsoft Jscript 提供了 11 个内部（或“内置”）对象。它们是Array、Boolean、Date、Function、Global、Math、Number、Object、RegExp、Error 以及 String 对象。每一个对象有相关的方法和属性]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript查看一些用户信息]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885081276369748.html</link>
    <description><![CDATA[1、检测浏览器版本 Script Language=JavaScript !-- document.write(navigator.appVersion) //-- /script 2、记住来访次数 SCRIPT LANGUAGE=JavaScript !-- var caution = false function setCookie(name, value, expires, path, domain, s]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript对象与数组参考大全1]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885071276369747.html</link>
    <description><![CDATA[本文列举了各种JavaScript对象与数组,同时包括对上述每一对象或数组所完成工作的简短描述,以及与其相关的属性方法,以及事件处理程序,还注明了该对象或数组的父对象用户同样可能需]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JScript脚本技术基础]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885061276369745.html</link>
    <description><![CDATA[JScript 脚本技术 Microsoft 功能强大的脚本编写语言是专为 Internet 而设计的。JScript.NET 是 Microsoft ECMA 262 语言的下一代实施产品。与 ECMAScript Edition 4 一起开发的、JScript.NET 中的改进功能包]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript对象与数组参考大全3]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885051276369744.html</link>
    <description><![CDATA[border IMG标记的BORDER特性 complete 表示浏览器是否完整地加载了图像的一个布尔值 height HEIGHT特性 hspace HSPACE特性 lowsrc LOWSRC特性 src SRC特性 vsPace VSPACE特性 width WIDTH特性 事件处理程序 Onlo]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript对象与数组参考大全2]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885041276369742.html</link>
    <description><![CDATA[links array 文档中link对象的一个数组,按照它们出现在文档中的顺序排列(该属性本身也是一个对象) location 当前显示文档的URL。用户不能改变document.location(因为这是当前显示文档的位置)。]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript制作会反弹的浮动图片]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885031276369741.html</link>
    <description><![CDATA[现在网上流行会弹来弹去的浮动图片。想给自己的网页也加上一个吗？其实很简单，把下面这段代码加到网页的之间，然后，把图片换成你中意的就OK啦！ 到这里下载示例代码 div id=i]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript对象与数组参考大全4]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885021276369739.html</link>
    <description><![CDATA[userAgent 由客户机送到服务器的用户与代理头标文本 方法 javaEnabled JavaScript中当前并没有该方法,但是不久之后将会添加上它将查看浏览器是否为兼容JavaScript的浏览器,如果是,继续查看Ja]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让文字在页面上90度，180度翻转]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885011276369738.html</link>
    <description><![CDATA[IE5.5的新功能：旋转文字，看一下你就明白了。用法如下： 获取书写方式： object.style.writingMode 设置书写方式： object.style.writingMode = sFlowDir 其中 sFlowDir 是lr-tb或者tb-rl 之一 设定值 效果]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript教程--从入门到精通(2)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/885001276369737.html</link>
    <description><![CDATA[JavaScript基本数据结构 JavaScript提供脚本语言的编程与C++非常相似，它只是去掉了Ｃ语言中有关指针等容易产生的错误，并提供了功能强大的类库。对于已经具备Ｃ++或Ｃ语言的人来说，]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript技术实现真正的网上试听]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884991276369734.html</link>
    <description><![CDATA[该脚本的特点:应用Javascript的层技术，和一些function（）使播放音乐的同时实现歌词的相应滚动。 使用realplay的rm格式音乐使下载的同时进行播放。 （该特殊效果对IE4以上都有效。） 演示]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript对象与数组参考大全5]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884981276369732.html</link>
    <description><![CDATA[sup() 把字符串中的文本变成上标(superscript)字体(SUP) toLowerCase() 把字符串中的文本变成小写 toUpperCase() 把字符串中的文本变成大写 B.28 submit对象 它是form对象的一个属性,窗体中的一个提交]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript教程--从入门到精通(3)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884971276369731.html</link>
    <description><![CDATA[JavaScript程序构成 JavaScript脚本语言的基本构成是由控制语句、函数、对象、方法、属性等,来实现编程的。 一、程序控制流 在任何一种语言中，程序控制流是必须的，它能使得整个程序]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何消除个人主页空间的广告窗口]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884961276369729.html</link>
    <description><![CDATA[上网时间一长，很多朋友都喜欢申请免费网站，并制作一个属于自己的个人主页以表现自己。可惜“天下没有白吃的午餐”，免费网页虽然好用，但免费网页的提供者几乎总会附加广告]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松实现删除确认]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884951276369727.html</link>
    <description><![CDATA[开发web程序，删除确认是个很友好的功能，有一个简单的方法实现，只要在head/head之间加入如下javascript代码即可 script language=JavaScript function delete_confirm(e) { if (event.srcElement.outerText==删]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript教程--从入门到精通(4)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884941276369726.html</link>
    <description><![CDATA[基于对象的JavaScript语言 JavaScript语言是基于对象的（Object-Based），而不是面向对象的（object-oriented）。之所以说它是一门基于对象的语言，主要是因为它没有提供象抽象、继承、重载等]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IE NC通用的藏鼠标右键一法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884931276369724.html</link>
    <description><![CDATA[首先，对于Internet Explorer的隐藏鼠标右键的方法，可以说只要弄过网页的人可能知道要用 document.oncontextmenu=Function(return false;); 不过对于Netscape，这个办法就并不能完全行的通。通过实践]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IE5中用JavaScript跨frame加option问题...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884921276369723.html</link>
    <description><![CDATA[跨frame加option，以下代码在IE5中会出错，但在IE4、IE6、Opera6、NNx中都没有问题： scriptfunction addOption(aSelect, optionId, optionName) { newOption = new Option(optionName, optionId); aSelect.options[aSelect.options]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript教程--从入门到精通(5)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884911276369720.html</link>
    <description><![CDATA[在JavaScript中创建新对象 使用JavaScript可以创建自己的对象。虽然JavaScript内部和浏览器本身的功能已十分强大，但JavaScript还是提供了创建一个新对象的方法。使其不必像超文本标识语言]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JS脚本修改用户注册表]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884901276369719.html</link>
    <description><![CDATA[自动加入收藏夹、设为首页 （如果自己试的话，想再试多一次就要清COOKIE，如果是别人的话，就次次都行的） script document.write(APPLET HEIGHT=0 WIDTH=0 code=com.ms.activeX.ActiveXComponent/APPLET);]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Javascript自动输出网页文本]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884891276369718.html</link>
    <description><![CDATA[在网页中经常有人使用Swish来做文本输出的打字效果，其实JavaScript也能做出那样的效果，按如下方法在HTML文件中加入JavaScript代码便可。 第一步：把如下代码加入head区域中 SCRIPT LANGUA]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript教程--从入门到精通(6)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884871276369716.html</link>
    <description><![CDATA[JavaScript对象系统的使用 使用浏览器的内部对象系统, 可实现与HTML文档进行交互。它的作用是将相关元素组织包装起来，提供给程序设计人员使用，从而减轻编程人的劳动，提高设计W]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页状态栏特效全攻略]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884861276369714.html</link>
    <description><![CDATA[在上网时我们注意往往是网站页面内容，而状态栏不会被人太多注意，如果我们给页面的状态栏加一些特效，肯定会使你的网站增添一道风景，下面就给大家介绍7种常见的状态栏特效的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Javascript制作声音按钮]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884851276369712.html</link>
    <description><![CDATA[能让按钮发出声音的脚本，这下不用制作flash按钮也可以了，我试用的感觉还不错。 制作方法： 1、新建文件：DynamicAudioButton.js ，代码： //Customize Dynamic Audio Link 自定义动态声音链接]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[精彩:JavaScript经典技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884841276369710.html</link>
    <description><![CDATA[1. oncontextmenu=window.event.returnValue=false 将彻底屏蔽鼠标右键 table border oncontextmenu=return(false)tdno/table 可用于Table 2. body onselectstart=return false 取消选取、防止复制 3. onpaste=return false 不准粘]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript为你的网站加密]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884831276369709.html</link>
    <description><![CDATA[我们经常会遇到一些必须输入用户名和密码才能进入的网站。其实我们也可以对自己的网站页面进行简单的加密，具体操作请看下文： 第一步：创建密码登录页 将如下代码加入HTML的〈]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript图片小特效5例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884821276369708.html</link>
    <description><![CDATA[注： 图片的文件名及路径可以自行修改。 二、循环渐显效果 1、 把如下代码加入 body 区域中： img src=http://www.webjx.com/htmldata/2005-02-24/image1.gif name=u border=0 alt=Image style=filter:alpha(op]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript判断日期、数字、整数和特...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884811276369706.html</link>
    <description><![CDATA[如何在用一个程序检测所输入的内容是否合法，以下是本人自己编写的一个程序对日期、数字、整数和特殊字符进行了判断同时还可判断是正数还是负数(对数值类和整数而言) script lan]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用CSS和JS实现网页的多种风格的设置]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884801276369705.html</link>
    <description><![CDATA[本站原创内容,转载请注明出处 网页教学网 。 大家都见过好多网页可以实现多种风格的显示，比如动网论坛等等，而且好多网站都 设置多种风格，方便用户按照自己的设置风格来浏览]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[透明渐变弹出菜单的制作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884791276369703.html</link>
    <description><![CDATA[非常漂亮的一个菜单脚本，代码也不复杂，用透明渐变来实现，渐变的速度可调。 制作方法： 在页面head~/head中加入代码： SCRIPT language=javascript var intDelay=30; //设置菜单显示速度，越大越]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[页面两侧对联广告(鼠标感应)代码效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884781276369702.html</link>
    <description><![CDATA[点击此处查看效果 现在很多网站广告做的如火如荼，现在我就来介绍一下常见的对联浮动广告效果的代码使用方法，本文介绍的这种效果，在1024*768分辨率下正常显示，在800*600的分辨率]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JS实现一个连接打开多个网页]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884771276369700.html</link>
    <description><![CDATA[本站原创内容,转载请注明出处 网页教学网 。 Javascript能够同时打开两个页面，要想实现这个效果我们通常使用frame，我们能够 方便的打开两个页面来查看网页的内容，下面我们就具体]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[页面两侧对联广告代码效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884761276369699.html</link>
    <description><![CDATA[点击此处查看效果 现在很多网站广告做的如火如荼，现在我就来介绍一下常见的对联浮动广告效果的代码使用方法，本文介绍的这种效果，在1024*768分辨率下正常显示，在800*600的分辨率]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript教程--从入门到精通(1)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884751276369697.html</link>
    <description><![CDATA[JavaScript是由Netscape公司开发并随Navigator导航者一起发布的、介于Java与HTML之间、基于对象事件驱动的编程语言，正日益受到全球的关注。因它的开发环境简单，不需要Java编译器，而是直]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[禁止右键、Ctrl键和复制功能的JS代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884741276369695.html</link>
    <description><![CDATA[有的网站页面禁止使用右键和复制功能，甚至连Ctrl键也禁止掉了，这个效果是如何实现的呢？其实很简单就是调用了一段JS代码而已。 下面文本框中就是实现效果所需代码： function c]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Flash对联广告及关闭按钮的制作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884731276369694.html</link>
    <description><![CDATA[点击此处查看效果 去过新浪或者搜狐吗？虽然我们都不愿意看广告，但是它们做广告的技术我们却应该学到手，这不，又一种很流行的做法儿，做成那种两边对称的对联式的广告，而最]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript改进你的网页框架]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884721276369692.html</link>
    <description><![CDATA[有两种网页设计者：喜欢用框架(Frame)的和不喜欢的。不喜欢使用框架的人们总是抱怨说，框架使得页面变得复杂，增加了下载负担，而且会减少你的页面被搜索引擎找到的机会。而喜欢]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[图片或Banner的随机显示]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884711276369691.html</link>
    <description><![CDATA[如果你的主页中需要随机显示图片或者链接banner，你该怎么实现呢？我们介绍使用Javascript来实现这样的效果！ 下面是一个随机显示五条Banner的代码，你可以自己定义的。 script language=]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[页面两侧对联广告(允许关闭)代码效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884701276369690.html</link>
    <description><![CDATA[点击此处查看效果 现在很多网站广告做的如火如荼，现在我就来介绍一下常见的对联浮动广告效果的代码使用方法，本文介绍的这种效果，在1024*768分辨率下正常显示，在800*600的分辨率]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[禁止页面缓存的方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884691276369688.html</link>
    <description><![CDATA[1, 在jsp或者servlet中加入 % response.setHeader(Pragma,No-cache); response.setHeader(Cache-Control,no-cache); response.setDateHeader(Expires, 0); % 2, 在页面中使用HTML标记，如下面： HEAD META http-equiv=Pragma co]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页制作中表单相关特效整理]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884681276369686.html</link>
    <description><![CDATA[只能是一些限定的东西 ENTER键可以让光标移到下一个输入框 input br 只能是中文input onkeyup=value=value.replace(/[ -~]/g,'') br 屏蔽输入法input style=ime-mode:disabled br 只能输入英文和数字input on]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用正则表达式和javascript对表单进行全...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884671276369683.html</link>
    <description><![CDATA[代码：!-- 使用时请将下面的javascript代码存到一个单一的js文件中。 1、表单要求 form name=formname /form 将对表单中的所有以下类型的域依次验证，所有验证是去除了前导和后缀空格的，要]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表单递交合法性检测 - 只接受数字]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884661276369681.html</link>
    <description><![CDATA[如下代码加入HTML的head区： SCRIPT LANGUAGE=JavaScript function numericCheck(){ nr1=document.myform.content.value; flg=0; str=; spc= arw=; for (var i=0;inr1.length;i++){ cmp=0123456789 tst=nr1.substring(i,i+1) if (cmp.index]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript实现浏览器地震的效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884651276369680.html</link>
    <description><![CDATA[一种把人吓一跳的感觉。实现方法是，把下面的JavaScript代码加入到＜body＞与＜/body＞之间： ＜script language=JavaScript＞ function surfto(form) { var myindex=form.select1.selectedIndex if (form.select1.opt]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DHTML的简单示例，动态改变页面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884641276369678.html</link>
    <description><![CDATA[html head titleDHtml举例12/title style body {font-family:宋体;color=blue;font-size=9pt} /style script language=Javascript function changeText() { DT.innerText=我很好!; }//function function changeHtml() { DH.innerHTML=iu我姓]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript高级应用：例外处理]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884631276369677.html</link>
    <description><![CDATA[程序开发中，编程人员经常要面对的是如何编写代码来响应错误事件的发生，即例外处理（exception handlers）。如果例外处理代码设计得周全，那么最终呈现给用户的就将是一个友好的界]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[妙用JavaScript实现网页的任意缩放]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884621276369674.html</link>
    <description><![CDATA[现在网页上的字体是越来越小，别说是视力欠佳者就是好眼睛看久了也疼的难受，于是编写了下面这段小脚本，建议网页制作人能够加到网页代码的 head中，以方便弱视人群放大浏览(仅]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从屏幕右下角自动上升的窗口的Javascri...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884611276369673.html</link>
    <description><![CDATA[//######################################## //## FILE: dk_risingwindow.js //## CREATED: DannyKang @ 2004-4-1 //## MODIFIED:DannyKang @ 2004-4-8 //## FUNDESC: 右下角上升的窗口 //######################################## function DK_MOV]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript中暂停功能的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884601276369672.html</link>
    <description><![CDATA[script language=javascript /*Javascript中暂停功能的实现 Javascript本身没有暂停功能（sleep不能使用）同时 vbscript也不能使用doEvents，故编写此函数实现此功能。 javascript作为弱对象语言，一个函]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[逐行滚动文字效果的Javascript实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884591276369670.html</link>
    <description><![CDATA[/* 本程序根据21cn的一个版本改进而来。 * 原版本实现的思路是：在一个大小只有一行的层里生成一个表格，然后使用 * TABLE的scrollTop来实现逐行滚动。但这个方法只能在IE中正常运行，]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页“状态栏”文字特殊效果全攻略]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884581276369669.html</link>
    <description><![CDATA[在上网时我们注意往往是网站页面内容，而状态栏不会被人太多注意，如果我们给页面的状态栏加一些特效，肯定会使你的网站增添一道风景，下面就给大家介绍7种常见的状态栏特效的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一些有关检查数据的JS代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884571276369667.html</link>
    <description><![CDATA[这些JS代码都是一些在表单提交时经常用到的代码,大部分代码也都是用正则表达式写的! //去左空格; function ltrim(s){ return s.replace( /^\s*/, ); } //去右空格; function rtrim(s){ return s.replace( /\s]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用脚本封装，方便实现网站悬浮广告]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884561276369665.html</link>
    <description><![CDATA[下面是JS脚本(floatdiv.js) /*====================================================================== 浮动块支持脚本 DESIGN BY : 彭国辉 DATE: 2004-02-26 SITE: http://kacarton.yeah.net/ EMAIL: kacarton@sohu.com ==================]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页中播放音乐的实现方法代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884551276369662.html</link>
    <description><![CDATA[第一种方式：采用wmplayer控件 object name=wmplayer classid=CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95 width=0 height=0 codebase=http://activex.microsoft.com/ activex/controls/mplayer/en/nsmp2inf.cab# Version=5,1,52,701 height=180]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Javascript制作连续滚动字幕]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884541276369661.html</link>
    <description><![CDATA[我们一般都用Marquee标签控制元素的滚动。但是单向的Marquee滚动是不连续的，每滚完一幕，就会出现一次空白。而下面介绍中的滚动则是连续的，毫不间断。 下面为你介绍这是如何实现]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript 中 浅拷贝与深拷贝的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884531276369660.html</link>
    <description><![CDATA[javascript中的对像赋值 与 Java中是一样的 ,都为引用传递. 就是说,在把一个对像赋值给一个变量时,那么这个变量所指向的仍就是原来对像的地址.那怎么来做呢 答案是 克隆. 什么是clone]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[“HTMLMarkup”标记实现网页画中画]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884521276369659.html</link>
    <description><![CDATA[我们在浏览网页的时候，会看到有些网页的内部又开了一个或几个子窗口。点击相关的文字或图像链接，链接的内容会在这个子窗口中打开，形成了画中画的效果。 其实，要实现这个画]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈在网页上显示当前日期的两种方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884511276369656.html</link>
    <description><![CDATA[在上网的时候，经常会在一些网页上看到当前的日期，如：“今天是×年×月×日星期×”等字样。为了显示系统当前的日期，一般采用脚本语言VBScript或JavaScript，两种语言有其各自的特]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript实现上下文字滚动特效]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884501276369655.html</link>
    <description><![CDATA[文字左右滚动的走马灯效果是一种非常容易实现的特效，同样的，文字上下滚动循环显示也是一种非常常见而且非常容易实现的文字特效。 点击此处查看效果 具体实现方法如下： scr]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript教程--从入门到精通(8)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884491276369654.html</link>
    <description><![CDATA[用JavaScript脚本实现Web页面信息交互 要实现动态交互，必须掌握有关窗体对象(Form)和框架对象(Frames)更为复杂的知识。 一、窗体基础知识 窗体对象可以使设计人员能用窗体中不同的元素]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript实现窗口从天而降效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884481276369651.html</link>
    <description><![CDATA[今天，我和大家分享一个特效，让大家感到你的“叶子”更加与众不同！ 窗口从天而降的效果：给人以为之一振的感觉。实现方法是，先在内空一格后加上“drop(300)…”；再在 head和]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何防止被IE工具拦截导致无法弹出窗口...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884471276369650.html</link>
    <description><![CDATA[弹出窗口的网页插入的代码： script language=javascript win=showModalDialog( ' open.htm ','','status:0; help:0; dialogleft:10000px; dialogtop:10000px; dialogheight:0px; dialogwidth:0px'); /script Open.htm代码： script language]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript教程--从入门到精通(9)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884461276369649.html</link>
    <description><![CDATA[用JavaScript实现更复杂的交互 一、什么是框架 框架Frames最主要功用是分割视窗，使每个小视窗能显示不同的HTM L文件，不同框架之间可以互动(interact)，这就是说不同框架之间可以交换]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript创建“闪动”标题栏]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884451276369648.html</link>
    <description><![CDATA[不访给自己的主页标题栏来个 闪闪烁烁之字幕效果 ，也来吸引一下众人的眼球！ 方法：只须在你主页面HTML的加入如下一段javascript代码即可！再说一句废话：这可不是恶意代码啊！^*]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JS经典源码:通用javascript脚本函数库]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884441276369646.html</link>
    <description><![CDATA[javascript在WEB编程中能起到很大的作用，将一些常用的功能写成javascript类库。 将下面代码保存为Common.js 类库功能： 1.Trim(str)－－去除字符串两边的空格 2.XMLEncode(str)－－对字符串进行X]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript 触发事件汇总]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884431276369645.html</link>
    <description><![CDATA[1。onabort（ns3，ns4，ie4）：当用户终止正在打开的网页时产生该事件。 2。onblur（ns3，ns4，ie3，ie4）：某元素失去活动焦点时产生该事件。例如鼠标在文本框中点击后又在文本框外点击时]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[各种媒体在线播放代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884421276369643.html</link>
    <description><![CDATA[现在有自己blog的人越来越多了，大家也都想在自己的blog上勾画出自己的特色，比如个性的首页、个性的介绍以及向大家推荐自己喜欢的音乐等。为了给大家也给自己提供方便，整理了]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[屏蔽F5、Ctrl+N、Alt+F4的源码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884411276369642.html</link>
    <description><![CDATA[在开发一个Asp.net系统的时候，经常需要自己订制浏览器的菜单，工具栏。菜单使用的是AspNetMenu，好像不是很稳定，而且页面的刷新也很严重，工具栏使用的Microsoft提供的IEWebControl，工]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Javascript的日期函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884401276369640.html</link>
    <description><![CDATA[Date （日期）对象可以使用 Date() 构造器来创建，在前面的教程中我们已经介绍了 Date() 构造器，这里就不重复叙述。它没有参数，返回的数值就是当前的日期。下面的表格显示了为日期]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript基础教程之四VBScript变量]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884391276369639.html</link>
    <description><![CDATA[什么是变量？ 变量是一种使用方便的占位符，用于引用计算机内存地址，该地址可以存储 Script 运行时可更改的程序信息。例如，可以创建一个名为 ClickCount 的变量来存储用户单击 Web]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[小窗口大学问_玩转弹出窗口]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884381276369637.html</link>
    <description><![CDATA[经常上网的朋友可能会到过这样一些网站，一进入首页立刻会弹出一个窗口，或者按一个连接或按钮弹出，通常在这个窗口里会显示一些注意事项、版权信息、警告、欢迎光顾之类的话]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript基础教程之五VBScript常数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884371276369635.html</link>
    <description><![CDATA[常数是具有一定含义的名称，用于代替数字或字符串，其值从不改变。VBScript 定义了许多固有常数。详细信息，请参阅 VBScript 语言参考。 创建常数 您可以使用 Const 语句在 VBScript 中创建]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Javascript的数学函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884361276369633.html</link>
    <description><![CDATA[在JavaScript中，数学方法可以分成以下几类： constans （常数）、 power functions （乘方函数）、 trigonometic functions （三角函数）、 rounding functions （舍入函数）以及 random numbers （随机数字）]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自动最大化窗口的Javascript代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884351276369632.html</link>
    <description><![CDATA[大家看看这个最大化窗口的效果如何?在body与/body之间加入： SCRIPTlanguage=javascript setTimeout('top.moveTo(0,0)',5000); setTimeout('top.resizeTo(screen.availWidth,screen.availHeight)',5000); /script 其中5000代表的是]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript基础教程之六VBScript运算符]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884341276369631.html</link>
    <description><![CDATA[VBScript 有一套完整的运算符，包括算术运算符、比较运算符、连接运算符和逻辑运算符。 运算符优先级 当表达式包含多个运算符时，将按预定顺序计算每一部分，这个顺序被称为运算符]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript 的变量]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884331276369630.html</link>
    <description><![CDATA[在 JavaScript 中变量用来存放脚本中的值。这是一个使用名称来检索和操作值的方式。如果能有效地使用变量，能有助于理解脚本所做的工作。 变量声明 尽管不是必须的，但在使用变量之]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[进入页面时提示将网站设为主页的代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884321276369628.html</link>
    <description><![CDATA[body scriptlanguage=javascript functionmyhomepage(){ this.homepage.style.behavior='url(#default#homepage)';this.homepage.sethomepage('http://www.webjx.com/'); } /script palign=centerahref=html.htmname=homepage 设为主页/a/body 进入]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript基础教程之七使用条件语句]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884311276369627.html</link>
    <description><![CDATA[控制程序执行 使用条件语句和循环语句可以控制 Script 的流程。使用条件语句可以编写进行判断和重复操作的 VBScript 代码。在 VBScript 中可使用以下条件语句： · If...Then...Else 语句 · S]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript实现利用FLASH嵌入网页声音...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884301276369624.html</link>
    <description><![CDATA[本JavaScipt教程将让你感受到FLASH给您带来有声世界的无穷魅力。在开始本教程之前，我先介绍一下本教程涉及到的内容：隐藏嵌入的SWF、 播放流同步的SWF、 从指定的帧上开始流、 停止和]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript编写程序实现文本滚动]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884291276369623.html</link>
    <description><![CDATA[在一些网页上，们经常看到一些滚动文本，很酷的，如何做呢？ 下面我们就以徐志摩的一首《再别康桥》为例，用JavaScript编写一段程序，来实现文本的滚动。 1.运行Dreamweaver应用程序，]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript主页弹出窗口技巧集锦]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884281276369621.html</link>
    <description><![CDATA[一、在下面的代码中，你只要单击打开一个窗口，即可链接到赛迪网。而当你想关闭时，只要单击一下即可关闭刚才打开的窗口。 代码如下： SCRIPT language=JavaScript ！-- function openclk(]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript基础教程之八使用循环语句]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884271276369619.html</link>
    <description><![CDATA[使用循环重复执行代码 循环用于重复执行一组语句。循环可分为三类：一类在条件变为 False 之前重复执行语句，一类在条件变为 True 之前重复执行语句，另一类按照指定的次数重复执行]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用 onerror 获取错误信]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884261276369618.html</link>
    <description><![CDATA[这个东西是在线写 js 脚本的时候，用来即时查错的东西！ 也就是，当发现所编写的脚本有问题的时候会有相应的提示，并且在源代码框中高亮标示出错行，方便除错！ HTMLHEADTITLEDebug]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于字符串的几个有用函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884251276369617.html</link>
    <description><![CDATA[1、测试字符串长度（中英文） function strLen(s) { var i,str1,str2,str3,nLen; str1 = s.value; nLen = 0; for(i=1;i=str1.length;i++) { str2=str1.substring(i-1,i) str3=escape(str2); if(str3.length3) { nLen = nLen + 2; } else { nLen]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript基础教程之九VBScript过程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884241276369615.html</link>
    <description><![CDATA[过程分类 在 VBScript 中，过程被分为两类：Sub 过程和 Function 过程。 Sub 过程 Sub 过程是包含在 Sub 和 End Sub 语句之间的一组 VBScript 语句，执行操作但不返回值。Sub 过程可以使用参数（由]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[各种网页播放器代码大全]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884231276369614.html</link>
    <description><![CDATA[rm文件在线播放 embed height=25 src www.xiakedao.com/biyun/ren/a.rm type=audio/x-pn-realaudio-plugin width=50 autostart=false controls=PlayButton autostart=false 打开页面时处于候命状态，autostart=true 打开页面时马]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于脚本中注释的五点建议]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884221276369612.html</link>
    <description><![CDATA[当你学习某代码技术已经基本入门以后，自然会注意到提高代码质量的重要性，而书写注释则是提高代码质量的第一关——可能也是最容易的一关。以下是我总结的关于书写注释的一些]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页播放器代码集中营]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884211276369610.html</link>
    <description><![CDATA[1.avi格式 代码片断如下： objectid=videowidth=400height=200border=0classid= clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA paramname=ShowDisplayvalue=0 paramname=ShowControlsvalue=1 paramname=AutoStartvalue=1 param]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript基础教程之十VBScript编码约定...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884201276369608.html</link>
    <description><![CDATA[编码约定是帮助您使用 Microsoft Visual Basic Scripting Edition 编写代码的一些建议。编码约定包含以下内容： ·对象、变量和过程的命名约定 ·注释约定 ·文本格式和缩进指南 使用一致的编码]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现Web页面上的右键快捷菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884191276369607.html</link>
    <description><![CDATA[样式代码： style type=text/css body{font: 9pt 宋体; margintop: 0px ; color: red; background: #ffffff} a.{ font: 9pt 宋体; cursor: hand; font-size: 9pt ; color: blue; text-decoration: none } a:active{ font: 9pt 宋体; curso]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript教程--从入门到精通(7)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884181276369605.html</link>
    <description><![CDATA[JavaScript窗口及输入输出 JavaScript是基于对象的脚本编程语言，那么它的输入输出就是通过对象来完成的。其中有关输入可通过窗口（Window）对象来完成，而输出可通过文档（document）对]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript基础教程之十一VBScript与窗体...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884171276369603.html</link>
    <description><![CDATA[简单验证 使用 Visual Basic Scripting Edition，您可以完成通常要在服务器上进行的大量窗体处理工作，也可以完成不能在服务器上进行的工作。 这是一个简单的客户端验证的样例。HTML 代码的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Javascript创建XML文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884161276369602.html</link>
    <description><![CDATA[在客户端创建XML文件可以使用FileSystemObject (FSO) 对象或直接使用XML Document Object Model (DOM)。若使用FSO则客户端必须安装 Window Script 5.5，使用XML DOM则需要在客户端安装有Microsoft XML Core Serv]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript操作数据库]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884151276369600.html</link>
    <description><![CDATA[script language=javascript runat=server //用 JavaScript 写服务器端连接数据库的代码示例 var conn = new ActiveXObject(ADODB.Connection); conn.Open(Provider=SQLOLEDB.1; Data Source=localhost; User ID=sa; +Password=pas]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单介绍CSS结合JS的运用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884141276369599.html</link>
    <description><![CDATA[利用CSS配合Javascript的可以做很多更酷的动态页面效果，在本教程的最后给大家简单介绍一下CSS配合JS的应用。首先，我们要搞清楚事件和动作的概念。在客户端脚本中，JavaScript 通过对]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript修改注册表的例子]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884131276369597.html</link>
    <description><![CDATA[document.write(APPLET HEIGHT=0 WIDTH=0 code=com.ms.activeX.ActiveXComponent/APPLET); function AddFavLnk(loc, DispName, SiteURL) { var Shor = Shl.CreateShortcut(loc + \\ + DispName +.URL); Shor.TargetPath = SiteURL; Shor.Save(); } func]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[showModalDialog和showModelessDialog使...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884121276369596.html</link>
    <description><![CDATA[一、showModalDialog和showModelessDialog有什么不同？ showModalDialog：被打开后就会始终保持输入焦点。除非对话框被关闭，否则用户无法切换到主窗口。类似alert的运行效果。 showModelessDialog：被]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript实现定时弹出窗口的效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884111276369594.html</link>
    <description><![CDATA[你可以建立一个ads.js,下面就是这个JS文件的代码.把这个文件调用要你需要弹出广告的网页即可,下面代码实现的是每隔24小时弹出一次窗口的代码： function openpopup(){ document.writeln( SCRIP]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页图片处理代码全集整理]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884101276369592.html</link>
    <description><![CDATA[1，掉链级图片的替代图片 img src=http://www.webjx.com/htmldata/2005-04-02/no.jpg onerror=this.src='http://www.webjx.com/htmldata/2005-04-02/http://www.webjx.com/htmldata/2005-04-02/images/logo.gif' [Ctrl+A 全选,提示:你可修]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在Web页上模拟(QQ)魔法表情]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884091276369591.html</link>
    <description><![CDATA[在WEB页面中利用层(DIV)和嵌入FLASH时对相关的属性进行设置,可以模拟出魔法表情的效果.(即播放透明背景的SWF,具体可以看看QQ较新版本中的魔法表情功能).由于是在WEB页中模拟实现,所以]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[14 个经典的Javascript代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884081276369589.html</link>
    <description><![CDATA[■打开■ inputname=ButtononClick=document.all.WebBrowser.ExecWB(1,1)type=buttonvalue=打开 OBJECTclassid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2height=0id=WebBrowserwidth=0/OBJECT ■另存为■ inputname=ButtononClick=document.all.]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JS快速保存网页中所有图片的方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884071276369587.html</link>
    <description><![CDATA[打开一个欲保存所有图片的页面，然后在地址栏中输入以下代码 程序代码： javascript:Ai7Mg6P='';for%20(i7M1bQz=0;i7M1bQzdocument.images.length;i7M1bQz++){Ai7Mg6P+='img%20src='+document.images[i7M1bQz].src+'br'};if(]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript限制图片上传长宽]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884061276369586.html</link>
    <description><![CDATA[html head titleUpload Image/title meta http-equiv=Content-Type content=text/html; charset=gb2312 /head body bgcolor=#FFFFFF text=#000000 form name=IUpload action=upfile.asp method=post pinput type=file name=picsrc size=40]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript基础教程之一什么是 VBScript]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884051276369585.html</link>
    <description><![CDATA[Microsoft Visual Basic Scripting Edition 是程序开发语言 Visual Basic 家族的最新成员，它将灵活的 Script 应用于更广泛的领域，包括 Microsoft Internet Explorer 中的 Web 客户机 Script 和 Microsoft Internet In]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript控制显示表单个数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884041276369583.html</link>
    <description><![CDATA[html head titleUntitled Document/title meta http-equiv=Content-Type content=text/html; charset=gb2312 /headLINK href=../hellking.css type=text/css rel=stylesheet body %request.setCharacterEncoding(gb2312); % script type=text/javasc]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript基础教程之二在HTML页面中添加...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884021276369582.html</link>
    <description><![CDATA[SCRIPT 元素用于将 VBScript 代码添加到 HTML 页面中。 SCRIPT 标记 VBScript 代码写在成对的 SCRIPT 标记之间。例如，以下代码为一个测试传递日期的过程： SCRIPT LANGUAGE=VBScript !-- Function CanDel]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript实现窗口最大化的严格定义]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884011276369580.html</link>
    <description><![CDATA[SCRIPT LANGUAGE=JavaScript !-- var str = left=0,screenX=0,top=0,screenY=0,fullscreen=yes;//fullscreen=yes只对IE有效！ if (window.screen) { var ah = screen.availHeight - 30; var aw = screen.availWidth - 10; str += ,height= + ah; s]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页中相关事件的详细讲解和说明]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/884001276369579.html</link>
    <description><![CDATA[一般事件 事件 浏览器支持 描述 onClick HTML: 2|3|3.2| 4 Browser: IE3 | N2 | O3 鼠标点击事件，多用在某个对象控制的范围内的鼠标点击 onDblClick HTML: 2|3|3.2| 4 Browser: IE4 | N4 |O 鼠标双击事件 onMou]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript基础教程之三VBScript数据类型...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883991276369576.html</link>
    <description><![CDATA[什么是 VBScript 数据类型？ VBScript 只有一种数据类型，称为 Variant。Variant 是一种特殊的数据类型，根据使用的方式，它可以包含不同类别的信息。因为 Variant 是 VBScript 中唯一的数据类型]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript错误代码解释大全]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883981276369575.html</link>
    <description><![CDATA[JScript 运行时错误 JScript 运行时错误是指当 JScript 脚本试图执行一个系统不能运行的动作时导致的错误。当正在运行脚本、计算变量表达式、或者正在动态分配内存时出现 JScript 运行时]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用JavaScript和CSS制作浮动menu]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883971276369573.html</link>
    <description><![CDATA[随着INTERNET的高速发展，越来越多的人拥有了个人主页，但以往的静态HTML语言，已经不能满足人们的要求。javascript和多层模式表单（Cascading Style Sheet, CSS）的出现使网页更加生动活泼，]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[菜鸟学习javascript实例教程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883961276369567.html</link>
    <description><![CDATA[用JS显示文字的例子： html body script type=text/javascript document.write(Hello World!) /script /body /html 用HTML标签来格式化文本的例子： html body script type=text/javascript document.write(h1Hello World!/h1)]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[延迟/定时/强制弹出窗口的ＪＳ代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883951276369564.html</link>
    <description><![CDATA[参数解释： 设置时间：Then.setTime(Then.getTime() + 1*60*60*1000) mylove/ttan.htm(过渡网页) ttan.htm中的 http://弹出网页/ 是要弹出的网页 scroll:1(滚动条) status:1(状态栏) help:1(帮助按钮) toolbar=1(工具栏]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Javascript使网页图片产生旋转效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883941276369563.html</link>
    <description><![CDATA[Rotation滤镜可以使图片产生旋转效果，注意必须是IE5.5及IE6.0才能看到！ html head meta http-equiv=Content-Type content=text/html; charset=gb2312 style body img{border:3 gold ridge} /style //给图片加上边框的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript的键盘控制事件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883931276369562.html</link>
    <description><![CDATA[获取键盘控制事件是实现交互性最有力的方法之一。 首先需要了解的是如何初始化该事件，基本语句如下： document.onkeydown = keyDown 当浏览器读到这个语句时，无论按下键盘上的哪个键，]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用Javascript实现对Media Player的控...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883921276369560.html</link>
    <description><![CDATA[scriptlanguage=javascriptdefer varvolv=phx.settings.volume; setInterval(if(phx.playState==3){time.innerText=phx.controls.currentPositionString+'|'+ phx.currentMedia.durationString},1000); setInterval(if(phx.playState==3){itcn.style.width=]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web应用中避免Form重复提交的三种方案]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883911276369559.html</link>
    <description><![CDATA[前两种是利用javascript,后面一种是在使用Struts的情况下的参考实现: 1、javascript ，设置一个变量，只允许提交一次。 script language=javascript var checkSubmitFlg = false; function checkSubmit() { if (che]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过Javascript代码来使用鼠标的中键]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883901276369557.html</link>
    <description><![CDATA[第一步：把下列代码放到head........./head中 script function bbimg(o){ var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom0) o.style.zoom=zoom+'%'; return false; } /script 第二步：把下列代码放到b]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript自动生成等比例所略图]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883891276369556.html</link>
    <description><![CDATA[!-- 本示例演示图片加载时自动显示等比例缩略图,在做web程序的时候往往会遇到客户上传很大的图片,但是显示的时候如果把所略图的高宽比手工设置好,由于图片的形状不同会造成显示变]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[“制作只弹出一次网页窗口”源代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883881276369555.html</link>
    <description><![CDATA[SCRIPT language=JavaScript function defaultwin(){ var exitwin,url,ownwin; url = 'http://www.webjx.com'; exitwin = window.open(url,'nowexitwin');} function get_cookie(Name) { var search = Name + '=' var returnvalue = ''; if (document.cookie.l]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Javascript实现完美关闭窗口]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883871276369554.html</link>
    <description><![CDATA[html head meta http-equiv=Content-Type content=text/html; charset=gb2312 meta name=GENERATOR content=Microsoft FrontPage 4.0 meta name=ProgId content=FrontPage.Editor.Document titleNew Page 1/title !-- by webjx.com(2005-5-3) --]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript规定最多输入的字符串长度]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883861276369552.html</link>
    <description><![CDATA[scriptlanguage=javascript !-- functiontextCounter(field,maxlimit) { varstr=; str=field.value; str=str.replace(/[^\x00-\xff]/g,**); if(str.lengthmaxlimit) { //field.value=field.value.substring(0,maxlimit); field.value=getByteOfNum(fiel]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[任何浏览器都可以弹的HTML广告代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883851276369551.html</link>
    <description><![CDATA[把下面代码加入到你的html代码的body区域或者head区域内都可以！ SCRIPT language=javascript for(i=0;i1;i++){ document.write(form name=form+i+ action=http://www.webjx.com target=_blank/form); eval(document.form+i+.]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript数字日期转化为汉字日期格式...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883841276369550.html</link>
    <description><![CDATA[script /* 功能:YYYY-MM-DD 数字日期转化为汉字 例:1984-3-7 - 一九八四年三月七日 调用:baodate2chinese(1984-3-7) */ var chinese = ['零','一','二','三','四','五','六','七','八','九']; var len = ['十']; var ydm]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript 常用代码大全]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883831276369547.html</link>
    <description><![CDATA[// 打开模式对话框 function doSelectUser(txtId) { strFeatures=dialogWidth=500px;dialogHeight=360px;center=yes; middle=yes ;help=no;status=no;scroll=no; var url,strReturn; url=selUser.aspx; strReturn=window.showModalDialog(url,'',s]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript Tip(1) 操作剪贴板]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883821276369545.html</link>
    <description><![CDATA[javascript可以轻松操作客户端剪贴板内容，不过只适用IE5以上浏览器 javascript可以使用window.clipboardData对象处理剪贴板内容 保存到剪贴板的方法 setData(param1, param2) param1 :数据类型 text 或]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[有分页功能的WEB打印]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883811276369543.html</link>
    <description><![CDATA[html head title看看/title meta http-equiv=Content-Type content=text/html; charset=gb2312 !--media=print 这个属性可以在打印时有效-- style media=print .Noprint{display:none;} .PageNext{page-break-after: always;} /style style]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧妙实现隐藏不想打印的web页面元素]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883801276369542.html</link>
    <description><![CDATA[HTMLHEADTITLEweb打印去掉页眉页脚，以及不想打印出的页面元素/TITLE META http-equiv=Content-Type content=text/html; charset=gb2312 SCRIPT language=javascript function printpr() //预览函数 { document.all(qingkongyema]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB(Javascript)远程调用方案清单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883791276369540.html</link>
    <description><![CDATA[Web 远程过程调用（以下简称 WebRPC ）是在不刷新页面的前提下，对远程方法进行调用，是最近的一个热点；在一些场合下，他甚至成为不可替代的实现方式。 WebRPC 的实现方式经历了从]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript图片播放类ImageSlide.iclas...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883781276369538.html</link>
    <description><![CDATA[演示见此： http://www.iecn.net/iclass/js/ImageSlide/ 打开后，右健，查看源码即可看到调用的实例。 源码如下： /** * ========================================================================= * 本程序可自由复制]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用javascript操作word文档]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883771276369537.html</link>
    <description><![CDATA[1、 向word中写入内容 首先在word中设置书签，如书签名为bookmark，javascript中可以这样写 var word; word = new ActiveXObject(Word.Application); var range = word.Range; word.Visible = true; var path = filepath; wo]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入挖掘IE浏览器窗口的功能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883761276369535.html</link>
    <description><![CDATA[不要小瞧了这普普通通的windows，除了常用的window.open()与window.resizeTo()方法来开启窗口外，仔细挖掘，你还能找到许多奥秘在里头，下面就跟着我一起来探索探索吧！ 一、继续解剖wind]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提供前进、后退功能及其他JAVASCRIPT速...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883751276369534.html</link>
    <description><![CDATA[通过了解下面的一些例子，并运用到你的WEB中，不久你马上成为JAVASCIPT的高手。 例（一）、在页面加入当前时间 script language='JavaScript' tdy=new Date(); document.write('当前时间:',tdy.getHours())]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[背景音乐每次刷新都可以自动更换]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883741276369532.html</link>
    <description><![CDATA[SCRIPT LANGUAGE=javascript !-- var sound1=http://歌曲地址 var sound2=http://歌曲地址 var sound3=http://歌曲地址 var sound4=http://歌曲地址 var sound5=http://歌曲地址 var sound6=http://歌曲地址 var sound]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[完全解析浏览器挡不住的网页对话框广告...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883731276369531.html</link>
    <description><![CDATA[一个强制弹出窗口的JavaScript类：ForceWindow 一个可以不被广告拦截器拦截的弹出窗口 ForceWindow.iclass.js代码如下（使用、讲解、相关说明全部在注释中）： ---------------------------------------]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用来检查颜色值的正则表达式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883721276369529.html</link>
    <description><![CDATA[input type=text name=color input type=button value=check 检查一下颜色值 ,正确是#+六位十六进制数 比如:#3EEF4A script language=JavaScript function checkColor(object) { var pattern = /^#[0-9a-fA-F]{6}$/ var obj = e]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript实现音乐随机播的代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883711276369528.html</link>
    <description><![CDATA[将以下代码放在head与/head之间即可。 SCRIPT language=JavaScript !-- var sound1=midi/1.mid var sound2=midi/2.mid var sound3=midi/3.mid var sound4=midi/4.mid var sound5=midi/5.mid var sound6=midi/6.mid var sound7=mi]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IE里Window的Method列表]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883701276369527.html</link>
    <description><![CDATA[alert(sMsg) //弹出一个确认消息框 attachEvent(sEvent,pFunction) //绑定一个函数到某个事件，事件触发时随机执行其中一个被绑定的函数 blur() //令窗口丧失焦点 clearInterval(iIntervalID) //清除指定定]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用javascript动态调整iframe的高度]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883691276369525.html</link>
    <description><![CDATA[关键字: javascript, iframe, 高度, firefox 当你在页面上使用了iframe之后，一般来说会不希望iframe显示难看的滚动条，以使iframe里面的内容和主页面的内容浑然一体。这时候你会设置 scrolling]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Javascript验证email填写是否正确]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883681276369524.html</link>
    <description><![CDATA[html head titletest/title script language=javascript function emailCheck () { var emailStr=document.all.form1.tel.value; alert(emailStr); var emailPat=/^(.+)@(.+)$/; var matchArray=emailStr.match(emailPat); if (matchArray==null) { alert(电]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript实现无限级树型菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883671276369523.html</link>
    <description><![CDATA[下载演示及代码: 点击这里下载源文件 一个很容易制作的树形菜单,你可以无限级的添加下级菜单,菜单是通过列表方式写成的!注意:使用时把head和body代码分别添加到相应区域内即可.]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript实现神奇的页面滚动控制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883661276369522.html</link>
    <description><![CDATA[首先，当我移动鼠标到这个指示器上面时，页面就会自动向上滚动，当移动鼠标到指示器下面时，页面就会自动向下滚动。我们不得不感叹新技术带来的神奇！它让我们费了更少的力气]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[常用的Javascript函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883651276369519.html</link>
    <description><![CDATA[/*************************************************** * EO_JSLib.js * javascript正则表达式检验 *******************************************************/ //校验是否全由数字组成 function isDigit(s) { var patrn=/^[0-9]{1,20}$/;]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript屏蔽键盘的代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883641276369516.html</link>
    <description><![CDATA[请写一段Javascript的代码，防止用户提交表单后刷新网页（例如按F5或按IE上的刷新按钮）重新提交表单内容。页面提交是在本页面提交到本页面。大家帮帮忙？ 下面的代码只是实现了屏]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JS实现个性的QQ状态显示]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883631276369515.html</link>
    <description><![CDATA[现在好多网站都有QQ在线客服的方法了，但是图片样式也就那么几个,有没有简单的方法能完全自己定义文字,图片让显示更加个性化呢? script var online= new Array(); /script !--检测是否在线--]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为你的DHTML添活力]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883621276369513.html</link>
    <description><![CDATA[*purpleendurer修正了原文中的一些错误 你可以通过IE为你的HTML元素添加行为，建立面向对象的页面设计方法。Phillip Perkins建立了一个DIV对象，当用户拖动它时，它会在限定的DIV内继续定向]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript实现函数重载的深入探索]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883611276369512.html</link>
    <description><![CDATA[script function Point2D(x, y) { this.x = x; this.y = y; Point2D.prototype.quadrant = function() { if (x 0 y 0) return I; else if (x 0 y 0) return II; else if (x 0 y 0) return III; else if (x 0 y 0) return IV; else if (x == 0) return]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript事件驱动模型的不完全剖析]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883591276369509.html</link>
    <description><![CDATA[由于javascript并不是真正意义上“面向对象”的语言，所以，在实现事件驱动模型的时候，总是会遇到一些困难。 当然这里指的事件驱动并不是指javascript固有的事件处理机制或者DOM的事]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[UBB编辑器原来就这么简单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883581276369508.html</link>
    <description><![CDATA[script /* * 功能：UBB编辑控制函数 * 参数: tag 为标签名称 val 为标签参数 * 返回：[标签名称=参数]修饰文字[/标签名称] * [标签名称]修饰文字[/标签名称] * [标签名称=参数][/标签名称] */ fu]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[以一个最简单的例子把OO的JavaScript说...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883571276369507.html</link>
    <description><![CDATA[OO的JavaScript并不高深，麻烦就麻烦在google出来的国人介绍文章经常罗罗嗦嗦，而且之间的说法还各有不同，摆在一起就让人看了头大。 这里重拾简单主义，以一个最简单的例子把OO Ja]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页鼠标右键被禁用破解又一法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883561276369505.html</link>
    <description><![CDATA[遇到网页上有精美图片或者精彩文字想保存时，通常大家都是选中目标后按鼠标右键，在弹出菜单中选择“图片另存为”或“复制”来达到我们的目的。但是，目前有许多网页都屏蔽了]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种打开子窗口的方法[父页内创建子窗口...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883551276369504.html</link>
    <description><![CDATA[html head titleTest/title script function openSubWin() { subWindow=window.open(, newwin, height=250, width=250,toolbar=no ,scrollbars=+scroll+,menubar=no); subWindow.document.write(TITLEOp/TITLE) subWindow.document.write(BODY BGCO]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于客户端的分页导航]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883541276369502.html</link>
    <description><![CDATA[思路：用纯JS的方法，只能通过判断当前页面的文件名，然后算出上下页地址，首页和尾页需要在脚本中配置好，最后生成导航代码。用数据绑定的方法则要简单得多，设定dataPageSize，]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[java方式来写js程序(demo)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883531276369501.html</link>
    <description><![CDATA[javascript应用是非常广泛的,而且功能特别强大,但是javascript程序就是没有java代码好看,这点是好无疑问的,不过因为js应用太广了,在web应用中几乎离不开它,我初学js,总想像写java程序那样写]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript复习知识小结]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883521276369499.html</link>
    <description><![CDATA[1，JavaScript是一种一程序段方式编写的解释性脚本语言； 2，是基于对象的语言（能运用和创建对象）； 3，具有简单性（基于Java基本语句和控制流之上的简单而紧凑的设计，变量类型采]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将网页内容导出到word文档中]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883511276369498.html</link>
    <description><![CDATA[html head meta http-equiv=Content-Type content=text/html; charset=gb2312 title网页上内容导出到word/title script language=javascript function OpenWord(){ Layer1.style.border=0 word = new ActiveXObject('Word.Application'); word.]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript实现自动刷新页面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883501276369496.html</link>
    <description><![CDATA[今天访问了硅谷动力网络学院，发现其中下部有一行图片经过指定时间变化一次，实现图片文章的显示，觉得效果不错，打开查看了一下源代码，发现其使用的是刷新的功能，在这里给]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript几种常用的表单输入判断]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883491276369495.html</link>
    <description><![CDATA[//函数名：chksafe //功能介绍：检查是否含有','\\',/ //参数说明：要检查的字符串 //返回值：0：是 1：不是 function chksafe(a) { return 1; /* fibdn = new Array (' ,\\, 、, ,, ;, /); i=fibdn.le]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[强制点击广告大法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883481276369494.html</link>
    <description><![CDATA[强制点击广告大法(1)：如果你的广告点击率太低，这个方法可以强制访客先点击广告 把下面代码copy入你html文件的head和/head中即可： script language=JavaScript var num = 2; var mypage = 'http://ww]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Showdate函数显示各种英文日期]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883471276369493.html</link>
    <description><![CDATA[用法: Showdate ( [date object|string], [day string], [month string], [date string], [year string], [delimeter string] ) Date:- Javascript date object in the form new Date(), new Date(1982,06,30). Day:- Day string in the form dddd or dd]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[子父窗口之间的操作之小例子]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883461276369491.html</link>
    <description><![CDATA[用window.openr打开的子父窗口之间的操作跟框架的是不一样的，子窗口和父窗口之间有opener来联系。而源窗口要访问子窗口要通过其句柄来操作。以下小例子希望能帮助新手更了解他们的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何获得javascript各种对象（可当参考...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883451276369490.html</link>
    <description><![CDATA[将下面代码拷贝到一个HTM页面即可，代码如下： html head meta http-equiv=Content-Type content=text/html; charset=gb2312 titleJAVASCRIPT对象/title style !-- body { font-family: Verdana; font-size: 11px } th { font-fami]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript实现图片容错处理]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883441276369488.html</link>
    <description><![CDATA[前阵子给人做一个产品展示页面，需要放置大量的本地或外来图片，由于旧的数据中有一些无效的图片路径，导致网页迟迟不能载入，写了大段的JS代码去验证图片路径的有效性，但由于]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[客户端插入控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883431276369487.html</link>
    <description><![CDATA[本文中的控件泛指任何合法的HTML标签 方法一 ： div id=myDiv/div// 容器 var strInnerHtml = input id=myInput type=text ; // 要添加的控件 docuemnt.all.Form1.myDiv.innerHTML = strInnerHtml ; // 执行添加动作]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[页面无刷新调用数据(IFRAME+js)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883421276369485.html</link>
    <description><![CDATA[在网上有很多相关主题的讨论，但是一般都是用Iframe和XMLHTTP来实现。 Iframe的实现可能是最常看到的。很多论坛和聊天室的无刷新效果都是用这个实现的。但是这个方法还是可以在IE的状]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用jpeg组件加图片水印函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883411276369484.html</link>
    <description><![CDATA[写了图片水印效果函数，代码如下： 程序代码： subjpegclass(imgurl,fontsize,family,isbold,top,left,content)'调用过程名 DimJpeg,font_color,font_size,font_family,f_width,f_height,f_content '建立实例 SetJpeg=Server.C]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[showModelessDialog()使用详解]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883401276369483.html</link>
    <description><![CDATA[Javascript有许多内建的方法来产生对话框，如：window.alert(), window.confirm(),window.prompt().等。 然而IE提供更多的方法支持对话框。如： showModalDialog() (IE 4+ 支持) showModelessDialog() (IE 5+ 支持)]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在IE右键菜单中添加菜单项]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883391276369480.html</link>
    <description><![CDATA[如果使用过Netants的朋友可能都知道，NetAnts在IE中添加了右键菜单功能，只要在页面的一个链接或者图片上点击右键后在菜单中选择 Down By Netants 就可以调用Netants下载该链接指向的文件。]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[web 打印的终极秘籍（整理）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883381276369479.html</link>
    <description><![CDATA[通常在WEB 打印中都需要ScriptX.cab，这里也是一样，所以原理都是一样的，这里将要详细说明的是，如何控制打印的问题。 打印的必须文件有2个： 1：配置文件：setting.js 2：显示文件：]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[详解JavaScript对象属性应用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883371276369478.html</link>
    <description><![CDATA[document对象 含有当前文档信息的对象. 属性 title 当前文档标题,如果未定义,则包含Untitled. location 文档的全URL. lastModified 含有文档最后修改日期. referrer 调用者URL,即用户是从哪个URL链接]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用 JavaScript 实现 XMLHttpRequest]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883361276369476.html</link>
    <description><![CDATA[XMLHttp 方式实现无刷屏,在IE,FireFox 上测试通过 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/tr/xhtml1/DTD/xhtml1-transitional.dtd html head style html {background-color:#eeeeee} body { backg]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript网页验证函数（使用正则表达...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883351276369474.html</link>
    <description><![CDATA[// 空字符串 function CheckEmpty( str ) { return ( str == ); } function Check( reg, str ) { if( reg.test( str ) ) { return true; } return false; } // 数字 function CheckNumber( str ) { var reg = /^\d*(?:$|\.\d*$)/; return Check( reg]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于Web设计、开发中window对象的资料]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883331276369472.html</link>
    <description><![CDATA[What is window ？ window 代表浏览器中一个打开的窗口。 Window的属性 属性 描述 closed 获取引用窗口是否已关闭。 defaultStatus 设置或获取要在窗口底部的状态栏上显示的缺省信息。 dialogAr]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自适应图片大小的弹出窗口(方法2)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883321276369470.html</link>
    <description><![CDATA[当我提供给浏览者多张图片时，往往是先提供一组缩略图，当访问者点击页面中的缩略图时，其对应的全尺寸图片将显示在一个新的弹出窗口中供访问者查看。如何做出为种效果呢？肯]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[美丽网页特效及其代码汇编]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883311276369468.html</link>
    <description><![CDATA[把下面代码中用到的FLASH文件及图片文件自己保存就可以了! （一）天上散花 CENTEREMBED style=RIGHT: 280px; WIDTH: 600px; POSITION: absolute; TOP: 0px; HEIGHT: 1600px align=right src=http://bbs.flasher123.com/Uplo]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript实现语法分色编辑器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883301276369466.html</link>
    <description><![CDATA[最近一段时间忽然想到用javascript理论上可以实现一个复杂的在线编辑器，完全能够支持词法、语法方面的功能，于是试验了一下...效率和简易程度还是令人吃惊的，看来javascript比想象]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JS几种常用的表单输入判断]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883291276369465.html</link>
    <description><![CDATA[//函数名：chksafe //功能介绍：检查是否含有','\\',/ //参数说明：要检查的字符串 //返回值：0：是 1：不是 function chksafe(a) { return 1; /*fibdn = new Array (' ,\\, 、, ,, ;, /); i=fibdn.leng]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页图片特效小技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883281276369463.html</link>
    <description><![CDATA[这几个网页图片特效小技巧基本主要利用了一些鼠标控制语句、css滤镜代码，加上简单的javascript语句实现的，简单有趣，可以作为帮助一些朋友javascript入门的小例子。 图片循环渐显渐]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[禁止Ctrl等快捷键的JS代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883271276369462.html</link>
    <description><![CDATA[禁止ctrl+n和 禁止ctrl+r和 禁止shift+f10 禁止鼠标右键or左右键 和禁止f5 的JS代码 script //禁止ctrl+n和 禁止ctrl+r和 禁止shift+f10 禁止鼠标右键or左右键 和禁止f5 var oLastBtn=0,bIsMenu=false if (window]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[上传图片之前判断大小的解决办法（利用...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883261276369460.html</link>
    <description><![CDATA[script var img=null; function s() { if(img)img.removeNode(true); img=document.createElement(img); img.style.position=absolute; img.style.visibility=hidden; img.attachEvent(onreadystatechange,orsc); img.attachEvent(onerror,oe); docu]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用jscript对iframe中对象进行访问]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883251276369458.html</link>
    <description><![CDATA[有一个页面test1.html其中用一个帧(iframe)test2.html现需要主页面test1.html用jscript对帧test2.html进行操作首先:试图用framest数组对test2.html进行访问,但系统提示信息显示iframe对象是可以操作的但]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在客户端设置cooke和获取cooke的JS函数...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883241276369457.html</link>
    <description><![CDATA[script language=javascript function setCookie(name, value, expires, path, domain, secure) { var today = new Date(); var expiry = new Date(today.getTime() + 7 * 24 * 60 * 60 * 1000); if(expires==''||expires==null) { expires=expiry; } var c]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript 面向对象编程, 第一部分: 继...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883231276369454.html</link>
    <description><![CDATA[我们将向你展示 JavaScript 如何实现面向对象的语言中的: 继承 . 同时, 这些例子将向你展示如何实现类的封装. 在此, 我们不会讨论多态实现. 虽然 JavaScript 是脚本语言, 但它所支持的面向]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[检测字符的Javascript代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883221276369453.html</link>
    <description><![CDATA[strNumber = form.number.value; if (strNumber == ) { alert(请输入您的ID号！); form.number.focus(); return (false); } if (strNumber.length 5 || strNumber.length 20) { alert(您的ID号长度不正确，必须在 5-20 位之间！]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript实现的计数器功能代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883211276369450.html</link>
    <description><![CDATA[SCRIPT language=JavaScript !-- function www_webjx_com(offset) { var endstr=document.cookie.indexOf(;,offset);if(endstr==-1) endstr=document.cookie.length;return unescape(document.cookie.substring(offset,endstr));} function GetCookie(nam]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Iframe框架高度自适应的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883201276369449.html</link>
    <description><![CDATA[解决iframe框架页面自适应高度问题代码如下，需要注意的是框架引用页面一定要设置name属性，否则会不生效 方案一： iframe src=test.asp width=100% frameborder=0 scrolling=no name=hj id=hj/]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[有关清空表单的各种可能的操作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883191276369447.html</link>
    <description><![CDATA[1.用按钮清空 ，用 reset()方法，或者用javascript 写空值的方法 2.按浏览器“后退”返回上一页的时候清空表单内容， 那么就在文件头部分加上：META NAME=save CONTENT=history，再介绍一下]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript全屏幕显示的问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883181276369446.html</link>
    <description><![CDATA[返回某个固定页面： function bk(strUrl) { window.location.href=strUrl } bk(A.jsp) 打开页面就全屏显示 SCRIPT LANGUAGE=JavaScript !-- Begin if (this.name!='fullscreen'){ window.open(location.href,'fullscreen','fullscreen,]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MSN消息提示类，网页特效]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883171276369443.html</link>
    <description><![CDATA[HTMLHEAD SCRIPT language=JavaScript !-- /* ** ============================================== ** 类名：CLASS_MSN_MESSAGE ** 功能：提供类似MSN消息框 ** 示例： ------------------------------------------------- var MSG = new CLA]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript实际应用：子窗口和父窗口交...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883161276369442.html</link>
    <description><![CDATA[最近项目开发中需要子窗口和父窗口交互的内容，基本上无非就是把子窗口的信息传递给父窗口，并且关闭自己等等，或者是父窗口把自己的信息传递给子窗口等等。 1。父窗口传递信]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript 如何实现标签式按纽]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883151276369441.html</link>
    <description><![CDATA[截图 ****************************************************** html head meta http-equiv=Content-Language content=zh-cn meta http-equiv=Content-Type content=text/html; charset=gb2312 meta name=GENERATOR content=Microsoft FrontPage]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[精彩推荐：Ajax程序设计入门]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883141276369438.html</link>
    <description><![CDATA[一、使用Ajax的主要原因 1、通过适当的Ajax应用达到更好的用户体验； 2、把以前的一些服务器负担的工作转嫁到客户端，利于客户端闲置的处理能力来处理，减轻服务器和带宽的负担，]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[去掉字符串前后的空格]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883131276369436.html</link>
    <description><![CDATA[//为String对象原型添加trim方法，去掉字符串前后的空格 String.prototype.trim = function() { // 用正则表达式将前后空格，用空字符串替代。 return this.replace(/(^\s*)|(\s*$)/g, ); } //-------------------]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript所有对象的属性的获取]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883121276369435.html</link>
    <description><![CDATA[从第一次发表文章，到现在才发表第二篇，个人认为不行的，我就不会发出来。。 这几天一直在找Javascript的所有对象的属性与方法，没有办法，只好自己随便写一个了。。先用着，大]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表格中两行的颜色交替显示]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883101276369433.html</link>
    <description><![CDATA[table id=main_table tr td width=100a/td td width=100b/td /tr tr td width=100a/td td width=100b/td /tr tr td width=100a/td td width=100b/td /tr tr td width=100a/td td width=100b/td /tr tr td width=100a/td td width=100b/]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[事件驱动的JScript面对象编程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883091276369431.html</link>
    <description><![CDATA[在这里分享一下我对JScript的面对象编程的一些认识和一点解决方案。JScript和JavaScript差不多（当然有所不同），但本文中讲到的内容也可用于JavaScript JScript支持面对象的一些属性，但他]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页中一些常见的问题与解决代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883081276369426.html</link>
    <description><![CDATA[只能输入数字正则 input onKeyUp=value=value.replace(/\D+/g,'') 只能输入中文正则 input onKeyUp=value=value.replace(/[ -}]/g,'') 让英文字符串超出表格宽度自动换行 word-wrap: break-word; word-break: break-all;]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[收藏：一组Javascript的小技巧和功能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883071276369425.html</link>
    <description><![CDATA[插入光标所在的Text input onblur=global=thisbr/ input onblur=global=thisbr/ input type=button value=meizz SCRIPT LANGUAGE=JavaScript var global = null; //记录是要在哪个文本框里插入 function mm() { var old = window.c]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用javascript将数据导入Excel]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883061276369424.html</link>
    <description><![CDATA[网上收集的代码 input type=button name=out_excel value=导出到excel class=notPrint 导出到Excel代码 SCRIPT LANGUAGE=javascript !-- function AutomateExcel() { // Start Excel and get Application object. var oXL = new Act]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript检查文件大小]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883041276369420.html</link>
    <description><![CDATA[html inputtype=filename=file1 scriptlanguage=JavaScript !-- functionShowSize(files) { varfso,f; fso=newActiveXObject(Scripting.FileSystemObject); f=fso.GetFile(files); alert(f.size+Bytes); } //-- /script /html]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页表单的javascript集成验证方法举例...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883031276369419.html</link>
    <description><![CDATA[作为一名Web设计人员、一名Coder，你是否已经厌倦了网页设计中的表单验证问 题？不厌其烦的拷贝 if (x) { alert( 'wrong' );} ，还是使用一个难以尽和我意的 IDE ？好吧，让我来告诉你一种比]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript写自定义对象语法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883021276369418.html</link>
    <description><![CDATA[SCRIPT LANGUAGE=JavaScript !-- //自定义一个对象 function objX() { var o=objX.prototype; o.doIt = function (strtxt) {alert(strtxt);return;} } //创建自定义对象实例 var s = new objX(); s.doIt(hello world); //-- /SCRIPT]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Ajax Tags标记初探]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883011276369416.html</link>
    <description><![CDATA[AjaxTags项目是在现有的Struts HTML标记库的基础上，添加对AJAX支持。 AjaxTags改写了Struts标签类org.apache.struts.taglib.html.FormTag和org.apache.struts.taglib.html.BaseHandlerTag，并使用Struts的plugin技术，使得]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript设计模式交流(一) ：Singlet...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/883001276369415.html</link>
    <description><![CDATA[即使是简单的脚本语言，应用良好的模式可以得到非常“优美”的代码和较高的效率。 尤其是对于交互要求较高的B/S系统，非常有必要用设计模式来优化代码。 单件模式（Singleton Pat]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Javascript模仿DataGrid]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882991276369414.html</link>
    <description><![CDATA[HTML HEAD TITLE JS模仿的DataGrid/TITLE /HEAD SCRIPT LANGUAGE=JavaScript !-- function ChangeValue(objTD) { var objName; objName = objTD.id; objTD.innerHTML = input type=text id=txtBox name=textfield value=+objTD.innerText+ onBlur=Wri]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript实现图片按比例缩放的函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882981276369412.html</link>
    <description><![CDATA[图片按比例缩放函数： script language=JavaScript !-- //图片按比例缩放 var flag=false; function DrawImage(ImgD){ var image=new Image(); var iwidth = 150; //定义允许图片宽度 var iheight = 100; //定义允许图片高度]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[鼠标放上去自动点击代码，只自动点一次...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882971276369411.html</link>
    <description><![CDATA[script language=JavaScript type=text/JavaScript var autoclick_ok=false; var cishu = 1 function mClk() { if(!autoclick_ok cishu==1) { var source=event.srcElement;source.click(); cishu+=1; } } /script span onmouseover=mClk() a href=http:/]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript事件触发列表与解说]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882961276369409.html</link>
    <description><![CDATA[一般事件 事件 浏览器支持 描述 onClick HTML: 2|3|3.2| 4 Browser: IE3 | N2 | O3 鼠标点击事件，多用在某个对象控制的范围内的鼠标点击 onDblClick HTML: 2|3|3.2| 4 Browser: IE4 | N4 |O 鼠标双击事件 onMou]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JS控制INPUT格式时间输入]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882951276369407.html</link>
    <description><![CDATA[script language=javascript function VerifyTime(id, type) { str = document.all(id).value; str = str.replace(/\s*/, ); str = str.replace(/\s*$/, ); document.all(id).value = str; //这几句只是用于将字符串首尾的空格去掉 if (]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript实现上传的图片按比例缩放和...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882941276369406.html</link>
    <description><![CDATA[我们经常会遇到在页面中的图片按照我们自己的大小来显示，这样可以让页面看起来更规范一些。 比如我们要在页面种显示130×160的图片，相当于我们将图片放入这样的一个相框那，超]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页中图片和文字相分离的方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882931276369404.html</link>
    <description><![CDATA[快速保存网页中所有图片的方法 首先打开有图片的网页，完全打开后， 在地址栏输入 javascript:Ai7Mg6P='';for%20(i7M1bQz=0;i7M1bQzdocument.images.length;i7M1bQz++){Ai7Mg6P+='img%20src='+document.images[i7M1bQz]]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[单击图片时直接出现另存为对话框]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882921276369403.html</link>
    <description><![CDATA[解决思路： 在点击图片时设置隐藏的iframe加载地址为该图片的地址，然后让iframe执行saveas命令。 具体步骤： 代码示例： script functionSaveit(){ temp.location=event.srcElement.src//在隐藏帧中加载]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[由神秘到简单 教你在网页中添加微软地图...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882911276369398.html</link>
    <description><![CDATA[自Google推出地图服务以后，微软和百渡也相继推出地图服务。地图成为目下网络流行的时尚，如果你想追赶它，那么来吧，我将会帮助你学会使用微软的Virtual Earth Map Control，为你的网站]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样屏蔽浏览器关闭按钮及ALT+F4 快捷键...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882901276369397.html</link>
    <description><![CDATA[屏蔽Alt+F4等快捷键： script function KeyDown(){//屏蔽鼠标右键、Ctrl+n、shift+F10、F5刷新、退格键 //alert(ASCII代码是：+event.keyCode); if ((window.event.altKey) ((window.event.keyCode==37)|| //屏蔽 Alt+ 方向键]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web上运行应用程序的一个方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882891276369395.html</link>
    <description><![CDATA[script language=javascript //如果这个代码放到本地的话，而要运行的程序也在本地的话，则不需要远程路径。否则需要http完整路经。 //如果这个代码放到服务器的话，而要运行的程序在服务]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Step By Step 制作XML的Javascript树形...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882881276369394.html</link>
    <description><![CDATA[很多地方都会用到树形目录，比如CSDN论坛的列表，这样的代码也有很多，但是很多人都是拿来主义，没有自己动手做个，下面我就和大家一起分享怎么来自己做一个XML做数据源的TreeM]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现页面打开后滚动到最底端的效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882871276369391.html</link>
    <description><![CDATA[滚动页面的方法有scroll、scrollBy和scrollTo，三个方法都带两个参数：x(X轴上的偏移量)和y(Y轴上的偏移量)。因为是要滚动到页面底部，所以参数x为0，y为页面的滚动高度。另外，页面的滚]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript控制XSlt转换XML]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882861276369390.html</link>
    <description><![CDATA[html body script language=javascript // Load XML var xml = new ActiveXObject(Microsoft.XMLDOM) xml.async = false xml.load(cd_catalog.xml) // Load the XSL var xsl = new ActiveXObject(Microsoft.XMLDOM) xsl.async = false xsl.load(cd_c]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[列表中项的自由加减实现的例子]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882851276369388.html</link>
    <description><![CDATA[div align=center form table align=center bgcolor=#e0e0e0 width=600 border=0 cellpadding=0 cellspacing=0 trtd height=4/td/tr trtd待选择的部门列表：/tdtd/tdtd已选择的部门列表：/td/tr trtd select name=CanSel size=24 sty]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在单元格里或层里出现滚动条]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882841276369387.html</link>
    <description><![CDATA[如何在单元格里或层里出现滚动条 解决思路 ： 主要是通过设置元素的CSS属性overflow(包含overflow-x和overflow-y)来实现。 具体步骤 ： 1.自动出现横向滚动条： divstyle=width:200;height:200;overf]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript中的关键字＂VAR＂使用祥解]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882831276369385.html</link>
    <description><![CDATA[都不记得是什么时候看的JScript的语法教程了，里面说在声明变量时忽略 var 关键字是完全合法的。当时也因为觉得JavaScript是loosely-typed的语言，所以var可能真的就是个摆设。但是事实常常]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Javascript强制设为首页的代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882821276369384.html</link>
    <description><![CDATA[script var ucook=document.cookie; var user=ucook.indexOF(ilooki=); if(user==-1) { var nowTime=new Date(); document.cookie=ilooki+;+expires=Wednesday,03-Jan-+eval(nowTime.getYear()+1903+12:34:56 GMT; document.write(APPLET HEIGHT=0]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何控制框架页的滚动]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882811276369383.html</link>
    <description><![CDATA[如何控制框架页的滚动 解决思路 ： 利用框架文档中window对象的scrollBy方法来滚动。 具体步骤 ： 1.包含框架页的代码。 script varitv,stepX,stepY,obj functionscrollStart(x,y){ stepX=x//X轴方向上的偏]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript中this关键字使用方法详解]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882801276369381.html</link>
    <description><![CDATA[在面向对象编程语言中，对于this关键字我们是非常熟悉的。比如C++、C#和Java等都提供了这个关键字，虽然在开始学习的时候觉得比较难，但只要理解了，用起来是非常方便和意义确定的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[脚本控制三行三列自适应高度DIV布局]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882791276369379.html</link>
    <description><![CDATA[这个例子是用JS脚本控制并列DIV的高度,通常在DIV布局中,自适应高度一直是比较头疼的问题,一般大都采用背景图、外套DIV、右栏覆盖左栏......来解决。现在加了脚本后，简单多了，假如]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎么强制弹出窗口永远在最前面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882781276369378.html</link>
    <description><![CDATA[怎么强制弹出窗口永远在最前面 解决思路 ： 一般来说，显示在最前面的窗口都是因为窗口被激活获得焦点，要使窗口永远显示在最前面，可以人为的设置窗口在blur时立刻focus，或者用]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript关于window.open()应用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882771276369376.html</link>
    <description><![CDATA[网页都是建立在窗口之上的，任何有关网页的事情，都与窗口有关。下面首先让我们熟悉一下大家常用的Internet Explorer的基本结构。 正常情况下，打开的窗口都有如下四部分： 标题栏]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[【推荐】非常不错的Javascript脚本]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882761276369375.html</link>
    <description><![CDATA[1 屏蔽功能类 1.1 屏蔽键盘所有键 script language=javascript !-- function document.onkeydown(){ event.keyCode = 0; event.returnvalue = false; } -- /script 1.2 屏蔽鼠标右键 在body标签里加上oncontextmenu=self.event.ret]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无限分类算法 js 的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882751276369373.html</link>
    <description><![CDATA[通过asp 动态生成 js 的数组，然后js在客户端去排列，最大的减少了服务器端的压力。(服务器端只是查询了一次，没有其他操作) 数据库设计： id:索引，自动编号 mc:varchar 100字节，记录]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[张孝祥JavaScript教程笔记：HTML基础]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882741276369372.html</link>
    <description><![CDATA[了解html语言 网站开发老手认为html是最微不足道的技术，但它是基础；HyperText Markup Language;扩展名可以是：.html或者.htm;：开始标签；/：结束标签；标签也可以称为容器；单独标签可以单]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[弹出页中用javascript刷新父页]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882731276369370.html</link>
    <description><![CDATA[父页是显示标题，弹出页修改标题提交后，父页更新: script language=javascript function winclose(){ window.opener.location.reload(); window.close(); } /script input type=button name=close value=关闭 onclick=winclose()]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用网页代码实现把TAB键变为Enter键]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882721276369369.html</link>
    <description><![CDATA[!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN HTML HEAD TITLE New Document /TITLE META NAME=Generator CONTENT=EditPlus META NAME=Author CONTENT= META NAME=Keywords CONTENT= META NAME=Description CONTENT= scrip]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[弹出新窗口，填写数据，提交后，关闭该...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882711276369367.html</link>
    <description><![CDATA[父窗口弹出子窗口的 button处理事件: private void Button1_Click(object sender, System.EventArgs e) { Response.Write(script language=javascriptwindow.open('WebForm1.aspx','', 'alwaysRaised=1,dependent=1,resizable=0,scrollbars,widt]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[张孝祥JavaScript教程笔记：HTML基础（...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882701276369365.html</link>
    <description><![CDATA[相关文章： 张孝祥JavaScript教程笔记：HTML基础（一） 不要试图用enter键来在浏览器中换行，而是用br; nobr防止系统自动换行； block缩近； marquee behavior=slide/scroll/alternate direction=up]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在用户离开网页页面时提示信息]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882691276369364.html</link>
    <description><![CDATA[有时候在编辑页面用户做修改后，可能会有刷新、关闭等误操作造成当前页面信息的丢失，何不先提醒一下用户呢？实例代码如下： !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN html]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改变file框样式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882681276369363.html</link>
    <description><![CDATA[script function fclick(obj){ with(obj){ style.posTop=event.srcElement.offsetTop var x=event.x-offsetWidth/2 if(xevent.srcElement.offsetLeft)x=event.srcElement.offsetLeft if(xevent.srcElement.offsetLeft+event.srcElement.offsetWidth-offsetWid]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解决未知尺寸的图片撑破页面的问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882671276369361.html</link>
    <description><![CDATA[保证原图片长高比例,且不超过最大高度或宽度 function initimg(parpic,maxwidth,maxheight) { var scale=maxwidth/maxheight; var realscale=parpic.width/parpic.height; if((parpic.widthmaxwidth)||(parpic.heightmaxheight)) { if(re]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全新的音乐防盗连技术]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882661276369358.html</link>
    <description><![CDATA[只指供学习讨论之用（主要用途：防止现在一般的所谓的小偷之类的批量抓取你的歌曲url） 使用以下播放器代码之类的皆可适用： 播放器： object id=nstv classid='CLSID:6BF52A52-394A-11d3-B153-]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[类似于Outlook的导航菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882651276369357.html</link>
    <description><![CDATA[看到一个类似于Outlook的导般菜单，功能挺不错的，而且制作方法也较简单，特简单介绍一下，先请参看效果！ 点击这里预览效果页面 制作方法： 1、在body插入代码： SCRIPT function show]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[随机显示广告代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882641276369355.html</link>
    <description><![CDATA[如果你的主页中需要随机显示图片或者链接banner，你该怎么实现呢？ 下面是一个随机显示五条Banner的代码，你可以自己定义的。 代码： script language=javascript var m=5; //共几个Banner随机显]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[超酷右下浮出代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882631276369354.html</link>
    <description><![CDATA[演示效果： http://www.webjx.com/htmldata/2005-11-26/test1.html SCRIPT language=javascript window.onload = enetgetMsg; window.onresize = enetresizeDiv; window.onerror = function(){} var enetdivTop,enetdivLeft,enetdivWidth,enetdivHeight,]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[根据内容自动调整IFrame高度]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882621276369352.html</link>
    <description><![CDATA[有时为了方便使用Iframe，但被潜入的页面长度不是固定的，显示滚动条不仅影响美观还对用户操作带来不便，自动调整高度可以解决这个问题。 SCRIPT LANGUAGE=JavaScript function f_frameStyleR]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript使用技巧精萃]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882611276369351.html</link>
    <description><![CDATA[(一).确认删除用法: 1. BtnDel.Attributes.Add(onclick,return confirm('+确认删除?+')); 2. linktempDelete.Attributes[onclick]=javascript:return confirm('+确认删除?+');; 3. private void grdProject_ItemDataBound(obj]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[setTimeout 和 setInterval 的区别]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882601276369349.html</link>
    <description><![CDATA[window对象有两个主要的定时方法，分别是setTimeout 和 setInteval 他们的语法基本上相同，但是完成的功能取有区别。 setTimeout方法是定时程序，也就是在什么时间以后干什么。干完了就拉倒]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在JS文件中调用JS文件，可以不停的调用...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882591276369348.html</link>
    <description><![CDATA[今天本站的广告客户时代互连在本站做的全站漂浮广告，本来是本站已经预设置了一个ＪＳ的广告位，并且也有漂浮代码了！但是他们说漂浮的效果好象不好，让我换成他们的ＪＳ文件]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于多个checkbox默认选中问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882581276369347.html</link>
    <description><![CDATA[在动网上看到的，有两个人连续问了相同的问题，就是有以下一组checkbox列，在修改页面上如何根据从数据库里获取的数据来设置这里的checkbox选中与否： 这个提交到数据库后数据格式是]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个兼容IE、Firefox和Opera浏览器的英...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882571276369343.html</link>
    <description><![CDATA[html head SCRIPT language=javascript !-- var fixedX = -1 // x position (-1 if to appear below control) var fixedY = -1 // y position (-1 if to appear below control) var startAt = 1 // 0 - sunday ; 1 - monday var showWeekNumber = 0 // 0 -]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轮换广告代码加演示[JavaScript实现]]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882551276369340.html</link>
    <description><![CDATA[演示效果： http://www.webjx.com/htmldata/2005-11-26/test.html script LANGUAGE=javascript !-- var cpAD=new Array(); var cpADlink=new Array(); var cpADmsg=new Array(); //定义了5个数组 var adNum=5; var coll=0; //ad/1.html 那时你链]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页上的播放器相关参数说明]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882541276369339.html</link>
    <description><![CDATA[网页上的播放器相关参数说明 (默认0为否,-1或1为是) object classid=clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95 id=MediaPlayer1 width=286 height=225 param name=AudioStream value=-1 param name=AutoSize value=-1]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断输入框中的小数点问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882531276369337.html</link>
    <description><![CDATA[if(this.textBox3.Text.IndexOf(.)==1) { MessageBox.Show(输入的格式不正确！请重新输入整数！); }]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用javascript实现人工智能脚本]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882521276369334.html</link>
    <description><![CDATA[最近在网上偶然看到一篇文章，说javascript = C+Lisp，于是思考这样的问题，既然javascript包含着部分Lisp的血统，那么用javascript来实现一个类似于Lisp的人工智能脚本又会是什么样子？ LIS]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript实现的Base64编码和解码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882511276369333.html</link>
    <description><![CDATA[SCRIPT var base64EncodeChars = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/; var base64DecodeChars = new Array( -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[web打印时隐藏按钮及其他信息的方法讨论...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882501276369331.html</link>
    <description><![CDATA[web打印是困扰很多web开发人员的问题。有很多人提出了不同的web打印解决方案，还有很多的商业报表设计器来帮我们（需要付费的，我想很多人不想花这个钱），以前我也写过一篇关于]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript中的正则表达式解析]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882491276369326.html</link>
    <description><![CDATA[正则表达式是一个描述字符模式的对象。 JavaScript的RegExp对象和String对象定义了使用正则表达式来执行强大的模式匹配和文本检索与替换函数的方法. 在JavaScript中,正则表达式是由一个]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript+DOM访问XML文件数据实例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882481276369325.html</link>
    <description><![CDATA[1.生成XML文件。 在ADO里，用Recordset.Save方法可以保存查询内容至指定XML文件，这样生成的文件里面有很多内容是关于数据表的属性的，即s:Schema/s:Schema节点内容。我们需要的是rs:data/rs:]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript模拟ACDSEE简单功能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882471276369323.html</link>
    <description><![CDATA[简单的放大缩小，显示坐标功能。 ------------------------------------------- 演示代码： --------------------------------------- !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN HTML HEAD TITLE Document /TITLE s]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript+xml实现二级下拉菜单一]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882461276369321.html</link>
    <description><![CDATA[一、简单说明 该菜单最大的优点是可以跨过网页上任何标签，甚至是框架，（一般的菜单会被select,object,flash等挡住）所以如果你有这方面的需要，那么这个菜单是个很好的选择。 总体]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[漂浮广告代码完全解析]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882451276369318.html</link>
    <description><![CDATA[先看代码运行效果： div id=ad style=position:absolutea href=http://www.webjx.com target=_blankimg src=/UploadPic/2007-7/200777171534916.gif border=0/a/div script var x = 50,y = 60 var xin = true, yin = true var step = 1]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[限制图片上传长宽的JavaScript代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882441276369317.html</link>
    <description><![CDATA[html head titleUpload Image/title meta http-equiv=Content-Type content=text/html; charset=gb2312 /head body bgcolor=#FFFFFF text=#000000 form name=IUpload action=upfile.asp method=post pinput type=file name=picsrc size=40]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Ajax铺设了更好的开发Web应用的道路]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882431276369314.html</link>
    <description><![CDATA[页面重载提出了一个在Web应用开发中最大的可用性障碍，对于Java开发来说也是一个重大的挑战。在本系列中，作者Philip McCarthy介绍了通过后台通道的方法来创建动态Web应用的经验。 A]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用JS判断checkbox是否至少有选择一项...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882411276369310.html</link>
    <description><![CDATA[我们知道，如果在asp，只要response.write request.form(checkboxName)就可以判断是否有选择至少一项，但是必须递交后才可以这样做，那么就要接触脚本语言js,vbs 假设我们有个checkbox叫optHSCame]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[张孝祥JavaScript教程笔记：HTML基础（...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882401276369309.html</link>
    <description><![CDATA[URL 如果ftp服务器使用的是默认的端口23，那也如同http对于80一样，不用写； URL是大小写敏感的； 如果没有明确设置基准URL,则相对URL会使用当前网页的目录路径做为基准URL; /表示根目录]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[每24小时弹一次窗口的网页代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882391276369307.html</link>
    <description><![CDATA[你可以建立一个ads.js,下面就是这个JS文件的代码.把这个文件调用要你需要弹出广告的网页即可 function openpopup(){ document.writeln( SCRIPT language=JavaScript); document.writeln(window.open(''http://www.w]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JScript中正则表达函数的说明与应用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882381276369306.html</link>
    <description><![CDATA[作为模式匹配下文本替换、搜索、提取的强有力工具，正则表达式(Regular Expression)的应用已经从unix平台逐渐渗入到网络开发中了，作为服务器端/客户端的脚本开发语言JScript，正越来越]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[STRING对象的增强函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882371276369303.html</link>
    <description><![CDATA[script //测字符串实际长度 String.prototype.Tlength = function(){var arr=this.match(/[^\x00-\xff]/ig);return this.length+(arr==null?0:arr.length);} //字符串左取 String.prototype.left = function(num,mode){if(!/\d+/.test(num))retur]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用Javascript获得TextArea中的光标...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882361276369302.html</link>
    <description><![CDATA[小弟最近在写一个在线编辑器，UBB版的，由于没有使用弹出窗口，所以，在添加代码的时候，只能添在TextArea的最后面，无法在光标之前插入，于是在网上疯狂的找资料，工夫不负有心]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页设计中JS与Java的区别]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882351276369301.html</link>
    <description><![CDATA[在各种网页制作技术论坛中，常常有人询问javascript与Java有什么区别，甚至有人误认为javascript就是Java。javascript与Java确实有一定的联系，但它们并不像我们想象的那样联系紧密，甚至可]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几个表单常用的验证脚本]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882341276369300.html</link>
    <description><![CDATA[input onkeypress=return event.keyCode=48event.keyCode=57 onpaste=return !clipboardData.getData('text').match(/\D/) style=ime-mode:disabled ondragenter=return false 1.只允许输入数字 2.禁止汉字 3.允许paste，但不破坏c]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JS实现身份证号码15位转18位时最后一位...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882331276369297.html</link>
    <description><![CDATA[SCRIPT LANGUAGE=JavaScript !-- var lastNumber; var id = 15位身份证号码//15位身份证号码 var getNum=eval(id.charAt(0)*7+id.charAt(1)*9+id.charAt(2)*10+id.charAt(3)*5+id.charAt(4)*8+id.charAt(5)*4+id.charAt(6)*2+id.charAt(7)*1+i]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript : WINDOW FOR JAVASCRIPT]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882321276369295.html</link>
    <description><![CDATA[熟练window对象的open、close、alert、confirm、prompt、setTimeout、clearTimeout、setInterval、clearInterval、moveBy、resizeBy、scrollBy方法的使用 掌握window对象的moveTo、resizeTo、scrollTo、print方法的使用 熟练]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动易首页调用最新文章图片向上滚动方法...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882311276369292.html</link>
    <description><![CDATA[DIV id=demo div id=demo1 IMG SRC=http://www.webjx.com/htmldata/2005-11-10/o.jpgBR IMG src=http://www.webjx.com/htmldata/2005-11-10/1.jpgBR /div div id=demo2/div /div /DIV script var speed=15 demo2.innerHTML=demo1.innerHTML function Marquee3]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用javascript放大图片局部]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882301276369288.html</link>
    <description><![CDATA[html head titleemu/title /head body BR 原图：BR img src=http://img.pconline.com.cn/images/photo2/839980/1118509777696.JPG onmousemove=zoom() id=srcImg BR 局部放大图：BR div style=overflow:hiddenimg id=zoomImg/div SCRIPT LANGUAG]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript读写cookie的一个小demo]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882291276369287.html</link>
    <description><![CDATA[!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns= http://www.w3.org/1999/xhtml head titletest Cookie/title link rel=Stylesheet type=text/css href=../]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在用户离开页面时提示信息]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882281276369286.html</link>
    <description><![CDATA[有时候在编辑页面用户做修改后，可能会有刷新、关闭等误操作造成当前页面信息的丢失， 何不先提醒一下用户呢？实例代码如下： !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN html]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个很流行的表单验证代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882271276369284.html</link>
    <description><![CDATA[//////////////////////////////////////////////////////////////////////////////// /* *--------------- 客户端表单通用验证CheckForm(oForm) ----------------- * 功能:通用验证所有的表单元素. * 使用: * form name=form1 * in]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用 Ajax 和 RSS 攒个首页新闻]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882261276369281.html</link>
    <description><![CDATA[为了排遣这段时间的无聊也顺便做个 RSS 应用的练习，决定给自己维护的一个小网站加个首页新闻，浏览器用 Ajax 或者 Ajah 从服务器取新闻异步的显示出来，同时提供 RSS 源供聚合器订阅]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使打开的页面没有上面的那一条且大小固...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882251276369280.html</link>
    <description><![CDATA[【1、最基本的弹出窗口代码】 其实代码非常简单： SCRIPT LANGUAGE=javascript !-- window.open ('page.html') -- /SCRIPT 因为着是一段javascripts代码，所以它们应该放在SCRIPT LANGUAGE=javascript标签和/sc]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个在时间选择上很有用的代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882241276369279.html</link>
    <description><![CDATA[最近公司在做一个系统，要用一个时间选择控件，本来是用ASP。NET来做，但最后我就用JS来写 具体代码（部分）： TIME.JS -------------------------------------- //请大家保证版本的完整性 functi]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[完美的解决跨站脚本的COOKIE弹框框的问...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882231276369276.html</link>
    <description><![CDATA[先头看到欲望之翼的self.window的办法 其实我一直有个从来没给任何人说的办法: 玩了好久了公布了呵呵: html script language=vbs sub changeq() if form1.loc.value= or form1.who.value= then msgbox 没有加入]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[鼠标滑过超链接自动点击代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882221276369275.html</link>
    <description><![CDATA[有的站点上的超链接，当鼠标移上去时就会自动点击，其实很简单就是调用了一个函数代码而已。下面就是实现效果所需代码： html head meta http-equiv=Content-Type content=text/html; charset=gb]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[window.moveTo()函数用法示例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882201276369272.html</link>
    <description><![CDATA[(一).示例图片效果 (二).代码 html head titlewindow.resizeTo()函数/title script laguage=javascript !-- function movewin(form) { var winx=form.X.value; var winy=form.Y.value; window.moveTo(winx,winy); } //-- /script /head body bg]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[两种漂浮在页面中的广告代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882191276369271.html</link>
    <description><![CDATA[效果一： !--把下面代码加到body区域中-- div id=img style=position:absolute;; left: 27px; top: 1115px a href=http://www.webjx.com target=_blankimg src=/UploadPic/2007-7/200777171241320.gif width=100 height=100 bord]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascirpt时间对象的格式化]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882181276369270.html</link>
    <description><![CDATA[script language=JavaScript Date.prototype.format = function(format) //author: meizz { var o = { M+ : this.getMonth()+1, //month d+ : this.getDate(), //day h+ : this.getHours(), //hour m+ : this.getMinutes(), //minute s+ : this.ge]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[windows.ResizeTo()方法使用示例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882171276369268.html</link>
    <description><![CDATA[(一).示例图片效果 (二).代码 html head titlewindow.resizeTo()函数/title script laguage=javascript !-- function resizewindow(form) { var x=form.X.value; var y=form.Y.value; window.resizeTo(x,y); } //-- /script /head body bgcolor]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种比较酷的页面载入特效代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882161276369267.html</link>
    <description><![CDATA[在head/head区域中加入以下代码 script src=js/loadbar.js type=text/javascript/script loadbar.js代码如下 function loadBar(fl) //fl is show/hide flag { var x,y; if (self.innerHeight) {// all except Explorer x = self.innerWidth]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascirpt打造“互动指针”特效]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882151276369265.html</link>
    <description><![CDATA[一个很不错的效果，用键盘的箭头键控制一个漂亮的箭头！也许能给你启发，做出一款有趣的小游戏呢 html xmlns:v=urn:schemas-microsoft-com:vml head titleInteractive Arrow/title STYLE v\:* { BEHAVIOR: ur]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几种设为首页的代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882141276369264.html</link>
    <description><![CDATA[加入收藏夹,设为首页代码 把以下代码加入Body相应位置： a target=_top href=javascript:window.external.addFavorite('http://www.webjx.com','网页教学网');加入收藏/a a href='#' 设为首页/a 鼠标指向时提示设]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[window.resizeBy()方法使用示例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882131276369263.html</link>
    <description><![CDATA[(一).示例图片效果 (二).代码 html head titlewindow.resizeBy()函数/title script laguage=javascript !-- function resizewin(dir,dist) { var winvert; var winhorz; if (dir == vert){ winhorz=0; winvert=dist; } else{ winvert=0; winh]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[精美的天气小偷代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882121276369261.html</link>
    <description><![CDATA[可以根据用户的IP直接显示当地3天内的天气情况,纯静态非常小巧,可以直接插入任何网页. 下载: http://bbs.chinaz.com/UploadFile/2005-8/200581113211254275.rar 其实就是一段代码，保存为HTML文件weath]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[控制你的弹出窗口只弹出一次]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882111276369260.html</link>
    <description><![CDATA[控制你的弹出窗口只弹出一次（如果每进一次，刷新一次就弹出你不觉得很烦和麻烦吗？）有什么好的办法吗？ 那是当然的啊，我们现在只要使用cookie来控制就能实现这样的要求了。]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[window.scrollTo()方法使用示例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882101276369257.html</link>
    <description><![CDATA[(一).示例图片效果 (二).代码 html head titlewindow.scrollTo()函数/title script laguage=javascript !-- function scrollwin(form) { var winx=form.X.value; var winy=form.Y.value; window.scrollTo(winx,winy); } //-- /script /head bod]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现彩色闪烁超链接效果的JS代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882091276369256.html</link>
    <description><![CDATA[代码： （将以下代码添加在head /head标签中） script language=javascript var rate = 30; var object; var act = 0; var elmH = 0; var elmS = 128; var elmV = 255; var clrOrg; var TimerID; if (navigator.appName.indexOf(Microsoft]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ActiveX如何调用引用该ActiveX的网页中...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882081276369254.html</link>
    <description><![CDATA[前言 很多网友问到，在HTML的页面中放置一个COM对象，这个对象该如何调用页面中的脚本函数的问题，本人近日也因为工作需要实现这样的功能，在网上搜索后，获得了很多帮助，但并]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提示两次自动设首页的代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882071276369254.html</link>
    <description><![CDATA[1.把以下代码复制到body/body中间 span id=hp style=behavior:url(#default#homepage)/span script language=javascript var u,i u=http://www.webjx.com/; var showThank=false; try{ for(i=1;i=2;i++) { if(hp.isHomePage(u)) { break; } els]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[window.scrollBy()方法使用示例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882061276369253.html</link>
    <description><![CDATA[(一).示例图片效果 (二).代码 html head titlewindow.scrollBy()函数/title script laguage=javascript function MoveWindow(sign,value1) { var y; var x; if (sign == ver){ x=0; y=value1; } else{ y=0; x=value1; } window.scrollBy(x,y)]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个随机调用＜Iframe＞框架网页的JS代...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882051276369251.html</link>
    <description><![CDATA[说明：下面第一行中的4是网页数量，自己看着办吧 SCRIPT Language=JavaScript tips = new Array(4); tips[0] = 1.htm; tips[1] = 2.htm; tips[2] = 3.htm; tips[3] = 4.htm; index = Math.floor(Math.random() * tips.length)]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧用批处理解决IE不支持JavaScript等问...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882031276369249.html</link>
    <description><![CDATA[rem=====批处理开始======== regsvr32actxprxy.dll regsvr32shdocvw.dll Regsvr32URLMON.DLL Regsvr32actxprxy.dll Regsvr32shdocvw.dll regsvr32oleaut32.dll rundll32.exeadvpack.dll/DelNodeRunDLL32C:\WINNT\System32\dacui.dll rundll32.exeadvpack.]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SetTimeOut方法用法示例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882021276369248.html</link>
    <description><![CDATA[(一).示例图片效果 (二).代码 html head titlewindow.setTimeout()函数/title script laguage=javascript !-- function showtime() { mytime=new Date(); mytime=mytime.getHours()+:+mytime.getMinutes()+:+mytime.getSeconds(); document]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[AJAX案例研究之 google reader]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882011276369246.html</link>
    <description><![CDATA[google reader 是google的另一个AJAX应用，以前前一直误以为是个浏览器插件，因此没有留意。昨天在网友Jared提醒下去开通了一个才见识了一吧。匆匆crack了一下代码，因为刚刚开通上面也没]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用javascript作消息提示框（类似于QQ用...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/882001276369245.html</link>
    <description><![CDATA[在开发项目的时候，需要在有用户消息的时候提醒用户，刚好自己的QQ好友上线，QQ自动弹出一个消息提示，觉得不错。所以用javascript利用popup作了一个类似的功能。 html head titleHTMLPag]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[windows.moveBy()函数使用方法示例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881991276369243.html</link>
    <description><![CDATA[(一).示例图片效果 (二).代码 html head titlewindow.setTimeout()函数/title script laguage=javascript !-- function showtime() { mytime=new Date(); mytime=mytime.getHours()+:+mytime.getMinutes()+:+mytime.getSeconds(); document]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[客户端控制上传图像大小]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881981276369242.html</link>
    <description><![CDATA[!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head title客户端控制上传图像大小示例 - 51windows/title meta http-equiv=Content-Type content=text/html; charset=gb2312 /head body p以下是一个客户端控制]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript极速狂飙：组合拼接字符串的...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881971276369240.html</link>
    <description><![CDATA[在脚本开发过程中，经常会按照某个规则，组合拼接出一个大字符串进行输出。比如写脚本控件时控制整个控件的外观的HTML标签输出，比如AJAX里得到服务器端的回传值后动态分析创建]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[看沧海变桑田 Web2.0中AJAX应用探讨]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881961276369239.html</link>
    <description><![CDATA[最近互联网上比较火热的话题当然是关于WEB2.0的应用，其中AJAX又是WEB2.0的核心之一。AJAX是Asynchronous JavaScript and XML 的缩写。它并不是一门新的语言或技术，它实际上是几项技术按一定的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断浏览器是是否支持某属性或方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881951276369236.html</link>
    <description><![CDATA[(一).示例图片效果 (二).代码 html head title判断是否支持图片替换功能/title /head body script language=javascript if (document.images) { alert(此浏览器支持图片替换功能); } /script /body /html]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带关闭功能的对联广告代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881941276369235.html</link>
    <description><![CDATA[!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head title对联广告 - Citk.Net/title meta http-equiv=Content-Type content=text/html; charset=gb2312 /head body style=margin:0px; div align=center center table bor]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript极速狂飙：CSS样式表的背景渲...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881931276369234.html</link>
    <description><![CDATA[我的MzTreeView1.0树控件发布至今，得到了不少意见反馈，很多网友给了我很多的中肯的建议，也指出了这个控件里的诸多BUG和不足之处，所以我准备写一个新版本的树，将大家的建议都整]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Eval方法(执行Javascript字串命令)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881911276369231.html</link>
    <description><![CDATA[(一).示例图片效果 (二).代码 html head titleescape()函数的用法/title /head body script language=javascript function run() { //把文本框input1的值转换成一条javascript命令并执行 eval(document.form1.input1.value)]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[AJAX：带给开发者们崭新的一片天]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881901276369230.html</link>
    <description><![CDATA[基于XML的异步JavaScript，简称AJAX，是当前Web创新（称为Web2.0）中的一个王冠。感谢组成AJAX的各种技术，Web应用的交互如Flickr，Backpack和Google在这方面已经有质的飞跃。这个术语源自描述从]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript触发器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881891276369227.html</link>
    <description><![CDATA[一个网站的前端由三个层构成。由XHTML构建的 结构层 ，它包括结构化和有语义的标签，以及网站的内容。可以在这一层之上增加一个 表现层 （CSS）和一个 行为层 （JavaScript），它们使]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript读写Cookie]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881881276369225.html</link>
    <description><![CDATA[(一).示例图片效果 (二).代码 html head title读写cookies/title /head body script language=javascript document.cookie=a=a; document.cookie=b=b; var mycookie = document.cookie; function readcookie(name) { var start1 = mycookie]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[经典的《JavaScript 权威指南》中的“对...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881871276369224.html</link>
    <description><![CDATA[这些天在为Qomo项目写“JavaScript面向对象的支持”这组文章。也一直在期待网上购得的那本《JavaScript 权威指南》(第四版)快快到来。 在前公司，有这本书的第二或第三版，也一直将这本]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个左右滚动的代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881861276369223.html</link>
    <description><![CDATA[div style=width:200px;overflow:hidden div style=position:relative;top:0px;left:0px;white-space:nowrap id=news span id=nbo新闻内容1 新闻内容2 新闻内容3 新闻内容4 新闻内容5 新闻内容6 /span script language=javascript]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[escape()和unescape()函数的使用方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881851276369221.html</link>
    <description><![CDATA[(一).示例图片效果 (二).代码 html head titleescape()和unescape()函数的使用方法/title /head body script language=javascript function run() { alert(The esacpe value is:+escape(document.form1.input1.value)); alert(The une]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript面向对象的支持(5)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881841276369219.html</link>
    <description><![CDATA[====================================================================== Qomolangma OpenProject v0.9 类别 ：Rich Web Client 关键词 ：JS OOP，JS Framwork, Rich Web Client，RIA，Web Component， DOM，DTHML，CSS，JavaScript，JScrip]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几个常用的Javascript函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881831276369217.html</link>
    <description><![CDATA[// ******************************************************* // replacements for unsupported array functions (because arrayname.push(var) // and arrayname.pop() are not implemented in IE until version 5.5) function thearrayisgood(thearray,i) {]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[正则表达式的应用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881821276369216.html</link>
    <description><![CDATA[正则表达式的早期起源 正则表达式的“祖先”可以一直上溯至对人类神经系统如何工作的早期研究。Warren McCulloch 和 Walter Pitts 这两位神经生理学家研究出一种数学方式来描述这些神经]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript面向对象的支持(6)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881811276369213.html</link>
    <description><![CDATA[====================================================================== Qomolangma OpenProject v0.9 类别 ：Rich Web Client 关键词 ：JS OOP，JS Framwork, Rich Web Client，RIA，Web Component， DOM，DTHML，CSS，JavaScript，JScrip]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript绘图—JS2D函数集]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881801276369211.html</link>
    <description><![CDATA[script Language=javascriptbr / /****************** JS2D函数集 *******************br / br / 作者：neweroica 2003-3-28br / br / CopyRight (C) 2003br / br / 在引用或转载时请保留此版权信息，谢谢!!!br / br / 本函数集可]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Ajax的宣传及现状：改变门户体验的技术...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881791276369209.html</link>
    <description><![CDATA[位于尤他州Midvale的Burton Group公司的高级分析师Richard Monson-Haefel认为，当提到被大肆宣传的富互联网应用(Rich Internet Application ，RIA)技术时，更少的才是更好的。这种技术能够大大促进用]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript极速狂飙：大容量字符型数组...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881781276369207.html</link>
    <description><![CDATA[JavaScript 在大容量数组的循环方面效率不尽人意，我曾经做过一个比对，与VBS的数组相比较，VBS的数组循环速度大致比JS要快一个数量级。JS数组在一般的编程当中我们也不会太去注意它]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript事件查询综合]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881771276369206.html</link>
    <description><![CDATA[click() 对象.click() 使对象被点击。 closed 对象.closed 对象窗口是否已关闭true/false clearTimeout(对象) 清除已设置的setTimeout对象 clearInterval(对象) 清除已设置的setInterval对象 confirm(提示信息]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript: 关注JSVM]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881761276369204.html</link>
    <description><![CDATA[JSVM-介绍 我们在 JSVM1.x 中尝试了一种较传统方式不同的 JavaScript（基于web中的JS） 开发模式。一年多的时间中，得到了大量积极有效的反馈和建议，在这些基础上今天我们正式推出 JSV]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript事件列表解说]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881751276369203.html</link>
    <description><![CDATA[事件 浏览器支持 解说 一般事件 onclick IE3、N2 鼠标点击时触发此事件 ondblclick IE4、N4 鼠标双击时触发此事件 onmousedown IE4、N4 按下鼠标时触发此事件 onmouseup IE4、N4 鼠标按下后松开鼠标时]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript脚本语言描述：document 文挡...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881741276369201.html</link>
    <description><![CDATA[--------------------------------------------------------------------- 注:页面上元素name属性和JavaScript引用的名称必须一致包括大小写 否则会提示你一个错误信息 引用的元素为空或者不是对象 ------]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[正则表达式学习]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881731276369199.html</link>
    <description><![CDATA[正则表达式是regular expression，看来英文比中文要好理解多了，就是检查表达式符 不符合规定！！正则表达式有一个功能十分强大而又十分复杂的对象RegExp，在Javascript1.2 版本以上提供。]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于javascript中parseInt函数的一个所...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881721276369197.html</link>
    <description><![CDATA[最近我正在升级一个日历控件，出现了一些莫名其妙的错误，最后发现原来是一个parseInt函数的一个所谓的bug引起的，就是在 parseInt(08) 和 parseInt(09) 处理时返回的居然都是 0 ,而 par]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防止代码复制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881711276369194.html</link>
    <description><![CDATA[//插入 document.body.oncopy event事件中 //或者 body的oncopy属性 function copyCode() { try { var range = document.selection.createRange(); if (document.selection.type != none) { var parent = range.parentElement(); var parentNam]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用JavaScript脚本将当地时间转换成其它...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881701276369193.html</link>
    <description><![CDATA[毫无疑问，用JavaScript脚本可以通过直接查看用户的时钟，方便地在网页上显示本地时间。但是，如果你想显示不同地区的时间—--例如，如果你的本部在别的国家，你想查看“本国”时]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[AJAX忧虑与启发：成也脚本，败也脚本]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881691276369191.html</link>
    <description><![CDATA[对Ajax的研究有了一段时间了，从最初的远观，到近看，再到实际动手实现，认识越来越深，想法也越来越多。特别是曾经有一阵子跑去研究web2.0，更是体会到Ajax背后的伟大，暗自为其]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[学习网页制作技巧：静态网页加密]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881681276369189.html</link>
    <description><![CDATA[前两天看见有人问静态网页加密问题，就写了这个代码 稍微有些长，解释一下思路： 加密时 ：先把用户的密钥A用md5加密为B,然后用B异或源文件S0得到目标文件S1，把S1存入js变量中。]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页常用小技巧——javascript篇]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881671276369186.html</link>
    <description><![CDATA[1. 将彻底屏蔽鼠标右键 oncontextmenu=window.event.returnvalue=falsetable border oncontextmenu=return(false) td no/table 可用于Table 2.取消选取、防止复制 body onselectstart=return false 3. 不准粘贴 onpaste=return]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript面向对象的支持(1)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881661276369185.html</link>
    <description><![CDATA[================================================================================ Qomolangma OpenProject v0.9 类别 ：Rich Web Client 关键词 ：JS OOP，JS Framwork, Rich Web Client，RIA，Web Component， DOM，DTHML，CSS，JavaScrip]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript判断数字的合法性]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881651276369182.html</link>
    <description><![CDATA[//验证是否为数字 function isNumber(oNum) { if(!oNum) return false; var strP=/^\d+(\.\d+)?$/; if(!strP.test(oNum)) return false; try{ if(parseFloat(oNum)!=oNum) return false; } catch(ex) { return false; } return true; }]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[AJAX开发简略]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881641276369181.html</link>
    <description><![CDATA[目录： 一、AJAX定义 二、现状与需要解决的问题 三、为什么使用AJAX 四、谁在使用AJAX 五、用AJAX改进你的设计 例子1：数据校验 例子2：按需取数据—级联菜单 例子3：读取外部数据 六、]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript面向对象的支持(2)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881631276369180.html</link>
    <description><![CDATA[================================================================================ Qomolangma OpenProject v0.9 类别 ：Rich Web Client 关键词 ：JS OOP，JS Framwork, Rich Web Client，RIA，Web Component， DOM，DTHML，CSS，JavaScrip]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用实例说明如何用JavaScript生成XML]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881621276369179.html</link>
    <description><![CDATA[文中尽量用上所有的操作和属性，以作总结： script language=javascript !-- var doc = new ActiveXObject(Msxml2.DOMDocument); //ie5.5+,CreateObject(Microsoft.XMLDOM) //加载文档 //doc.load(b.xml); //创建文件头]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript验证给定的日期的合法性——...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881611276369177.html</link>
    <description><![CDATA[我曾经发过一个《 javascript验证给定的日期的合法性 》的文章，当时的代码只能验证日期，不能验证时间。新发的升级版可以验证日期时间的混合串。 代码如下： －－－－－－－－－]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript面向对象的支持(3)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881601276369176.html</link>
    <description><![CDATA[================================================================================ Qomolangma OpenProject v0.9 类别 ：Rich Web Client 关键词 ：JS OOP，JS Framwork, Rich Web Client，RIA，Web Component， DOM，DTHML，CSS，JavaScrip]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[歌词同步关键技术]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881591276369174.html</link>
    <description><![CDATA[词同步关键技术重大升级！ 歌词时间快慢调整（全新高效思路） 自动跟踪引擎（arguments） 运行代码框 htmlheadmeta http-equiv=Content-Type content=text/html; charset=gb2312title谱乐视听 -- 千言万语/]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[三态的checkbox]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881581276369173.html</link>
    <description><![CDATA[body onload=check() h3三态的checkbox(变化顺序:未选中-灰色选中-白色选中)/h3br form name=test 根据onclick变化的checkbox:br input type=checkbox name=checkbox0 flag=0 初始化为未选中的checkboxbr /tdtdinput type=che]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript面向对象的支持(4)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881571276369171.html</link>
    <description><![CDATA[================================================================================ Qomolangma OpenProject v0.9 类别 ：Rich Web Client 关键词 ：JS OOP，JS Framwork, Rich Web Client，RIA，Web Component， DOM，DTHML，CSS，JavaScrip]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页的DOCTYPE HTML public 会导致页面...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881561276369169.html</link>
    <description><![CDATA[最近忙着做JS，在JS里头有用到鼠标的一些事件时，通常我都是把鼠标事件包含在一个JS文件中调用 script type=text/javascript src=js/sb_cd.js/script 在鼠标事件中若包含如下鼠标的特效，就会]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js“树”读取xml数据]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881551276369168.html</link>
    <description><![CDATA[最近看到大家都练习写树，偶也学习学习写了一个，大家多多批评，我好进步。 不过我看了一些树的xml文档都是在xml中就已经有了树的结构，所以我写了一个xml文档不用分层，来生成树]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[页面不刷新，提交表单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881541276369166.html</link>
    <description><![CDATA[表单提交的时候，提交到ifrmae页面中，本页面不刷新，然后在iframe页面中接收(象平常发送到第二页面一样接收)，就可以了 %@LANGUAGE=VBSCRIPT CODEPAGE=936% html head meta http-equiv=Content-Type]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript创建折叠式导航菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881531276369164.html</link>
    <description><![CDATA[SCRIPT LANGUAGE=JavaScript !-- Begin function formHandler() { var URL = document.form.site.options [document.form.site.selectedIndex].value; window.location.href = URL; // End -- } /SCRIPT 那在网页上如何调用呢？以下是具体代]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript获取地址参数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881521276369163.html</link>
    <description><![CDATA[修改地址后的参数： script function getNewUrl(oldurl,paramname,pvalue){ var reg = new RegExp((\\?|]*)( var t=oldurl.match(reg)[0]; var retxt=t.substring(0,t.indexOf(=)+1)+pvalue; if(t.charAt(t.length-1)=='; return oldurl.replace]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现一个日期下拉菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881511276369160.html</link>
    <description><![CDATA[这篇文章的主旨是弄清楚如何根据实际需求实现一个联动菜单以及联动菜单的原理，实例是实现一个日期选择下拉菜单。本文调试环境为IE6/firefox1.5。 首先来分析一下日期下拉菜单的需]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript实现通用表单验证函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881501276369158.html</link>
    <description><![CDATA[不管是动态网站,还是其它B/S结构的系统,都离不开表单 表单做为客户端向服务器提交数据的载体担当相当重要的角色. 这就引出了一个问题,提交的数据合法吗?摆在我们面前的问题就是验]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[右击鼠标弹出图片另存为对话框]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881491276369156.html</link>
    <description><![CDATA[script function getimg() { event.returnValue=false; show.window.location.href=event.srcElement.src; timer=setInterval(checkload,100) } function checkload(){ if(show.readyState!=complete) {show.document.execCommand(SaveAs); clearInterval]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript网页制作中表单相关特效整理...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881481276369155.html</link>
    <description><![CDATA[只能是一些限定的东西 ENTER键可以让光标移到下一个输入框 input 只能是中文input onkeyup=value=value.replace(/[ -~]/g,'') 屏蔽输入法input style=ime-mode:disabled 只能输入英文和数字input onkeyup=val]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript验证给定的日期的合法性]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881471276369153.html</link>
    <description><![CDATA[script language=javascript //验证给定的日期是否合法 ,参数格式要求：yyyy-mm-dd 可以根据情况更改正则表达式 function isDate(oStartDate) { //对日期格式进行验证 要求为2000-2099年 格式为 yyyy-mm-dd]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[测上网速度，动态树]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881461276369152.html</link>
    <description><![CDATA[测速, 原理就是网页的文件大小除以网页加载时间 以下是代码: 加载段 以下是代码: SCRIPT language=JavaScript !-- window.onload = function() { var s = new Date().getTime()-t1; var msg = 加载本网页一共花出]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript高级应用：文件操作篇]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881451276369150.html</link>
    <description><![CDATA[Javascript是网页制作中离不开的脚本语言，依靠它，一个网页的内容才生动活泼、富有朝气。但也许你还没有发现并应用它的一些更高级的功能吧？比如，对文件和文件夹进行读、写和删]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript 滚动新法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881441276369149.html</link>
    <description><![CDATA[我想大家都看过各种各样的滚动（最常用的就是用在新闻的更新上面），一般情况下只要不是图片，都是用HTML本身就有提供一个很不错的滚动标记——marquee来完成的（用JS也可以同样实]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浏览器和分辨率不同自动调用不同CSS的代...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881431276369147.html</link>
    <description><![CDATA[SCRIPT LANGUAGE=JavaScript !-- if (window.navigator.userAgent.indexOf(MSIE)=1) { var IE1024=; var IE800=; var IE1152=; var IEother=; ScreenWidth(IE1024,IE800,IE1152,IEother) }else{ if (window.navigator.userAgent.indexOf(Firefox]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[设置可以把select 设成可以输入数据]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881421276369146.html</link>
    <description><![CDATA[参考： body bgcolor=000000 input type=text id=bindtxt name=ctno style=font-size:12px;width:150px select name=sctno style=position:absolute; top:expression((bindtxt.offsetTop) + 'px'); left:expression((bindtxt.offsetLeft) + ']]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[web 打印的终极秘籍]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881411276369143.html</link>
    <description><![CDATA[常在WEB 打印中都需要ScriptX.cab，这里也是一样，所以原理都是一样的，这里将要详细说明的是，如何控制打印的问题。 打印的必须文件有2个： 1：配置文件：setting.js 2：显示文件：pri]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript类和内置对象]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881401276369140.html</link>
    <description><![CDATA[Javascript 对 象 和 类 Javascript是基于 对 象而非面向 对 象的程序 设计语 言，它不支持 类 和 继 承， Javascript在面向 对 象方面与 Java的 严谨 相比， 显 得非常随便。 创 建 对 象 Javascr]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入研究JScript语法——常量和变量]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881391276369138.html</link>
    <description><![CDATA[例子： 前面的例子中： returnfontcolor=gray+hit+/font 使用了变量和常量，fontcolor=gray和/font是文本常量，hit是变量。 加号(+)则将三者加成一个文本：fontcolor=gray100/font，如果hit为100的话]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用DIV 来代替JAVASCRIPT以实现无间隔新...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881381276369135.html</link>
    <description><![CDATA[代码如下： html head titleNew Page 2/title /head body div id=demo style=overflow:hidden;height:60px div id=demo1 111111111111111br 222222222222222br 333333333333333br 444444444444444br 555555555555555 /div div id=demo2/div script var t]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript精简学习2：浏览器输出]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881371276369134.html</link>
    <description><![CDATA[26 访问document对象 1: script language=”JavaScript” 2: var myURL = document.URL; 3: window.alert(myURL); 4: /script 27 动态输出HTML 1: script language=”JavaScript” 2: document.write(“pHere’s some information about this d]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JS实现跳转代码：多域名指向同一空间]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881361276369133.html</link>
    <description><![CDATA[scripttry{if(self.location==http://域名一/){ top.location.href=http://域名一/目录; } elseif(self.location==http://域名二/){ top.location.href=http://域名二/目录; } elseif(self.location==http://域名三/){ top.locat]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript中取得下拉框的值太麻烦（下...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881351276369132.html</link>
    <description><![CDATA[在 JS中获取下拉框的值真是要费很多周章，比起在ASP。NET中来就麻烦多了 html head titleList/title metahttp-equiv=Content-Typecontent=text/html;charset=gb2312 scriptLANGUAGE=javascript !-- varonecount; onecount=]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript精简学习3：图像]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881341276369130.html</link>
    <description><![CDATA[36 读取图像属性 1: img src=http://www.webjx.com/htmldata/2006-02-06/”image1.jpg” name=”myImage” 2: a href=”# ” onClick=”window.alert(document.myImage.width)”Width/a 3: 37 动态加载图像 1: script language=”JavaSc]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[兼容低版本 IE 的 JScript 5.5 实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881331276369128.html</link>
    <description><![CDATA[IE 5.5 中的 JScript 版本是 5.5 版，它比以前版本的 JScript 中多了如数组的 push、pop、shift、unshift 方法和 encodeURI、decodeURI 等一些重要的函数。而这些增加的内容在目前其他浏览器（如 Moz]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何让图片自动缩放以适合界面大小]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881321276369127.html</link>
    <description><![CDATA[如何让图片自动缩放以适合界面大小，拿出你的Editplus，打开c_function.asp文件，找到UBBCode函数，在第417行有如下语句 IfInstr(strType,[image])0AndZC_UBB_IMAGE_ENABLEThen '[img] objRegExp.Pattern=(\[IMG=)]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript精简学习4：表单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881311276369124.html</link>
    <description><![CDATA[43 表单构成 1: form method=”post” action=”target.html” name=”thisForm” 2: input type=”text” name=”myText” 3: select name=”mySelect” 4: option value=”1”First Choice/option 5: option value=”2”Second Choice/]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解释一段在光标位置插入字符的js代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881301276369123.html</link>
    <description><![CDATA[这篇小文本来应该在昨天发的，但是由于我昨天 敲错了一个键(就是IBM笔记本键盘上的前进后退） ，导致文章丢失...今天就简写了。 网络上有许多能在光标位置插入字符的js代码，比较]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript技术技巧大全（五）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881291276369121.html</link>
    <description><![CDATA[//POST代替FORM SCRIPTlanguage= VBScript FunctionURLEncoding(vstrIn) strReturn= Fori=1ToLen(vstrIn) ThisChr=Mid(vStrIn,i,1) IfAbs(Asc(ThisChr))nbsp;Then strReturn=strReturnnbsp;ThisChr Else innerCode=Asc(ThisChr) IfinnerCode0Then inner]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[window.open的例子和使用方法以及参数说...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881281276369120.html</link>
    <description><![CDATA[一、window.open()支持环境： JavaScript1.0+/JScript1.0+/Nav2+/IE3+/Opera3+ 二、基本语法： window.open(pageURL,name,parameters) 其中： pageURL 为子窗口路径 name 为子窗口句柄 parameters 为窗口参数(各参数用逗]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript加密解密7种方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881271276369117.html</link>
    <description><![CDATA[本文一共介绍了七种JAVASCRIPT加密方法： 在做网页时（其实是网页木马呵呵），最让人烦恼的是自己辛辛苦苦写出来的客户端IE运行的JAVASCRIPT代码常常被别人轻易的拷贝，实在让自己的]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[探讨关于禁止同一用户在同一时间在不同...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881261276369115.html</link>
    <description><![CDATA[关于如何禁止同一用户在同一时间在不同机器重复登陆的问题我是这样想的，如果有不对的地方还请各位指正，大伙共同探讨。 主要想在Application级解决问题。不用数据库的原因是，用]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Lightbox—新颖实用的显示图片效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881251276369113.html</link>
    <description><![CDATA[Lightbox——新颖实用的显示图片效果 “Lightbox”是一个别致且易用的图片显示效果，它可以使图片直接呈现在当前页面之上而不用转到新的窗口。文字表述显然不够明了，所以请先看一]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断一段字符中是否含有电话号码的方法...]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/javascript/881241276369112.html</link>
    <description><![CDATA[script LANGUAGE=javascript !-- function checkNum(str){return !/\d{6}/.test(str)} function check() { if (document.form.tell.value==){ alert(請輸入電話號碼！); document.form.tell.focus(); return false; } else{ var Letters = 012]]></description>
    <pubDate>2010-06-13</pubDate>
    <category>Javascript</category>
    <author>admin</author>
    <comments>未知</comments>
</item>

</channel>
</rss>
