摘要: var container = document.getElementById("map");container.style.filter = "progid:DXImageTransform.Microsoft.Alpha(style=3,opacity=50,finishOpacity=50)";container.style.opacity = "0.1";或者:container.style.filter = "Alpha(Opacity=0, FinishOpacity=100, Style=1, StartX=0 阅读全文
posted @ 2011-06-25 19:13 Mygirl 阅读(3966) 评论(0) 推荐(0)
摘要: 访问地址为:http://localhost:1351/WebSite1/dir/Default.aspx/adsf?id=12#test,下面是各种方法的说明:ASP.NETRequestPropertyResultRemarkRequest.ApplicationPath/WebSite1相对于应用程序(而非虚拟目录)根目录的路径Request.PhysicalApplicationPathC:\DocumentsandSettings\wstone.SPANSION\Desktop\WebSite1\应用程序根目录的物理路径Request.PhysicalPathC:\Documents 阅读全文
posted @ 2011-06-25 19:12 Mygirl 阅读(334) 评论(0) 推荐(0)
摘要: xml的写操作:public void WriteXML(string FileName,string server,string IDServiceid,string name) { if (!File.Exists(FileName)) { XmlTextWriter textWriter = new XmlTextWriter(FileName,null); textWriter.Formatting = Formatting.Indented; // 开始写过程,调用WriteStartDocument方法 textWriter.WriteStartDocument(); // 写入说 阅读全文
posted @ 2011-06-25 19:10 Mygirl 阅读(340) 评论(0) 推荐(0)
摘要: js中的字符串拼接经常用到转义符,特此记下:var tserverItem = document.getElementById("serverItem");//这个是table下的<tbody>var tr1 = document.createElement('tr');//这是个table标签下的trtr1.style.height = '25px'; var td7 = document.createElement('td');//这是个table标签下的tdtd7.width = "155px&qu 阅读全文
posted @ 2011-06-25 19:07 Mygirl 阅读(227) 评论(1) 推荐(0)
摘要: 关于热区,嗯,最近真的很热,都40°了,有点扛不住...下面这个网址可以看看:http://www.netzgesta.de/mapper/用法:下载mapper.js ,然后将其加到页面中.<script type="text/javascript" src="wz_jsgraphics.js"></script><script type="text/javascript" src="mapper.js"></script>然后在img标签中加入class 阅读全文
posted @ 2011-06-25 19:06 Mygirl 阅读(1201) 评论(2) 推荐(0)