上一页 1 ··· 6 7 8 9 10
摘要: js获取网站根路径(站点及虚拟目录)<script>function getRootPath(){var strFullPath=window.document.location.href;var strPath=window.document.location.pathname;var pos=strFullPath.indexOf(strPath);var prePath=strF... 阅读全文
posted @ 2010-01-29 15:38 eastday 阅读(5039) 评论(1) 推荐(1) 编辑
摘要: 字符十进制字符编号实体名字说明---&#00;---未使用Unused---&#01;---未使用Unused---&#02;---未使用Unused---&#03;---未使用Unused---&#04;---未使用Unused---&#05;---未使用Unused---&#06;---未使用Unused---&#07;---未使... 阅读全文
posted @ 2010-01-29 10:11 eastday 阅读(8102) 评论(0) 推荐(0) 编辑
摘要: 括号一般使用主要集中在函数 : function fn(){};2.新建对象arr = new arry();3.执行函数function Test(){ alert('test')} (); 它会自动执行 就是当页面加载的时候就执行..eg:<script language="JavaScript">var MarkTime = function( name, desc ) { al... 阅读全文
posted @ 2010-01-29 10:09 eastday 阅读(687) 评论(0) 推荐(0) 编辑
摘要: 1.DropDownlist.SelectedIndex=DropDownlist.Items.IndexOf(DropDownlist.Items.FindByValue(initValue));2. foreach( ListItem item in dropdownlist.Items ) { if ( item.value == ID ) { item.Selected... 阅读全文
posted @ 2010-01-29 10:09 eastday 阅读(339) 评论(0) 推荐(0) 编辑
摘要: XML/HTML代码<inputtype="text"value="xxx"id="xx"onclick="this.myprop='xx'"> <scripttype="text/javascript"> <!-- document.getElementById('xx').attachEvent('onpropertychange',function(o){al... 阅读全文
posted @ 2010-01-29 10:08 eastday 阅读(18175) 评论(2) 推荐(3) 编辑
摘要: 注意!我在这里所描述的抽象类和接口是基于C#的。一、抽象类:抽象类是特殊的类,只是不能被实例化;除此以外,具有类的其他特性;重要的是抽象类可以包括抽象方法,这是普通类所不能的。抽象方法只能声明于抽象类中,且不包含任何实现,派生类必须覆盖它们。另外,抽象类可以派生自一个抽象类,可以覆盖基类的抽象方法也可以不覆盖,如果不覆盖,则其派生类必须覆盖它们。抽象类实例Code highlighting pro... 阅读全文
posted @ 2010-01-29 10:06 eastday 阅读(474) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10