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